19 declare(strict_types=1);
25 public function getHTML(
bool $link =
true, array $options = []): string
29 $ref_id = $this->
http->wrapper()->query()->retrieve(
'ref_id', $this->
refinery->kindlyTo()->int());
30 $views = $this->
getRecord()->getTable()->getVisibleTableViews(
$ref_id,
true, $this->
user->getId());
35 if (is_array($value)) {
36 $link = (string) $value[
'link'];
37 $link_value = $value[
'title'] ?: $this->
shortenLink($link);
39 $link = (string) $value;
43 if (substr($link, 0, 3) ===
'www') {
44 $link =
'https://' . $link;
48 "/^[a-z0-9!#$%&'*+=?^_`{|}~-]+(?:\.[a-z0-9!#$%&'*+=?^_`{|}~-]+)*@(?:[a-z0-9](?:[a-z0-9-]*[a-z0-9])?\.)+[a-z0-9](?:[a-z0-9-]*[a-z0-9])?$/i",
51 $link =
"mailto:" . $link;
52 } elseif (!(preg_match(
'~(^(news|(ht|f)tp(s?)\://){1}\S+)~i', $link))) {
56 $html =
"<a rel='noopener' target='_blank' href='" . htmlspecialchars(
59 ) .
"'>" . htmlspecialchars($link_value, ENT_QUOTES) .
"</a>";
61 $view = array_shift($views);
62 if ($this->
http->wrapper()->query()->has(
'tableview_id')) {
63 $tableview_id = $this->
http->wrapper()->query()->retrieve(
'tableview_id', $this->
refinery->kindlyTo()->int());
64 foreach ($views as $v) {
65 if ($v->getId() === $tableview_id) {
66 $view = $tableview_id;
72 $this->
ctrl->clearParametersByClass(
"ilDclDetailedViewGUI");
73 $this->
ctrl->setParameterByClass(
74 ilDclDetailedViewGUI::class,
79 $this->
ctrl->setParameterByClass(ilDclDetailedViewGUI::class,
'table_id', $this->
getRecord()->getTableId());
80 $this->
ctrl->setParameterByClass(ilDclDetailedViewGUI::class,
'tableview_id', $view->getId());
81 $html =
'<a href="' . $this->
ctrl->getLinkTargetByClass(
82 ilDclDetailedViewGUI::class,
84 ) .
'">' . $value .
'</a>';
86 $html = (is_array($value) && isset($value[
'link'])) ? $value[
'link'] : nl2br((
string) $value);
94 $value = preg_replace(
'/^(https?:\/\/)?(www\.)?/',
'', $value);
95 $half = (
int) ((self::LINK_MAX_LENGTH - 4) / 2);
96 $value = preg_replace(
'/^(.{' . ($half + 1) .
'})(.{4,})(.{' . $half .
'})$/',
'\1...\3', $value);
106 $value = is_array($raw_input) ? $raw_input[
'link'] : $raw_input;
107 $value = is_string($value) ? $value :
"";
110 $field_values[
"field_" . $this->
getRecordField()->getField()->getId() .
"_title"] = (isset($raw_input[
'title'])) ? $raw_input[
'title'] :
'';
114 $breaks = [
"<br />"];
115 $value = str_ireplace($breaks,
"", $value);
118 $field_values[
"field_" . $this->
getRecordField()->getField()->getId()] = $value;
119 $input_field->setValueByArray($field_values);
getHTML(bool $link=true, array $options=[])
getRecord()
Getter shortcut for record.
getField()
Getter shortcut for field.
shortenLink(string $value)
const PROP_LINK_DETAIL_PAGE_TEXT
static http()
Fetches the global http state from ILIAS.
getFormInput()
Gets the value from from the record field.
fillFormInput(ilPropertyFormGUI $form)
getRecordField()
Get Record Field.