source: sipes/modules_contrib/panels/plugins/views/panels.views.inc @ de78188

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

se agrego el modulo panels

  • Propiedad mode establecida a 100644
File size: 739 octetos
Línea 
1<?php
2
3/**
4 * Implementation of hook_views_plugins
5 */
6function panels_views_plugins() {
7  $plugins = array(
8    'row' => array(
9      'panels_fields' => array(
10        'title' => t('Panel fields'),
11        'help' => t('Displays the fields in a panel rather than using a template.'),
12        'handler' => 'panels_views_plugin_row_fields',
13        'path' => drupal_get_path('module', 'panels') . '/plugins/views',
14        'theme' => 'views_view_fields',
15        'theme path' => drupal_get_path('module', 'views') . '/theme',
16        'uses fields' => TRUE,
17        'uses options' => TRUE,
18        'type' => 'normal',
19        'help topic' => 'style-row-panels-fields',
20        'parent' => 'fields',
21      ),
22    ),
23  );
24
25  return $plugins;
26}
Nota: Vea TracBrowser para ayuda de uso del navegador del repositorio.