* @copyright Copyright (c) 2012 University of Maine * @license http://www.opensource.org/licenses/mit-license.php MIT License */ namespace DOMPDFModule\View\Model; use Zend\View\Model\ViewModel; class PdfModel extends ViewModel { /** * Renderer options * @var array */ protected $options = array( 'paperSize' => '8x11', 'paperOrientation' => 'portrait', 'basePath' => '/', 'fileName' => null ); /** * PDF probably won't need to be captured into a * a parent container by default. * * @var string */ protected $captureTo = null; /** * PDF is usually terminal * * @var bool */ protected $terminate = true; }