source: WAeUP_SRP/trunk/skins/waeup_academics/getFacultiesInfo.py @ 600

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

added new methods isManager and isStudent, which are now used in all
getXXXInfo Scripts,
searchAcademics Form added - search not working yet.

File size: 1007 bytes
Line 
1## Script (Python) "cpsdocument_edit"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=student=None
8##title=
9##
10# $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $
11"""
12return Info about the Faculties
13"""
14request = context.REQUEST
15
16wf = context.portal_workflow
17mtool = context.portal_membership
18member = mtool.getAuthenticatedMember()
19path_info = request.get('PATH_INFO').split('/')
20
21info = {}
22member_id = str(member)
23roles = member.getRoles()
24info['is_manager'] = context.isManager()
25info['is_student'] = context.isStudent()
26info['action'] = "%s" % context.campus.absolute_url()
27info['choosen_ids'] = request.get('ids',[])
28items = []
29facs = context.portal_catalog(portal_type='Faculty')
30for f in facs:
31    row = {}
32    fo = f.getObject()
33    fd = fo.getContent()
34    row['id'] = fo.getId()
35    row['title'] = fd.LongTitle()
36    row['url'] = fo.absolute_url()
37    items.append(row)
38info['items'] = items
39return info
Note: See TracBrowser for help on using the repository browser.