Lines Matching refs:column
21 public $column;
24 * Initialize the appropriate column
32 // find the column
34 $this->column = $this->findColumn($this->opt['label']);
50 if (!$this->column) {
55 $this->error = !$validator->validateValue($this->column, $value);
66 if ($this->column) {
67 $label = $this->column->getTranslatedLabel();
88 if (!$this->column) return;
118 if (!empty($value) && $this->column->getType() instanceof User) {
143 if (!empty($value) && $this->column->getType() instanceof User) {
154 * Returns a Value object for the current column.
162 $preparedValue = $this->opt['value'] ?? ($this->column->isMulti() ? [] : '');
166 $this->column->getType() instanceof Page
167 && $this->column->getType()->getConfig()['usetitles']
169 if ($this->column->isMulti()) {
179 $value = new Value($this->column, $preparedValue);
182 if ($this->column->getType() instanceof Lookup) {
209 $html .= "<label class=\"$lclass\" data-column=\"$colname\" for=\"$id\">";
219 * Tries to find the correct column and schema