You are here

function responsive_tables_filter_install in Responsive Tables Filter 7

Implements hook_install().

File

./responsive_tables_filter.install, line 11
Install and update code for responsive_tables_filter.

Code

function responsive_tables_filter_install() {

  // Set the initial value for the schema version so we can run updates after
  // install.
  drupal_set_installed_schema_version('responsive_tables_filter', 7100);
  $value = variable_get('preprocess_css', FALSE) && variable_get('preprocess_js', FALSE);
  variable_set(RESPONSIVE_TABLES_FILTER_EVERY_PAGE, $value);
}