views_pdf_handler_page_break.inc in Views PDF 7
Same filename and directory in other branches
The page break plugin for PDF page display.
This plugin is used to add a page break to a PDF display.
File
field_plugins/views_pdf_handler_page_break.incView source
<?php
/**
* @file
* The page break plugin for PDF page display.
*
* This plugin is used to add a page break to a PDF display.
*
*/
/**
* Plugin class that holds the functionality for the
* page break in a PDF display.
*
*/
class views_pdf_handler_page_break extends views_handler_field {
/**
* This method is used to query data. In our case
* we want that no data is queried.
*
*/
function query() {
// Override parent::query() and don't alter query.
$this->field_alias = 'pdf_page_break_' . $this->position;
}
/**
* This method contains the defintion of the options for the page
* break.
*
*/
function option_definition() {
$options = parent::option_definition();
$options['last_row'] = array(
'default' => FALSE,
);
$options['every_nth'] = array(
'default' => 1,
);
return $options;
}
/**
* Option form
*/
function options_form(&$form, &$form_state) {
parent::options_form($form, $form_state);
$form['last_row'] = array(
'#type' => 'checkbox',
'#title' => t('Exclude from last row'),
'#default_value' => $this->options['last_row'],
'#description' => t('Check this box to not add new page on last row.'),
);
$form['every_nth'] = array(
'#type' => 'textfield',
'#title' => t('Insert break after how many rows?'),
'#size' => 10,
'#default_value' => $this->options['every_nth'],
'#element_validate' => array(
'element_validate_integer_positive',
),
'#description' => t('Enter a value greater than 1 if you want to have multiple rows on one page'),
);
}
/**
* This method renders the page break.
*
* Various settings from options form are taken into an account before
* deciding whether to add pagebreak or not.
*/
function render($values) {
// Row index starts from 0 so substract 1 one from result count.
$last_row = $this->view->row_index == count($this->view->result) - 1;
// Calculate if 'every_nth' rule matches for this row.
$add_pagebreak = ($this->view->row_index + 1) % $this->options['every_nth'] == 0;
// Last row setting takes priority over 'every_nth' rule if we're infact
// rendering last row.
if (($this->options['last_row'] == FALSE || !$last_row) && $add_pagebreak) {
return '<br pagebreak="true" />';
}
return '';
}
/**
* We dont want to use advanced rendering.
*/
function allow_advanced_render() {
return FALSE;
}
}
Classes
Name | Description |
---|---|
views_pdf_handler_page_break | Plugin class that holds the functionality for the page break in a PDF display. |