7921 Posts in 1359 Topics by 933 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Remove Actions in my DOM
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 506 Views |
-
Remove Actions in my DOM

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'); -
Re: Remove Actions in my DOM

7 April 2011 at 7:25am
You can use $myDOM->setPermissions(array('add',edit'));
Or just an empty array to remove all perms.
| 506 Views | ||
|
Page:
1
|
Go to Top |

