ccl_actions.install in Custom Contextual Links 7
Same filename and directory in other branches
Provides install, upgrade and un-install functions for ccl_actions.
File
ccl_actions/ccl_actions.installView 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
Name | Description |
---|---|
ccl_actions_uninstall | Implements hook_uninstall(). |