public static function FieldDefinitionTest::mockDefaultValueCallback in Drupal 8
Same name and namespace in other branches
- 9 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::mockDefaultValueCallback()
- 10 core/tests/Drupal/Tests/Core/Entity/FieldDefinitionTest.php \Drupal\Tests\Core\Entity\FieldDefinitionTest::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/ FieldDefinitionTest.php, line 336
Class
- FieldDefinitionTest
- Unit test for the FieldDefinition class.
Namespace
Drupal\Tests\Core\EntityCode
public static function mockDefaultValueCallback($entity, $definition) {
return 'a default value';
}