You are here

function nd_install in Display Suite 6.3

Implementation of hook_install().

File

modules/nd/nd.install, line 11
Node displays install file.

Code

function nd_install() {
  $install_text = 'Installation of Node displays is done. Please remember: if in the future you decide
  to implement your own hook_preprocess functions which run after the modulename_preprocess_hook,
  you might run into a racing condition problem where data won\'t be updated. Read !url for a solution.';
  drupal_set_message(t($install_text, array(
    '!url' => l('http://drupal.org/node/572614', 'http://drupal.org/node/572614'),
  )));

  // RSS doesn't have all regions.
  variable_set('ds_build_mode_4', 'not_all');
}