Rev | Line | |
---|
[1513] | 1 | ## Script (Python) "isClearanceOfficer" |
---|
| 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: isClearanceOfficer.py 1087 2006-12-18 22:13:31Z joachim $ |
---|
| 11 | |
---|
| 12 | #from Products.zdb import set_trace |
---|
| 13 | #set_trace() |
---|
| 14 | if context.isStudent(): |
---|
| 15 | return False |
---|
| 16 | mtool = context.portal_membership |
---|
| 17 | roles = mtool.getAuthenticatedMember().getRolesInContext(context) |
---|
[1558] | 18 | <<<<<<< .working |
---|
| 19 | return str("CourseAdviser" in roles) |
---|
| 20 | ======= |
---|
| 21 | return str("CourseAdviser" in roles) |
---|
[1515] | 22 | return "CourseAdviser" in roles |
---|
[1558] | 23 | >>>>>>> .merge-rechts.r1557 |
---|
[1515] | 24 | |
---|
Note: See
TracBrowser for help on using the repository browser.