batch_add_terms.install in Batch add terms 7
File
batch_add_terms.installView source
<?php
/**
* Implements hook_install().
*/
function batch_add_terms_install() {
db_update('system')
->fields(array(
'weight' => 1,
))
->condition('name', 'batch_add_terms')
->execute();
}
Functions
Name | Description |
---|---|
batch_add_terms_install | Implements hook_install(). |