Lines Matching refs:meta

90 	protected $meta = array();  variable in Database2
544 if ( !is_array( $this->meta ) || empty( $this->meta ) )
549 $this->meta = $session['definition'];
558 return $this->meta;
845 foreach ( $this->meta as $name => $def )
916 if ( empty( $this->meta ) )
921 $this->meta );
1034 foreach ( $this->meta as $column => $def )
1083 if ( $this->meta[$column]['isColumn'] &&
1084 !is_string( $this->meta[$column]['options']['aliasing'] ) )
1087 $value = $this->valueToDB( $rowid, $column, $value, $this->meta[$column] );
1190 foreach ( $this->meta as $column => $def )
1231 … if ( !$this->isAuthorizedMulti( $rowACL, $this->meta[$name]['options'], 'mayview', null, true ) )
1245 $store[$column] = $this->valueFromDB( $rowid, $column, $value, $this->meta[$column] );
1296 $this->meta[$column],
1339 $tabindex = $this->meta[$column]['options']['tabindex'];
1358 if ( $this->meta[$column]['isColumn'] )
1477 $meta = $this->getColumnsMeta();
1483 foreach ( $meta as $colName => $def )
1502 foreach ( $meta as $colName => $def )
1507 if ( is_string( $meta[$name]['options']['aliasing'] ) )
1508 $cols[$index] = $meta[$name]['options']['aliasing'] . ' AS ' .
1695 $meta = $this->getColumnsMeta( ( $customQuery !== '' ) );
1784 $skip, $sort, $meta, $expectInput,
1796 $sort, $meta, $expectInput, $listAll ) argument
1802 foreach ( $meta as $colName => $def )
1814 $visibleIDCol = $meta[$idCol] && !$meta[$idCol]['auto_id'];
1842 if ( $meta[$this->options['aclColumn']]['options']['visible'] === 1 )
1854 if ( !is_array( $meta[$column] ) )
1855 $meta[$column] = array(
1863 $def = $meta[$column];
1948 if ( is_array( $meta[$column] ) )
1949 $def = $meta[$column];
1961 if ( $meta[$temp] )
1965 $def = $meta[$temp];
1990 if ( $meta[$column]['options']['headerlabel'] )
1991 $label = trim( $meta[$column]['options']['headerlabel'] );
1993 if ( ( $href = trim( $meta[$column]['options']['headerlink'] ) ) !== '' )
2644 if ( $this->meta[$col]['isColumn'] )
2647 if ( is_string( $this->meta[$col]['options']['aliasing'] ) )
2648 $cols[] = $this->meta[$col]['options']['aliasing'] . ' AS ' . $col;
2908 $meta = $this->getColumnsMeta();
2916 $column = $meta[$filter['col']];
2981 $meta = $this->getColumnsMeta();
2995 foreach ( $meta as $column => $def )
3003 foreach ( $meta as $column => $def )
3987 $this->meta = $out;
3990 $session['definition'] = $this->meta;
4051 if ( !$this->meta )
4054 if ( $this->meta['.PRIMARY_KEYS'] )
4055 return $this->meta['.PRIMARY_KEYS']['primaries'];
4082 if ( isset( $this->meta[$column]['type'] ) )
4083 if ( $this->meta[$column]['type'] != 'integer' )
4553 if ( !$rowid || ( $this->meta[$column]['type'] != 'data' ) )