You are here

function magic_install in Magic 7

Implements hook_install().

File

./magic.install, line 10
Install hooks for the magic module.

Code

function magic_install() {

  // @TODO: Add in support to move Aurora settings automatically.
  db_update('system')
    ->fields(array(
    'weight' => 200,
  ))
    ->condition('name', 'magic', '=')
    ->execute();
}