This repository has been archived on 2025-06-21. You can view files and clone it, but you cannot make any changes to it's state, such as pushing and creating new issues, pull requests or comments.
suitedesk/modules/content_taxonomy/content_taxonomy_tree.install

39 lines
928 B
Text

<?php
// $Id: content_taxonomy_tree.install,v 1.1.2.2 2008/12/17 21:31:07 mh86 Exp $
/**
* Implementation of hook_install().
*/
function content_taxonomy_tree_install() {
drupal_load('module', 'content');
content_notify('install', 'content_taxonomy_tree');
}
/**
* Implementation of hook_uninstall().
*/
function content_taxonomy_tree_uninstall() {
drupal_load('module', 'content');
content_notify('uninstall', 'content_taxonomy_tree');
}
/**
* Implementation of hook_enable().
*
* Notify content module when this module is enabled.
*/
function content_taxonomy_tree_enable() {
drupal_load('module', 'content');
content_notify('enable', 'content_taxonomy_tree');
}
/**
* Implementation of hook_disable().
*
* Notify content module when this module is disabled.
*/
function content_taxonomy_tree_disable() {
drupal_load('module', 'content');
content_notify('disable', 'content_taxonomy_tree');
}