function nd_install in Node displays 7
Same name and namespace in other branches
- 6.3 nd.install \nd_install()
- 6 nd.install \nd_install()
- 6.2 nd.install \nd_install()
Implements hook_install().
File
- ./
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
<a href="http://drupal.org/node/572614">http://drupal.org/node/572614</a> for a solution.';
drupal_set_message(t($install_text));
// RSS doesn't have all regions.
variable_set('ds_build_mode_4', 'not_all');
}