Lines Matching refs:def
201 $def = $meta [$column];
203 $headers [$column] = $def ['label'] ? $def ['label'] : $column;
204 $class = $def ['format'] ? $def ['format'] : 'na';
207 $value = $this->valueFromDB ( $column, $value, $def );
209 $cell = $this->renderValue ( $column, $value, $def, false, false );
244 unset ( $def );
247 $def = $meta [$column];
260 $def = $meta [$temp];
266 $headers [$column] = $def ['label'] ? $def ['label'] : $column;
304 protected function valueFromDB($column, $value, $def) { argument
305 switch ($def ['format']) {
343 if ($def ['options'] ['unixts'])
355 if ($def ['options'] ['unixts'])
366 switch ($def ['options'] ['booltype']) {
381 $value = array_search ( $value, $def ['options'] ['selectables'] );
413 protected function renderValue($column, $value, $def, $mayBeSkipped = false, $inEditor = false) { argument
414 if (is_null ( $value ) && ($def ['type'] != 'data'))
417 switch ($def ['format']) {
435 if ($def ['format'] === 'image')
495 $value = $def ['options'] ['selectables'] [$value];