block_titlelink.install in Block Title Link 6.2
Same filename and directory in other branches
Installation file for block_titlelink module
File
block_titlelink.installView source
<?php
// $Id$
/**
* @file Installation file for block_titlelink module
**/
/**
* Implementation of hook_uninstall().
* Uses the variables table to store title links.
* This function deletes them.
*/
function block_titlelink_uninstall() {
db_query("DELETE FROM {variable} WHERE name LIKE 'block_titlelink_%'");
cache_clear_all('variables', 'cache');
}
Functions
Name![]() |
Description |
---|---|
block_titlelink_uninstall | Implementation of hook_uninstall(). Uses the variables table to store title links. This function deletes them. |