TypedData::applyDefaultValue

public TypedData::applyDefaultValue($notify = TRUE)

Applies the default value.

Parameters

bool $notify: (optional) Whether to notify the parent object of the change. Defaults to TRUE. If a property is updated from a parent object, set it to FALSE to avoid being notified again.

Return value

\Drupal\Core\TypedData\TypedDataInterface Returns itself to allow for chaining.

Overrides TypedDataInterface::applyDefaultValue

File

core/lib/Drupal/Core/TypedData/TypedData.php, line 141

Class

TypedData
The abstract base class for typed data.

Namespace

Drupal\Core\TypedData

Code

public function applyDefaultValue($notify = TRUE) {
  // Default to no default value.
  $this->setValue(NULL, $notify);
  return $this;
}
doc_Drupal
2016-10-29 09:49:59
Comments
Leave a Comment

Please login to continue.