/[drupal]/contributions/modules/dompdf/dompdf.views.inc
ViewVC logotype

Contents of /contributions/modules/dompdf/dompdf.views.inc

Parent Directory Parent Directory | Revision Log Revision Log | View Revision Graph Revision Graph


Revision 1.1 - (show annotations) (download) (as text)
Fri Jul 31 17:05:05 2009 UTC (3 months, 3 weeks ago) by mlsamuelson
Branch: MAIN
CVS Tags: HEAD
Branch point for: DRUPAL-6--1
File MIME type: text/x-php
Bringing dompdf HEAD up to date with current working copy in preparation of creating a Drupal 6 branch.
1 <?php
2 // $Id:
3
4 /**
5 * hook_views_plugins()
6 */
7 function dompdf_views_plugins() {
8
9 $path = drupal_get_path('module', 'dompdf');
10 return array(
11 'style' => array(
12 'dompdf' => array(
13 'title' => t('PDF'),
14 'help' => t('Display the view as a PDF.'),
15 'path' => $path,
16 'handler' => 'dompdf_plugin_style_export_pdf',
17 'parent' => 'views_bonus_export',
18 'theme' => 'dompdf_pdf',
19 'theme file' => 'dompdf.theme.inc',
20 'uses row plugin' => FALSE,
21 'uses fields' => TRUE,
22 'uses options' => TRUE,
23 'type' => 'feed',
24 ),
25 ),
26 );
27
28 }
29
30
31
32
33

  ViewVC Help
Powered by ViewVC 1.1.2