source: WAeUP_SRP/trunk/skins/waeup_student/get_searchable_student_states.py @ 883

Last change on this file since 883 was 875, checked in by joachim, 18 years ago

special search_form for clearance-officers,
only clearance-states can be searched,
only students for whom the member is ClearanceOfficer? will be shown.

  • Property svn:keywords set to Id
File size: 672 bytes
Line 
1## Script (Python) "get_searchable_review_states"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=key=None
8##title=
9##
10# $Id: get_searchable_student_states.py 875 2006-11-16 14:21:44Z joachim $
11"""
12return the searchable student_states depending on context
13"""
14wftool = context.portal_workflow
15mtool = context.portal_membership
16member = mtool.getAuthenticatedMember()
17roles = member.getRolesInContext(context)
18voc = context.portal_vocabularies.searchable_student_states
19
20if key is not None:
21    return voc.get(key)
22if "ClearanceOfficers" in member.getGroups():
23    return [item for item in voc.items() if item[0].startswith('clear')]
24return voc.items()
25
26
Note: See TracBrowser for help on using the repository browser.