19 declare(strict_types=1);
31 =
"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 = " 32 . $this->db->quote($this->
getId(),
'integer') .
") ";
33 $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 " 34 . $this->db->quote(
"%$filter_value%",
'text') .
") ";
37 $sql_obj->setJoinStatement($join_str);
43 string $direction =
"asc",
44 bool $sort_by_status =
false 50 return parent::getRecordQuerySortObject($direction, $sort_by_status);
60 if ($has_url_property) {
63 'title' => $form->
getInput(
"field_" . $this->
getId() .
"_title"),
67 parent::checkValidityFromForm($form, $record_id);
80 if (!$value[
'link']) {
85 if (!is_array($value)) {
86 $value = [
'link' => $value,
'title' =>
''];
90 $link = (substr($value[
'link'], 0, 3) ===
'www') ?
'https://' . $value[
'link'] : $value[
'link'];
91 if (!filter_var($link, FILTER_VALIDATE_URL) && !filter_var($link, FILTER_VALIDATE_EMAIL) && $link !=
'') {
97 foreach ($table->getRecords() as $record) {
98 if (($record->getId() !== $record_id) && !empty($record_id)) {
99 $record_value = $record->getRecordFieldValue($this->
getId());
100 if (!empty($record_value[
'link']) && $record_value[
'link'] === $link) {
116 $inputObj->setAlert($this->
lng->txt(
"form_msg_value_too_high"));
147 if (substr($regex, 0, 1) !=
"/") {
148 $regex =
"/" . $regex;
150 if (substr($regex, -1) !=
"/") {
155 $preg_match = preg_match($regex, $value);
160 if ($preg_match ==
false) {
166 public function strlen(
string $value,
string $encoding =
'UTF-8'):
int 169 case function_exists(
'mb_strlen'):
170 return mb_strlen($value, $encoding);
171 case function_exists(
'iconv_strlen'):
172 return iconv_strlen($value, $encoding);
180 parent::fillHeaderExcel($worksheet, $row, $col);
189 foreach ($titles as $k =>
$title) {
190 if (!mb_detect_encoding(
$title,
"UTF-8",
true) ==
"UTF-8") {
191 $title = mb_convert_encoding(
$title,
'UTF-8',
'ISO-8859-1');
194 $import_fields[$k] = $this;
196 unset($titles[$k + 1]);
getValidFieldProperties()
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)
checkRegexAndLength(string $value)
checkFieldCreationInput(ilPropertyFormGUI $form)
getRecordQueryFilterObject( $filter_value="", ?ilDclBaseFieldModel $sort_field=null)
checkValidityOfURLField($value, ?int $record_id)
getTableId()
Get table id.
getRecordQuerySortObject(string $direction="asc", bool $sort_by_status=false)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
const PROP_LINK_DETAIL_PAGE_TEXT
setCell(int $a_row, int $col, $value, ?string $datatype=null, bool $disable_strip_tags_for_strings=false)
Set cell value.
strlen(string $value, string $encoding='UTF-8')
const PROP_LENGTH
General properties.
static getTableCache(?int $table_id=null)
checkValidityFromForm(ilPropertyFormGUI &$form, ?int $record_id=null)