Home
last modified time | relevance | path

Searched +full:value +(+path:plugin +path:confmanager) -(+path:plugin +path:confmanager +path:lang) (Results 1 – 14 of 14) sorted by relevance

/plugin/confmanager/
H A Dscript.js19 return decodeURIComponent(value);
24 var setCookie = function(key, value) { argument
115 //single value entries negate with !, key-value entries with empty value
148 let value = jQuery(input).attr('value');
149 return value;
154 let value = jQuery(input).attr('value');
155 return value;
161 jQuery('#keyParam').removeAttr('value');
162 jQuery('#configIdParam').removeAttr('value');
217 let value = getEntryValue(this);
[all …]
H A Djquery.form.js176 // [value] (issue #113), also see comment:
387 s.extraData[n] = sub.value;
810 * [ { name: 'username', value: 'jresig' }, { name: 'password', value: 'secret' } ]
839 a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
879 a.push({name: n+'.x', value: form.clk_x}, {name: n+'.y', value: form.clk_y});
951 * The default value of the successful argument is true. If this value is false the value(s)
973 * Returns the value of the field element.
999 var v = op.value;
1001 …v = (op.attributes && op.attributes['value'] && !(op.attributes['value'].specified)) ? op.text : o…
1036 this.value = '';
[all …]
H A Dstyle.css10 #confmanager input.value {
/plugin/confmanager/configTypes/
H A DConfigManagerTwoLineRightImageConfigCascade.php5 * An image pointed with value. I.e. the smileys config
42 * @param string $value value of entry
47 protected function getImageFilename($key, $value, $upload_name, $upload_extension) { argument
48 $extension_position = strrpos($value, '.');
50 $filename = substr($value, 0, $extension_position);
52 $filename = $value;
74 * @param string $value
77 protected function updateValue($key, $value) { argument
83 if($confkey == $key && $confvalue != $value) {
84 $config['local'][$confkey] = $value;
H A DConfigManagerTwoLineConfigCascade.php63 foreach ($input as $key => $value) {
66 if ($default[$key] === $value) {
72 $value = $this->prepareEntity($value);
76 $save[$key] = $value;
106 foreach ($config as $key => $value) {
107 $content .= "$key\t$value\n";
H A DConfigManagerTwoLineLeftImageConfigCascade.php92 $value = $INPUT->str('value');
125 $destination = $this->getImageFilename($key, $value, $upload_name, $extension);
150 * @param string $value value of entry
155 protected function getImageFilename($key, $value, $upload_name, $upload_extension) { argument
163 * @param string $value
166 protected function updateValue($key, $value) { argument
H A DConfigManagerTwoLine.php104 foreach ($lines as $key => $value) {
106 $value = $this->helper->prepareEntity($value);
108 $content .= "$key\t$value\n";
/plugin/confmanager/tpl/
H A DshowConfigTwoLine.php7 <th><?php echo $helper->getLang('value') ?></th>
11 <?php foreach ($local as $key => $value): ?>
20 value="<?php echo hsc($key) ?>"
26 id="value<?php echo $lineCounter ?>"
29 value="<?php echo hsc($value) ?>"
30 class="edit value"
54 <input class="newItem value submitOnTab" type="text" name="newValue[]" />
73 <th><?php echo $helper->getLang('value') ?></th>
76 <?php foreach($default as $key => $value): ?>
84 <span class="default_value"><?php echo hsc($value); ?></span>
H A DshowConfigTwoLineLeftImage.php7 <th><?php echo $helper->getLang('value') ?></th>
10 <?php foreach($local as $key => $value):?>
20 value="<?php echo hsc($key) ?>"
31 value="<?php echo hsc($value) ?>"
32 class="edit value"
79 <input class="newItem value submitOnTab" type="text" name="newValue[]" />
99 <th><?php echo $helper->getLang('value') ?></th>
102 <?php foreach ($default as $key => $value): ?>
119 <span class="default_value"><?php echo hsc($value) ?></span>
H A DshowConfigSingleLine.php6 <th><?php echo $helper->getLang('value') ?></th>
18 id="value<?php echo $lineCounter ?>"
21 value="<?php echo hsc($config) ?>"
22 class="value"
39 <input type="text" name="line[]" class="newItem value submitOnTab" />
57 <th><?php echo $helper->getLang('value') ?></th>
H A DformStart.php4 <input type="hidden" name="do" value="admin" />
5 <input type="hidden" name="page" value="confmanager" />
6 <input type="hidden" name="configFile" value="<?php echo hsc($id) ?>" />
H A DselectConfig.php16 <input type="hidden" name="do" value="admin" />
17 <input type="hidden" name="page" value="confmanager" />
27 <option value="<?php echo hsc($id) ?>"
34 <input type="submit" value="<?php echo $this->helper->getLang('edit') ?>" class="button" />
H A DformEnd.php16 …<input type="submit" class="button saveButton right" value="<?php echo $helper->getLang('upload') …
18 …<input id="popup_cancel" type="submit" class="right" value="<?php echo $helper->getLang('cancel')…
19 <input type="hidden" name="call" value="confmanager_upload" />
22 <input type="hidden" name="value" id="valueParam" />
H A DformControls.php2 … <input type="submit" value="<?php echo hsc($this->getLang('save')) ?>" class="button saveButton" >