1 # -*- coding: utf-8 -*-
2 #######################################################################################
3 # Copyright © 2009 Benoît Pin <pin@cri.ensmp.fr> #
4 # Plinn - http://plinn.org #
7 # This program is free software; you can redistribute it and/or #
8 # modify it under the terms of the GNU General Public License #
9 # as published by the Free Software Foundation; either version 2 #
10 # of the License, or (at your option) any later version. #
12 # This program is distributed in the hope that it will be useful, #
13 # but WITHOUT ANY WARRANTY; without even the implied warranty of #
14 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the #
15 # GNU General Public License for more details. #
17 # You should have received a copy of the GNU General Public License #
18 # along with this program; if not, write to the Free Software #
19 # Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA. #
20 #######################################################################################
22 photoprint specific permissions
28 from AccessControl
import ModuleSecurityInfo
29 from Products
.CMFCore
.permissions
import setDefaultRoles
31 security
= ModuleSecurityInfo('Products.photoprint.permissions')
33 ManagePrintOrderTemplate
= "Manage print order template"
34 security
.declarePublic('ManagePrintOrderTemplate')
35 setDefaultRoles(ManagePrintOrderTemplate
, ('Manager',))
37 AddPrintOrder
= "Add print order"
38 security
.declarePublic('AddPrintOrder')
39 setDefaultRoles(AddPrintOrder
, ('Authenticated', 'Manager',))
41 ListPrintOrders
= "List print orders"
42 security
.declarePublic('ListPrintOrders')
43 setDefaultRoles(ListPrintOrders
, ('Manager',))
45 ManagePrintOrders
= "Manage print orders"
46 security
.declarePublic('ManagePrintOrders')
47 setDefaultRoles(ManagePrintOrders
, ('Manager',))