You are here

video_filter.install in Video Filter 6.3

Same filename and directory in other branches
  1. 5.2 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.
 */

/**
 * Implements 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_6201(&$sandbox) {
  $ret = array();
  db_query("DELETE FROM {variable} WHERE name LIKE 'video_filter_priority_%'");
  return $ret;
}

Functions

Namesort descending Description
video_filter_uninstall Implements hook_uninstall().
video_filter_update_6201 Update function that removes unused variables.