blob: 090108501293abb0907278491f8634df13a93ed7 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
|
<?php
namespace dokuwiki\plugin\config\core\Setting;
/**
* Class setting_string
*/
class SettingString extends Setting
{
/** @inheritdoc */
public function html(\admin_plugin_config $plugin, $echo = false)
{
$disable = '';
if ($this->isProtected()) {
$value = $this->protected;
$disable = 'disabled="disabled"';
} elseif ($echo && $this->error) {
$value = $this->input;
} else {
$value = is_null($this->local) ? $this->default : $this->local;
}
$key = htmlspecialchars($this->key);
$value = htmlspecialchars($value);
$label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
$input = '<input id="config___' . $key . '" name="config[' . $key .
']" type="text" class="edit" value="' . $value . '" ' . $disable . '/>';
return [$label, $input];
}
}
|