Lines Matching full:input

65         global $INPUT;
71 if ($INPUT->str('ns') == '*') {
74 $this->ns = cleanID($INPUT->str('ns'));
77 if ($INPUT->str('current_ns')) {
78 $this->current_item = ['id' => cleanID($INPUT->str('current_ns')), 'type' => 'd'];
79 } elseif ($INPUT->str('current_id')) {
80 $this->current_item = ['id' => cleanID($INPUT->str('current_id')), 'type' => 'f'];
88 $who = trim($INPUT->str('acl_w'));
89 if ($INPUT->str('acl_t') == '__g__' && $who) {
91 } elseif ($INPUT->str('acl_t') == '__u__' && $who) {
97 $INPUT->str('acl_t') &&
98 $INPUT->str('acl_t') != '__u__' &&
99 $INPUT->str('acl_t') != '__g__'
101 $this->who = $INPUT->str('acl_t');
107 if ($INPUT->has('cmd') && checkSecurityToken()) {
108 $cmd = $INPUT->extract('cmd')->str('cmd');
121 if ($cmd == 'save' && $scope && $this->who && $INPUT->has('acl')) {
124 $this->addOrUpdateACL($scope, $this->who, $INPUT->int('acl'));
129 $acl = $INPUT->arr('acl');
132 foreach ($INPUT->arr('del') as $where => $names) {
357 '<input type="text" name="acl_w" class="edit" value="%s" />',
367 echo '<input type="hidden" name="ns" value="' . hsc($this->ns) . '" />';
368 echo '<input type="hidden" name="id" value="' . hsc($ID) . '" />';
369 echo '<input type="hidden" name="do" value="admin" />';
370 echo '<input type="hidden" name="page" value="acl" />';
371 echo '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
642 echo '<input type="hidden" name="ns" value="' . hsc($this->ns) . '" />';
644 echo '<input type="hidden" name="id" value="' . hsc($ID) . '" />';
646 echo '<input type="hidden" name="acl_w" value="' . hsc($this->who) . '" />';
647 echo '<input type="hidden" name="do" value="admin" />';
648 echo '<input type="hidden" name="page" value="acl" />';
649 echo '<input type="hidden" name="sectok" value="' . getSecurityToken() . '" />';
684 echo '<input type="checkbox" name="del[' . hsc($where) . '][]" value="' . hsc($who) . '" />';
800 $ret .= '<input ' . buildAttributes($atts) . ' />&#160;';