Lines Matching refs:col
88 foreach ($columns as $col) {
91 if ($col->isMulti()) {
92 $datatable = "data_{$col->getTable()}";
93 $multitable = "multi_{$col->getTable()}";
102 $MN.colref = {$col->getColref()}"
105 $col->getType()->select($this->qb, $MN, 'value', $CN);
109 … $col->getType()->select($this->qb, 'data_' . $col->getTable(), $col->getColName(), $CN);
130 [$col, $value, $comp, $op] = $filter;
132 $datatable = "data_{$col->getTable()}";
133 $multitable = "multi_{$col->getTable()}";
136 if ($col->isMulti()) {
145 $MN.colref = {$col->getColref()}"
151 $colnam = $col->getColName();
154 … $col->getType()->filter($subClause, $coltbl, $colnam, $comp, $value, $op); // type based filter
168 [$col, $asc, $nc] = $sort;
170 $colname = $col->getColName(false);
172 … $col->getType()->sort($this->qb, 'data_' . $col->getTable(), $colname, $asc ? 'ASC' : 'DESC');