You are here

function biblio_views_plugins in Bibliography Module 6.2

Same name and namespace in other branches
  1. 6 biblio.views.inc \biblio_views_plugins()

@file Functions for views integration for Drupal biblio module.

File

views/biblio.views.inc, line 7
Functions for views integration for Drupal biblio module.

Code

function biblio_views_plugins() {

  // Not ready for prime time!!!
  //  return array(
  //    'display' => array(
  //      'biblio' => array(
  //        'title' => t('Biblio Page'),
  //        'help' => t(''),
  //        'handler' => 'views_plugin_display_page_biblio',
  //        'path' => drupal_get_path('module', 'biblio') . '/views', // not necessary for most modules

  ////        'theme' => 'views_view_row_node',

  //        'base' => array('node'), // only works with 'node' as base.
  //        'uses options' => TRUE,
  //        'type' => 'normal',
  //        ),
  //      ),
  //    'style' => array(
  //      // ... list of style plugins,
  //      ),
  //    'row' => array(
  //      // ... list of row style plugins,
  //      ),
  //    'argument default' => array(
  //      // ... list of argument default plugins,
  //      ),
  //    'argument validator' => array(
  //      // ... list of argument validator plugins,
  //      ),
  //    'access' => array(
  //      // ... list of access plugins,
  //      ),
  //   );
}