You are here

function language_selection_page_uninstall in Language Selection Page 7

Same name and namespace in other branches
  1. 8.2 language_selection_page.install \language_selection_page_uninstall()
  2. 6 language_selection_page.install \language_selection_page_uninstall()
  3. 7.2 language_selection_page.install \language_selection_page_uninstall()

Implements hook_uninstall().

Return value

void

File

./language_selection_page.install, line 77
Module installation code

Code

function language_selection_page_uninstall() {
  variable_del('language_selection_page_redirect_type');
  variable_del('language_selection_page_blacklisted_paths');
  drupal_set_message(t('The Language Selection Page variables and cookie has been removed successfully.'));
}