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.

DataObjectManager Module /

Discuss the DataObjectManager module, and the related ImageGallery module.

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

Remove Actions in my DOM


Go to End


2 Posts   1390 Views

Avatar
Dr0gaz

Community Member, 37 Posts

7 April 2011 at 2:33am

Hi UncleCheese...

How i' remove actions in my dom... if i'm used this function

updateCMSActions(), getCMSActions()

function getCMSActions(){

$actions = parent::getCMSActions();

$Action = new FormAction(
"doAction",
"Do something different"
);
$actions->push($Action);

return $actions;

i' have problems,

the process is the same for getcmfields?
example removebyname('deleteaction');

Avatar
UncleCheese

Forum Moderator, 4102 Posts

7 April 2011 at 7:25am

You can use $myDOM->setPermissions(array('add',edit'));

Or just an empty array to remove all perms.