You are here

public function BiblioViewsController::views_data in Bibliography Module 7.3

Override views_data().

Overrides EntityDefaultViewsController::views_data

File

includes/views/biblio.views.inc, line 15
Provides support for the Views module.

Class

BiblioViewsController
"Bilbio" entity Views definition.

Code

public function views_data() {
  $data = parent::views_data();
  $data['biblio']['biblio_render']['field'] = array(
    'title' => 'Render bilbio (Get text)',
    'real field' => 'bid',
    'help' => t('Render the Bilbio as a specific style.'),
    'handler' => 'biblio_handler_field_biblio_render',
  );
  return $data;
}