You are here

lang_dropdown.install in Language Switcher Dropdown 6

Same filename and directory in other branches
  1. 7.2 lang_dropdown.install
  2. 7 lang_dropdown.install

File

lang_dropdown.install
View source
<?php

/**
 * Implements hook_install()
 */
function lang_dropdown_install() {
  drupal_set_message(t("<b>Language switcher dropdown</b> is installed successfully.<br />Please refer to README.txt for help in configuring the module."));
}

/**
 * Implements hook_uninstall()
 */
function lang_dropdown_uninstall() {
  db_query("DELETE FROM {variable} WHERE name = 'lang_dropdown'");
  db_query("DELETE FROM {system} WHERE name = 'lang_dropdown'");
}

Functions