entity_test.install in Zircon Profile 8
Same filename and directory in other branches
Install, update and uninstall functions for the entity_test module.
File
core/modules/system/tests/modules/entity_test/entity_test.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the entity_test module.
*/
use Drupal\system\Tests\Update\DbUpdatesTrait;
/**
* Implements hook_install().
*/
function entity_test_install() {
foreach (entity_test_entity_types() as $entity_type) {
// Auto-create fields for testing.
entity_create('field_storage_config', array(
'entity_type' => $entity_type,
'field_name' => 'field_test_text',
'type' => 'text',
'cardinality' => 1,
))
->save();
entity_create('field_config', array(
'entity_type' => $entity_type,
'field_name' => 'field_test_text',
'bundle' => $entity_type,
'label' => 'Test text-field',
'translatable' => FALSE,
))
->save();
entity_get_form_display($entity_type, $entity_type, 'default')
->setComponent('field_test_text', array(
'type' => 'text_textfield',
))
->save();
}
}
/**
* Implements hook_schema().
*/
function entity_test_schema() {
// Schema for simple entity.
$schema['entity_test_example'] = array(
'description' => 'Stores entity_test items.',
'fields' => array(
'id' => array(
'type' => 'serial',
'not null' => TRUE,
'description' => 'Primary Key: Unique entity-test item ID.',
),
),
'primary key' => array(
'id',
),
);
return $schema;
}
DbUpdatesTrait::includeUpdates('entity_test', 'entity_definition_updates');
DbUpdatesTrait::includeUpdates('entity_test', 'status_report');
Functions
Name | Description |
---|---|
entity_test_install | Implements hook_install(). |
entity_test_schema | Implements hook_schema(). |