We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Right now:
LeftAndMain
$record->getCMSActions()
CMSMain
GridFieldDetailForm_ItemRequest
ModelAdmin
These should be normalised, so developers can rely on a consistent behaviour for how form actions are produced.
getCMSActions()
The text was updated successfully, but these errors were encountered:
GuySartorelli
No branches or pull requests
Right now:
LeftAndMain
gets actions from$record->getCMSActions()
and only adds 'save' and 'delete' if there are no actions in the result.CMSMain
gets actions from$record->getCMSActions()
and uses it outright, after some normalisation of empty action menusGridFieldDetailForm_ItemRequest
which powersModelAdmin
completely ignores$record->getCMSActions()
, building its own list from scratchThese should be normalised, so developers can rely on a consistent behaviour for how form actions are produced.
Acceptance Criteria
getCMSActions()
method of the recordThe text was updated successfully, but these errors were encountered: