mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
MINOR phpDoc for DataObjectDecorator->updateCMSActions()
MINOR Whitespace removal at end of DataObjectDecorator class git-svn-id: svn://svn.silverstripe.com/silverstripe/open/modules/sapphire/branches/2.3@70255 467b73ca-7a2a-4603-9d3b-597d59a354a9
This commit is contained in:
parent
56162a4683
commit
af4637ae61
@ -57,7 +57,6 @@ abstract class DataObjectDecorator extends Extension {
|
||||
return $this->loadExtraStatics();
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Edit the given query object to support queries for this extension
|
||||
*
|
||||
@ -66,7 +65,6 @@ abstract class DataObjectDecorator extends Extension {
|
||||
function augmentSQL(SQLQuery &$query) {
|
||||
}
|
||||
|
||||
|
||||
/**
|
||||
* Update the database schema as required by this extension.
|
||||
*/
|
||||
@ -164,6 +162,12 @@ abstract class DataObjectDecorator extends Extension {
|
||||
function updateFrontEndFields(FieldSet &$fields) {
|
||||
}
|
||||
|
||||
/**
|
||||
* This is used to provide modifications to the form actions
|
||||
* used in the CMS. {@link DataObject->getCMSActions()}.
|
||||
*
|
||||
* @param FieldSet $actions FieldSet
|
||||
*/
|
||||
function updateCMSActions(FieldSet &$actions) {
|
||||
}
|
||||
|
||||
@ -202,5 +206,4 @@ abstract class DataObjectDecorator extends Extension {
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
?>
|
Loading…
Reference in New Issue
Block a user