[ Index ]

PHP Cross Reference of Drupal 6 (gatewave)

title

Body

[close]

/sites/all/modules/panels/plugins/views/ -> panels.views.inc (source)

   1  <?php
   2  
   3  /**
   4   * Implementation of hook_views_plugins
   5   */
   6  function 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' => NULL,
  15          'uses fields' => TRUE,
  16          'uses options' => TRUE,
  17          'type' => 'normal',
  18          'help topic' => 'style-row-panels-fields',
  19        ),
  20      ),
  21    );
  22  
  23    return $plugins;
  24  }


Generated: Thu Mar 24 11:18:33 2011 Cross-referenced by PHPXref 0.7