Projet

Général

Profil

Paste
Télécharger (793 octets) Statistiques
| Branche: | Révision:

root / drupal7 / sites / all / modules / panels / plugins / views / panels.views.inc @ 64156087

1
<?php
2

    
3
/**
4
 * @file
5
 */
6

    
7
/**
8
 * Implementation of hook_views_plugins.
9
 */
10
function panels_views_plugins() {
11
  $plugins = array(
12
    'row' => array(
13
      'panels_fields' => array(
14
        'title' => t('Panel fields'),
15
        'help' => t('Displays the fields in a panel rather than using a template.'),
16
        'handler' => 'panels_views_plugin_row_fields',
17
        'path' => drupal_get_path('module', 'panels') . '/plugins/views',
18
        'theme' => 'views_view_fields',
19
        'theme path' => drupal_get_path('module', 'views') . '/theme',
20
        'register theme' => FALSE,
21
        'uses fields' => TRUE,
22
        'uses options' => TRUE,
23
        'type' => 'normal',
24
        'help topic' => 'style-row-panels-fields',
25
        'parent' => 'fields',
26
      ),
27
    ),
28
  );
29

    
30
  return $plugins;
31
}