Lines Matching defs:column
15 protected $column;
35 * @param Column $column
38 public function __construct(Column $column, $value)
40 $this->column = $column;
49 return $this->column;
127 $raw = $this->column->getType()->rawValue($val);
136 $this->display[] = $this->column->getType()->displayValue($val);
137 $this->compare[] = $this->column->getType()->compareValue($val);
142 if (!$this->column->isMulti()) {
173 if ($this->column->isMulti()) {
175 return $this->column->getType()->renderMultiValue($this->value, $R, $mode);
178 return $this->column->getType()->renderValue($this->value, $R, $mode);
196 $this->column->getType()->renderTagCloudLink($value, $R, $mode, $page, $filterQuery, $weight, $showCount);
207 if ($this->column->isMulti()) {
208 return $this->column->getType()->multiValueEditor($name, $this->rawvalue, $id);
210 return $this->column->getType()->valueEditor($name, $this->rawvalue, $id);