Lines Matching refs:name

425      * @param string $name Name of the config param
428 public function setParam($name, $value) { argument
429 if (!empty($name)) {
430 $this->config [$name]['value'] = $value;
437 * @param string $name Name of the config param
440 public function getParam($name) { argument
441 return $this->config [$name]['value'];
447 * @param string $name Name of the config param
450 public function isParam($name) { argument
451 if (!empty($name)) {
452 return array_key_exists($name, $this->config);
460 * @param string $name Name of the config param
463 public function isRefreshable($name) { argument
464 if (!empty($name)) {
465 return $this->config [$name]['refresh'];
473 * @param string $name Name of the config param
476 public function hasDWGlobalSetting($name) { argument
477 if (!empty($name)) {
478 return $this->config [$name]['DWGlobalName'];
486 * @param string $name Name of the config param
489 public function isGlobalSetting($name) { argument
490 if (!empty($name)) {
491 return $this->config [$name]['hasGlobal'];
499 * @param string $name Name of the config param
502 public function isURLSetting($name) { argument
503 if (!empty($name)) {
504 return $this->config [$name]['hasURL'];
512 * @param string $name Name of the config param
515 public function isMetaSetting($name) { argument
516 if (!empty($name)) {
517 return $this->config [$name]['hasMeta'];
525 * @param string $name Name of the config param
529 public function addingToMetaIsAllowed($name, $pos) { argument
530 if (!empty($name) and $this->isMetaSetting($name)) {
531 if ($pos != 0 and $this->config [$name]['addMetaAtStartOnly']) {
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));
571 $url_param = $INPUT->get->str($name, $value, true);
572 if ($this->isURLSetting($name) && isset($url_param)) {
573 $this->setParam ($name, $url_param);
579 if (isset($odt_meta[$name])) $value = $odt_meta[$name];
580 if($this->isMetaSetting($name) && !empty($value)) {
581 $this->setParam ($name, $value);
587 if ( $name == 'template' && !empty($template) ) {
601 if ( $name == 'odt_template' && !empty($odt_template) ) {
617 if ( $name == 'disable_links' ) {
627 if ( $name == 'toc_pagebreak' ) {
673 foreach ($this->config as $name => $value) {
674 $content .= $name.'='.$this->getParam ($name).';';