You are here

function views_pdf_views_plugins in Views PDF 6

Same name and namespace in other branches
  1. 8 views_pdf.views.inc \views_pdf_views_plugins()
  2. 7.3 views_pdf.views.inc \views_pdf_views_plugins()
  3. 7 views_pdf.views.inc \views_pdf_views_plugins()
  4. 7.2 views_pdf.views.inc \views_pdf_views_plugins()

Implementation of hook_views_plugins().

File

./views_pdf.views.inc, line 63
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',
        'parent' => 'page',
        // so it knows to load the page plugin .inc file
        'uses hook menu' => TRUE,
        'use ajax' => FALSE,
        'use pager' => FALSE,
        'use_more' => FALSE,
        'accept attachments' => FALSE,
        'path' => $path,
        'admin' => t('PDF Page'),
      ),
    ),
    'style' => array(
      'pdf_table' => array(
        'title' => t('PDF Table'),
        'help' => t('Display the view as a table.'),
        'path' => $path,
        'handler' => 'views_pdf_plugin_style_table',
        'parent' => 'default',
        'theme' => 'views_pdf_table',
        'theme file' => 'views_pdf.theme.inc',
        '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.'),
        'path' => $path,
        'handler' => 'views_pdf_plugin_style_unformatted',
        'parent' => 'default',
        'theme' => 'views_pdf_unformatted',
        'theme file' => 'views_pdf.theme.inc',
        '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',
        'theme' => 'views_pdf_fields',
        'uses fields' => TRUE,
        'uses options' => TRUE,
        'type' => 'pdf',
        'help topic' => 'style-row-fields',
      ),
    ),
  );
}