function route_planner_enable in Route Planner 7
Same name and namespace in other branches
- 8 route_planner.install \route_planner_enable()
- 6 route_planner.install \route_planner_enable()
Implements hook_enable().
File
- ./
route_planner.install, line 10 - Provides install, upgrade and un-install functions for route_planner.
Code
function route_planner_enable() {
drupal_set_message(t('To use the Route planner, !addurl and !configureurl the blocks', array(
'!addurl' => l(t('add'), 'admin/structure/block'),
'!configureurl' => l(t('configure'), 'admin/structure/block/manage/route_planner/route_target/configure'),
)));
}