ILIAS  trunk Revision v11.0_alpha-3011-gc6b235a2e85
ilDclTextRecordRepresentation Class Reference
+ Inheritance diagram for ilDclTextRecordRepresentation:
+ Collaboration diagram for ilDclTextRecordRepresentation:

Public Member Functions

 getHTML (bool $link=true, array $options=[])
 Outputs html of a certain field. More...
 
 fillFormInput (ilPropertyFormGUI $form)
 Fills the form with the value of a record. More...
 
- Public Member Functions inherited from ilDclBaseRecordRepresentation
 __construct (ilDclBaseRecordFieldModel $record_field)
 
 getFormGUI (ilPropertyFormGUI $formGUI)
 
 parseFormInput ($value)
 function parses stored value to the variable needed to fill into the form for editing. More...
 
 fillFormInput (ilPropertyFormGUI $form)
 Fills the form with the value of a record. More...
 
 getHTML (bool $link=true, array $options=[])
 Outputs html of a certain field. More...
 
 getSingleHTML (?array $options=null, bool $link=true)
 Returns data for single record view. More...
 
 getConfirmationHTML ()
 Returns data for confirmation list When returning false, attribute is ignored in list. More...
 
 fillRow (ilTemplate $tpl)
 Fills row with record data. More...
 
 getRecordField ()
 Get Record Field. More...
 
 getField ()
 Getter shortcut for field. More...
 
 getRecord ()
 Getter shortcut for record. More...
 

Data Fields

const LINK_MAX_LENGTH = 40
 

Protected Member Functions

 shortenLink (string $value)
 
- Protected Member Functions inherited from ilDclBaseRecordRepresentation
 getFormInput ()
 Gets the value from from the record field. More...
 

Additional Inherited Members

- Protected Attributes inherited from ilDclBaseRecordRepresentation
ILIAS UI Factory $factory
 
ilDclBaseRecordFieldModel $record_field
 
ilLanguage $lng
 
ilAccess $access
 
ilCtrl $ctrl
 
ILIAS HTTP Services $http
 
ILIAS Refinery Factory $refinery
 
ILIAS UI Renderer $renderer
 
ilObjUser $user
 

Detailed Description

Definition at line 21 of file class.ilDclTextRecordRepresentation.php.

Member Function Documentation

◆ fillFormInput()

ilDclTextRecordRepresentation::fillFormInput ( ilPropertyFormGUI  $form)

Fills the form with the value of a record.

Reimplemented from ilDclBaseRecordRepresentation.

Definition at line 103 of file class.ilDclTextRecordRepresentation.php.

103 : void
104 {
105 $input_field = $form->getItemByPostVar('field_' . $this->getField()->getId());
106 $raw_input = $this->getFormInput();
107
108 $value = is_array($raw_input) ? $raw_input['link'] : $raw_input;
109 $value = is_string($value) ? $value : "";
110 $field_values = [];
111 if ($this->getField()->getProperty(ilDclBaseFieldModel::PROP_URL)) {
112 $field_values["field_" . $this->getRecordField()->getField()->getId() . "_title"] = (isset($raw_input['title'])) ? $raw_input['title'] : '';
113 }
114
115 $field_values["field_" . $this->getRecordField()->getField()->getId()] = $value;
116 $input_field->setValueByArray($field_values);
117 }
getFormInput()
Gets the value from from the record field.
getItemByPostVar(string $a_post_var)

References ilDclBaseRecordRepresentation\getField(), ilDclBaseRecordRepresentation\getFormInput(), ILIAS\Survey\Mode\getId(), ilPropertyFormGUI\getItemByPostVar(), ilDclBaseRecordRepresentation\getRecordField(), and ilDclBaseFieldModel\PROP_URL.

+ Here is the call graph for this function:

◆ getHTML()

ilDclTextRecordRepresentation::getHTML ( bool  $link = true,
array  $options = [] 
)

Outputs html of a certain field.

Reimplemented from ilDclBaseRecordRepresentation.

Definition at line 25 of file class.ilDclTextRecordRepresentation.php.

