You are here

function css_emimage_install in CSS Embedded Images 6.2

Same name and namespace in other branches
  1. 6 css_emimage.install \css_emimage_install()

Implementation of hook_install().

File

./css_emimage.install, line 11
Install, update, and uninstall functions for the css_emimage module.

Code

function css_emimage_install() {
  drupal_install_schema('css_emimage');

  // 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();
}