Home
last modified time | relevance | path

Searched full:input (Results 926 – 950 of 4846) sorted by relevance

1...<<31323334353637383940>>...194

/plugin/livemark/
H A Daction.php48 $input = $data['file'];
50 if ( !($image_details = getimagesize($input)) ) { return false; }
62 $source = imagecreatefromgif($input); break;
64 $source = imagecreatefromjpeg($input); break;
66 $source = imagecreatefrompng($input); break;
/plugin/fckg/fckeditor/editor/plugins/fonts/
H A Dfckplugin.js123 function removeBR(input, skip_space) { /* Used with Gecko */ argument
125 for (var i = 0; i < input.length; i++) {
126 if ((input.charCodeAt(i) == 13) && (input.charCodeAt(i + 1) == 10)) {
132 output += input.charAt(i);
/plugin/amcharts/assets/amcharts/plugins/responsive/examples/
H A Dindex.html84 <input type="button" value="w-" onclick="resize('w', -50);" />
85 <input type="button" value="w+" onclick="resize('w', 50);" />
86 <input type="button" value="h-" onclick="resize('h', -50);" />
87 <input type="button" value="h+" onclick="resize('h', 50);" />
103 <input type="button" value="reload" onclick="reload();" />
/plugin/webdavclient/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php42 * 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 $data = VObject\Reader::read($input, $options);
54 throw new VObject\ParseException('Supplied input could not be parsed as VCALENDAR.');
/plugin/davcal/vendor/sabre/vobject/lib/Splitter/
H A DICalendar.php42 * 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 $data = VObject\Reader::read($input, $options);
54 throw new VObject\ParseException('Supplied input could not be parsed as VCALENDAR.');
/plugin/blogtng/exe/
H A Dtrackback.php39 global $ID, $INPUT;
41 $sourceUri = $INPUT->str('url');
49 if ($INPUT->server->str('REQUEST_METHOD') != 'POST') {
68 if (!$this->tools->saveLinkback('trackback', strip_tags($INPUT->post->str('title')),
69 … $sourceUri, strip_tags($INPUT->post->str('excerpt')), $ID)) {
/plugin/aichat/
H A Daction.php38 global $INPUT;
43 $question = $INPUT->post->str('question');
44 $history = json_decode((string)$INPUT->post->str('history'), null, 512, JSON_THROW_ON_ERROR);
85 'ip' => $INPUT->server->str('REMOTE_ADDR'),
86 'user' => $INPUT->server->str('REMOTE_USER'),
/template/writers/css/
H A D_mediamanager.css57 #media__opts input {
111 #media__content form#dw__upload input.check {
113 #media__content form#dw__upload input.edit {
180 form#dw__mediasearch input.edit {
182 form#dw__mediasearch input.button {
/template/kajukkd/fonts/demo-files/
H A Ddemo.css24 .bshadow0, input { selector
27 input:hover {
30 input, fieldset { selector
37 input { selector
43 input:focus {
/plugin/geophp/vendor/funiq/geophp/src/
H A DgeoPHP.php284 //FIXME should be: throw new \Exception('Input is not a Geometry or array of Geometries');
336 * @param mixed $input
340 public static function detectFormat(&$input) argument
342 $input = (string) $input;
344 fwrite($mem, $input, 11); // Write 11 bytes - we can detect the vast majority of formats in the first 11 bytes
350 // If bytes is empty, then we were passed empty input
357 $input = ltrim($input);
358 return geoPHP::detectFormat($input);
[all...]
/plugin/preventzerowidthchars/_test/
H A Dreplacement.test.php22 * @param $input
28 public function test_replacement($input, $expected_output, $msg) { argument
32 $actual_output = $action->replaceZeroWidthChars($input);
/plugin/ckgedit/ckeditor/skins/moono-lisa/
H A Ddialog.css5input.cke_dialog_ui_input_text,input.cke_dialog_ui_input_password,textarea.cke_dialog_ui_input_tex…
/dokuwiki/inc/
H A DDraft.php72 global $INPUT, $INFO, $EVENT_HANDLER, $conf;
77 !$INPUT->post->has('wikitext') &&
84 'prefix' => substr($INPUT->post->str('prefix'), 0, -1),
85 'text' => $INPUT->post->str('wikitext'),
86 'suffix' => $INPUT->post->str('suffix'),
87 'date' => $INPUT->post->int('date'),
/plugin/leightweightscript/
H A Daction.php62 global $INPUT;
64 if ( $INPUT->str('type') != 'admin' ) {
102 global $INPUT;
104 switch( $INPUT->str('type') ) {
118 … * A simple filter function to check the input string against a list of path-parts that are allowed
134 … * A simple filter function to check the input string against a list of path-parts that are allowed
/plugin/geophp/vendor/funiq/geophp/src/Adapter/
H A DBinaryReader.php34 * Opens a memory buffer with the given input
36 * @param string $input
38 public function __construct($input) argument
40 // if (@is_readable($input)) {
41 // $this->buffer = fopen($input, 'r+');
44 fwrite($this->buffer, (string) $input);
/plugin/webdav/vendor/sabre/dav/lib/CardDAV/
H A DPlugin.php751 <input type="hidden" name="sabreAction" value="mkcol" />
755 <input type="submit" value="create" />
801 * @param string $input
805 protected function negotiateVCard($input, &$mimeType = null) { argument
808 $input,
857 $input = VObject\Reader::read($data);
862 }, $input->children()));
865 unset($input->$key);
867 $data = $input->serialize();
879 $output = $input->convert(VObject\Document::VCARD30);
[all …]
/plugin/authgooglesheets/vendor/firebase/php-jwt/src/
H A DJWT.php332 * @param string $input JSON string
338 public static function jsonDecode(string $input) argument
344 } elseif ($obj === null && $input !== 'null') {
353 * @param array<mixed> $input A PHP array
365 $json = \json_encode($input);
369 } elseif ($json === 'null' && $input !== null) {
381 * @param string $input A Base64 encoded string
389 $remainder = \strlen($input) % 4;
392 $input .= \str_repeat('=', $padlen);
394 return \base64_decode(\strtr($input, '-_', '+/'));
[all …]
/plugin/components/
H A Dscript.js3 var sectok = jQuery(this).find("input[name=sectok]").val();
4 var from = jQuery(this).find("input[name=from]").val();
5 var to = jQuery(this).find("input[name=to]").val();
/plugin/crypto/lang/en/
H A Dlang.php10 $lang['standard_hint'] = 'Please Input Your Secret.';
21 $lang['js']['encrypt_dialog_title'] = 'Please Input Your Secret';
22 $lang['js']['decrypt_dialog_title'] = 'Please Input Your Secret';
/plugin/ckgdoku/action/
H A Dedit.php636 <input type="hidden" name="id" value="<?php echo $ID?>" />
703 <input class="button" id="ebtn__delete" type="submit"
712 <input class="button" id = "ebtn__dwedit"
724 <input class="button" id="ebtn__fbswitch"
743 <input class="button" type="submit"
753 <input class="button" type="button" value = "Test"
760 <input class="button"
769 <input class="button" type="button"
776 <input class="button" type="button"
783 <input class="button" type="submit"
[all …]
/template/mnml-blog/css/
H A Dmnml-blog_screen.css309 input, selector
322 input[type=text],
323 input[type=password],
327 input[type=radio],
328 input[type=checkbox],
329 input.check {
332 input[type=submit],
333 input.button,
337 input[disabled],
339 input[readonly],
[all …]
/template/klean/bootstrap/css/
H A Dbootstrap.min.css.map1input-groups.less","less/navs.less","less/navbar.less","less/mixins/nav-vertical-align.less","less…
/plugin/easyvar/conf/
H A Ddefault.php10 <input type="hidden" name="cmd" value="_s-xclick">
11 <input type="hidden" name="hosted_button_id" value="123456789">
12 <input type="image" src="https://www.paypal.com/en_US/i/btn/btn_cart_SM.gif" border="0" name="submi…
/plugin/sqlite/
H A Dstyle.less10 input[type=file] {
21 input[type=file]::file-selector-button {
25 input[type=file]:invalid + button {
/plugin/fancysearch/
H A Daction.php51 echo '<input type="hidden" name="do" value="search" />';
52 echo '<input type="hidden" id="qsearch__in" value="" />';
53 …echo '<input class="query" id="fancysearch__input" type="text" name="id" autocomplete="off" value=…
54 echo '<input class="submit" type="submit" name="submit" value="Search" />';

1...<<31323334353637383940>>...194