Home
last modified time | relevance | path

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

/plugin/confmanager/
H A Dscript.js15 let key = ARRcookies[i].substring(0,ARRcookies[i].indexOf("=")+1);
17 key = key.replace(/^\s+|\s+$/g,"");
18 if (key === cookieKey) {
24 var setCookie = function(key, value) { argument
27 document.cookie = encodeURIComponent(key) + '=' + encodeURIComponent(value) + '; expires=' + expirationDate.toUTCString();
34 var getBooleanFromCookie = function(key, defaultValue) { argument
35 let cookie = readCookie(key);
115 //single value entries negate with !, key-value entries with empty value
216 let key
[all...]
H A Dstyle.css6 #confmanager input.key {
/plugin/confmanager/configTypes/
H A DConfigManagerTwoLineLeftImageConfigCascade.php5 * An image can be assigned for every key. I.e. the mime or interwiki config
42 * @param string $key
45 protected function getImagePath($configtype, $key) { argument
47 $path = $this->imageFolder . "$key." . $ext;
59 * @param string $key
62 protected function getImage($configtype, $key) { argument
63 $path = $this->getImagePath($configtype, $key);
91 $key = $INPUT->str('key');
93 if ($key
155 getImageFilename($key, $value, $upload_name, $upload_extension) global() argument
166 updateValue($key, $value) global() argument
[all...]
H A DConfigManagerTwoLineRightImageConfigCascade.php25 * @param string $key
28 protected function getImagePath($configtype, $key) { argument
30 $path = $this->imageFolder . $configs[$configtype][$key];
41 * @param string $key key of entry
47 protected function getImageFilename($key, $value, $upload_name, $upload_extension) { argument
73 * @param string $key
77 protected function updateValue($key, $value) { argument
83 if($confkey == $key && $confvalue != $value) {
102 $key
[all...]
H A DConfigManagerTwoLineConfigCascade.php4 * Every line is a config option. The first word in the line is a config key .
63 foreach ($input as $key => $value) {
65 if (array_key_exists($key, $default)) {
66 if ($default[$key] === $value) {
71 $key = $this->prepareEntity($key);
73 if ($key === '') {
76 $save[$key] = $value;
106 foreach ($config as $key => $value) {
107 $content .= "$key\
[all...]
H A DConfigManagerTwoLine.php104 foreach ($lines as $key => $value) {
105 $key = $this->helper->prepareEntity($key);
108 $content .= "$key\t$value\n";
/plugin/confmanager/tpl/
H A DshowConfigTwoLine.php12 <th><?php echo $helper->getLang('key') ?></th>
17 <?php foreach ($local as $key => $value): ?>
18 <?php $isDefault = array_key_exists($key, $default) ?>
25 id="key<?php echo $lineCounter ?>"
26 value="<?php echo hsc($key) ?>"
27 class="key"
34 name="values[<?php echo hsc($key) ?>]"
57 <input class="newItem key" type="text" name="newKey[]">
78 <th><?php echo $helper->getLang('key') ?></th>
82 <?php foreach($default as $key
[all...]
H A DshowConfigTwoLineLeftImage.php12 <th><?php echo $helper->getLang('key') ?></th>
16 <?php foreach($local as $key => $value):?>
17 <?php $image = $this->getImage('local', $key); ?>
18 <?php $isDefault = array_key_exists($key, $default) ?>
26 value="<?php echo hsc($key) ?>"
27 class="key"
82 <input class="newItem key" type="text" name="newKey[]">
104 <th><?php echo $helper->getLang('key') ?></th>
108 <?php foreach ($default as $key => $value): ?>
109 <?php $isOverridden = array_key_exists($key,
[all...]
H A DformEnd.php21 <input type="hidden" name="key" id="keyParam" />