function data_install in Data 7
Same name and namespace in other branches
- 6 data.install \data_install()
Implements hook_install().
File
- ./
data.install, line 101 - Install hooks for Data module.
Code
function data_install() {
// Refresh the schema to include it.
// This ensures we include all our schema tables once our initial
// installation is done, as data_schema_alter() sidesteps our schema tables
// during installation.
drupal_get_schema(NULL, TRUE);
}