Last change
on this file since 866 was
845,
checked in by Henrik Bettermann, 18 years ago
|
script names corrected
|
-
Property svn:keywords set to
Id
|
File size:
576 bytes
|
Rev | Line | |
---|
[845] | 1 | ## Script (Python) "isStudent" |
---|
[600] | 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 | ## |
---|
[805] | 10 | # $Id: isStudent.py 845 2006-11-11 21:29:50Z henrik $ |
---|
[600] | 11 | """ |
---|
[603] | 12 | return True if the member is considered a Student |
---|
[600] | 13 | """ |
---|
| 14 | request = context.REQUEST |
---|
| 15 | |
---|
| 16 | wf = context.portal_workflow |
---|
| 17 | mtool = context.portal_membership |
---|
| 18 | member = mtool.getAuthenticatedMember() |
---|
| 19 | path_info = request.get('PATH_INFO').split('/') |
---|
[603] | 20 | #roles = member.getRolesInContext(context) |
---|
[801] | 21 | roles = member.getRoles() # Student role is global |
---|
[600] | 22 | isStudent = "Student" in roles |
---|
| 23 | return isStudent |
---|
Note: See
TracBrowser for help on using the repository browser.