views_pdf.module in Views PDF 8
Same filename and directory in other branches
PDF Views allows the creation of PDF's directly from a view. Without the creation of HTML first.
File
views_pdf.moduleView source
<?php
/**
* @file
*
* PDF Views allows the creation of PDF's directly from a view. Without the
* creation of HTML first.
*/
/**
* Implements hook_theme().
*/
function views_pdf_theme() {
// TODO: Review all the themes and find clear user.
return array(
'views_pdf_plugin_style_table' => array(
'render element' => 'form',
'file' => 'views_pdf.admin.inc',
),
'views_pdf_icon' => array(
'render element' => 'form',
'variables' => array(
'url' => NULL,
'title' => NULL,
),
),
);
}
Functions
Name | Description |
---|---|
views_pdf_theme | Implements hook_theme(). |