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

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

waeup_default/waeup_document_view slimmed down and fixed

  • Property svn:keywords set to Id
File size: 500 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 1219 2007-01-07 08:29:13Z henrik $
11"""
12return Info about the current Student
13"""
14mtool = context.portal_membership
15member = mtool.getAuthenticatedMember()
16if mtool.isAnonymousUser():
17    return None
18if not context.isStudent():
19    return None
20res = context.students_catalog(id = str(member))
21if len(res) != 1:
22    return None
23return res[0].name
Note: See TracBrowser for help on using the repository browser.