You are here

function nodeformcols_install in Node form columns 7

Implementation of hook_install().

File

./nodeformcols.install, line 11
Install and update hooks

Code

function nodeformcols_install() {

  // We need our hook_theme() to run after node.module's hook_theme().
  db_update('system')
    ->fields(array(
    'weight' => 1,
  ))
    ->condition('name', 'nodeformcols')
    ->condition('type', 'module')
    ->execute();
}