You are here

casetracker_actions.install in Case Tracker 7

Same filename and directory in other branches
  1. 6 casetracker_actions/casetracker_actions.install

Install, update and uninstall functions for the casetracker_actions module. Updates actions on installation/purges orphaned actions on disable.

File

casetracker_actions/casetracker_actions.install
View source
<?php

/**
 * @file
 * Install, update and uninstall functions for the casetracker_actions module.
 * Updates actions on installation/purges orphaned actions on disable.
 *
 */

/**
 * Installs Casetracker actions
 */
function casetracker_actions_install() {
  actions_synchronize(TRUE);
}

/**
 *  Disables Casetracker actions
 */
function casetracker_actions_disable() {
  actions_synchronize(TRUE);
}

Functions

Namesort descending Description
casetracker_actions_disable Disables Casetracker actions
casetracker_actions_install Installs Casetracker actions