You are here

route_planner.install in Route Planner 8

Same filename and directory in other branches
  1. 6 route_planner.install
  2. 7 route_planner.install

Provides install, upgrade and un-install functions for route_planner.

File

route_planner.install
View source
<?php

/**
 * @file
 * Provides install, upgrade and un-install functions for route_planner.
 */

/**
 * Implements hook_enable().
 */
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'),
  )));
}

Functions

Namesort descending Description
route_planner_enable Implements hook_enable().