source: sipes/modules_contrib/views_or/views_or.install @ 6e81fb4

stableversion-3.0
Last change on this file since 6e81fb4 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 100644
File size: 540 octetos
Línea 
1<?php
2
3/**
4 * @file
5 *
6 */
7
8/**
9 * Implementation of hook_uninstall().
10 *
11 * This is just a placeholder to allow Drupal to uninstall the module.
12 */
13function views_or_uninstall() {
14}
15
16/**
17 * Implementation of hook_update_N().
18 *
19 * Let Views know about our updated handlers.
20 */
21function views_or_update_6200() {
22  views_invalidate_cache();
23  return array();
24}
25
26/**
27 * Implementation of hook_update_N().
28 *
29 * Let Views know about new argument handlers.
30 */
31function views_or_update_6201() {
32  views_invalidate_cache();
33  return array();
34}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.