You are here

function ccl_actions_uninstall in Custom Contextual Links 7

Same name and namespace in other branches
  1. 8 ccl_actions/ccl_actions.install \ccl_actions_uninstall()

Implements hook_uninstall().

Remove links created by the actions submodule.

File

ccl_actions/ccl_actions.install, line 12
Provides install, upgrade and un-install functions for ccl_actions.

Code

function ccl_actions_uninstall() {
  db_delete('ccl')
    ->condition('type', 'action')
    ->execute();
}