ccl_views.install in Custom Contextual Links 8
Same filename and directory in other branches
Provides install, upgrade and un-install functions for ccl_views.
File
ccl_views/ccl_views.installView source
<?php
/**
* @file
* Provides install, upgrade and un-install functions for ccl_views.
*/
/**
* Implements hook_uninstall().
*
* Remove links created by the views submodule.
*/
function ccl_views_uninstall() {
db_delete('ccl')
->condition('type', 'view')
->execute();
}
Functions
Name | Description |
---|---|
ccl_views_uninstall | Implements hook_uninstall(). |