Lines Matching refs:this

17 		$this->_key = $key;
18 $this->_level = $level;
19 $this->_protect = @$set['protect'];
20 $this->_value = @$set['value'];
21 $this->_initSetting($meta);
26 unset($this->_protect);
28 $this->_protect = (bool)$val;
33 $this->_old_val = $this->_setting->_local;
34 $changed = $this->_setting->update($val);
35 if ($this->_setting->_error){
38 $this->_updated = true;
39 if ($this->_setting->_local !== null && $this->_setting->_local === $this->_setting->_default){
40 $this->_setting->_local = null;
42 $this->_value = $this->_setting->_local;
55 $this->_setting = new $class($this->_key,$meta);
57 $this->_setting->initialize(
58 $this->_level->getDefault($this->_key),
59 $this->_level->getLocal($this->_key),
61 $this->_level->getParentProtected($this->_key)
66 if ($this->_changed) return $this->_old_val;
67 return $this->_setting->_local === null ? $this->_setting->_default : $this->_setting->_local;
70 $this->_changed = true;
74 …hierarchy' onclick=\"jQuery(this).trigger('show_in_hierarchy',['{$this->_key}','{$this->_level->pa…
77 return "<td class='protect_area' data-currentval='".($this->_protect ? '1' : '0')."'>
78 …<label for='settingstree_{$this->_key}_protect'>".settingshierarchy::$helper->getLang('protected')…
79 …put class='protect_input' type='checkbox' name='protect[{$this->_key}]' id='settingstree_{$this->_…
80 ….($this->_protect ? 'checked="checked"' : '')." ".($this->_level->getParentProtected($this->_key) …
84 if ($this->_setting->_error){
85 …erarchy::$helper->getLang('invalid_value').($this->_setting->_input !== null ? ": <code>{$this->fo…
86 }elseif ($this->_updated && !$this->changed){
87 …ttingshierarchy::$helper->getLang('updated_value_from').": <code>{$this->format($this->_old_val,$d…
93 $lang = $this->_level->getHierarchy();
95 …list($label,$input) = $this->_setting->html($lang); // html only uses the $plugin as parameter to …
96 …$cssclass = $this->_setting->is_default() ? ' class="default"' : ($this->_setting->is_protected() …
97 …$errorclass = ($this->_setting->error() ? ' value error' : ' value'). ($this->_changed ? " changed…
98this->_setting->caution() ? '<img src="'.DOKU_PLUGIN_IMAGES.$this->_setting->caution().'.png" alt=…
102 $ret .= "<span class='outkey'>{$this->_setting->_out_key(true,true)}</span>{$has_icon}{$label}";
109 $ret .= $this->_showHierarchyButton();
111 $ret .= "<tr {$cssclass}>".$this->_showProtectedCell();
112 $ret .= "<td class='input_area {$errorclass}' data-currentval='{$this->currentValue()}'>";
113 $ret .= $this->_showInputUpdateResults();
122 $value = $this->_level->getDefault($this->_key);
124 return $this->_level->getHierarchy()->format($this->_key,$value);
138 $lang = $this->_level->getHierarchy();
140 …list($label,$input) = $this->_setting->html($lang); // html only uses the $plugin as parameter to …
143 …$cssclass = $this->_setting->is_default() ? ' class="default"' : ($this->_setting->is_protected() …
144 …$errorclass = ($this->_setting->error() ? ' value error' : ' value'). ($this->_changed ? " changed…
145this->_setting->caution() ? '<img src="'.DOKU_PLUGIN_IMAGES.$this->_setting->caution().'.png" alt=…
149 $ret .= "<span class='outkey'>{$this->_setting->_out_key(true,true)}</span>{$has_icon}{$label}";
151 $ret .= "<td class='input_area {$errorclass}' data-currentval='{$this->currentValue()}'>";
152 $ret .= $this->_showInputUpdateResults();