source: WAeUP_SRP/trunk/skins/waeup_student/getStudentName.py @ 1212

Last change on this file since 1212 was 1162, checked in by Henrik Bettermann, 18 years ago

bugs fixed after testing (please check!)

  • Property svn:keywords set to Id
File size: 559 bytes
Line 
1## Script (Python) "getStudentName"
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: getStudentName.py 1162 2006-12-31 09:39:14Z henrik $
11"""
12return Info about the current Student
13"""
14mtool = context.portal_membership
15member = mtool.getAuthenticatedMember()
16if mtool.isAnonymousUser():
17    return None
18info = {}
19#from Products.zdb import set_trace
20#set_trace()
21if not context.isStudent():
22    return None
23res = context.students_catalog(id = str(member))
24if len(res) != 1:
25    return None
26return res[0].name
Note: See TracBrowser for help on using the repository browser.