Lines Matching refs:this

107         $this->config ['dformat'] =
116 $this->config ['useheading'] =
125 $this->config ['tmpdir'] =
134 $this->config ['mediadir'] =
143 $this->config ['datadir'] =
152 $this->config ['savedir'] =
161 $this->config ['showexportbutton'] =
170 $this->config ['showpdfexportbutton'] =
179 $this->config ['tpl_dir'] =
188 $this->config ['odt_template'] =
198 $this->config ['template'] =
207 $this->config ['css_usage'] =
216 $this->config ['css_template'] =
225 $this->config ['media_sel'] =
234 $this->config ['css_font_size'] =
243 $this->config ['apply_fs_to_non_css'] =
252 $this->config ['twips_per_pixel_x'] =
260 $this->config ['twips_per_pixel_y'] =
275 $this->config ['format'] =
283 $this->config ['orientation'] =
291 $this->config ['margin_top'] =
299 $this->config ['margin_right'] =
307 $this->config ['margin_bottom'] =
315 $this->config ['margin_left'] =
323 $this->config ['page'] =
332 $this->config ['disable_links'] =
341 $this->config ['toc_maxlevel'] =
350 $this->config ['toc_leader_sign'] =
359 $this->config ['toc_indents'] =
368 $this->config ['toc_pagebreak'] =
377 $this->config ['toc_style'] =
386 $this->config ['index_in_browser'] =
395 $this->config ['outline_list_style'] =
404 $this->config ['convert_to_pdf'] =
413 $this->config ['olist_label_align'] =
430 $this->config [$name]['value'] = $value;
441 return $this->config [$name]['value'];
452 return array_key_exists($name, $this->config);
465 return $this->config [$name]['refresh'];
478 return $this->config [$name]['DWGlobalName'];
491 return $this->config [$name]['hasGlobal'];
504 return $this->config [$name]['hasURL'];
517 return $this->config [$name]['hasMeta'];
530 if (!empty($name) and $this->isMetaSetting($name)) {
531 if ($pos != 0 and $this->config [$name]['addMetaAtStartOnly']) {
549 if ( !isset($this->mode) ) {
550 $this->mode = 'scratch';
555 foreach ($this->config as $name => $value) {
556 if ( !$refresh || $this->isRefreshable($name) ) {
557 $value = $this->getParam ($name);
560 $dw_name = $this->hasDWGlobalSetting ($name);
562 $this->setParam ($name, $conf[$dw_name]);
566 if (!$value && $this->isGlobalSetting($name) && $this->getConf($name)) {
567 $this->setParam ($name, $this->getConf($name));
572 if ($this->isURLSetting($name) && isset($url_param)) {
573 $this->setParam ($name, $url_param);
580 if($this->isMetaSetting($name) && !empty($value)) {
581 $this->setParam ($name, $value);
586 $template = $this->getParam ('template');
589 …if (file_exists($this->getParam('mediadir').'/'.$this->getParam('tpl_dir')."/".$this->getParam ('t…
591 $this->mode = 'ODT template';
594 …$warning = sprintf($this->getLang('tpl_not_found'),$this->getParam ('template'),$this->getParam ('…
595 $this->messages .= $warning;
600 $odt_template = $this->getParam ('odt_template');
603 …if (file_exists($this->getParam('mediadir').'/'.$this->getParam('tpl_dir')."/".$this->getParam ('o…
606 $this->mode = 'ODT template';
608 $this->mode = 'CSS template';
612 …$warning = sprintf($this->getLang('tpl_not_found'),$this->getParam ('odt_template'),$this->getPara…
618 $temp = $this->getParam ('disable_links');
620 $this->setParam ('disable_links', false);
622 $this->setParam ('disable_links', true);
628 $temp = $this->getParam ('toc_pagebreak');
630 $this->setParam ('toc_pagebreak', true);
632 $this->setParam ('toc_pagebreak', false);
638 $template = $this->getParam ('template');
639 $odt_template = $this->getParam ('odt_template');
641 $this->setParam ('odt_template', $this->getParam ('template'));
644 return $this->mode;
654 return $this->loadIntern($warning, false);
661 $this->loadIntern($warning, true);
673 foreach ($this->config as $name => $value) {
674 $content .= $name.'='.$this->getParam ($name).';';
688 return $this->messages;
697 $this->convert_to = $format;
707 return ($this->convert_to);