Lines Matching refs:name

201 	 * @param string $name name of setting to retrieve
205 public function getConf( $name ) argument
213 $value = $this->integrator->getConf( $name, null );
215 if ( !is_null( $conf[$name] ) )
216 $value = $conf[$name];
224 if ( isset( $conf['plugin']['database2'][$name] ) )
225 return $conf['plugin']['database2'][$name];
227 return $conf[$name];
235 * @param string $name name of localized string
239 public function getLang( $name ) argument
243 return $this->integrator->getLang( $name );
262 return $this->integrator[$name];
432 list( $name, $value ) = $temp;
434 if ( strcasecmp( $name, $authConfigSlot ) )
520 foreach ( $_REQUEST as $name => $value )
521 if ( preg_match( '/^db2do(.+?)(_[xy])?$/i', $name, $matches ) )
522 if ( $matchingSecTok || ( $_GET[$name] && preg_match( '/^(cmd|opt)/i', $matches[1] ) ) )
566 * @param string $name internal name of element
571 protected function varname( $name, $rowid = null ) argument
573 return 'db2do' . $name . ( $rowid ? $rowid : '' ) . '[' .
845 foreach ( $this->meta as $name => $def )
847 return $name;
1230 foreach ( $record as $name => $value )
1231 … if ( !$this->isAuthorizedMulti( $rowACL, $this->meta[$name]['options'], 'mayview', null, true ) )
1234 $record[$name] = $this->getInitialValue( $column, $def );
1506 foreach ( $cols as $index => $name )
1507 if ( is_string( $meta[$name]['options']['aliasing'] ) )
1508 $cols[$index] = $meta[$name]['options']['aliasing'] . ' AS ' .
1509 $name;
1728 foreach ( $input as $name => $dummy )
1729 if ( preg_match( '/^(skip|num|sort)(.+)$/i', $name, $m ) )
1732 $name = strtolower( $m[1] );
1734 $updated[$name] = ( $name == 'sort' ) ? trim( $m[2] )
1999 $name = $column;
2005 $name = '!' . $column;
2011 $name = $column;
2018 'type="image" name="' . $this->varname( 'sort' . $name ).
2157 protected function button( $name, $label ) argument
2170 return '<input type="submit" name="' . $this->varname( $name ) .
2176 protected function imgbutton( $name, $label, $icon ) argument
2186 return '<input type="image" name="' . $this->varname( $name ) .
2344 foreach ( $hiddens as $name => $value )
2345 $form->addHidden( $name, $value );
2520 foreach ( $globalCmds as $name => $def )
2521 if ( $this->isAuthorized( $this->options['may'.($authz=strtok( $name, '.' ))] ) )
2528 $globalCmds[$name] = '<a href="' . $href . '" class="icon-cmd" target="' . $def[4] .
2536 $globalCmds[$name] = '<input type="image" class="icon-cmd" name="' .
2537 $this->varname( 'cmd' . $name ) .
2544 unset( $globalCmds[$name] );
2592 foreach ( $recordCmds as $name => $def )
2593 if ( $this->isAuthorizedMulti( $rowACL, $this->options, 'may' . $name ) )
2596 $idName = $this->varname( 'cmd' . $name, $rowid );
2597 $class = ( !in_array( $name, $clickActions ) ||
2600 $recordCmds[$name] = '<input type="image" class="icon-cmd' .
2608 unset( $recordCmds[$name] );
3229 $name = substr( $in, $pos, $end - $pos );
3231 if ( $name === '' )
3235 if ( ctype_digit( $name ) )
3236 $name = intval( $name );
3280 return array( $name, $value );
3320 $name = strtok( substr( $in, $tag + 1, 20 ), ' >' );
3321 $name = strtolower( trim( $name ) );
3323 if ( array_search( $name, $tags ) !== false )
3328 if ( preg_match( "#.+?</\s*$name\s*>#i", $in, $m, null, $tag ) )
3416 $name = '';
3429 list( $name, $value ) = $temp;
3431 $options[$name] = $value;
3538 foreach ( $attributes as $name => $value )
3542 $name = strtolower( $name );
3543 switch ( $name )
3616 if ( preg_match( '/^@(\d+)$/', $name, $matches ) )
3618 else if ( substr( $name, 0, 6 ) == 'unique' )
3626 $group = trim( substr( $name, 6 ) );
3637 else if ( ctype_digit( trim( $name ) ) )
3640 $options['length'] = intval( $name );
3644 $options[$name] = $value;
5759 $name = $this->getLang( 'cmdokay' );
5765 $name = $this->getLang( 'cmdreturn' );
5771 …'" value="' . ( $readOnly ? $name : ( $mode ? $this->getLang( 'cmdnosave' ) : $this->getLang( 'cmd…
5837 $name = $this->varname( 'data' . $column );
5864 …$current = "<input type=\"submit\" name=\"$name\" value=\"" . $this->getLang( 'cmddropfile' ) . "\…
5866 $code = "<input type=\"file\" name=\"$name\" />$current";
5880 $code = "<textarea name=\"$name\" class=\"text\" rows=\"5\" cols=\"50\">$value</textarea>";
5886 $code = "<input name=\"$name\" type=\"checkbox\" value=\"1\"$checked />";
5914 $code = "<select name=\"$name\">$options</select>";
5972 …$code = "<input name=\"$name\" type=\"text\" value=\"$value\" size=\"$size\" maxlength=\"$maxlen\"…