Home
last modified time | relevance | path

Searched refs:prompt (Results 1 – 11 of 11) sorted by relevance

/dokuwiki/lib/plugins/config/core/Setting/
H A DSetting.php213 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
269 * Returns the localized prompt
274 public function prompt(\admin_plugin_config $plugin)
276 $prompt = $plugin->getLang($this->key);
277 if (!$prompt) $prompt = htmlspecialchars(str_replace(['____', '_'], ' ', $this->key));
278 return $prompt;
262 public function prompt(\admin_plugin_config $plugin) { global() function in dokuwiki\\plugin\\config\\core\\Setting\\Setting
H A DSettingString.php27 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
H A DSettingPassword.php36 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
H A DSettingMulticheckbox.php67 $prompt = ($plugin->getLang($this->key . '_' . $choice) ?: htmlspecialchars($choice));
70 $input .= '<label for="config___' . $key . '_' . $choice . '">' . $prompt . "</label>\n";
102 $label = '<label>' . $this->prompt($plugin) . '</label>';
H A DSettingOnoff.php42 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
H A DSettingArray.php82 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
H A DSettingMultichoice.php38 $label = '<label for="config___' . $key . '">' . $this->prompt($plugin) . '</label>';
/dokuwiki/lib/tpl/dokuwiki/css/
H A D_admin.less45 &.prompt {
/dokuwiki/lib/plugins/config/
H A Dadmin.php122 echo '<legend>' . $setting->prompt($this) . '</legend>';
257 $name = $setting->prompt($this);
/dokuwiki/vendor/phpseclib/phpseclib/phpseclib/Net/
H A DSSH2.php2558 $prompt, // prompt - ie. "Password: "; must not be empty
2562 if (substr($prompt, 0, strlen($key)) == $key) {
/dokuwiki/vendor/geshi/geshi/
H A DCHANGELOG215 * Limited support for prompt detection in single line Bash snippets (BenBE)