module_test.install in Zircon Profile 8
Same filename and directory in other branches
Install, update and uninstall functions for the module_test module.
File
core/modules/system/tests/modules/module_test/module_test.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the module_test module.
*/
/**
* Implements hook_schema().
*/
function module_test_schema() {
$schema['module_test'] = array(
'description' => 'Dummy table to test the behavior of hook_schema() during module installation.',
'fields' => array(
'data' => array(
'type' => 'varchar',
'length' => 255,
'not null' => TRUE,
'default' => '',
'description' => 'An example data column for the module.',
),
),
);
return $schema;
}
/**
* Implements hook_install().
*/
function module_test_install() {
$schema = drupal_get_module_schema('module_test', 'module_test');
db_insert('module_test')
->fields(array(
'data' => $schema['fields']['data']['type'],
))
->execute();
}
Functions
Name | Description |
---|---|
module_test_install | Implements hook_install(). |
module_test_schema | Implements hook_schema(). |