25 : string
26 {
27 $value = $this->getRecordField()->getValue();
28
29 $ref_id = $this->http->wrapper()->query()->retrieve('ref_id', $this->refinery->kindlyTo()->int());
30
31 $field = $this->getField();
32
33 $links = [];
34 if ($field->hasProperty(ilDclBaseFieldModel::PROP_URL)) {
35 $url = $value['link'];
36 $value = $value['title'] ?: $this->shortenLink($url);
37 if ($link) {
38 if (substr($url, 0, 3) === 'www') {
39 $url = 'https://' . $url;
40 } elseif (filter_var($url, FILTER_VALIDATE_EMAIL)) {
41 $url = "mailto:" . $url;
42 }
43 $links['dcl_open_url'] = $url;
44 }
45 }
46 if ($field->hasProperty(ilDclBaseFieldModel::PROP_LINK_DETAIL_PAGE_TEXT) && $link) {
47 if ($this->http->wrapper()->query()->has('tableview_id')) {
48 $tableview_id = $this->http->wrapper()->query()->retrieve('tableview_id', $this->refinery->kindlyTo()->int());
49 } else {
50 $tableview_id = $this->getRecord()->getTable()->getFirstTableViewId($this->user->getId());
51 }
52 if (
55 ) {
56 $this->ctrl->clearParametersByClass("ilDclDetailedViewGUI");
57 $this->ctrl->setParameterByClass(ilDclDetailedViewGUI::class, 'table_id', $this->getRecord()->getTableId());
58 $this->ctrl->setParameterByClass(ilDclDetailedViewGUI::class, 'tableview_id', $tableview_id);
59 $this->ctrl->setParameterByClass(ilDclDetailedViewGUI::class, 'record_id', $this->getRecord()->getId());
60 $links['dcl_open_detail_view'] = $this->ctrl->getLinkTargetByClass(ilDclDetailedViewGUI::class, 'renderRecord');
61 }
62 }
63
64 $value = nl2br((string) $value);
65
66 switch (count($links)) {
67 case 0:
68 return $value;
69 case 1:
70 return $this->renderer->render(
71 $this->factory->link()->standard(
72 $value,
73 reset($links)
75 );
76 case 2:
77 default:
78 $ui_links = [];
79 foreach ($links as $key => $link) {
80 $ui_links[] = $this->factory->link()->standard(
81 $this->lng->txt($key),
82 $link
83 )->withOpenInNewViewport(true);
84 }
85 return $this->renderer->render(
86 $this->factory->dropdown()->standard(
87 $ui_links
88 )->withLabel($value)
89 );
90 }
91
92 }
renderer()
factory()
static _lookupActive(int $a_id, string $a_parent_type, bool $a_check_scheduled_activation=false, string $a_lang="-")
lookup activation status
$ref_id
Definition: ltiauth.php:66
static http()
Fetches the global http state from ILIAS.
$url
Definition: shib_logout.php:68

References $ref_id, $url, ilPageObject\_lookupActive(), ILIAS\Repository\ctrl(), ilDclDetailedViewDefinition\exists(), factory(), ilDclBaseRecordRepresentation\getField(), ILIAS\Survey\Mode\getId(), ilDclBaseRecordRepresentation\getRecord(), ilDclBaseRecordRepresentation\getRecordField(), ILIAS\FileDelivery\http(), ILIAS\Repository\lng(), ilDclDetailedViewDefinition\PARENT_TYPE, ilDclBaseFieldModel\PROP_LINK_DETAIL_PAGE_TEXT, ilDclBaseFieldModel\PROP_URL, ILIAS\Repository\refinery(), renderer(), shortenLink(), ILIAS\Repository\user(), and ILIAS\GlobalScreen\Scope\Footer\Factory\withOpenInNewViewport().

+ Here is the call graph for this function:

◆ shortenLink()

ilDclTextRecordRepresentation::shortenLink ( string  $value)
protected

Definition at line 94 of file class.ilDclTextRecordRepresentation.php.

94 : string
95 {
96 $value = preg_replace('/^(https?:\/\/)?(www\.)?/', '', $value);
97 $half = (int) ((self::LINK_MAX_LENGTH - 4) / 2);
98 $value = preg_replace('/^(.{' . ($half + 1) . '})(.{4,})(.{' . $half . '})$/', '\1...\3', $value);
99
100 return $value;
101 }

References ILIAS\Repository\int().

Referenced by getHTML().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

Field Documentation

◆ LINK_MAX_LENGTH

const ilDclTextRecordRepresentation::LINK_MAX_LENGTH = 40

Definition at line 23 of file class.ilDclTextRecordRepresentation.php.


The documentation for this class was generated from the following file: