You are here

regions_right_slideout.install in Regions 7

Increase priority of right side's alter hook.

File

modules/regions_right_slideout/regions_right_slideout.install
View source
<?php

/**
 * @file
 * Increase priority of right side's alter hook.
 */

/**
 * Implements hook_install().
 */
function regions_right_slideout_install() {

  // change the weight so that alters fire after others
  db_query("UPDATE {system} SET weight = 1 WHERE name = 'regions_right_slideout'");
}

Functions