Home
last modified time | relevance | path

Searched full:input (Results 176 – 200 of 4846) sorted by relevance

12345678910>>...194

/plugin/google_adsense2/
H A Dadmin.php105 ptln(' <input type="hidden" name="do" value="admin" />');
106 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
107 ptln(' <input type="hidden" name="cmd[googleads]" value="true" />');
112 …print ' <tr><td> '.$this->getLang('gads_enabled').' </td><td><input type="checkbox" name="googlead…
113 …print ' <tr><td> '.$this->getLang('gads_debug').' </td><td><input type="checkbox" name="googleads[…
114 …print ' <tr><td> '.$this->getLang('gads_dont_count_admin').' </td><td><input type="checkbox" name=…
115 …print ' <tr><td> '.$this->getLang('gads_dont_count_users').' </td><td><input type="checkbox" name=…
118 …print ' <tr><td> '.$this->getLang('google_ad_client').' </td><td><input type="text" name="googlead…
121 …print ' <tr><td> '.$this->getLang('google_color_bg').' </td><td><input type="text" name="googleads…
125 …print ' <tr><td> '.$this->getLang('google_color_url').' </td><td><input type="text" name="googlead…
[all …]
/dokuwiki/lib/plugins/config/core/Setting/
H A DSettingMultichoice.php40 $input = "<div class=\"input\">\n";
41 $input .= '<select class="edit" id="config___' . $key . '" name="config[' . $key . ']"' . $disable . '>' . "\n";
52 $input .= ' <option value="' . $choice . '"' . $selected . ' >' . $option . '</option>' . "\n";
54 $input .= "</select> $nochoice \n";
55 $input .= "</div>\n";
57 return [$label, $input];
61 public function update($input)
63 if (is_null($input)) return false;
67 if ($value == $input) retur
59 update($input) global() argument
[all...]
H A DSettingRegex.php10 protected $delimiter = '/'; // regex delimiter to be used in testing input
11 protected $pregflags = 'ui'; // regex pattern modifiers to be used in testing input
14 public function update($input) argument
19 if (!parent::update($input)) return false;
23 $regex = $this->delimiter . $input . $this->delimiter . $this->pregflags;
27 $this->input = $input;
32 $this->local = $input;
H A DSettingEmail.php14 public function update($input)
16 if (is_null($input)) return false;
20 if ($value == $input) return false;
21 if ($input === '') {
22 $this->local = $input;
25 $mail = $input;
52 $this->input = $input;
57 $this->local = $input;
13 update($input) global() argument
/plugin/html2pdf/html2pdf/html2ps/demo/
H A Dindex.php25 alert( 'Please input a valid URL.' );
92 input,textarea,select {
187 <input type="text" tabindex="1" name="proxy" size="30" value=""/><br/>
291 <input id="lm" type="text" size="3" name="leftmargin" value="30"/>
298 <input id="rm" type="text" size="3" name="rightmargin" value="15"/>
305 <input id="tm" type="text" size="3" name="topmargin" value="15"/>
311 <input id="bm" type="text" size="3" name="bottommargin" value="15"/>
325 <input id="landsc" class="nulinp" type="checkbox" name="landscape" value="1"/>
395 <input type="checkbox" value="1" name="toc"/>
492 <input class="nulinp" type="checkbox" id="compr" name="compress" value="1"/>
[all …]
/dokuwiki/inc/
H A Dauth.php42 /* @var Input $INPUT */
43 global $INPUT;
74 $INPUT->set('http_credentials', false);
75 if (!$conf['rememberme']) $INPUT->set('r', false);
79 $header = $INPUT->server->str('HTTP_AUTHORIZATION') ?: $INPUT->server->str('REDIRECT_HTTP_AUTHORIZATION');
86 if (!$INPUT->str('u') && empty($_COOKIE[DOKU_COOKIE]) && !empty($INPUT->server->str('PHP_AUTH_USER'))) {
87 $INPUT
[all...]
H A DAjax.php48 global $INPUT;
52 $query = $INPUT->post->str('q');
53 if (empty($query)) $query = $INPUT->get->str('q');
95 global $INPUT;
97 $query = cleanID($INPUT->post->str('q'));
98 if (empty($query)) $query = cleanID($INPUT->get->str('q'));
133 global $INPUT;
135 $ID = cleanID($INPUT->post->str('id'));
172 global $INPUT;
173 $id = cleanID($INPUT
[all...]
/plugin/diagramsnet/lib/js/deflate/
H A Dbase64.js15 encode : function (input, binary) { argument
23 input = Base64._utf8_encode(input);
26 while (i < input.length) {
28 chr1 = input.charCodeAt(i++);
29 chr2 = input.charCodeAt(i++);
30 chr3 = input.charCodeAt(i++);
53 decode : function (input, binary) { argument
60 input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
62 while (i < input.length) {
64 enc1 = this._keyStr.indexOf(input.charAt(i++));
[all …]
/plugin/webcode/
H A DwebCodeConsole.js47 window.console.log = function (input) { argument
49 if (typeof input === "object") {
51 let keys = Object.keys(input);
53 s += " " + keys[i] + " : " + input[keys[i]] + ";\n";
57 s = String(input);
67 window.console.table = function (input) { argument
68 if (Array.isArray(input) !== true) {
73 if (input.length <= 0) {
89 for (let i = 0; i < input.length; i++) {
91 let element = input[i];
[all …]
/dokuwiki/lib/tpl/dokuwiki/css/
H A Dbasic.less349 input,
384 input,
392 input:active,
393 input:focus,
402 input[type=radio],
403 input[type=checkbox],
404 input[type=image] {
411 input[type=submit],
412 input[type=button],
413 input[typ
[all...]
/template/ghw/css/
H A Dbasic.less338 input,
370 input,
378 input:active,
379 input:focus,
388 input[type=radio],
390 input[type=image] {
397 input[type=submit],
399 input[type=reset],
400 input.button,
445 input[disabled],
[all …]
/plugin/batchedit/
H A Dinterface.js62 jQuery('.be-file input').prop('checked', this.checked);
65 jQuery('.be-file .be-stats input').click(function() {
66 jQuery('.be-match input[id^=' + escapeId(this.id) + ']').prop('checked', this.checked);
70 jQuery('.be-match input').click(function() {
72 var pageMatches = jQuery('.be-match input[id^=' + pageId + ']').get();
74 jQuery('#' + pageId).prop('checked', pageMatches.reduce(function(checked, input) { argument
75 return checked && input.checked;
79 // Consolidate the list of all checked match ids into single hidden input field as
84 jQuery('input[name=apply]').val(JSON.stringify(jQuery('.be-match input
[all...]
/plugin/sentry/conf/
H A DSetting.php45 $current = $this->input;
51 $input = '';
72 $input .= '<div class="' . $class . '">';
73 $input .= '<label for="' . $inputId . '">' . hsc($info[1]) . '</label>';
74 … $input .= '<input type="checkbox" id="' . $inputId . '" name="config[' . $this->key . '][]" ' .
76 $input .= '</div>';
79 $input .= '<div class="selection">' . $current . '</div>';
81 return [$label, $input];
/template/templar/css/
H A Dscreen.css2075 .input-append input,
2080 .input-prepend input,
2087 .input-append input,
2090 .input-prepend input,
2104 .input-append input:focus,
2159 .input-append input,
2194 .input-prepend.input-append input,
2196 .input-prepend.input-append .uneditable-input {
2204 .input-prepend.input-append input + .btn-group .btn,
8175 .input-prepend input,
[all …]
/plugin/watchcycle/
H A Dadmin.php46 /* @var Input */
47 global $INPUT;
83 if ($INPUT->str('sortby') == $header) {
84 if ($INPUT->int('desc') == 0) {
99 if ($INPUT->str('filter') != '') {
101 $q_args[] = '%' . $INPUT->str('filter') . '%';
103 if ($INPUT->has('outdated')) {
112 if ($INPUT->has('sortby') && in_array($INPUT->str('sortby'), $headers)) {
113 $q .= ' ORDER BY ' . $INPUT
[all...]
/plugin/fckg/fckeditor/editor/dialog/
H A Dfck_image.html69 <input id="txtAlt" style="width: 100%" type="text" /><br />
115 <input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();" /></td>
121 <input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();" /></td>
209 <input type="button" onclick="open_DW_mediaManager();" value="DokuWiki Mediamanager">
219 <input id="txtLnkUrl" style="width: 100%" type="text" onblur="UpdatePreview();" />
258 <input id="txtAttId" style="width: 100%" type="text" />
278 <input id="txtAttLangCode" style="width: 100%" type="text" />&nbsp;
291 <input id="txtLongDesc" style="width: 100%" type="text" />
301 <input id="txtAttClasses" style="width: 100%" type="text" />
307 <input id="txtAttTitle" style="width: 100%" type="text" />
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/
H A Dfck_image.html45 <input id="btnBrowse" onclick="BrowseServer();" type="button" value="Browse Server"
51 <input id="txtUrl" style="width: 100%" type="text" onblur="UpdatePreview();" />
60 <input id="txtAlt" style="width: 100%" type="text" /><br />
106 <input type="text" size="2" id="txtHSpace" onkeyup="UpdatePreview();" /></td>
112 <input type="text" size="2" id="txtVSpace" onkeyup="UpdatePreview();" /></td>
196 <input id="txtAttId" style="width: 100%" type="text" />
215 <input id="txtAttLangCode" style="width: 100%" type="text" />&nbsp;
228 <input id="txtLongDesc" style="width: 100%" type="text" />
238 <input id="txtAttClasses" style="width: 100%" type="text" />
244 <input id="txtAttTitle" style="width: 100%" type="text" />
[all …]
/template/flat/assets/css/
H A Dflat.css3593 input[type="date"].input-sm,
3594 input[type="time"].input-sm,
3596 input[type="month"].input-sm,
3597 .input-group-sm input[type="date"],
3598 .input-group-sm input[type="time"],
3603 input[type="date"].input-lg,
3604 input[type="time"].input-lg,
3606 input[type="month"].input-lg,
3607 .input-group-lg input[type="date"],
4880 .input-group-addon.input-sm {
[all …]
H A Dstyle.css41input[type="file"]{display:block}input[type="range"]{display:block;width:100%}select[multiple],sel…
44input-placeholder{color:#999}.form-control::-webkit-input-placeholder{color:#999}.form-control[dis…
83input[type="radio"],[data-toggle="buttons"]>.btn-group>.btn input[type="radio"],[data-toggle="butt…
84input-group-lg>.form-control,select.input-group-lg>.input-group-addon,select.input-group-lg>.input
85input-group-sm>.form-control,select.input-group-sm>.input-group-addon,select.input-group-sm>.input
87 solid #ccc;border-radius:3px}.input-group-addon.input-sm{padding:5px
88 10px;font-size:12px;border-radius:2px}.input-group-addon.input-lg{padding:10px
89input-group-addon input[type="radio"],.input-group-addon input[type="checkbox"]{margin-top:0}.inpu…
185input[type="text"],input[type="password"],input[type="datetime"],input[type="datetime-local"],inpu…
187input[type="text"]:focus,input[type="password"]:focus,input[type="datetime"]:focus,input[type="dat…
[all …]
H A Dflat.min.css1input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,… selector
/template/boozurk/css/
H A Dboozurk-inline.css57 input[type=button]:hover,
58 input[type=submit]:hover,
59 input[type=reset]:hover,
61 input[type=text]:hover,
62 input[type=email]:hover,
63 input[type=password]:hover,
64 input[type=button]:focus,
65 input[type=submit]:focus,
66 input[type=reset]:focus,
68 input[type=text]:focus,
[all …]
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php14 * It is assumed that the input stream contains 1 or more VCARD objects. This
30 protected $input; variable in Sabre\\VObject\\Splitter\\VCard
42 * The splitter should receive an readable file stream as it's input.
44 * @param resource $input
47 public function __construct($input, $options = 0) { argument
49 $this->input = $input;
50 $this->parser = new MimeDir($input, $options);
68 throw new VObject\ParseException('The supplied input contained non-VCARD data.');
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DVCard.php14 * It is assumed that the input stream contains 1 or more VCARD objects. This
30 protected $input; variable in Sabre\\VObject\\Splitter\\VCard
42 * The splitter should receive an readable file stream as it's input.
44 * @param resource $input
47 public function __construct($input, $options = 0) { argument
49 $this->input = $input;
50 $this->parser = new MimeDir($input, $options);
68 throw new VObject\ParseException('The supplied input contained non-VCARD data.');
/plugin/indexmenu2/cms/
H A Ddemo.html260 <li><a href="#"><input type="checkbox" /> adipiscing </a>
262 <li><a href="#"><input type="checkbox" /> dolor </a></li>
266 <li><a href="#"><input type="checkbox" /> consectetuer </a>
268 <li><a href="#"><input type="checkbox" /> elit </a></li>
269 <li><a href="#"><input type="checkbox" /> ipsum </a></li>
270 <li><a href="#"><input type="checkbox" /> Donec </a></li>
279 <li><a href="#"><input type="checkbox" /> adipiscing </a>
281 <li><a href="#"><input type="checkbox" /> dolor </a></li>
285 <li><a href="#"><input type="checkbox" /> consectetuer </a>
287 <li><a href="#"><input type="checkbox" /> elit </a></li>
[all …]
/template/sprintdoc/css/
H A Darea_forms.less50 input,
88 input,
100 input[type="radio"],
101 input[type="checkbox"] {
105 input[type="radio"],
106 input[type="checkbox"],
107 input[type="image"] {
113 input:active,
114 input:focus,
124 input[typ
[all...]

12345678910>>...194