Home
last modified time | relevance | path

Searched +full:orientation +(+path:plugin +path:dw2pdf) -(+path:plugin +path:dw2pdf +path:lang) (Results 1 – 18 of 18) sorted by relevance

/plugin/dw2pdf/syntax/
H A Dpagesetting.php8 * For marking changes in page orientation.
82 $orientation = strtolower(substr($data[0], 6, -2));
83 $renderer->doc .= "<div class='dw2pdf-$orientation'></div>" . DOKU_LF;
H A Dexportlink.php6 * For marking changes in page orientation.
/plugin/dw2pdf/
H A DDokuPDF.class.php23 * @param string $orientation
29 public function __construct($pagesize = 'A4', $orientation = 'portrait', $fontsize = 11, $docLang = 'en') argument
40 if ($orientation == 'landscape') {
H A Daction.php326 . $this->getExportConfig('orientation')
436 $this->getExportConfig('orientation'),
968 $this->exportConfig['orientation'] = $INPUT->str('orientation', $this->getConf('orientation'), true);
/plugin/dw2pdf/vendor/setasign/fpdi/src/
H A DFpdfTplTrait.php46 * @param string $orientation "L" for landscape, "P" for portrait.
49 public function setPageFormat($size, $orientation) argument
55 if (!\in_array($orientation, ['P', 'L'], true)) {
57 'Invalid page orientation "%s"! Only "P" and "L" are allowed!',
58 $orientation
64 if ($orientation != $this->CurOrientation
68 // New size or orientation
69 if ($orientation === 'P') {
79 $this->CurOrientation = $orientation;
123 $this->setPageFormat($newSize, $newSize['orientation']);
324 AddPage($orientation = '', $size = '', $rotation = 0) global() argument
[all...]
H A DFpdiTrait.php422 $this->setPageFormat($newSize, $newSize['orientation']);
449 * @return array|bool An array with following keys: width, height, 0 (=width), 1 (=height), orientation (L or P)
476 'orientation' => $width > $height ? 'L' : 'P'
H A DFpdi.php79 * @return array|bool An array with following keys: width, height, 0 (=width), 1 (=height), orientation (L or P)
/plugin/dw2pdf/vendor/mpdf/mpdf/src/Tag/
H A DFormFeed.php85 if (isset($attr['ORIENTATION']) && (strtoupper($attr['ORIENTATION']) === 'L' || strtoupper($attr['ORIENTATION']) === 'LANDSCAPE')) {
87 } elseif (isset($attr['ORIENTATION']) && (strtoupper($attr['ORIENTATION']) === 'P' || strtoupper($attr['ORIENTATION']) === 'PORTRAIT')) {
115 } // Any change in headers/footers (may need to _getHtmlHeight), or page size/orientation, @page selector, or margins - force cloneall
H A DImg.php293 } elseif (isset($properties['IMAGE-ORIENTATION'])) {
294 $image_orientation = $properties['IMAGE-ORIENTATION'];
/plugin/dw2pdf/conf/
H A Ddefault.php4 $conf['orientation'] = 'portrait';
H A Dmetadata.php4 $meta['orientation'] = array('multichoice', '_choices' => array('portrait', 'landscape'));
/plugin/dw2pdf/vendor/mpdf/mpdf/src/
H A DFpdiTrait.php49 protected function setPageFormat($format, $orientation)
52 $orientation = 'P';
53 $this->_setPageSize([$format['width'], $format['height']], $orientation);
55 if ($orientation != $this->DefOrientation) {
64 $this->CurOrientation = $orientation;
281 * @return array|bool An array with following keys: width, height, 0 (=width), 1 (=height), orientation (L or P)
46 setPageFormat($format, $orientation) global() argument
H A DTableOfContents.php123 $orientation = '',
621 if (isset($attr['TOC-ORIENTATION']) && $attr['TOC-ORIENTATION']) {
622 $toc_orientation = $attr['TOC-ORIENTATION'];
657 if (isset($attr['TOC-ORIENTATION']) && $attr['TOC-ORIENTATION']) {
658 $this->m_TOC[$toc_id]['TOCorientation'] = $attr['TOC-ORIENTATION'];
769 if (isset($attr['TOC-ORIENTATION']) && $attr['TOC-ORIENTATION']) {
770 $this->TOCorientation = $attr['TOC-ORIENTATION'];
96 TOCpagebreak($tocfont = '', $tocfontsize = '', $tocindent = '', $TOCusePaging = true, $TOCuseLinking = '', $toc_orientation = '', $toc_mgl = '', $toc_mgr = '', $toc_mgt = '', $toc_mgb = '', $toc_mgh = '', $toc_mgf = '', $toc_ohname = '', $toc_ehname = '', $toc_ofname = '', $toc_efname = '', $toc_ohvalue = 0, $toc_ehvalue = 0, $toc_ofvalue = 0, $toc_efvalue = 0, $toc_preHTML = '', $toc_postHTML = '', $toc_bookmarkText = '', $resetpagenum = '', $pagenumstyle = '', $suppress = '', $orientation = '', $mgl = '', $mgr = '', $mgt = '', $mgb = '', $mgh = '', $mgf = '', $ohname = '', $ehname = '', $ofname = '', $efname = '', $ohvalue = 0, $ehvalue = 0, $ofvalue = 0, $efvalue = 0, $toc_id = 0, $pagesel = '', $toc_pagesel = '', $sheetsize = '', $toc_sheetsize = '', $tocoutdent = '', $toc_resetpagenum = '', $toc_pagenumstyle = '', $toc_suppress = '') global() argument
[all...]
H A DMpdf.php407 var $pageDim; // Keep track of page wxh for orientation changes - set in _beginpage, used in _putannots
752 var $DefOrientation; // default orientation
753 var $CurOrientation; // current orientation
754 var $OrientationChanges; // array indicating orientation changes
1047 $orientation
1281 $this->_setPageSize($format, $orientation);
1282 $this->DefOrientation = $orientation;
1608 'orientation' => 'P',
1632 function _setPageSize($format, &$orientation)
1643 $orientation
1621 _setPageSize($format, & $orientation) global() argument
2887 AddPage($orientation = '', $condition = '', $resetpagenum = '', $pagenumstyle = '', $suppress = '', $mgl = '', $mgr = '', $mgt = '', $mgb = '', $mgh = '', $mgf = '', $ohname = '', $ehname = '', $ofname = '', $efname = '', $ohvalue = 0, $ehvalue = 0, $ofvalue = 0, $efvalue = 0, $pagesel = '', $newformat = '') global() argument
10019 _beginpage($orientation, $mgl = '', $mgr = '', $mgt = '', $mgb = '', $mgh = '', $mgf = '', $ohname = '', $ehname = '', $ofname = '', $efname = '', $ohvalue = 0, $ehvalue = 0, $ofvalue = 0, $efvalue = 0, $pagesel = '', $newformat = '') global() argument
23380 TOCpagebreak($tocfont = '', $tocfontsize = '', $tocindent = '', $TOCusePaging = true, $TOCuseLinking = '', $toc_orientation = '', $toc_mgl = '', $toc_mgr = '', $toc_mgt = '', $toc_mgb = '', $toc_mgh = '', $toc_mgf = '', $toc_ohname = '', $toc_ehname = '', $toc_ofname = '', $toc_efname = '', $toc_ohvalue = 0, $toc_ehvalue = 0, $toc_ofvalue = 0, $toc_efvalue = 0, $toc_preHTML = '', $toc_postHTML = '', $toc_bookmarkText = '', $resetpagenum = '', $pagenumstyle = '', $suppress = '', $orientation = '', $mgl = '', $mgr = '', $mgt = '', $mgb = '', $mgh = '', $mgf = '', $ohname = '', $ehname = '', $ofname = '', $efname = '', $ohvalue = 0, $ehvalue = 0, $ofvalue = 0, $efvalue = 0, $toc_id = 0, $pagesel = '', $toc_pagesel = '', $sheetsize = '', $toc_sheetsize = '', $tocoutdent = '') global() argument
[all...]
H A DCssManager.php987 } elseif ($k === 'IMAGE-ORIENTATION') {
1007 $newprop['IMAGE-ORIENTATION'] = $angle;
/plugin/dw2pdf/vendor/setasign/fpdi/src/Tfpdf/
H A DFpdi.php80 * @return array|bool An array with following keys: width, height, 0 (=width), 1 (=height), orientation (L or P)
/plugin/dw2pdf/vendor/setasign/fpdi/src/Tcpdf/
H A DFpdi.php126 * @return array|bool An array with following keys: width, height, 0 (=width), 1 (=height), orientation (L or P)
/plugin/dw2pdf/vendor/mpdf/mpdf/
H A DCHANGELOG.md70 * Added support for orientation config key