public BaseFieldDefinition::setDefaultValue($value)
public function setDefaultValue($value) { if ($value === NULL) { $value = []; } // Unless the value is an empty array, we may need to transform it. if (!is_array($value) || !empty($value)) { if (!is_array($value)) { $value = array(array($this->getMainPropertyName() => $value)); } elseif (is_array($value) && !is_numeric(array_keys($value) [0])) { $value = array(0 => $value); } } $this->definition['default_value'] = $value; return $this; }
© 2001–2016 by the original authors
Licensed under the GNU General Public License, version 2 and later.
Drupal is a registered trademark of Dries Buytaert.
https://api.drupal.org/api/drupal/core!lib!Drupal!Core!Field!BaseFieldDefinition.php/function/BaseFieldDefinition::setDefaultValue/8.1.x