content_taxonomy_tree.install in Content Taxonomy 6
Same filename and directory in other branches
File
content_taxonomy_tree.installView source
<?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');
}Functions
| Name   | Description | 
|---|---|
| content_taxonomy_tree_disable | Implementation of hook_disable(). | 
| content_taxonomy_tree_enable | Implementation of hook_enable(). | 
| content_taxonomy_tree_install | Implementation of hook_install(). | 
| content_taxonomy_tree_uninstall | Implementation of hook_uninstall(). | 
