New module 'Content Taxonomy'
This commit is contained in:
parent
881f0335cf
commit
96f6051c34
21 changed files with 3644 additions and 0 deletions
|
@ -0,0 +1,39 @@
|
|||
<?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');
|
||||
}
|
Reference in a new issue