Line | |
---|
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 | |
---|
12 | if context.portal_membership.isAnonymousUser(): |
---|
13 | return False |
---|
14 | return not context.isStudent() |
---|
15 | |
---|
16 | mtool = context.portal_membership |
---|
17 | member = mtool.getAuthenticatedMember() |
---|
18 | roles = member.getRolesInContext(context) |
---|
19 | |
---|
20 | return "Manager" in roles or\ |
---|
21 | "SectionManager" in roles or\ |
---|
22 | "SectionOfficer" in roles or\ |
---|
23 | "ClearanceOfficer" in roles or\ |
---|
24 | "ClearanceOfficers" in member.getGroups() |
---|
Note: See
TracBrowser for help on using the repository browser.