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 D | script.js | 16 let value = ARRcookies[i].substring(ARRcookies[i].indexOf("=")+1); 19 return decodeURIComponent(value); 24 var setCookie = function(key, value) { argument 27 document.cookie = encodeURIComponent(key) + '=' + encodeURIComponent(value) + '; expires=' + expirationDate.toUTCString(); 31 * defaultValue is a boolean value the function should return if the cookie is not set (undefined). 108 //default value cannot be deleted, but disabled in local config 115 //single value entries negate with !, key-value entries with empty value 148 let value [all...] |
H A D | jquery.form.js | 176 // [value] (issue #113), also see comment: 178 var fileInputs = $('input[type=file]:enabled[value!=""]', this); 239 formdata.append(a[i].name, a[i].value); 387 s.extraData[n] = sub.value; 462 if($.isPlainObject(s.extraData[n]) && s.extraData[n].hasOwnProperty('name') && s.extraData[n].hasOwnProperty('value')) { 464 $('<input type="hidden" name="'+s.extraData[n].name+'">').attr('value',s.extraData[n].value) 468 $('<input type="hidden" name="'+n+'">').attr('value',s.extraData[n]) 582 xhr.responseText = ta.value; 716 * 2. This method will include the submit element's name/value dat [all...] |
H A D | style.css | 10 #confmanager input.value {
|
/plugin/confmanager/configTypes/ |
H A D | ConfigManagerTwoLineRightImageConfigCascade.php | 5 * 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) { [all...] |
H A D | ConfigManagerTwoLineConfigCascade.php | 63 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 D | ConfigManagerTwoLineLeftImageConfigCascade.php | 92 $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 D | ConfigManagerTwoLine.php | 104 foreach ($lines as $key => $value) { 106 $value = $this->helper->prepareEntity($value); 108 $content .= "$key\t$value\n";
|
/plugin/confmanager/tpl/ |
H A D | showConfigTwoLine.php | 13 <th><?php echo $helper->getLang('value') ?></th> 17 <?php foreach ($local as $key => $value): ?> 26 value="<?php echo hsc($key) ?>" 32 id="value<?php echo $lineCounter ?>" 35 value="<?php echo hsc($value) ?>" 36 class="edit value" 41 <?php if($value === ''): ?> 60 <input class="newItem value submitOnTab" type="text" name="newValue[]" /> 79 <th><?php echo $helper->getLang('value') [all...] |
H A D | showConfigTwoLineLeftImage.php | 13 <th><?php echo $helper->getLang('value') ?></th> 16 <?php foreach($local as $key => $value):?> 26 value="<?php echo hsc($key) ?>" 37 value="<?php echo hsc($value) ?>" 38 class="edit value" 43 <?php if($value === ''): ?> 85 <input class="newItem value submitOnTab" type="text" name="newValue[]" /> 105 <th><?php echo $helper->getLang('value') ?></th> 108 <?php foreach ($default as $key => $value) [all...] |
H A D | showConfigSingleLine.php | 12 <th><?php echo $helper->getLang('value') ?></th> 24 id="value<?php echo $lineCounter ?>" 27 value="<?php echo hsc($config) ?>" 28 class="value" 45 <input type="text" name="line[]" class="newItem value submitOnTab" /> 63 <th><?php echo $helper->getLang('value') ?></th>
|
H A D | formStart.php | 4 <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 D | selectConfig.php | 16 <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 D | formEnd.php | 16 <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 D | formControls.php | 2 <input type="submit" value="<?php echo hsc($this->getLang('save')) ?>" class="button saveButton" >
|