source: sipes/0.3-modules/views_semantic/views/views_semantic.views.inc @ 438bcea

stable
Last change on this file since 438bcea was 89c313a, checked in by Sipes Apn <root@…>, 7 años ago

se agrego el modulo views_semantic

  • Propiedad mode establecida a 100644
File size: 769 octetos
Línea 
1<?php
2
3/**
4 * @file
5 *  Provide the Galleriffic plugin definition.
6 * Implementation of hook_views_plugins().
7 */
8function views_semantic_views_plugins() {
9  $path = drupal_get_path('module', 'views_semantic');
10  return array(
11    'module' => 'views_semantic',
12    'style' => array(
13      'views_semantic' => array(
14        'title' => t('Semantic'),
15        'theme' => 'views_semantic_view',
16        'help' => t('Semantic Report.'),
17        'handler' => 'views_semantic_style_plugin',
18        'path' => $path . '/views',
19        'uses grouping' => FALSE,
20        'uses fields' => TRUE,
21        'uses options' => TRUE,
22        'type' => 'normal',
23        'theme path' => $path . '/views/theme',
24        'theme file' => 'views_semantic.theme.inc',
25      ),
26    ),
27  );
28}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.