You are here

pagepreview.install in Page Preview 6

Same filename and directory in other branches
  1. 7 pagepreview.install

Install functions for the Page Preview module.

File

pagepreview.install
View source
<?php

/**
 * @file
 * Install functions for the Page Preview module.
 */

/**
 * Implements hook_install().
 *
 * Set module weight to so that pagepreview_init() can run early.
 */
function pagepreview_install() {
  db_query('UPDATE {system} SET weight = -1 WHERE name = "pagepreview"');
}

Functions

Namesort descending Description
pagepreview_install Implements hook_install().