You are here

function custom_pub_install in Custom Publishing Options 7

Implements hook_install().

File

./custom_pub.install, line 10
Install and update function for Custom Publishing Options.

Code

function custom_pub_install() {
  db_update('system')
    ->fields(array(
    'weight' => 10,
  ))
    ->condition('name', 'custom_pub')
    ->execute();
}