source: WAeUP_SRP/trunk/skins/waeup_default/isStudent.py @ 802

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: 631 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: isStudent.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return True if the member is considered a Student
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18member = mtool.getAuthenticatedMember()
19path_info = request.get('PATH_INFO').split('/')
20#roles = member.getRolesInContext(context)
21roles = member.getRoles()  # Student role is global
22isStudent = "Student" in roles
23return isStudent
Note: See TracBrowser for help on using the repository browser.