mirror of
https://github.com/silverstripe/silverstripe-framework
synced 2024-10-22 14:05:37 +02:00
Merge pull request #4004 from jeffreyguo/patch-4
DOCS Update Dynamic_Default_Fields.md
This commit is contained in:
commit
c996ab69e7
@ -1,8 +1,8 @@
|
||||
# Dynamic Default Values
|
||||
|
||||
The [api:DataObject::$defaults] array allows you to specify simple static values to be the default value for when a
|
||||
record is created, but in many situations default values needs to be dynamically calculated. In order to do this, the
|
||||
`[api:DataObject->populateDefaults()]` method will need to be overloaded.
|
||||
The [api:DataObject::$defaults] array allows you to specify simple static values to be the default values when a
|
||||
record is created, but in many situations default values need to be dynamically calculated. In order to do this, the
|
||||
[api:DataObject->populateDefaults()] method will need to be overloaded.
|
||||
|
||||
This method is called whenever a new record is instantiated, and you must be sure to call the method on the parent
|
||||
object!
|
||||
@ -33,4 +33,4 @@ methods. For example:
|
||||
$this->FullTitle = $this->Title;
|
||||
}
|
||||
parent::populateDefaults();
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user