Lines Matching full:input

120         global $INPUT;
125 $fn = $INPUT->param('fn');
136 $this->start = $INPUT->int('start', 0);
248 echo '<td class="rightalign"><input type="image" src="' .
251 echo '<td><input type="text" name="userid" class="edit" value="' . $this->htmlFilter('user') . '" /></td>';
252 echo '<td><input type="text" name="username" class="edit" value="' . $this->htmlFilter('name') . '" /></td>';
253 echo '<td><input type="text" name="usermail" class="edit" value="' . $this->htmlFilter('mail') . '" /></td>';
254 echo '<td><input type="text" name="usergroups" class="edit" value="' . $this->htmlFilter('grps') . '" /></td>';
270 echo '<td class="centeralign"><input type="checkbox" name="delete[' . hsc($user) .
307 echo '<input type="hidden" name="do" value="admin" />';
308 echo '<input type="hidden" name="page" value="usermanager" />';
469 <td><input type="checkbox" id="' . $cmd . '_usernotify" name="usernotify" value="1" />
477 echo '<input type="hidden" name="do" value="admin" />';
478 echo '<input type="hidden" name="page" value="usermanager" />';
482 echo '<input type="hidden" name="userid_old" value="' . hsc($user) . "\" />";
539 echo "<input type=\"$fieldtype\" id=\"$id\" name=\"$name\"
542 echo "<input type=\"hidden\" name=\"$name\" value=\"$value\" />";
543 echo "<input type=\"$fieldtype\" id=\"$id\" name=\"$name\"
570 echo '<input type="hidden" name="start" value="' . $this->start . '" />';
573 echo '<input type="hidden" name="filter[' . $key . ']" value="' . hsc($filter) . '" />';
592 echo '<label>' . $this->lang['import_userlistcsv'] . '<input type="file" name="import" /></label>';
594 echo '<input type="hidden" name="do" value="admin" />';
595 echo '<input type="hidden" name="page" value="usermanager" />';
642 global $INPUT;
651 if ($INPUT->has('usernotify')) {
696 if ($INPUT->has('usernotify') && $pass) {
714 global $conf, $INPUT;
719 $selected = $INPUT->arr('delete');
776 global $conf, $INPUT;
782 $olduser = $this->auth->cleanUser(preg_replace('/.*[:\/]/', '', $INPUT->str('userid_old')));
811 } elseif ($INPUT->has('usernotify')) {
830 if ($INPUT->has('usernotify') && !empty($changes['pass'])) {
907 global $INPUT;
910 $user[0] = ($clean) ? $auth->cleanUser($INPUT->str('userid')) : $INPUT->str('userid');
911 $user[1] = $INPUT->str('userpass');
912 $user[2] = $INPUT->str('username');
913 $user[3] = $INPUT->str('usermail');
914 $user[4] = explode(',', $INPUT->str('usergroups'));
915 $user[5] = $INPUT->str('userpass2'); // repeated password for confirmation
957 global $INPUT;
959 $t_filter = $INPUT->arr('filter');
1136 * @param array $candidate raw values of line from input file
1142 global $INPUT;
1145 $INPUT->set('userid', $candidate[0]);
1146 $INPUT->set('userpass', $candidate[1]);
1147 $INPUT->set('username', $candidate[2]);
1148 $INPUT->set('usermail', $candidate[3]);
1149 $INPUT->set('usergroups', $candidate[4]);