29 =
"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 = " 30 . $this->db->quote($this->
getId(),
'integer') .
") ";
31 $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 AND filter_stloc_{$this->getId()}.value LIKE " 32 . $this->db->quote(
"%$filter_value%",
'text') .
") ";
35 $sql_obj->setJoinStatement($join_str);
41 string $direction =
"asc",
42 bool $sort_by_status =
false 48 return parent::getRecordQuerySortObject($direction, $sort_by_status);
55 if ($has_url_property) {
58 'title' => $form->
getInput(
"field_" . $this->
getId() .
"_title"),
62 parent::checkValidityFromForm($form, $record_id);
73 if ($has_url_property) {
78 if ($value === null) {
86 foreach ($table->getRecords() as $record) {
88 $record_value = $record->getRecordFieldValue($this->
getId());
91 && ($record->getId() != $record_id
111 if (!is_array($value)) {
112 $value = [
'link' => $value,
'title' =>
''];
116 if (!$value[
'link']) {
123 $link = (substr($value[
'link'], 0, 3) ===
'www') ?
'https://' . $value[
'link'] : $value[
'link'];
124 if (!filter_var($link, FILTER_VALIDATE_URL) && !filter_var($link, FILTER_VALIDATE_EMAIL) && $link !=
'') {
130 foreach ($table->getRecords() as $record) {
131 $record_value = $record->getRecordFieldValue($this->
getId());
133 if ($record_value == $value
134 && ($record->getId() != $record_id
151 $inputObj->setAlert($this->
lng->txt(
"form_msg_value_too_high"));
175 if (substr($regex, 0, 1) !=
"/") {
176 $regex =
"/" . $regex;
178 if (substr($regex, -1) !=
"/") {
190 $preg_match = preg_match($regex, $value);
195 if ($preg_match ==
false) {
201 public function strlen(
string $value,
string $encoding =
'UTF-8'):
int 204 case function_exists(
'mb_strlen'):
205 return mb_strlen($value, $encoding);
206 case function_exists(
'iconv_strlen'):
207 return iconv_strlen($value, $encoding);
215 parent::fillHeaderExcel($worksheet, $row, $col);
224 foreach ($titles as $k =>
$title) {
229 $import_fields[$k] = $this;
231 unset($titles[$k + 1]);
getValidFieldProperties()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasProperty(string $key)
Checks if a certain property for a field is set.
fillHeaderExcel(ilExcel $worksheet, int &$row, int &$col)
checkTitlesForImport(array &$titles, array &$import_fields)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
checkRegexAndLength(string $value)
checkFieldCreationInput(ilPropertyFormGUI $form)
setCell(int $a_row, int $a_col, $a_value, ?string $a_datatype=null)
Set cell value.
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
checkValidity($value, ?int $record_id=null)
checkValidityOfURLField($value, ?int $record_id)
getTableId()
Get table id.
getRecordQuerySortObject(string $direction="asc", bool $sort_by_status=false)
const PROP_LINK_DETAIL_PAGE_TEXT
strlen(string $value, string $encoding='UTF-8')
static getTableCache(int $table_id=null)
const PROP_LENGTH
General properties.
static isUtf8(string $a_str)
Check whether string is utf-8.
checkValidityFromForm(ilPropertyFormGUI &$form, ?int $record_id=null)
getProperty(string $key)
Returns a certain property of a field.
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...