Home
last modified time | relevance | path

Searched full:input (Results 51 – 75 of 4373) sorted by relevance

12345678910>>...175

/plugin/html2pdf/html2pdf/html2ps/unittest/
H A Dtest.input.text.php16 <input id="i1" class="input1" type="text" size="0"/><br/>
19 <input id="i2" class="input1" type="text" size="1"/><br/>
22 <input id="i3" class="input1" type="text" size="2"/><br/>
25 <input id="i4" class="input1" type="text" size="3"/><br/>
28 <input id="i5" class="input1" type="text" size="4"/><br/>
31 <input id="i6" class="input1" type="text" size="5"/><br/>
34 <input id="i7" class="input1" type="text" size="10"/><br/>
37 <input id="i8" class="input1" type="text" size="15"/><br/>
40 <input id="i9" class="input1" type="text" size="20"/><br/>
46 <input id="i11" class="input2" type="text" size="0"/><br/>
[all …]
/template/parallax/lib/bootstrap/css/
H A Dbootstrap-responsive.css446 input, selector
474 input.span9,
480 input.span8,
486 input.span7,
492 input.span6,
498 input.span5,
504 input.span4,
510 input.span3,
516 input.span2,
522 input.span1,
[all …]
H A Dbootstrap-responsive.min.css439 input, textarea, .uneditable-input { selector
459 input.span9, textarea.span9, .uneditable-input.span9 {
463 input.span8, textarea.span8, .uneditable-input.span8 {
467 input.span7, textarea.span7, .uneditable-input.span7 {
471 input.span6, textarea.span6, .uneditable-input.span6 {
475 input.span5, textarea.span5, .uneditable-input.span5 {
479 input.span4, textarea.span4, .uneditable-input.span4 {
483 input.span3, textarea.span3, .uneditable-input.span3 {
487 input.span2, textarea.span2, .uneditable-input.span2 {
491 input.span1, textarea.span1, .uneditable-input.span1 {
[all …]
/plugin/bureaucracy-au/script/
H A Dfieldsets.js4 * Fieldsets may be defined as dependent on the value of a certain input. In
8 * specify the target input (fname) and the target value for which the fieldset
22 function updateFieldset(input) { argument
23 jQuery.each(jQuery(input).data('dparray'), function (i, dp) {
25input.parentNode.parentNode.style.display !== 'none' && // input/checkbox is d…
26 …((input.checked === dp.tval) || // ( checkbox is chec…
27 …(input.type !== 'checkbox' && (dp.tval === true && input.value !== '')) || // OR no checkbox, but…
28input.value === dp.tval); // OR input === dp.tva…
32 dp.fset.find('input,select')
59 … //get controller field and add info and change event to the input that controls depending fieldset
[all …]
/plugin/bureaucracyau/script/
H A Dfieldsets.js4 * Fieldsets may be defined as dependent on the value of a certain input. In
8 * specify the target input (fname) and the target value for which the fieldset
22 function updateFieldset(input) { argument
23 jQuery.each(jQuery(input).data('dparray'), function (i, dp) {
25input.parentNode.parentNode.style.display !== 'none' && // input/checkbox is d…
26 …((input.checked === dp.tval) || // ( checkbox is chec…
27 …(input.type !== 'checkbox' && (dp.tval === true && input.value !== '')) || // OR no checkbox, but…
28input.value === dp.tval); // OR input === dp.tva…
32 dp.fset.find('input,select')
59 … //get controller field and add info and change event to the input that controls depending fieldset
[all …]
/plugin/findologicxmlexport/vendor/doctrine/lexer/lib/Doctrine/Common/Lexer/
H A DAbstractLexer.php33 * Lexer original input string.
37 private $input; variable in Doctrine\\Common\\Lexer\\AbstractLexer
67 * The next token in the input.
81 * Sets the input data to be tokenized.
86 * @param string $input The input to be tokenized.
90 public function setInput($input) argument
92 $this->input = $input;
96 $this->scan($input);
239 * Scans the input string for tokens.
241 * @param string $input A query string.
[all …]
/plugin/explorertree/
H A Daction.php31 global $INPUT; //available since release 2012-10-13 "Adora Belle"
35 switch($INPUT->str('operation')){
41 if (!($route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader')))){
42 $data = array('error'=>true,'msg'=>"Can't load route '".$INPUT->str('route')."'!");
44 …$data = array('html' => $helper->htmlExplorer($INPUT->str('route'),ltrim(':'.$INPUT->str('itemid')…
52 $route = $helper->loadRoute($INPUT->str('route'),$INPUT->arr('loader'));
53 if (!$route || !is_callable(@$route['callbacks'][$INPUT->str(event)])) {
54 …data = array('error'=>true,'msg'=>"Can't load callback '".$INPUT->str('event')."'for '".$INPUT->st…
56 …$data = @call_user_func_array($route['callbacks'][$INPUT->str(event)],array($INPUT->str('itemid'))…
57 …if (!is_array($data)) $data = array('error'=>true,'msg'=>"Callback for '".$INPUT->str('event')."' …
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/
H A DPHPUnitAssertions.php37 $getObj = function ($input) {
38 if (is_resource($input)) {
39 $input = stream_get_contents($input);
41 if (is_string($input)) {
42 $input = Reader::read($input);
44 if (!$input instanceof Component) {
45 $this->fail('Input must be a string, stream or VObject component');
47 unset($input->PRODID);
48 … if ($input instanceof Component\VCalendar && 'GREGORIAN' === (string) $input->CALSCALE) {
49 unset($input->CALSCALE);
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/
H A DPHPUnitAssertions.php38 $getObj = function($input) use ($self) {
40 if (is_resource($input)) {
41 $input = stream_get_contents($input);
43 if (is_string($input)) {
44 $input = Reader::read($input);
46 if (!$input instanceof Component) {
47 $this->fail('Input must be a string, stream or VObject component');
49 unset($input->PRODID);
50 if ($input instanceof Component\VCalendar && (string)$input->CALSCALE === 'GREGORIAN') {
51 unset($input->CALSCALE);
[all …]
/template/flarum/css/
H A D_forms.less5 input[type=submit],
6 input[type=button],
7 input[type=reset],
8 input.button,
33 input[type=reset]:hover,
35 input[type=reset]:hover,
36 input.button:hover,
37 input.button:active,
38 input.button:focus,
65 input[type=checkbox] {
[all …]
/plugin/webdav/vendor/sabre/vobject/lib/Parser/
H A DXML.php27 * The input data.
31 protected $input; variable in Sabre\\VObject\\Parser\\XML
52 * @param mixed $input
67 * @param resource|string $input
76 if (!is_null($input)) {
77 $this->setInput($input);
85 throw new EofException('End of input stream, or no input supplied');
349 * Sets the input data.
356 $input = stream_get_contents($input);
359 if (is_string($input)) {
[all …]
H A DParser.php41 * Optionally, it's possible to parse the input stream here.
43 * @param mixed $input
46 public function __construct($input = null, $options = 0) argument
48 if (!is_null($input)) {
49 $this->setInput($input);
60 * If either input or options are not supplied, the defaults will be used.
62 * @param mixed $input
67 abstract public function parse($input = null, $options = 0); argument
70 * Sets the input data.
72 * @param mixed $input
[all …]
/plugin/icalevents/vendor/sabre/vobject/lib/Parser/
H A DXML.php27 * The input data.
31 protected $input; variable in Sabre\\VObject\\Parser\\XML
52 * @param mixed $input
70 * @param resource|string $input
79 if (!is_null($input)) {
88 throw new EofException('End of input stream, or no input supplied');
387 * Sets the input data.
393 function setInput($input) { argument
396 $input = stream_get_contents($input);
399 if (is_string($input)) {
[all …]
/template/twentyfifteen/css/
H A Dbasic.less295 input,
305 input,
316 input {
324 input,
345 input[disabled],
354 input[type="reset"],
369 input[type="text"],
370 input[type="email"],
371 input[type="url"],
386 input:focus,
[all …]
/plugin/codehighlight/cp/languages/
H A Druby.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 { input : /([\$\@\%]+)([\w\.]*)/g, output : '<a>$1$2</a>' }, // vars
10 { input : /(def\s+)([\w\.]*)/g, output : '$1<em>$2</em>' }, // functions
12 { input : /([\(\){}])/g, output : '<u>$1</u>' }, // special chars
13 { input : /#(.*?)(<br>|<\/P>)/g, output : '<i>#$1</i>$2' } // comments
19 { input : '\'',output : '\'$0\'' },
20 { input : '"', output : '"$0"' },
21 { input : '(', output : '\($0\)' },
22 { input : '[', output : '\[$0\]' },
[all …]
H A Dautoit.js8 { input : /({|}|\(|\))/g, output : '<b>$1</b>' }, // Brackets
9 { input : /(\*|\+|-)/g, output : '<b>$1</b>' }, // Operator
12 { input : /\b([\d]+)\b/g, output : '<ins>$1</ins>' }, // Numbers
14 { input : /(\$[\w\.]*)/g, output : '<var>$1</var>' }, // vars
15 { input : /(_[\w\.]*)/g, output : '<a>$1</a>' }, // underscored word
16 { input : /(\@[\w\.]*)/g, output : '<em>$1</em>' }, // Macros
25 { input : '\'',output : '\'$0\'' },
26 { input : '"', output : '"$0"' },
27 { input : '(', output : '\($0\)' },
28 { input : '[', output : '\[$0\]' },
[all …]
H A Dgeneric.js7 { input : /\"(.*?)(\"|<br>|<\/P>)/g, output : '<s>"$1$2</s>' }, // strings double quote
8 { input : /\'(.*?)(\'|<br>|<\/P>)/g, output : '<s>\'$1$2</s>' }, // strings single quote
9 …{ input : /\b(abstract|continue|for|new|switch|default|goto|boolean|do|if|private|this|break|doubl…
10 { input : /([\(\){}])/g, output : '<em>$1</em>' }, // special chars;
11 { input : /([^:]|^)\/\/(.*?)(<br|<\/P)/g, output : '$1<i>//$2</i>$3' }, // comments //
12 { input : /\/\*(.*?)\*\//g, output : '<i>/*$1*/</i>' } // comments /* */
18 { input : '\'', output : '\'$0\'' },
19 { input : '"', output : '"$0"' },
20 { input : '(', output : '\($0\)' },
21 { input : '[', output : '\[$0\]' },
[all …]
/plugin/onlineordering/
H A Dconfirm_form.php11 $output .= '<input type="hidden" name="onlineordering_stage" id="onlineordering_stage" value="'.$fo…
12 $output .= '<input type="hidden" name="onlineordering_title" id="onlineordering_title" value="'.$fo…
15 $output .= '<input type="hidden" name="onlineordering_street" id="onlineordering_street" value="'.$…
17 $output .= '<input type="hidden" name="onlineordering_place" id="onlineordering_place" value="'.$fo…
19 $output .= '<input type="hidden" name="onlineordering_email" id="onlineordering_email" value="'.$fo…
101 $output .= '<br /><input type="submit" name="Submit" value="'.$this->getLang('send').'" tabindex="1…
105 $output .= '<input type="hidden" name="onlineordering_stage" id="onlineordering_stage" value="0">';
106 $output .= '<input type="hidden" name="onlineordering_title" id="onlineordering_title" value="'.$fo…
111 $output .= '<input type="hidden" name="onlineordering_place" id="onlineordering_place" value="'.$fo…
113 $output .= '<input type="hidden" name="onlineordering_email" id="onlineordering_email" value="'.$fo…
[all …]
/template/daily/css/
H A Dbasic.less315 input,
349 input,
357 input:active,
358 input:focus,
367 input[type=radio],
369 input[type=image] {
378 input[type=reset],
379 input.button,
390 #IE7 input.button,
432 input[disabled],
[all …]
/plugin/davcard/vendor/sabre/vobject/tests/VObject/
H A DTestCase.php23 $getObj = function($input) use ($self) {
25 if (is_resource($input)) {
26 $input = stream_get_contents($input);
28 if (is_string($input)) {
29 $input = Reader::read($input);
31 if (!$input instanceof Component) {
32 $this->fail('Input must be a string, stream or VObject component');
34 unset($input->PRODID);
35 return $input;
/plugin/bureaucracyau/_test/
H A Dsyntax.test.php11 $input = file_get_contents(dirname(__FILE__) . '/input.txt');
12 $xhtml = p_render('xhtml', p_get_instructions($input), $info);
19 // standard input types
21 $this->checkField($doc, 'Your Age', 'input[type=text].edit', true);
23 $this->checkField($doc, 'Occupation (optional)', 'input[type=text].edit');
43 $this->checkField($doc, 'File1', 'input[type=file].edit', true);
51 $input = file_get_contents(dirname(__FILE__) . '/input.txt');
52 $xhtml = p_render('xhtml', p_get_instructions($input), $info);
72 $input = pq($check, $label);
73 $this->assertEquals(1, $input->length, "find check of $name");
[all …]
/plugin/bureaucracy-au/_test/
H A Dsyntax.test.php11 $input = file_get_contents(dirname(__FILE__) . '/input.txt');
12 $xhtml = p_render('xhtml', p_get_instructions($input), $info);
19 // standard input types
21 $this->checkField($doc, 'Your Age', 'input[type=text].edit', true);
23 $this->checkField($doc, 'Occupation (optional)', 'input[type=text].edit');
43 $this->checkField($doc, 'File1', 'input[type=file].edit', true);
51 $input = file_get_contents(dirname(__FILE__) . '/input.txt');
52 $xhtml = p_render('xhtml', p_get_instructions($input), $info);
72 $input = pq($check, $label);
73 $this->assertEquals(1, $input->length, "find check of $name");
[all …]
/template/arcadebasic/css/
H A Darcadebasic.css155 input, selector
171 html input[type="button"],
172 input[type="reset"],
173 input[type="submit"] {
178 html input[disabled] {
182 input::-moz-focus-inner {
186 input { selector
189 input[type="checkbox"],
190 input[type="radio"] {
194 input[typ
322 input, global() selector
4269 input, textarea { global() selector
[all...]
/plugin/jplayer/vendor/symfony/process/
H A DInputStream.php17 * Provides a way to continuously write to the input of a Process until the InputStream is closed.
25 private $input = []; variable in Symfony\\Component\\Process\\InputStream
37 * Appends an input to the write buffer.
39 * @param resource|string|int|float|bool|\Traversable|null $input The input to append as scalar,
42 public function write($input) argument
44 if (null === $input) {
50 $this->input[] = ProcessUtils::validateInput(__METHOD__, $input);
73 while ($this->open || $this->input) {
74 if (!$this->input) {
78 $current = array_shift($this->input);
[all …]
/plugin/loglog/
H A Daction.php124 global $INPUT;
126 $page = $INPUT->str('page');
228 global $INPUT;
232 $this->logAdmin([$INPUT->str('act') . ' ' . $INPUT->str('ext')], 'extension');
243 global $INPUT;
246 if ($INPUT->str('page') === 'config'
247 && $INPUT->bool('save') === true
248 && !empty($INPUT->arr('config'))
255 if ($INPUT->post->has('fn')) {
270 if ($INPUT->str('page') === 'acl' && $INPUT->has('cmd')) {
[all …]

12345678910>>...175