You are here

flatcomments.install in Flatcomments 7.2

Same filename and directory in other branches
  1. 5 flatcomments.install
  2. 6.2 flatcomments.install
  3. 6 flatcomments.install

Install, update and uninstall functions for the flatcomments module.

File

flatcomments.install
View 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

Namesort descending Description
flatcomments_uninstall Implementation of hook_uninstall().