public function FieldConfigBase::setDefaultValueCallback

public FieldConfigBase::setDefaultValueCallback($callback)

Sets a custom default value callback.

If set, the callback overrides any set default value.

Parameters

string|null $callback: The callback to invoke for getting the default value (pass NULL to unset a previously set callback). The callback will be invoked with the following arguments:

It should return the default value in the format accepted by the setDefaultValue() method.

Return value

$this

Overrides FieldConfigInterface::setDefaultValueCallback

File

core/lib/Drupal/Core/Field/FieldConfigBase.php, line 434

Class

FieldConfigBase
Base class for configurable field definitions.

Namespace

Drupal\Core\Field

Code

public function setDefaultValueCallback($callback) {
  $this->default_value_callback = $callback;
  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!FieldConfigBase.php/function/FieldConfigBase::setDefaultValueCallback/8.1.x