Home
last modified time | relevance | path

Searched full:input (Results 201 – 225 of 4846) sorted by relevance

12345678910>>...194

/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DVCard21Test.php12 $input = <<<VCF
20 $vobj = Reader::read($input);
21 $output = $vobj->serialize($input);
23 $this->assertEquals($input, $output);
29 $input = <<<VCF
37 $vobj = Reader::read($input);
38 $output = $vobj->serialize($input);
/plugin/farmsync/action/
H A Dajax.php44 global $INPUT;
46 $sectok = $INPUT->str('sectok');
54 $target = $INPUT->str('farmsync-animal');
55 $page = $INPUT->str('farmsync-page');
56 $source = $INPUT->str('farmsync-source');
57 $action = $INPUT->str('farmsync-action');
59 if ($INPUT->has('farmsync-getstruct')) {
94 $type = $INPUT->str('farmsync-type');
95 if (!$INPUT->has('farmsync-content')) {
114 if ($INPUT->has('farmsync-content')) {
[all …]
/plugin/icalevents/vendor/sabre/vobject/bin/
H A Dbench_manipulatevcard.php18 $input = file_get_contents($inputFile); variable
20 $splitter = new Sabre\VObject\Splitter\VCard($input);
52 function formatMemory($input) { argument
54 if (strlen($input) > 6) {
56 return round($input / (1024 * 1024)) . 'M';
58 } elseif (strlen($input) > 3) {
60 return round($input / 1024) . 'K';
66 unset($input, $splitter);
/dokuwiki/inc/Form/
H A DCheckableElement.php31 global $INPUT;
35 if (!$INPUT->has($name)) return;
39 $value = $INPUT->str($name);
47 $input = $INPUT->arr($name);
48 if (isset($input[$key])) {
52 if (is_array($input[$key])) {
53 $input = $input[$key];
56 foreach ($input a
[all...]
/plugin/tagging/action/
H A Dmain.php93 global $INPUT;
94 $tags = $INPUT->arr('tag', (array)$INPUT->str('tag'));
95 $lang = $INPUT->str('lang');
123 global $INPUT;
129 $data = $INPUT->arr('tagging');
152 global $INPUT;
157 $search = $INPUT->str('term');
172 global $INPUT;
189 if (!$INPUT
[all...]
/plugin/txtconf/
H A Dadmin.php92 $input = isset($this->_input[$key]) ? $this->_input[$key] : NULL;
93 if ($input == '') $input = null;
94 if ($this->_myconf->setting[$key]->update($input))
125 ptln(' <input type="hidden" name="do" value="admin" />');
126 ptln(' <input type="hidden" name="page" value="'.PLUGIN_NAME.'" />');
127 ptln(' <input type="hidden" name="id" value="'.$ID.'" />');
187 ptln(' <input type="hidden" name="txtconf" value="1" />');
188 ptln(' <input type="hidden" name="conftype" value="'.$this->_conftype.'" />');
203 ptln(' <input type="reset" class="button" value="'.$lang['btn_reset'].'" />'."\n");
210 ptln('<input id="newkey" name="newkey" type="text" class="edit" size="10" value="" />');
[all …]
/plugin/blogtng/action/
H A Dcomments.php40 * Takes care of handling all the post input from creating
49 global $INFO, $ID, $INPUT, $BLOGTNG;
53 if ($INPUT->has('btngo')) {
54 $this->commenthelper->optin($INPUT->str('btngo'));
58 if ($INPUT->has('btngu')) {
67 $name = $INPUT->post->str('comment-name');
69 $mail = $INPUT->post->str('comment-mail');
71 $web = $INPUT->post->str('comment-web');
77 if($INPUT->post->has('wikitext')) {
78 $text = cleanText($INPUT->post->str('wikitext'));
[all …]
H A Dnew.php32 * Handles input from the newform and redirects to the edit mode
42 global $TEXT, $INPUT;
49 if(!$INPUT->str('new-title')){
55 $newId = $tools->mkpostid($INPUT->str('new-format'), $INPUT->str('new-title'));
60 'post-blog' => $INPUT->post->str('post-blog'),
61 'post-tags' => $INPUT->post->str('post-tags'),
62 'post-commentstatus' => $INPUT->post->str('post-commentstatus'),
63 'new-format' => $INPUT->post->str('new-format'),
64 'new-title' => $INPUT->post->str('new-title')
69 $TEXT = $this->prepareTemplateNewEntry($newId, $INPUT->str('new-title'));
/template/m1/css/
H A Dsidrd.css127 .sidr input[type="text"],
129 .sidr input[type="date"],
131 .sidr input[type="email"],
132 .sidr input[type="number"],
133 .sidr input[type="search"],
134 .sidr input[type="tel"],
135 .sidr input[type="time"],
136 .sidr input[type="url"],
157 .sidr input[type=checkbox] {
163 .sidr input[type=button],
[all …]
/plugin/extendpage/
H A Dadmin.php40 global $INPUT;
50 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
51 $assignment = $INPUT->arr('assignment');
52 if (!blank($assignment['id']) && $INPUT->str('action') === 'delete') {
56 $INPUT->str('action') === 'add') {
92 echo '<input type="hidden" name="do" value="admin" />';
93 echo '<input type="hidden" name="page" value="extendpage" />';
94 echo '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
133 echo '<td><input type="text" name="assignment[pattern]" /></td>';
138 echo '<td><input type="text" name="assignment[page]" /></td>';
/plugin/bureaucracy-au/_test/
H A Dfield_file.test.php28 '!' => 'input[type=file].edit',
29 '^' => 'input[type=file][required].edit.required',
30 '@' => 'input[type=file][required].edit.required',
31 '! /regex/' => 'input[type=file].edit',
32 '@ /regex/ "**Example error"' => 'input[type=file][required].edit.required'
37 $input = "<form>\nfile \"Some label\" $arg\n</form>";
38 $this->assertPqSelector($input, $pqSelector);
43 $input = "<form>\nfile \"Some label\" upload:here $arg\n</form>";
44 $this->assertPqSelector($input, $pqSelector);
49 $input = "<form>\nfile \"Some label\" \"upload:here\" $arg\n</form>";
[all …]
/plugin/bureaucracyau/_test/
H A Dfield_file.test.php28 '!' => 'input[type=file].edit',
29 '^' => 'input[type=file][required].edit.required',
30 '@' => 'input[type=file][required].edit.required',
31 '! /regex/' => 'input[type=file].edit',
32 '@ /regex/ "**Example error"' => 'input[type=file][required].edit.required'
37 $input = "<form>\nfile \"Some label\" $arg\n</form>";
38 $this->assertPqSelector($input, $pqSelector);
43 $input = "<form>\nfile \"Some label\" upload:here $arg\n</form>";
44 $this->assertPqSelector($input, $pqSelector);
49 $input = "<form>\nfile \"Some label\" \"upload:here\" $arg\n</form>";
[all …]
/plugin/combo/vendor/antlr/antlr4-php-runtime/src/
H A DTokenSource.php25 * Return a {@see Token} object from your input stream (usually a
33 * Get the line number for the current position in the input stream.
34 * The first line in the input is line 1.
36 * @return int The line number for the current position in the input stream,
43 * the input stream. The first character on a line has position 0.
45 * @return int The line number for the current position in the input stream,
56 * position in the input, or `null` if no input stream
62 * Gets the name of the underlying input source. This method returns
70 * {@see Token} objects from the input
[all...]
/plugin/webdavclient/
H A Dadmin.php37 global $INPUT;
131 $username = $INPUT->str('username', '');
132 $password = $INPUT->str('password', '');
133 $uri = $INPUT->str('uri', '');
161 ptln(' <input type="hidden" name="do" value="admin" />');
162 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
191 '<input type="hidden" name="calendar['.$idx.']" value="'.$href.'">'.
192 '<input type="hidden" name="calendardn['.$idx.']" value="'.$dn.'">'.
213 ptln('<input type="submit" name="cmd[addselected]" value="'.
247 '</td><td><input type="submit" name="cmd[modify]['.$conn['id'].']" value="'.
[all …]
/template/h6e-minimal/h6e-minimal/
H A Dh6e-forms.css10 input[type="text"], input[type="password"], input.text, input.button, textarea {
17 input[type="text"]:focus, input[type="password"]:focus, input.text:focus, textarea:focus {
21 input.button {
/template/starterbootstrap/css/
H A Dbootstrap.min.css5input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,… selector
H A Dbootstrap.css113 input, selector
2437 input[type="date"].input-sm,
2438 input[type="time"].input-sm,
2440 input[type="month"].input-sm {
2444 input[type="date"].input-lg,
2445 input[type="time"].input-lg,
2447 input[type="month"].input-lg {
2462 :root input[type="date"].input-sm,
2464 :root input[type="time"].input-sm,
3664 .input-group-addon.input-sm {
[all …]
/plugin/issuelinks/action/
H A Dajax.php61 global $INPUT, $INFO;
67 $serviceId = $INPUT->str('servicename');
73 $project = $INPUT->str('project');
75 if ($INPUT->has('hookid')) {
106 global $INPUT;
112 $serviceId = $INPUT->str('servicename');
113 $organisation = $INPUT->str('org');
189 global $INPUT;
190 $serviceName = $INPUT->str('servicename');
191 $projectKey = $INPUT->str('project');
[all …]
/plugin/directions/syntax/
H A Dgraph.php32 $input = dir_prepareGVInput($info, $data, $metadata);
37 $img = DOKU_BASE.'lib/plugins/graphviz/img.php?'.buildURLparams($input);
38 $ret .= '<img src="'.$img.'" class="media'.$input['align'].'" alt=""';
39 if($input['width']) $ret .= ' width="'.$input['width'].'"';
40 if($input['height']) $ret .= ' height="'.$input['height'].'"';
41 if($input['align'] == 'right') $ret .= ' align="right"';
42 if($input['align'] == 'left') $ret .= ' align="left"';
79 // store input for later use
/plugin/davcal/fullcalendar-3.10.5/
H A Dmoment.js627 return locale.longDateFormat(input) || input;
765 array[YEAR] = input.length === 2 ? hooks.parseTwoDigitYear(input) : toInt(input);
1360 input = locale.weekdaysParse(input);
1372 return isNaN(input) ? null : input;
2834 …diff = (isMoment(input) || isDate(input) ? input.valueOf() : createLocal(input).valueOf()) - res.v…
2881 input = input * 60;
2909 input = -input;
2955 input = input ? createLocal(input).utcOffset() : 0;
3187 var localInput = isMoment(input) ? input : createLocal(input);
3200 var localInput = isMoment(input) ? input : createLocal(input);
[all …]
/plugin/wysiwyg/fckeditor/editor/dialog/
H A Dfck_flash.html58 <input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3">
63 <input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3">
92 <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
94 <input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
114 <td><input id="chkAutoPlay" type="checkbox" checked></td>
116 <td><input id="chkLoop" type="checkbox" checked></td>
118 <td><input id="chkMenu" type="checkbox" checked></td>
130 <input id="txtAttId" style="WIDTH: 100%" type="text">
134 <input id="txtAttClasses" style="WIDTH: 100%" type="text">
138 <input id="txtAttTitle" style="WIDTH: 100%" type="text">
[all …]
/plugin/fckg/fckeditor/editor/dialog/
H A Dfck_flash.html62 <input id="txtWidth" onkeypress="return IsDigit(event);" type="text" size="3">
67 <input id="txtHeight" onkeypress="return IsDigit(event);" type="text" size="3">
96 <input id="txtUploadFile" style="WIDTH: 100%" type="file" size="40" name="NewFile" /><br />
98 <input id="btnUpload" type="submit" value="Send it to the Server" fckLang="DlgLnkBtnUpload" />
120 <td><input id="chkAutoPlay" type="checkbox" checked></td>
122 <td><input id="chkLoop" type="checkbox" checked></td>
124 <td><input id="chkMenu" type="checkbox" checked></td>
136 <input id="txtAttId" style="WIDTH: 100%" type="text">
140 <input id="txtAttClasses" style="WIDTH: 100%" type="text">
144 <input id="txtAttTitle" style="WIDTH: 100%" type="text">
[all …]
/template/breeze/bower_components/gumby/
H A Dui.html406 <input class="xwide text input" type="text" placeholder="Text input" />
409 <input class="xwide email input" type="email" placeholder="Email input" />
414 <input class="wide text input" type="text" placeholder="Text input" />
419 <input class="wide text input" type="text" placeholder="Text input" />
422 <input class="wide email input" type="email" placeholder="Email input" />
427 <input class="normal text input" type="text" placeholder="Text input" />
431 <input class="text input" type="text" placeholder="Text input" />
443 <input class="xwide email input" type="email" placeholder="xwide input" />
447 <input class="wide text input" type="password" placeholder="wide input" />
456 <input class="wide text input" type="text" placeholder="wide input" />
[all …]
/template/mindthedark/css/
H A Dbasic.less435 input,
467 input,
475 input:active,
476 input:focus,
485 input[type=radio],
487 input[type=image] {
494 input[type=submit],
496 input[type=reset],
497 input.button,
538 input[disabled],
[all …]
/plugin/pycode/
H A Dscript.js42 '<input id="pycode__src-url" type="text" disabled>' +
235 jQuery(".pycode__code-nums input:radio")
273 jQuery(".pycode__code-docstr input:radio")
297 * Disable input objects belong to a given div.
302 jQuery(obj+" input:checkbox").prop("checked", false);
303 jQuery(obj+" input:radio").prop("disabled", true);
304 jQuery(obj+" input:text").prop("disabled", true);
313 jQuery(obj+" input:radio").css("outline", "2px solid #FCC");
314 jQuery(obj+" input:text").css("background-color", "#FCC");
323 jQuery(obj+" input:radio").css("outline", "");
[all …]

12345678910>>...194