Home
last modified time | relevance | path

Searched refs:colname (Results 26 – 28 of 28) sorted by path

12

/plugin/structodt/
H A Dhelper.php234 $colname = $filter[0];
238 $search->addFilter($colname, $value, $comp, $op);
/plugin/structprogress/types/
H A DProgress.php127 * @param string $colname
130 public function sort(QueryBuilder $QB, $tablealias, $colname, $order) argument
132 $QB->addOrderBy("CAST($tablealias.$colname AS DECIMAL) $order");
140 * @param string $colname
145 public function filter(QueryBuilderWhere $add, $tablealias, $colname, $comp, $value, $op) argument
148 $add->where('AND', "$tablealias.$colname != ''"); // make sure the field isn't empty
159 $add->where($op, "CAST($tablealias.$colname AS DECIMAL) $comp CAST($pl AS DECIMAL)");
/plugin/structstatus/
H A DStatus.php101 * @param string $colname
104 public function select(QueryBuilder $QB, $tablealias, $colname, $alias) { argument
112 AbstractBaseType::select($QB, $tablealias, $colname, $alias);
136 …"$tablealias.$colname = STRUCT_JSON($rightalias.pid, CAST($rightalias.rid AS DECIMAL)) AND $righta…
140 …$QB->addSelectStatement("STRUCT_JSON($tablealias.$colname, $field_status, $field_color, $field_ico…
152 $colname = $col->getLabel();
156 $search->addColumn($colname);
159 $search->addSort($colname);

12