17488 Posts in 4473 Topics by 1978 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 930 Views |
-
Couple of questions

10 June 2008 at 1:38am Last edited: 10 June 2008 1:59am
Hello.
I would like to know if it's possible to hide the "Who can edit this inside the CMS" section from the "Access" tab.
My idea was to hide it from all users except for the Administrators ("full administrative rights" permission).One more thing, is it possible to establish that a group only has access to a especific pagetype in the sitetree? (I think it's almost impossible).
Thank you in advance.
-
Re: Couple of questions

20 June 2008 at 9:06am
for hiding the access tab, you could subclass CMSMain (e.g. with "MyCMSMain"), override getCMSFields and remove the field manually if necessary. to have your subclass of CMSMain used instead, you have to add the following director rule to your _config.php
Director::addRules(100, array(
'admin/security/$Action/$ID/$OtherID' => 'SecurityAdmin',
'admin/assets/$Action/$ID' => 'AssetAdmin',
'admin/comments/$Action' => 'CommentAdmin',
'admin/ImageEditor/$Action' => 'ImageEditor',
'admin/$Action/$ID/$OtherID' => 'MyCMSMain',
));i don't think you can easily filter the sitetree by pagetypes based on permissions.
| 930 Views | ||
|
Page:
1
|
Go to Top |


