function ccl_local_actions_uninstall in Custom Contextual Links 8
Same name and namespace in other branches
- 7 ccl_local_actions/ccl_local_actions.install \ccl_local_actions_uninstall()
Implements hook_uninstall().
Remove links created by this submodule.
File
- ccl_local_actions/
ccl_local_actions.install, line 12 - Provides install, upgrade and un-install functions for ccl_blocks.
Code
function ccl_local_actions_uninstall() {
db_delete('ccl')
->condition('type', 'local_actions')
->execute();
}