32 if (is_array($filter_value)) {
33 $from = (isset($filter_value[
'from'])) ? (
int) $filter_value[
'from'] : null;
34 $to = (isset($filter_value[
'to'])) ? (
int) $filter_value[
'to'] : null;
38 =
"INNER JOIN il_dcl_record_field AS filter_record_field_{$this->getId()} ON (filter_record_field_{$this->getId()}.record_id = record.id AND filter_record_field_{$this->getId()}.field_id = " 39 .
$ilDB->quote($this->
getId(),
'integer') .
") ";
40 $join_str .=
"INNER JOIN il_dcl_stloc{$this->getStorageLocation()}_value AS filter_stloc_{$this->getId()} ON (filter_stloc_{$this->getId()}.record_field_id = filter_record_field_{$this->getId()}.id";
41 if (!is_null($from)) {
42 $join_str .=
" AND filter_stloc_{$this->getId()}.value >= " .
$ilDB->quote($from,
'integer');
45 $join_str .=
" AND filter_stloc_{$this->getId()}.value <= " .
$ilDB->quote($to,
'integer');
50 $sql_obj->setJoinStatement($join_str);
65 $valid = parent::checkValidity($value, $record_id);
67 if (!is_numeric($value) && $value !=
'') {
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
Returns a query-object for building the record-loader-sql-query.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkValidity($value, ?int $record_id=null)