function views_pdf_views_plugins in Views PDF 7.3
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 views_pdf.views.inc \views_pdf_views_plugins()
- 7.2 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' => TRUE,
'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 an unformatted way.'),
'handler' => 'views_pdf_plugin_style_unformatted',
'parent' => 'default',
'uses row plugin' => TRUE,
'uses fields' => TRUE,
// No options, not even grouping. Set to TRUE if grouping implemented.
'uses options' => FALSE,
'type' => 'pdf',
),
'pdf_grid' => array(
'title' => t('PDF Unformatted Grid'),
'help' => t('Display the view unformatted in a grid layout.'),
'handler' => 'views_pdf_plugin_style_grid',
'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 configurable co-ordinates.'),
'handler' => 'views_pdf_plugin_row_fields',
'uses fields' => TRUE,
'uses options' => TRUE,
'type' => 'pdf',
'help topic' => 'style-row-fields',
),
),
);
}