You are here

css_emimage.install in CSS Embedded Images 6

Same filename and directory in other branches
  1. 6.2 css_emimage.install
  2. 7 css_emimage.install

File

css_emimage.install
View source
<?php

/**
 * Implementation of hook_install().
 */
function css_emimage_install() {

  // Set the module's weight high so that it runs after other modules.
  db_query("UPDATE {system} SET weight = 9999 WHERE name = 'css_emimage' AND type = 'module'");
  cache_clear_all();
}

/**
 * Implementation of hook_uninstall().
 */
function css_emimage_uninstall() {
  variable_del('css_emimage_ielimit');
}

Functions

Namesort descending Description
css_emimage_install Implementation of hook_install().
css_emimage_uninstall Implementation of hook_uninstall().