You are here

function rotor_enable in Rotor Banner 7

Same name and namespace in other branches
  1. 6.2 rotor.install \rotor_enable()

Implementation of hook_enable().

File

./rotor.install, line 24
Provides install and uninstall functions for rotor.

Code

function rotor_enable() {
  module_enable(array(
    'jquery_plugin',
  ));
  module_enable(array(
    'upload_element',
  ));
  db_query("DELETE FROM {cache_views}");
}