You are here

ccl_views.install in Custom Contextual Links 7

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

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

File

ccl_views/ccl_views.install
View 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

Namesort descending Description
ccl_views_uninstall Implements hook_uninstall().