source: WAeUP_SRP/base/skins/waeup_default/isSectionOfficer.py @ 2314

Last change on this file since 2314 was 1975, checked in by Henrik Bettermann, 17 years ago

fixed

File size: 587 bytes
Line 
1## Script (Python) "isSectionOfficer"
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 888 2006-11-17 21:28:48Z henrik $
11
12member = context.portal_membership.getAuthenticatedMember()
13member_id = str(member)
14o = ord(member_id[1])
15if o >= 48 and o <= 57:
16    return False
17# if context.isStudent():
18#     return False
19roles = member.getRolesInContext(context)
20return "SectionOfficer" in roles or\
21       "SectionManager" in roles or\
22       "Manager" in roles
23
Note: See TracBrowser for help on using the repository browser.