Home
last modified time | relevance | path

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

/plugin/odt/ODT/
H A Dpage.php17 var $orientation = 'portrait'; variable in pageFormat
32 * @param string $orientation
43 return $format.'-'.$orientation.'-'.$margins;
55 return $this->format.'-'.$this->orientation.'-'.$margins;
65 * @param string $orientation
217 if ( $orientation != 'portrait' ) {
218 $orientation = 'landscape';
226 $dest ['orientation'] = $orientation;
242 * @param string $orientation
252 $this->orientation = $data ['orientation'];
[all …]
H A DODTDocument.php909 …$this->page->setFormat($data ['format'], $data ['orientation'], $data['margin-top'], $data['margin…
1627 * The format, orientation and page margins can be changed.
1631 * @param string $orientation e.g. 'portrait' or 'landscape'
1637 …public function setStartPageFormat ($format=NULL, $orientation=NULL, $margin_top=NULL, $margin_rig… argument
1641 ($format, $orientation, $margin_top, $margin_right, $margin_bottom, $margin_left);
1657 * The format, orientation and page margins can be changed.
1661 * @param string $orientation e.g. 'portrait' or 'landscape'
1667 …public function setPageFormat ($format=NULL, $orientation=NULL, $margin_top=NULL, $margin_right=NU… argument
1674 if ( empty($orientation) ) {
1675 $orientation = $this->page->getOrientation();
[all …]
H A DODTDefaultStyles.php22 …-width="21cm" fo:page-height="29.7cm" style:num-format="1" style:print-orientation="portrait" fo:m…
/plugin/odt/conf/
H A Ddefault.php32 // Page format, orientation and margins in 'cm'
34 $conf['orientation'] = 'portrait';
H A Dmetadata.php35 $meta['orientation'] = array('multichoice', '_choices' => array('portrait', 'landscape'));
/plugin/odt/
H A Dsyntax.php160 $orientation = trim ($params [1]);
166 …$renderer->setPageFormat($format, $orientation, $params [2], $params [3], $params [4], $params [5]…
176 case 'orientation':
179 $orientation = trim ($info_value);
180 $renderer->setPageFormat(NULL,$orientation);
H A DChangeLog.txt3 * Added syntax tag for changing the page format, orientation and page margins.
4 E.g. '{{odt>page:A3,landscape,1,1,1,1}}' sets the page format to A3, landscape orientation
/plugin/odt/ODT/styles/
H A DODTTableCellStyle.php23 …'glyph-orientation-vertical' => array ('style:glyph-orientation-vertical', 'table-cell', tru…
H A DODTPageLayoutStyle.php32 …'print-orientation' => array ('style:print-orientation', 'props', true),
354 …height="'.$properties ['height'].'cm" style:num-format="1" style:print-orientation="landscape" fo:…
/plugin/odt/helper/
H A Dconfig.php268 // Page format, orientation and margins
283 $this->config ['orientation'] =
/plugin/odt/renderer/
H A Dpage.php230 $this->config->getParam ('orientation'),
299 * The format, orientation and page margins can be changed.
303 * @param string $orientation e.g. 'portrait' or 'landscape'
310 …public function setPageFormat ($format=NULL, $orientation=NULL, $margin_top=NULL, $margin_right=NU… argument
311 …$this->document->setPageFormat ($format, $orientation, $margin_top, $margin_right, $margin_bottom,…