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.

General Questions /

General questions about getting started with SilverStripe that don't fit in any of the categories above.

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

getCMSAction and DataObject under SilverStripe 3.0/3.1


Go to End


875 Views

Avatar
hello_world

Community Member, 19 Posts

9 March 2014 at 2:30pm

Edited: 09/03/2014 2:31pm

Hi.
I have tried to define new action in getCMSAction under DataObject.
But it does not working.
My code:

public function getCMSActions() {

	$fields = parent::getCMSActions();
 	$fields->push(new FormAction('doProcess','Process') ); 
 
return $fields;
}

What I doing wrong?

Thank for your help