flatcomments.install in Flatcomments 7.2
Same filename and directory in other branches
Install, update and uninstall functions for the flatcomments module.
File
flatcomments.installView source
<?php
/**
* @file
* Install, update and uninstall functions for the flatcomments module.
*/
/**
* Implementation of hook_uninstall().
*/
function flatcomments_uninstall() {
// Delete settings from varible table.
db_delete('variable')
->condition('name', 'flatcomments_%', 'LIKE')
->execute();
}
Functions
Name | Description |
---|---|
flatcomments_uninstall | Implementation of hook_uninstall(). |