You are here

video_filter.install in Video Filter 5.2

Same filename and directory in other branches
  1. 6.3 video_filter.install
  2. 6.2 video_filter.install

Install file for video_filter.

File

video_filter.install
View source
<?php

/**
 * @file
 * Install file for video_filter.
 */

/**
 * Implementation of hook_uninstall().
 */
function video_filter_uninstall() {
  db_query("DELETE FROM {variable} WHERE name LIKE 'video_filter%'");
}

/*
 * Update function that removes unused variables.
 */
function video_filter_update_5201(&$sandbox) {
  $ret = array();
  db_query("DELETE FROM {variable} WHERE name LIKE 'video_filter_priority_%'");
  return $ret;
}

Functions