You are here

manage_display.install in Manage display 8

Contains install and update functions.

File

manage_display.install
View source
<?php

/**
 * @file
 * Contains install and update functions.
 */

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

  // Increase module weight so that manage_display_preprocess_node
  // is called after rdf_preprocess_node.
  // @todo Not working reliably?
  module_set_weight('manage_display', 1);
}

Functions

Namesort descending Description
manage_display_install Implements hook_install().