You are here

views_pdf.module in Views PDF 8

PDF Views allows the creation of PDF's directly from a view. Without the creation of HTML first.

File

views_pdf.module
View 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

Namesort descending Description
views_pdf_theme Implements hook_theme().