entity-print-views.tpl.php in Entity Print 7
PDF template for printing.
Available variables are:
- $view - The view itself.
- $view_html - The rendered $view html.
1 theme call to entity-print-views.tpl.php
- views_plugin_display_entity_print_views_pdf::execute in modules/
entity_print_views/ includes/ views/ views_plugin_display_entity_print_views_pdf.inc - The display page handler returns a normal view, but it also does a drupal_set_title for the page, and does a views_set_page_view on the view.
File
modules/entity_print_views/templates/entity-print-views.tpl.phpView source
<?php
/**
* @file
* PDF template for printing.
*
* Available variables are:
* - $view - The view itself.
* - $view_html - The rendered $view html.
*/
?>
<html>
<head>
<meta charset="utf-8">
<title>PDF</title>
<?php
print drupal_get_css($entity_print_css);
?>
</head>
<body>
<div class="page">
<?php
print $view_html;
?>
</div>
</body>
</html>