function og_vocab_install in OG Vocabulary 6
Same name and namespace in other branches
- 5 og_vocab.install \og_vocab_install()
Implementation of hook_install().
File
- ./
og_vocab.install, line 11 - Install file for the og_vocab module.
Code
function og_vocab_install() {
// Create tables.
drupal_install_schema('og_vocab');
db_query("UPDATE {system} SET weight = %d WHERE name = '%s'", 5, 'og_vocab');
}