Rev | Line | |
---|
[879] | 1 | ## Script (Python) "isStaff" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters= |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: $ |
---|
| 11 | |
---|
[1077] | 12 | if context.portal_membership.isAnonymousUser(): |
---|
| 13 | return False |
---|
| 14 | return not context.isStudent() |
---|
| 15 | |
---|
[879] | 16 | mtool = context.portal_membership |
---|
[885] | 17 | member = mtool.getAuthenticatedMember() |
---|
| 18 | roles = member.getRolesInContext(context) |
---|
[879] | 19 | |
---|
[903] | 20 | return "Manager" in roles or\ |
---|
| 21 | "SectionManager" in roles or\ |
---|
[911] | 22 | "SectionOfficer" in roles or\ |
---|
[885] | 23 | "ClearanceOfficer" in roles or\ |
---|
[1692] | 24 | "ClearanceOfficers" in member.getGroups() or\ |
---|
| 25 | "CourseAdvisers" in member.getGroups() |
---|
Note: See
TracBrowser for help on using the repository browser.