You are here

function npop_install in Node pop-up 7

Implements hook_install().

File

./npop.install, line 19
Contains install and update functions for npop module.

Code

function npop_install() {
  db_update('system')
    ->fields(array(
    'weight' => -1,
  ))
    ->condition('name', 'npop', '=')
    ->execute();
}