You are here

ccl_actions.install in Custom Contextual Links 7

Same filename and directory in other branches
  1. 8 ccl_actions/ccl_actions.install

Provides install, upgrade and un-install functions for ccl_actions.

File

ccl_actions/ccl_actions.install
View source
<?php

/**
 * @file
 * Provides install, upgrade and un-install functions for ccl_actions.
 */

/**
 * Implements hook_uninstall().
 *
 * Remove links created by the actions submodule.
 */
function ccl_actions_uninstall() {
  db_delete('ccl')
    ->condition('type', 'action')
    ->execute();
}

Functions

Namesort descending Description
ccl_actions_uninstall Implements hook_uninstall().