You are here

function views_pdf_theme in Views PDF 6

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

Implementation of hook_theme()

File

./views_pdf.module, line 22
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(
      'arguments' => array(
        'form' => NULL,
      ),
      'file' => 'views_pdf.admin.inc',
    ),
    'views_pdf_icon' => array(
      'arguments' => array(
        'url' => NULL,
        'title' => NULL,
      ),
    ),
  );
}