function module_test_install

Same name and namespace in other branches
  1. 11.x core/modules/system/tests/modules/module_test/module_test.install \module_test_install()
  2. 10 core/modules/system/tests/modules/module_test/module_test.install \module_test_install()
  3. 9 core/modules/system/tests/modules/module_test/module_test.install \module_test_install()
  4. 8.9.x core/modules/system/tests/modules/module_test/module_test.install \module_test_install()

Implements hook_install().

File

modules/simpletest/tests/module_test.install, line 30

Code

function module_test_install() {
  $record = array(
    'data' => 'Data inserted in hook_install()',
  );
  drupal_write_record('module_test', $record);
}

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