source: WAeUP_SRP/base/skins/waeup_student/getStudentWorkflowInfo.py @ 2535

Last change on this file since 2535 was 1874, checked in by Henrik Bettermann, 17 years ago

ticket #252 and more

  • Property svn:keywords set to Id
File size: 1.1 KB
Line 
1## Script (Python) "getStudentWorkflowInfo"
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: getStudentWorkflowInfo.py 1874 2007-06-08 22:00:05Z henrik $
11"""
12return Info about the current Student
13"""
14mtool = context.portal_membership
15wf = context.portal_workflow
16member = mtool.getAuthenticatedMember()
17member_id = str(member)
18if mtool.isAnonymousUser():
19    return None
20info = {}
21if not context.isStudent():
22    return None
23student_id = member_id
24students_object = context.portal_url.getPortalObject().campus.students
25student = getattr(students_object, student_id)
26info['id'] = student_id
27#info['student'] = student
28info['url'] = student.absolute_url()
29review_state = info['review_state'] = context.getStudentReviewState(student_id)
30info['cr'] = review_state in  ('returning',
31                                           'school_fee_paid',
32                                           'courses_registered',
33                                           'courses_validated',
34                                           )
35info['tr'] = review_state in  ('returning',)
36return info
Note: See TracBrowser for help on using the repository browser.