shortcut_preprocess_page
- Versions
- 7
shortcut_preprocess_page(&$variables)
Implements hook_preprocess_page().
Code
modules/shortcut/shortcut.module, line 614
<?php
function shortcut_preprocess_page(&$variables) {
if (isset($variables['page']['add_or_remove_shortcut'])) {
$variables['add_or_remove_shortcut'] = drupal_render($variables['page']['add_or_remove_shortcut']);
}
}
?>Login or register to post comments 