[8862] | 1 | ## $Id: payments.py 8863 2012-07-01 12:31:04Z 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 | Student payment components. |
---|
| 20 | """ |
---|
| 21 | import grok |
---|
| 22 | from zope.component.interfaces import IFactory |
---|
| 23 | from zope.interface import implementedBy |
---|
| 24 | from waeup.kofa.students.interfaces import IStudentNavigation |
---|
| 25 | from waeup.kofa.students.payments import ( |
---|
| 26 | StudentOnlinePayment, StudentOnlinePaymentFactory) |
---|
| 27 | from waeup.kofa.utils.helpers import attrs_to_fields |
---|
[8863] | 28 | from kofacustom.nigeria.students.interfaces import INigeriaStudentOnlinePayment |
---|
[8862] | 29 | |
---|
[8863] | 30 | class NigeriaStudentOnlinePayment(StudentOnlinePayment): |
---|
[8862] | 31 | """This is a custom online payment for students. |
---|
| 32 | |
---|
| 33 | Since this class inherits from StudentOnlinePayment, it automatically |
---|
| 34 | implements the interfaces of the parent class which means |
---|
| 35 | all viewlets and views meant for StudentOnlinePayment |
---|
| 36 | can also be accessed in the customized system. |
---|
| 37 | """ |
---|
[8863] | 38 | grok.implements(INigeriaStudentOnlinePayment, IStudentNavigation) |
---|
| 39 | grok.provides(INigeriaStudentOnlinePayment) |
---|
[8862] | 40 | |
---|
| 41 | def __init__(self): |
---|
[8863] | 42 | super(NigeriaStudentOnlinePayment, self).__init__() |
---|
[8862] | 43 | return |
---|
| 44 | |
---|
| 45 | @property |
---|
| 46 | def student(self): |
---|
| 47 | return self.__parent__.__parent__ |
---|
| 48 | |
---|
[8863] | 49 | NigeriaStudentOnlinePayment = attrs_to_fields(NigeriaStudentOnlinePayment) |
---|
[8862] | 50 | |
---|
[8863] | 51 | class NigeriaStudentOnlinePaymentFactory(StudentOnlinePaymentFactory): |
---|
[8862] | 52 | """A factory for student online payments. |
---|
| 53 | """ |
---|
| 54 | |
---|
| 55 | def __call__(self, *args, **kw): |
---|
[8863] | 56 | return NigeriaStudentOnlinePayment() |
---|
[8862] | 57 | |
---|
| 58 | def getInterfaces(self): |
---|
[8863] | 59 | return implementedBy(NigeriaStudentOnlinePayment) |
---|