You are here

qtip.install in qTip (Stylish jQuery Tooltips) 6.2

Same filename and directory in other branches
  1. 6 qtip.install
  2. 7.2 qtip.install
  3. 7 qtip.install

Install, update and uninstall functions for the qtip module.

File

qtip.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the qtip module.
 */

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

  // un-comment this once you've implemented the schema

  //drupal_install_schema('qtip');
}

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

Functions

Namesort descending Description
qtip_install Implementation of hook_install().
qtip_uninstall Implementation of hook_uninstall().