Last change
on this file since 1095 was
1077,
checked in by joachim, 18 years ago
|
files for custom
|
-
Property svn:keywords set to
Id
|
File size:
628 bytes
|
Rev | Line | |
---|
[1071] | 1 | ## Script (Python) "getStudentInfo" |
---|
| 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 1077 2006-12-18 19:44:57Z joachim $ |
---|
| 11 | """ |
---|
| 12 | return Info about the current Student |
---|
| 13 | """ |
---|
| 14 | mtool = context.portal_membership |
---|
| 15 | member = mtool.getAuthenticatedMember() |
---|
| 16 | if mtool.isAnonymousUser(): |
---|
| 17 | return None |
---|
| 18 | info = {} |
---|
| 19 | #from Products.zdb import set_trace |
---|
| 20 | #set_trace() |
---|
[1077] | 21 | if context.isStaff(): |
---|
| 22 | return member.getProperty('fullname',None) |
---|
| 23 | if not context.isStudent(): |
---|
[1071] | 24 | return None |
---|
[1077] | 25 | res = context.students_catalog(id = str(member)) |
---|
[1071] | 26 | if len(res) != 1: |
---|
| 27 | return None |
---|
| 28 | return res[0].name |
---|
Note: See
TracBrowser for help on using the repository browser.