You are here

function skinr_ui_install in Skinr 7.2

Implements hook_install().

File

./skinr_ui.install, line 11
Contains install, update, and uninstall functions for Skinr UI.

Code

function skinr_ui_install() {

  // Skinr UI should go before contextual module.
  db_update('system')
    ->fields(array(
    'weight' => -1,
  ))
    ->condition('name', 'skinr_ui')
    ->execute();
}