ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
class.ilDclNumberFieldModel.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 {
27  public function getRecordQueryFilterObject(
28  $filter_value = "",
29  ?ilDclBaseFieldModel $sort_field = null
31  global $DIC;
32  $ilDB = $DIC['ilDB'];
33 
34  if (is_array($filter_value)) {
35  $from = (isset($filter_value['from'])) ? (int) $filter_value['from'] : null;
36  $to = (isset($filter_value['to'])) ? (int) $filter_value['to'] : null;
37  }
38 
39  $join_str
40  = "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 = "
41  . $ilDB->quote($this->getId(), 'integer') . ") ";
42  $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";
43  if (isset($from)) {
44  $join_str .= " AND filter_stloc_{$this->getId()}.value >= " . $ilDB->quote($from, 'integer');
45  }
46  if (isset($to)) {
47  $join_str .= " AND filter_stloc_{$this->getId()}.value <= " . $ilDB->quote($to, 'integer');
48  }
49  $join_str .= ") ";
50 
51  $sql_obj = new ilDclRecordQueryObject();
52  $sql_obj->setJoinStatement($join_str);
53 
54  return $sql_obj;
55  }
56 
57  public function hasNumericSorting(): bool
58  {
59  return true;
60  }
61 
65  public function checkValidity($value, ?int $record_id = null): bool
66  {
67  //mantis 30758, 36585: uniqueness for all types of fields
68 
69  //value from the form comes as float
70  if (!is_numeric($value)) {
72  }
73 
74  //dcl currently only works with integer type, when
75  //field is of type number (see ilDcldatatype::INPUTFORMAT_NUMBER)
76  $valid = parent::checkValidity((int) $value, $record_id);
77 
78  return $valid;
79  }
80 }
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
Returns a query-object for building the record-loader-sql-query.
$valid
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
global $DIC
Definition: shib_login.php:22
checkValidity($value, ?int $record_id=null)