function BaseFieldDefinitionTest::mockDefaultValueCallback

Same name and namespace in other branches
  1. 8.9.x core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php \Drupal\Tests\Core\Entity\BaseFieldDefinitionTest::mockDefaultValueCallback()
  2. 10 core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php \Drupal\Tests\Core\Entity\BaseFieldDefinitionTest::mockDefaultValueCallback()
  3. 11.x core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php \Drupal\Tests\Core\Entity\BaseFieldDefinitionTest::mockDefaultValueCallback()

Provides a Mock base field default value callback.

Parameters

\Drupal\Core\Entity\EntityInterface $entity: Entity interface.

\Drupal\Core\Field\FieldDefinitionInterface $definition: Field definition.

Return value

string Default value.

File

core/tests/Drupal/Tests/Core/Entity/BaseFieldDefinitionTest.php, line 395

Class

BaseFieldDefinitionTest
Unit test for BaseFieldDefinition.

Namespace

Drupal\Tests\Core\Entity

Code

public static function mockDefaultValueCallback($entity, $definition) {
    return 'a default value';
}

Buggy or inaccurate documentation? Please file an issue. Need support? Need help programming? Connect with the Drupal community.