You are here

publish_button.install in Publish button 7

Uninstall task

File

publish_button.install
View source
<?php

/**
 * @file
 * Uninstall task
 */

/**
 * Implements hook_uninstall().
 *
 * Remove all the variables that are used.
 */
function publish_button_uninstall() {
  $variables = db_query("SELECT name FROM {variable} WHERE name LIKE 'publish_button_%'");
  foreach ($variables as $variable_name) {
    variable_del($variable_name->name);
  }
}

Functions

Namesort descending Description
publish_button_uninstall Implements hook_uninstall().