You are here

uniform.install in Uniform 7.2

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

Install, update and uninstall functions for the Uniform module.

File

uniform.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the Uniform module.
 */
function uniform_install() {
  variable_set('uniform_theme', 'default');
  drupal_set_message($message = 'Uniform is now enabled, now go to the <a href="/admin/config/user-interface/uniform">Uniform settings page</a> and configure which form elements get themed.', $type = 'status');
}
function uniform_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'uniform_%'");
}

Functions

Namesort descending Description
uniform_install @file Install, update and uninstall functions for the Uniform module.
uniform_uninstall