You are here

caption_filter.install in Caption Filter 7.2

Same filename and directory in other branches
  1. 6 caption_filter.install
  2. 7 caption_filter.install

Update and install functions for FileField Sources.

File

caption_filter.install
View source
<?php

/**
 * @file
 * Update and install functions for FileField Sources.
 */

/**
 * Implementation of hook_install().
 */
function caption_filter_install() {

  // Caption Filter needs to load after Insert module.
  db_query("UPDATE {system} SET weight = 20 WHERE type = 'module' AND name = 'caption_filter'");
}

/**
 * Set the Caption Filter module weight.
 */
function caption_filter_update_7100() {

  // Caption Filter needs to load after Insert module.
  db_query("UPDATE {system} SET weight = 20 WHERE type = 'module' AND name = 'caption_filter'");
}

Functions

Namesort descending Description
caption_filter_install Implementation of hook_install().
caption_filter_update_7100 Set the Caption Filter module weight.