-
-
Notifications
You must be signed in to change notification settings - Fork 1
/
ext_localconf.php
43 lines (39 loc) · 1.36 KB
/
ext_localconf.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
<?php
if (!defined ('TYPO3_MODE')) die ('Access denied.');
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Sjr.' . $_EXTKEY,
'List',
array(
'Offer' => 'index, show, new, create, edit, update, delete, createContact, setContact, updateContact, removeContact',
'Organization' => 'index, show, edit, update, removeOffer, createContact, updateContact, removeContact',
'Person' => 'new, create, edit, update, delete'
),
array(
'Offer' => 'new, edit, createContact',
'Organization' => 'edit, createContact',
'Person' => 'new, edit'
)
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Sjr.' . $_EXTKEY,
'Organizations',
array(
'Offer' => 'index,show,new,create,edit,update,delete,createContact,setContact,updateContact,removeContact',
'Organization' => 'index,show,edit,update,removeOffer,createContact,updateContact,removeContact',
'Person' => 'new,create,edit,update,delete',
),
array(
'Organization' => 'edit,update,removeOffer,createContact,updateContact,removeContact',
'Offer' => 'index,new,create,edit,update,delete,createContact,setContact,updateContact,removeContact',
'Person' => 'new,create,edit,update,delete',
)
);
\TYPO3\CMS\Extbase\Utility\ExtensionUtility::configurePlugin(
'Sjr.' . $_EXTKEY,
'Admin',
array(
'Organization' => 'edit,update,populate,deleteAll',
'Offer' => 'index,show',
)
);
?>