You are here

function views_pdf_theme in Views PDF 7.2

Same name and namespace in other branches
  1. 8 views_pdf.module \views_pdf_theme()
  2. 6 views_pdf.module \views_pdf_theme()
  3. 7.3 views_pdf.module \views_pdf_theme()
  4. 7 views_pdf.module \views_pdf_theme()

Implements hook_theme().

File

./views_pdf.module, line 20
PDF Views allows the creation of PDF's directly from a view. Without the creation of HTML first.

Code

function views_pdf_theme() {
  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,
      ),
    ),
  );
}