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=' + expir…
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 = getEntryKey(this);
218 jQuery('#keyParam').val(key);
[all …]
H A Dstyle.css6 #confmanager input.key {
/plugin/confmanager/configTypes/
H A DConfigManagerTwoLineLeftImageConfigCascade.php42 * @param string $key
59 * @param string $key
91 $key = $INPUT->str('key');
93 if ($key === '') {
99 if (isset($configs['default'][$key])) {
149 * @param string $key key of entry
156 return "$key." . $upload_extension;
162 * @param string $key
176 $key = $INPUT->str('key');
177 if ($key === '') {
[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
73 * @param string $key
77 protected function updateValue($key, $value) { argument
83 if($confkey == $key && $confvalue != $value) {
102 $key = $INPUT->str('key');
103 if ($key === '') {
110 if (isset($configs['default'][$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\t$value\n";
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.php6 <th><?php echo $helper->getLang('key') ?></th>
11 <?php foreach ($local as $key => $value): ?>
12 <?php $isDefault = array_key_exists($key, $default) ?>
19 id="key<?php echo $lineCounter ?>"
20 value="<?php echo hsc($key) ?>"
21 class="key"
28 name="values[<?php echo hsc($key) ?>]"
35 <?php if($local[$key] === ''): ?>
72 <th><?php echo $helper->getLang('key') ?></th>
76 <?php foreach($default as $key => $value): ?>
[all …]
H A DshowConfigTwoLineLeftImage.php6 <th><?php echo $helper->getLang('key') ?></th>
10 <?php foreach($local as $key => $value):?>
11 <?php $image = $this->getImage('local', $key); ?>
12 <?php $isDefault = array_key_exists($key, $default) ?>
20 value="<?php echo hsc($key) ?>"
21 class="key"
37 <?php if($local[$key] === ''): ?>
98 <th><?php echo $helper->getLang('key') ?></th>
102 <?php foreach ($default as $key => $value): ?>
103 <?php $isOverridden = array_key_exists($key, $local) ?>
[all …]
H A DformEnd.php21 <input type="hidden" name="key" id="keyParam" />