You are here

function acb_install in Access Control Bridge 7

Same name and namespace in other branches
  1. 8 acb.install \acb_install()

Implements hook_install().

File

./acb.install, line 31
Installation file containing install hooks.

Code

function acb_install() {

  // Set module weight to ensure its hooks are called last.
  db_update('system')
    ->fields(array(
    'weight' => 500,
  ))
    ->condition('name', 'acb')
    ->execute();
}