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

36 lines
847 B
Text

<?php
/**
* 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');
}