[7505] | 1 | ## $Id: student.py 16669 2021-10-06 15:52:01Z henrik $ |
---|
| 2 | ## |
---|
| 3 | ## Copyright (C) 2011 Uli Fouquet & Henrik Bettermann |
---|
| 4 | ## This program is free software; you can redistribute it and/or modify |
---|
| 5 | ## it under the terms of the GNU General Public License as published by |
---|
| 6 | ## the Free Software Foundation; either version 2 of the License, or |
---|
| 7 | ## (at your option) any later version. |
---|
| 8 | ## |
---|
| 9 | ## This program is distributed in the hope that it will be useful, |
---|
| 10 | ## but WITHOUT ANY WARRANTY; without even the implied warranty of |
---|
| 11 | ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
---|
| 12 | ## GNU General Public License for more details. |
---|
| 13 | ## |
---|
| 14 | ## You should have received a copy of the GNU General Public License |
---|
| 15 | ## along with this program; if not, write to the Free Software |
---|
| 16 | ## Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA |
---|
| 17 | ## |
---|
| 18 | """ |
---|
| 19 | Container for the various objects owned by students. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
| 22 | from zope.interface import implementedBy |
---|
[7822] | 23 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[8991] | 24 | from waeup.kofa.students.student import StudentFactory |
---|
[8867] | 25 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
[8991] | 26 | from kofacustom.nigeria.students.student import NigeriaStudent |
---|
[13351] | 27 | from waeup.aaue.students.interfaces import ( |
---|
[14298] | 28 | ICustomStudent, ICustomStudentPersonalEdit, |
---|
| 29 | ICustomUGStudentClearanceEdit) |
---|
[7505] | 30 | |
---|
| 31 | |
---|
[8991] | 32 | class CustomStudent(NigeriaStudent): |
---|
[7505] | 33 | """This is a student container for the various objects |
---|
| 34 | owned by students. |
---|
| 35 | """ |
---|
[13351] | 36 | grok.implements(ICustomStudent, IStudentNavigation, |
---|
[14298] | 37 | ICustomStudentPersonalEdit, |
---|
| 38 | ICustomUGStudentClearanceEdit) |
---|
[8204] | 39 | grok.provides(ICustomStudent) |
---|
[7505] | 40 | |
---|
[10295] | 41 | @property |
---|
| 42 | def transcript_enabled(self): |
---|
[10422] | 43 | return True |
---|
[10295] | 44 | |
---|
[16669] | 45 | @property |
---|
| 46 | def studycourse_locked(self): |
---|
| 47 | return super(CustomStudent, self).studycourse_locked |
---|
| 48 | |
---|
[7505] | 49 | # Set all attributes of Student required in IStudent as field |
---|
| 50 | # properties. Doing this, we do not have to set initial attributes |
---|
| 51 | # ourselves and as a bonus we get free validation when an attribute is |
---|
| 52 | # set. |
---|
[8204] | 53 | CustomStudent = attrs_to_fields(CustomStudent) |
---|
[7603] | 54 | |
---|
[8204] | 55 | class CustomStudentFactory(StudentFactory): |
---|
[7603] | 56 | """A factory for students. |
---|
| 57 | """ |
---|
| 58 | |
---|
| 59 | def __call__(self, *args, **kw): |
---|
[8204] | 60 | return CustomStudent() |
---|
[7603] | 61 | |
---|
| 62 | def getInterfaces(self): |
---|
[8204] | 63 | return implementedBy(CustomStudent) |
---|