Parent Directory
|
Revision Log
|
Revision Graph
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 |