[542] | 1 | ## Script (Python) "academics_index" |
---|
[538] | 2 | ##bind container=container |
---|
| 3 | ##bind context=context |
---|
| 4 | ##bind namespace= |
---|
| 5 | ##bind script=script |
---|
| 6 | ##bind subpath=traverse_subpath |
---|
| 7 | ##parameters=batch=None |
---|
| 8 | ##title= |
---|
| 9 | ## |
---|
| 10 | # $Id: student_edit.py 486 2006-09-06 10:09:39Z joachim $ |
---|
| 11 | """ |
---|
[542] | 12 | return the appropriate page in the academics section |
---|
[538] | 13 | """ |
---|
| 14 | |
---|
| 15 | request = context.REQUEST |
---|
| 16 | redirect = request.RESPONSE.redirect |
---|
[542] | 17 | pm = context.portal_membership |
---|
| 18 | |
---|
| 19 | if pm.isAnonymousUser(): |
---|
| 20 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 21 | |
---|
[538] | 22 | campus = context.portal_catalog(meta_type = "University")[-1].getObject() |
---|
| 23 | member = pm.getAuthenticatedMember() |
---|
| 24 | roles = member.getRoles() |
---|
| 25 | isManager = "Manager" in roles or "SectionManager" in roles |
---|
| 26 | isStudent = "Student" in roles |
---|
[542] | 27 | |
---|
[538] | 28 | if isManager: |
---|
[551] | 29 | if context.portal_type == 'AcademicsFolder': |
---|
| 30 | return context.academics.academics_index_view() |
---|
| 31 | elif context.portal_type == 'Faculty': |
---|
| 32 | return context.faculty_index_view() |
---|
[552] | 33 | elif context.portal_type == 'Department': |
---|
| 34 | return context.department_index_view() |
---|
[556] | 35 | elif context.portal_type == 'CoursesFolder': |
---|
| 36 | return context.courses_index_view() |
---|
| 37 | elif context.portal_type == 'Certificate': |
---|
| 38 | return context.certificate_index_view() |
---|
| 39 | elif context.portal_type == 'StudyLevel': |
---|
| 40 | return context.level_index_view() |
---|
| 41 | elif context.portal_type in ('CertificateCourse','Course'): |
---|
| 42 | return context.academics_document_view() |
---|
[538] | 43 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 44 | if isStudent: |
---|
| 45 | return redirect("%s/academics_contents" % context.absolute_url()) |
---|
| 46 | |
---|