Lines Matching refs:def
225 $def = $meta [$column];
227 $headers [$column] = $def ['label'] ? $def ['label'] : $column;
228 $class = $def ['format'] ? $def ['format'] : 'na';
231 $value = $this->valueFromDB ( $column, $value, $def );
233 $cell = $this->renderValue ( $column, $value, $def, false, false );
268 unset ( $def );
271 $def = $meta [$column];
284 $def = $meta [$temp];
290 $headers [$column] = $def ['label'] ? $def ['label'] : $column;
328 protected function valueFromDB($column, $value, $def) { argument
329 switch ($def ['format']) {
367 if ($def ['options'] ['unixts'])
379 if ($def ['options'] ['unixts'])
390 switch ($def ['options'] ['booltype']) {
405 $value = array_search ( $value, $def ['options'] ['selectables'] );
468 protected function renderValue($column, $value, $def, $mayBeSkipped = false, $inEditor = false) { argument
469 if (is_null ( $value ) && ($def ['type'] != 'data'))
472 switch ($def ['format']) {
490 if ($def ['format'] === 'image')
550 $value = $def ['options'] ['selectables'] [$value];