function drupal_install_schema in Drupal 6
Same name and namespace in other branches
- 8 core/includes/schema.inc \drupal_install_schema()
- 7 includes/common.inc \drupal_install_schema()
- 9 core/includes/schema.inc \drupal_install_schema()
Create all tables that a module defines in its hook_schema().
Note: This function does not pass the module's schema through hook_schema_alter(). The module's tables will be created exactly as the module defines them.
Parameters
$module: The module for which the tables will be created.
Return value
An array of arrays with the following key/value pairs:
- success: a boolean indicating whether the query succeeded.
- query: the SQL query(s) executed, passed through check_plain().
Related topics
17 calls to drupal_install_schema()
- aggregator_install in modules/
aggregator/ aggregator.install - Implementation of hook_install().
- blogapi_install in modules/
blogapi/ blogapi.install - Implementation of hook_install().
- book_install in modules/
book/ book.install - Implementation of hook_install().
- contact_install in modules/
contact/ contact.install - Implementation of hook_install().
- dblog_install in modules/
dblog/ dblog.install - Implementation of hook_install().
File
- includes/
common.inc, line 3396 - Common functions that many Drupal modules will need to reference.
Code
function drupal_install_schema($module) {
$schema = drupal_get_schema_unprocessed($module);
_drupal_initialize_schema($module, $schema);
$ret = array();
foreach ($schema as $name => $table) {
db_create_table($ret, $name, $table);
}
return $ret;
}