function module_test_enable
Implements hook_enable().
Archivo
- drupal-7.x/
modules/ simpletest/ tests/ module_test.install, line 38 - Install, update and uninstall functions for the module_test module.
Código
function module_test_enable() {
$record = array('data' => 'Data inserted in hook_enable()');
drupal_write_record('module_test', $record);
}