Lines Matching full:input

29  * browsing, data lookup and input ...
113 * input data
118 private $input = null; variable in Database2
503 * Reads all available input data extracting values related to this plugin.
505 * @return array set of input data related to current plugin
511 if ( is_null( $this->input ) )
516 $this->input = array();
523 if ( is_null( $this->input[$matches[1]] ) )
525 $this->input[$matches[1]] = is_array( $value ) ? $value[$index] : $value;
530 return $this->input;
564 * Renders name of form element to conform with input parser above.
643 // select subset of input parameters
833 <input type="submit" name="$resetCmd" value="$btnSession" />
834 <input type="submit" name="$viewCmd" value="$btnTable" />
954 $input = $this->getInput();
985 * process input data updating record and handle contained commands
988 if ( $input && ( $input['____single'] === md5( $rowid ) ) )
992 if ( $input['____nav'] )
995 if ( $input['____nav'][0] == 'P' )
1000 $result = intval( substr( $input['____nav'], 1 ) );
1013 if ( $input['____cancel'] )
1030 * validate input data and store in session
1052 $error = $this->checkValue( $rowid, $column, $input['data'.$column], $store[$column], $def );
1056 // user may change his previous input next rather
1058 // --> store even malformed input in editor session
1059 $store[$column] = $input['data'.$column];
1067 if ( !$readOnly && empty( $errors ) && $input['____save'] )
1261 if ( !is_integer( $input['____idx'] ) )
1262 $input['____idx'] = $this->recordI2X( $rowid );
1265 if ( $input['____idx'] )
1266 $nav[] = array( 'P' . $this->recordX2I( $input['____idx'] - 1 ),
1270 $nextID = $this->recordX2I( $input['____idx'] + 1 );
1313 $this->varname( '____idx' ) => $input['____idx'],
1679 * @param boolean $expectInput if true, input is processed and controls
1708 * update view state according to available input data
1726 $input = $this->getInput();
1728 foreach ( $input as $name => $dummy )
2017 $sorter = "&nbsp;<input " .
2170 return '<input type="submit" name="' . $this->varname( $name ) .
2186 return '<input type="image" name="' . $this->varname( $name ) .
2536 $globalCmds[$name] = '<input type="image" class="icon-cmd" name="' .
2600 $recordCmds[$name] = '<input type="image" class="icon-cmd' .
2820 * modifications in current input data.
2828 $input = $this->getInput();
2832 if ( $input['searchdrop'] )
2849 // parse filter input and transfer it to session
2850 foreach ( $input as $key => $value )
3069 $input = $this->getInput();
3076 if ( empty( $filters ) || $input['searchand'] || $input['searchor'] )
3086 if ( $input['searchand'] )
3088 else if ( $input['searchor'] )
3133 …<input type="text" name="$argname" size="10" value="$argument" class="argument text numeric date e…
5273 * Processes and validates input value on selected column.
5275 * Set $column false to skip transferring this input value into session
5281 * @param mixed $value input value, optionally adjusted on return
5452 // save input value in editor's session
5709 * @param mixed $value input value
5732 if ( $readOnly && $this->input['optnoctl'] )
5744 $buttons[] = '<input type="submit" name="' .
5769 $buttons[] = '<input type="submit" name="' .
5864 …$current = "<input type=\"submit\" name=\"$name\" value=\"" . $this->getLang( 'cmddropfile' ) . "\…
5866 $code = "<input type=\"file\" name=\"$name\" />$current";
5886 $code = "<input name=\"$name\" type=\"checkbox\" value=\"1\"$checked />";
5972 …$code = "<input name=\"$name\" type=\"text\" value=\"$value\" size=\"$size\" maxlength=\"$maxlen\"…