You are here

function route_planner_uninstall in Route Planner 6

Same name and namespace in other branches
  1. 7 route_planner.install \route_planner_uninstall()

Implements hook_uninstall().

File

./route_planner.install, line 20
Provides install, upgrade and un-install functions for route_planner.

Code

function route_planner_uninstall() {

  // Delete Route Planner variables.
  variable_del('route_planner_address');
  variable_del('route_planner_map_height');
  variable_del('route_planner_map_width');
  variable_del('route_planner_map_zoom');
}