function views_pdf_views_plugins in Views PDF 7.2
Same name and namespace in other branches
- 8 views_pdf.views.inc \views_pdf_views_plugins()
- 6 views_pdf.views.inc \views_pdf_views_plugins()
- 7.3 views_pdf.views.inc \views_pdf_views_plugins()
- 7 views_pdf.views.inc \views_pdf_views_plugins()
Implements hook_views_plugins().
File
- ./
views_pdf.views.inc, line 44 - Implementaion of the views hooks.
Code
function views_pdf_views_plugins() {
$path = drupal_get_path('module', 'views_pdf');
$theme_path = $path . '/theme';
return array(
'module' => 'views_pdf',
'display' => array(
'pdf' => array(
'title' => t('PDF Page'),
'help' => t('Outputs the view as a PDF file.'),
'handler' => 'views_pdf_plugin_display',
'uses hook menu' => TRUE,
'use ajax' => FALSE,
'use pager' => FALSE,
'use_more' => FALSE,
'accept attachments' => FALSE,
'admin' => t('PDF Page'),
),
),
'style' => array(
'pdf_table' => array(
'title' => t('PDF Table'),
'help' => t('Display the view as a table.'),
'handler' => 'views_pdf_plugin_style_table',
'parent' => 'default',
'uses row plugin' => FALSE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'pdf',
),
'pdf_unformatted' => array(
'title' => t('PDF unformatted'),
'help' => t('Display the view in a unformatted way.'),
'handler' => 'views_pdf_plugin_style_unformatted',
'parent' => 'default',
'uses row plugin' => TRUE,
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'pdf',
),
),
'row' => array(
'pdf_fields' => array(
'title' => t('PDF Fields'),
'help' => t('Displays the fields with an optional template.'),
'handler' => 'views_pdf_plugin_row_fields',
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'pdf',
'help topic' => 'style-row-fields',
),
),
);
}