qtip.install in qTip (Stylish jQuery Tooltips) 6.2
Same filename and directory in other branches
Install, update and uninstall functions for the qtip module.
File
qtip.installView 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
Name | Description |
---|---|
qtip_install | Implementation of hook_install(). |
qtip_uninstall | Implementation of hook_uninstall(). |