Home
last modified time | relevance | path

Searched full:input (Results 426 – 450 of 4846) sorted by relevance

1...<<11121314151617181920>>...194

/dokuwiki/inc/
H A Dform.php327 global $INPUT;
328 $value = (array_key_exists($INPUT->post->str($name), $entries)) ?
329 $INPUT->str($name) : key($entries);
438 * Create a form element for a labelled input element.
439 * The label text will be printed before the input.
441 * @param string $type Type attribute of input.
442 * @param string $name Name attribute of the input.
446 * @param string $label Label that will be printed before the input.
447 * @param string $id ID attribute of the input. If set, the label will
465 * Create a form element for a labelled input elemen
[all...]
/plugin/news/
H A Dadmin.php98 ptln(' <input type="hidden" name="do" value="admin" />');
99 ptln(' <input type="hidden" name="page" value="'.$this->getPluginName().'" />');
100 …ptln(' <input type="hidden" name="prev_del" id ="prev_del" value="' .$this->prev_deleted. '" />');
102 ptln(' <input type="hidden" name="subfeed_inx" id ="subfeed_inx" value="0" />');
103 ptln(' <input type="hidden" name="subfeed_dir" id ="subfeed_dir" value="" />');
106 ptln(' <input type="submit" name="cmd[prune]" value="'.$this->getLang('btn_prune').'" />');
107 … ptln(' <input type="submit" name="cmd[restore]" value="'.$this->getLang('btn_restore').'" />');
109 …ptln(' <input type="submit" name="cmd[generate]" value="'.$this->getLang('btn_generate').'" />');
113 …ptln(' <input type="submit" id = "subfeedbtn" name="cmd[subfeed]" value="'.$this->getLang('btn_co…
114 ptln(' <input type="button" id = "news_infobtn" value="'.$this->getLang('btn_info').'" />');
[all …]
/plugin/prosemirror/action/
H A Dajax.php51 global $INPUT, $ID;
52 $ID = $INPUT->str('id');
54 foreach ($INPUT->arr('actions') as $action) {
58 $inner = $INPUT->str('inner');
64 $inner = $INPUT->str('inner');
71 $attrs = $INPUT->arr('attrs');
87 $image = $INPUT->arr('image');
102 $attrs = json_decode($INPUT->str('attrs'), true);
157 global $INPUT;
159 if ($INPUT
[all...]
/plugin/recommend/
H A Dadmin.php21 global $INPUT;
27 if ($INPUT->str('action') && $INPUT->arr('assignment') && checkSecurityToken()) {
28 $assignment = $INPUT->arr('assignment');
29 if ($INPUT->str('action') === 'delete') {
34 } elseif ($INPUT->str('action') === 'add') {
91 $form .= '<input type="hidden" name="do" value="admin" />';
92 $form .= '<input type="hidden" name="page" value="recommend" />';
93 $form .= '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
137 $form .= '<td><input type="text" name="assignment[pattern]" /></td>';
138 $form .= '<td><input type="text" name="assignment[user]" /></td>';
[all …]
/plugin/siteexport/action/
H A Daggregate.php32 global $ID, $INFO, $conf, $INPUT;
37 …eexport']) && $INFO['meta']['siteexport']['hasaggregator'] == true) && ( $INPUT->has( 'siteexport_…
39 $exportBase = $INPUT->str('baseID');
59 if ( $INPUT->bool('exportSelectedVersionOnly' ) ) {
62 if ( $INPUT->has( 'mergecompare_start' ) && $INPUT->has( 'mergecompare_end' ) ) {
63 …ctions->__getOrderedListOfPagesForStartEnd($lookupNS, $INPUT->int( 'mergecompare_start' ), $INPUT-…
69 $includeSelected = $INPUT->str('includeSelectedVersion', 'true', true ) === 'true';
91 if( $INPUT->bool('mergehint', true, true ) ) {
120 $renderer = $INPUT->str('renderer', $conf['renderer_xhtml'], true);
121 $INPUT->set('do', 'export_' . $renderer);
/dokuwiki/inc/Form/
H A DInputElement.php8 * Base class for all input elements. Uses a wrapping label when label
50 * Should the user sent input be used to initialize the input field
52 * The default is true. Any set values will be overwritten by the INPUT
91 * Figures out how to access the value for this field from INPUT data
125 global $INPUT;
128 if (!$INPUT->has($name)) return;
131 $value = $INPUT->str($name);
133 $value = $INPUT->arr($name);
151 return '<input '
[all...]
/dokuwiki/lib/plugins/popularity/
H A Dadmin.php57 global $INPUT;
60 if ($INPUT->has('data')) {
61 $this->sentStatus = $this->helper->sendData($INPUT->str('data'));
67 $this->enableAutosubmit($INPUT->has('autosubmit'));
89 global $INPUT;
91 if (! $INPUT->has('data')) {
114 echo $this->buildForm('browser', $INPUT->str('data'));
141 . '<input type="checkbox" name="autosubmit" id="autosubmit" '
145 . '<input type="hidden" name="do" value="admin" />'
146 . '<input typ
[all...]
/plugin/revealjs/plugin/search/
H A Dsearch.js31 this.setRegex = function(input) argument
33 input = input.replace(/^[^\w]+|[^\w]+$/g, "").replace(/[^\w'-]+/g, "|");
34 matchRegex = new RegExp("(" + input + ")","i");
100 this.apply = function(input) argument
102 if(input == undefined || !input) return;
104 this.setRegex(input);
112 //ensure the search term input dialog is visible and has focus:
177 …searchElement.innerHTML = '<span><input type="search" id="searchinput" class="searchinput" style="…
/plugin/wysiwyg/fckeditor/_samples/html/
H A Dsample08.html166 <input type="submit" value="Submit" />
179 <input type="button" value="Insert HTML" onclick="InsertHTML();" />
180 <input type="button" value="Set Editor Contents" onclick="SetContents();" />
181 <input type="button" value="Get Editor Contents (XHTML)" onclick="GetContents();" />
184 <input type="button" value='Execute "Bold" Command' onclick="ExecuteCommand('Bold');" />
185 <input type="button" value='Execute "Link" Command' onclick="ExecuteCommand('Link');" />
188 <input type="button" value="Interact with the Editor Area DOM" onclick="GetLength();" />
189 <input type="button" value="Get innerHTML" onclick="GetInnerHTML();" />
192 <input type="button" value="Check IsDirty()" onclick="CheckIsDirty();" />
193 <input type="button" value="Reset IsDirty()" onclick="ResetIsDirty();" />
/dokuwiki/inc/Ui/
H A DUserResendPwd.php25 global $INPUT;
27 $token = preg_replace('/[^a-f0-9]+/', '', $INPUT->str('pwauth'));
61 $input = $form->addPasswordInput('pass', $lang['pass'])->attr('size', '50')->addClass('edit');
62 $input->getLabel()->attr('class', 'block');
64 $input = $form->addPasswordInput('passchk', $lang['passchk'])->attr('size', '50')->addClass('edit');
65 $input->getLabel()->attr('class', 'block');
90 $input = $form->addTextInput('login', $lang['user'])->addClass('edit');
91 $input->getLabel()->attr('class', 'block');
/plugin/addressbook/
H A Dstyle.css69 .plugin_addressbook_editform input[type=text]{
82 .plugin_addressbook_searchbox input[type=text]{
94 .plugin_addressbook_searchbox input[type=text]:focus{
99 .plugin_addressbook_editform input[type=text]:focus{
131 .plugin_addressbook_editform input[type=submit],
132 .plugin_addressbook_editform input[type=submit]:hover,
133 .plugin_addressbook_searchbox input[type=submit],
134 .plugin_addressbook_searchbox input[type=submit]:hover {
/plugin/farm/
H A Dscript.js28 input = this.getAttribute('ref');
35 input = input.replace(/[^A-Za-z0-9\+\/\=]/g, "");
38 enc1 = keyStr.indexOf(input.charAt(i++));
39 enc2 = keyStr.indexOf(input.charAt(i++));
40 enc3 = keyStr.indexOf(input.charAt(i++));
41 enc4 = keyStr.indexOf(input.charAt(i++));
50 } while (i < input.length);
/plugin/sequencediagram/bower_components/js-sequence-diagrams/src/
H A Ddiagram.js31 * Parses the input as either a alias, or a "name as alias", and returns the corresponding actor.
33 Diagram.prototype.getActorWithAlias = function(input) { argument
34 input = input.trim();
37 var s = /([\s\S]+) as (\S+)$/im.exec(input);
44 name = alias = input;
147 Diagram.parse = function(input) { argument
157 var diagram = parser.parse(input);
/plugin/edittable/action/
H A Dnewtable.php46 global $INPUT;
49 if (!$INPUT->post->has('edittable__new')) return;
57 $fields = $INPUT->post->arr('edittable__new');
63 $INPUT->post->set('edittable__new', $fields);
70 $INPUT->post->set('target', 'table');
74 $INPUT->post->set('target', 'table');
82 $INPUT->post->set('target', 'section');
88 $INPUT->post->set('target', 'section');
/template/h6e-minimal/
H A Dh6e.css48 input[type="text"], input[type="password"], input.text, input.button, textarea {
101 .secedit input.button {
145 #config__manager tr.default .input,
146 #config__manager tr.default input,
169 #user__manager input[type="image"] {
/plugin/struct/action/
H A Dinline.php101 echo '<span class="input">';
121 global $INPUT;
141 $value = $INPUT->param('entry');
194 global $INPUT;
195 $pid = $INPUT->str('pid');
200 * Initialize internal state based on input variables
202 * @param int $updatedRev timestamp of currently created revision, might be newer than input variable
207 global $INPUT;
212 $pid = $INPUT->str('pid');
213 $rid = $INPUT
[all...]
/plugin/bureaucracy/
H A Dstyle.css46 .dokuwiki form.bureaucracy__plugin label input.edit,
50 .dokuwiki form.bureaucracy__plugin label input.datepicker,
51 .dokuwiki form.bureaucracy__plugin label input.timefield {
59 .dokuwiki form.bureaucracy__plugin label input[type=checkbox] {
64 .dokuwiki form.bureaucracy__plugin input.button {
72 .dokuwiki form.bureaucracy__plugin label input[type=radio]~span {
94 .dokuwiki form.bureaucracy__plugin input.button {
/plugin/findologicxmlexport/vendor/phpunit/php-code-coverage/src/Report/Html/Renderer/Template/css/
H A Dbootstrap.min.css5input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,… selector
/template/klean/bootstrap/css/
H A Dbootstrap.less112 input,
143 input {
2610 input[type="date"].input-sm,
2611 input[type="time"].input-sm,
2613 input[type="month"].input-sm,
2614 .input-group-sm input[type="date"],
2620 input[type="date"].input-lg,
2621 input[type="time"].input-lg,
2623 input[type="month"].input-lg,
3909 .input-group-addon.input-sm {
[all …]
H A Dbootstrap.min.css5input,optgroup,select,textarea{margin:0;font:inherit;color:inherit}button{overflow:visible}button,… selector
/template/mywiki/css/
H A Dbootstrap.css112 input, selector
143 input { selector
2610 input[type="date"].input-sm,
2611 input[type="time"].input-sm,
2613 input[type="month"].input-sm,
2614 .input-group-sm input[type="date"],
2620 input[type="date"].input-lg,
2621 input[type="time"].input-lg,
2623 input[type="month"].input-lg,
3909 .input-group-addon.input-sm {
[all …]
/plugin/dirtylittlehelper/mermaid/editor/docs/
H A Dglobal.css39 input, button, select, textarea { selector
49 input:disabled {
53 input[type="range"] {
103 input, button, select, textarea {
113 input:disabled {
117 input[type="range"] {
/plugin/structsection/lib/
H A Dbundle.js1input type="hidden" name="pid">').val(i)),r.append(jQuery('<input type="hidden" name="field">').va…
/template/chippedsnow/css/
H A Dchippedsnow-responsive.css16 input[type="checkbox"].hide:checked ~ #navcontainer, .menutoggle {
24 /*input, button, select, keygen, textarea { font-size: 1.35em !important; }*/
52 div.input, label.nowrap { display: flex; } select { width: 100%; flex-shrink: 1; }
58 #config__manager td .input,
60 input, textarea, selector
61 #config__manager td input.edit,
/plugin/freechat/phpfreechat/lib/csstidy-1.2/
H A Dcss_optimiser.php171 <input type="checkbox" name="sort_sel" id="sort_sel"
176 <input type="checkbox" name="sort_de" id="sort_de"
192 <input type="checkbox" name="compress_c" id="compress_c"
197 <input type="checkbox" name="compress_fw" id="compress_fw"
208 <input type="radio" name="case_properties" id="none" value="0"
211 <input type="radio" name="case_properties" id="lower_yes" value="1"
218 <input type="checkbox" name="rbs" id="rbs"
223 <input type="checkbox" id="remove_last_sem" name="remove_last_sem"
228 <input type="checkbox" id="discard" name="discard"
234 <input type="checkbox" id="timestamp" name="timestamp"
[all …]

1...<<11121314151617181920>>...194