source: WAeUP_SRP/trunk/skins/waeup_default/isStaff.py @ 1959

Last change on this file since 1959 was 1959, checked in by joachim, 17 years ago

faster method to detect isStudent

File size: 443 bytes
Line 
1## Script (Python) "isStaff"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=
8##title=
9##
10# $Id: $
11
12# if context.portal_membership.isAnonymousUser():
13#     return False
14# return not context.isStudent()
15
16mtool = context.portal_membership
17member = mtool.getAuthenticatedMember()
18member_id = str(member)
19o = ord(member_id[1])
20return not (o >= 48 and o <= 57)
Note: See TracBrowser for help on using the repository browser.