Last change
on this file since 17948 was
5161,
checked in by Henrik Bettermann, 15 years ago
|
remove some unused lines
|
-
Property svn:keywords set to
Id
|
File size:
511 bytes
|
Rev | Line | |
---|
[1161] | 1 | ## Script (Python) "getStudentReviewState" |
---|
[1067] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
[1700] | 7 | ##parameters=student_id=None |
---|
[1067] | 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: getStudentReviewState.py 5161 2010-04-20 14:44:54Z henrik $ |
---|
| 11 | """ |
---|
[1490] | 12 | return the review_state of the Student |
---|
[1067] | 13 | """ |
---|
[1415] | 14 | try: |
---|
[1870] | 15 | from Products.zdb import set_trace |
---|
[1415] | 16 | except: |
---|
[1870] | 17 | def set_trace(): |
---|
| 18 | pass |
---|
[1700] | 19 | if student_id is None: |
---|
| 20 | student_id = context.getStudentId() |
---|
[1870] | 21 | res = context.students_catalog(id = student_id) |
---|
[1490] | 22 | if not res: |
---|
[1067] | 23 | return None |
---|
[1490] | 24 | return res[0].review_state |
---|
Note: See
TracBrowser for help on using the repository browser.