Rev | Line | |
---|
[600] | 1 | ## Script (Python) "cpsdocument_edit" |
---|
| 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=student=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $ |
---|
| 11 | """ |
---|
[603] | 12 | return True if the member is considered a Manager, |
---|
| 13 | consider all non-Student members to be Managers |
---|
| 14 | |
---|
[600] | 15 | """ |
---|
| 16 | request = context.REQUEST |
---|
| 17 | |
---|
| 18 | wf = context.portal_workflow |
---|
| 19 | mtool = context.portal_membership |
---|
| 20 | member = mtool.getAuthenticatedMember() |
---|
| 21 | path_info = request.get('PATH_INFO').split('/') |
---|
[603] | 22 | #roles = member.getRolesInContext(context) |
---|
| 23 | roles = member.getRoles() |
---|
[600] | 24 | isStudent = "Student" in roles |
---|
[787] | 25 | isStaff = not isStudent and not mtool.isAnonymousUser() |
---|
[603] | 26 | #isManager = "Manager" in roles or "SectionManager" in roles or isStaff |
---|
| 27 | isManager = isStaff |
---|
[600] | 28 | return isManager |
---|
Note: See
TracBrowser for help on using the repository browser.