Merge pull request #3822 from muskie9/patch-2

DOCS Update 11_Scaffolding.md to use dataFieldByName
This commit is contained in:
Daniel Hensby 2015-01-23 20:10:26 +00:00
commit 97a1cc3e7a

View File

@ -26,7 +26,7 @@ An example is `DataObject`, SilverStripe will automatically create your CMS inte
public function getCMSFields() {
// parent::getCMSFields() does all the hard work and creates the fields for Title, IsActive and Content.
$fields = parent::getCMSFields();
$fields->fieldByName('IsActive')->setTitle('Is active?');
$fields->dataFieldByName('IsActive')->setTitle('Is active?');
return $fields;
}
@ -225,4 +225,4 @@ Non-textual elements (such as images and their manipulations) can also be used i
## API Documentation
* [api:FormScaffolder]
* [api:DataObject]
* [api:DataObject]