You are here

batch_add_terms.install in Batch add terms 7

File

batch_add_terms.install
View source
<?php

/**
 * Implements hook_install().
 */
function batch_add_terms_install() {
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'batch_add_terms')
    ->execute();
}

Functions

Namesort descending Description
batch_add_terms_install Implements hook_install().