Skip to main content

This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.

We've moved the forum!

Please use forum.silverstripe.org for any new questions (announcement).
The forum archive will stick around, but will be read only.

You can also use our Slack channel or StackOverflow to ask for help.
Check out our community overview for more options to contribute.

Archive /

Our old forums are still available as a read-only archive.

Moderators: martimiz, Sean, Ed, biapar, Willr, Ingo

Hiding tabs in Site Content?


Go to End


2 Posts   1926 Views

Avatar
ciaky

Community Member, 2 Posts

23 September 2008 at 12:52am

Hi everybody,

how can I hide or apply restricted permissions to the tabs on "Site Content" section ?
For example, I would want to disable Meta-data or Behaviour tabs for a group of users.

Thanks

Avatar
ciaky

Community Member, 2 Posts

23 September 2008 at 1:42am

Edited: 23/09/2008 1:42am

It works but I don't know if it is the best solution:

function getCMSFields() {
        $fields = parent::getCMSFields();
	if(Permission::check('USER')) { 
	      $fields->removeByName("Meta-data");
	      $fields->removeByName("Behaviour");
        }
        return $fields;
}