Last change
on this file since 802 was
801,
checked in by Henrik Bettermann, 18 years ago
|
all script Python ids fixed
student_edit.py deprecated
|
File size:
803 bytes
|
Line | |
---|
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: isManager.py 486 2006-09-06 10:09:39Z joachim $ |
---|
11 | """ |
---|
12 | return True if the member is considered a Manager, |
---|
13 | consider all non-Student members to be Managers |
---|
14 | |
---|
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('/') |
---|
22 | #roles = member.getRolesInContext(context) |
---|
23 | roles = member.getRoles() |
---|
24 | isStudent = "Student" in roles |
---|
25 | isStaff = not isStudent and not mtool.isAnonymousUser() |
---|
26 | #isManager = "Manager" in roles or "SectionManager" in roles or isStaff |
---|
27 | isManager = isStaff |
---|
28 | return isManager |
---|
Note: See
TracBrowser for help on using the repository browser.