function nd_install in Node displays 6
Same name and namespace in other branches
- 6.3 nd.install \nd_install()
- 6.2 nd.install \nd_install()
- 7 nd.install \nd_install()
Implementation of 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 !url for a solution.';
drupal_set_message(t($install_text, array(
'!url' => l('http://drupal.org/node/572614', 'http://drupal.org/node/572614'),
)));
}