source: WAeUP_SRP/trunk/skins/waeup_utilities/getFromData_entry_mode.py @ 1378

Last change on this file since 1378 was 1334, checked in by Henrik Bettermann, 18 years ago

fixes moved to utilities
vacabulary removed

File size: 585 bytes
Line 
1## Script (Python) "get_entry_mode"
2##bind container=container
3##bind context=context
4##bind namespace=
5##bind script=script
6##bind subpath=traverse_subpath
7##parameters=sid
8##title=
9##
10# $Id: getFromData_entry_mode.py 1328 2007-01-19 18:16:32Z joachim $
11"""
12return entry_mode from application-object.
13"""
14students = context.portal_url.getPortalObject().campus.students
15student = getattr(students,sid,None)
16if student is None:
17    return None
18app = getattr(student,'application',None)
19if app is None:
20    return None
21em = app.getContent().entry_mode
22if em:
23    return em
24return "None"
Note: See TracBrowser for help on using the repository browser.