source: sipes/modules_contrib/content_taxonomy/content_taxonomy_tree.install @ 8a8efa8

stableversion-3.0
Last change on this file since 8a8efa8 was 177a560, checked in by José Gregorio Puentes <jpuentes@…>, 8 años ago

se agrego el directorio de modulos contribuidos de drupal

  • Propiedad mode establecida a 100755
File size: 928 octetos
Línea 
1<?php
2// $Id: content_taxonomy_tree.install,v 1.1.2.2 2008/12/17 21:31:07 mh86 Exp $
3
4
5/**
6 * Implementation of hook_install().
7 */
8function content_taxonomy_tree_install() {
9  drupal_load('module', 'content');
10  content_notify('install', 'content_taxonomy_tree');
11}
12
13/**
14 * Implementation of hook_uninstall().
15 */
16function content_taxonomy_tree_uninstall() {
17  drupal_load('module', 'content');
18  content_notify('uninstall', 'content_taxonomy_tree');
19}
20
21/**
22 * Implementation of hook_enable().
23 *
24 * Notify content module when this module is enabled.
25 */
26function content_taxonomy_tree_enable() {
27  drupal_load('module', 'content');
28  content_notify('enable', 'content_taxonomy_tree');
29}
30
31/**
32 * Implementation of hook_disable().
33 *
34 * Notify content module when this module is disabled.
35 */
36function content_taxonomy_tree_disable() {
37  drupal_load('module', 'content');
38  content_notify('disable', 'content_taxonomy_tree');
39}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.