19 declare(strict_types=1);
56 int $id_type = self::REPOSITORY_NODE_ID,
57 int $parent_node_id = 0
63 $this->
lng->loadLanguageModule(
"webr");
64 $this->
http = $DIC->http();
84 if ($new_view_mode !==
null) {
96 $base_class = $this->
http->wrapper()->query()->retrieve(
98 $this->
refinery->kindlyTo()->string()
100 if ($base_class === ilLinkResourceHandlerGUI::class) {
103 $next_class = $this->
ctrl->getNextClass($this);
104 $cmd = $this->
ctrl->getCmd();
105 switch ($next_class) {
106 case "ilinfoscreengui":
111 case 'ilobjectmetadatagui':
114 $this->tabs_gui->activateTab(
'id_meta_data');
116 $this->
ctrl->forwardCommand($md_gui);
119 case 'ilpermissiongui':
121 $this->tabs_gui->activateTab(
'id_permissions');
123 $this->
ctrl->forwardCommand($perm_gui);
126 case 'ilobjectcopygui':
129 $cp->setType(
'webr');
130 $this->
ctrl->forwardCommand($cp);
135 $this->tabs_gui->setTabActive(
'export');
137 $this->
ctrl->forwardCommand($exp);
140 case "ilcommonactiondispatchergui":
143 $this->
ctrl->forwardCommand($gui);
146 case "ilpropertyformgui":
147 $mode = $this->
ctrl->isAsynch() ?
148 self::LINK_MOD_ASYNC : self::LINK_MOD_EDIT;
150 $this->
ctrl->forwardCommand($this->
form);
153 case "ilinternallinkgui":
154 $this->
lng->loadLanguageModule(
"content");
156 $link_gui->filterLinkType(
"PageObject");
157 $link_gui->filterLinkType(
"GlossaryItem");
158 $link_gui->filterLinkType(
"RepositoryItem");
159 $link_gui->setFilterWhiteList(
true);
160 $this->
ctrl->forwardCommand($link_gui);
165 parent::executeCommand();
192 $this->
form->getInput(
'tar_mode_type') ===
'single' 195 } elseif (
$valid && $this->
form->getInput(
'tar_mode_type') ==
'list') {
196 $this->
initList(self::LINK_MOD_CREATE);
200 $this->tpl->setOnScreenMessage(
202 $this->
lng->txt(
'err_check_input')
204 $this->
form->setValuesByPost();
205 $this->tpl->setContent($this->
form->getHTML());
213 $this->error->raiseError($this->
lng->txt(
"no_create_permission"), $this->error->MESSAGE);
216 $this->
lng->loadLanguageModule($this->requested_new_type);
217 $this->
ctrl->setParameter($this,
"new_type", $this->requested_new_type);
220 if ($this->
form->checkInput()) {
221 $this->
ctrl->setParameter($this,
"new_type",
"");
223 $class_name =
"ilObj" . $this->obj_definition->getClassName($this->requested_new_type);
224 $newObj =
new $class_name();
225 $newObj->setType($this->requested_new_type);
226 $newObj->setTitle($this->
form->getInput(
"title"));
227 $newObj->setDescription($this->
form->getInput(
"desc"));
228 $newObj->processAutoRating();
233 if ($this->
form->getInput(
'didactic_template')) {
236 $this->
form->checkInput();
237 $newObj->applyDidacticTemplate($dtpl);
243 $this->
form->setValuesByPost();
244 $this->tpl->setContent($this->
form->getHTML());
251 if ($this->
form->getInput(
'tar_mode_type') ===
'single') {
253 $new_web_link_repo->
createItem($this->draft_item);
254 $this->tpl->setOnScreenMessage(
256 $this->
lng->txt(
'webr_link_added')
260 if ($this->
form->getInput(
'tar_mode_type') ===
'list') {
262 $new_web_link_repo->createList($this->draft_list);
263 $this->tpl->setOnScreenMessage(
265 $this->
lng->txt(
'webr_list_added')
270 if ($this->id_type == self::WORKSPACE_NODE_ID) {
271 $this->
ctrl->redirect($this,
"editLinks");
275 "ilias.php?baseClass=ilLinkResourceHandlerGUI&ref_id=" .
276 $new_object->
getRefId() .
"&cmd=switchViewMode&switch_mode=2" 284 $this->tabs_gui->activateTab(
'id_settings');
287 $this->tpl->setContent($this->ui_renderer->render($form));
290 protected function saveSettings():
void 293 $this->tabs_gui->activateTab(
'id_settings');
296 if (!(
$data = $form->getData())) {
297 $this->tpl->setOnScreenMessage(
299 $this->
lng->txt(
'err_check_input')
301 $this->tpl->setContent($this->ui_renderer->render($form));
304 $obj_props = $this->
object->getObjectProperties();
307 $title_and_description =
$data[
'general'][
'title_and_description'] ??
null;
308 if ($title_and_description !== null && $this->
getWebLinkRepo()->doesListExist()) {
309 $obj_props->storePropertyTitleAndDescription($title_and_description);
313 $title_and_description->getTitle(),
314 $title_and_description->getLongDescription()
321 $obj_props->storePropertyIsOnline(
$data[
'activation'][
'is_online']);
322 $obj_props->storePropertyTileImage(
$data[
'presentation'][
'tile_image']);
323 $ordering =
$data[
'presentation'][
'sor'] ??
null;
324 if ($ordering !== null && $this->
getWebLinkRepo()->doesListExist()) {
330 $this->
ctrl->redirect($this,
'settings');
336 $obj_props = $this->
object->getObjectProperties();
337 $field_factory = $this->ui_factory->input()->field();
340 $title_and_description = $obj_props->getPropertyTitleAndDescription()->toForm(
345 $inputs[
'general'] = $field_factory->section(
346 [
'title_and_description' => $title_and_description],
347 $this->
lng->txt(
'webr_edit_settings')
352 $this->
lng->loadLanguageModule(
'rep');
353 $is_online = $obj_props->getPropertyIsOnline()->toForm(
358 $inputs[
'activation'] = $field_factory->section(
359 [
'is_online' => $is_online],
360 $this->
lng->txt(
'rep_activation_availability')
363 $presentation_inputs = [];
366 $tile_input = $obj_props->getPropertyTileImage()->toForm(
371 $presentation_inputs[
'tile_image'] = $tile_input;
376 $order_input = $field_factory->radio($this->
lng->txt(
'webr_sorting'))
379 $this->
lng->txt(
'webr_sorting')
383 $this->
lng->txt(
'webr_sort_manual')
386 ->withRequired(
true);
387 $presentation_inputs[
'sor'] = $order_input;
390 $inputs[
'presentation'] = $field_factory->section(
391 $presentation_inputs,
392 $this->
lng->txt(
'obj_presentation')
395 $form = $this->ui_factory->input()->container()->form()->standard(
396 $this->
ctrl->getFormAction($this,
'saveSettings'),
408 if ($this->
http->wrapper()->query()->has(
'link_id')) {
409 $link_id = $this->
http->wrapper()->query()->retrieve(
415 $this->tpl->setOnScreenMessage(
417 $this->
lng->txt(
'select_one'),
420 $this->
ctrl->redirect($this,
'view');
424 $this->tpl->setContent($form->
getHTML());
432 if ($this->
http->wrapper()->query()->has(
'link_id')) {
433 $link_id = $this->
http->wrapper()->query()->retrieve(
444 foreach ($item->getParameters() as $parameter) {
445 $this->draft_item->addParameter($parameter);
449 $this->
settings->get(
'links_dynamic') &&
450 $this->draft_parameter !==
null 452 $this->draft_item->addParameter($this->draft_parameter);
457 $this->
object->setTitle($form->
getInput(
'title'));
458 $this->
object->setDescription($form->
getInput(
'desc'));
459 $this->
object->update();
461 $this->tpl->setOnScreenMessage(
463 $this->
lng->txt(
'settings_saved'),
466 $this->
ctrl->redirect($this,
'view');
468 $this->tpl->setOnScreenMessage(
470 $this->
lng->txt(
'err_check_input')
473 $this->tpl->setContent($form->
getHTML());
483 $f = $DIC->ui()->factory();
484 $r = $DIC->ui()->renderer();
491 $form_id =
'form_' . $this->
form->getId();
493 $submit =
$f->button()->primary($this->
lng->txt(
'save'),
'#')
495 function (
$id) use ($form_id) {
496 return "$('#{$id}').click(function() { $('#{$form_id}').submit(); return false; });";
499 $info =
$f->messageBox()->info($this->
lng->txt(
'webr_new_list_info'));
501 $modal =
$f->modal()->roundtrip(
502 $this->
lng->txt(
'webr_new_list'),
503 $f->legacy()->content(
$r->render($info) . $this->
form->getHTML())
505 ->withActionButtons([$submit]);
508 if ($this->
http->wrapper()->post()->has(
'sbmt')) {
509 $submit = $this->
http->wrapper()->post()->retrieve(
511 $this->
refinery->kindlyTo()->string()
515 if ($submit ===
'submit') {
516 $modal = $modal->withOnLoad($modal->getShowSignal());
527 $this->
object->setTitle($form->
getInput(
'lti'));
528 $this->
object->setDescription($form->
getInput(
'tde'));
529 $this->
object->update();
531 $this->
initList(self::LINK_MOD_SET_LIST);
533 $this->tpl->setOnScreenMessage(
535 $this->
lng->txt(
'webr_list_set'),
538 $this->
ctrl->redirect($this,
'view');
540 $this->tpl->setOnScreenMessage(
542 $this->
lng->txt(
'err_check_input'),
555 $this->tpl->setContent($form->
getHTML());
571 $this->
settings->get(
'links_dynamic') &&
572 $this->draft_parameter !==
null 574 $this->draft_item->addParameter($this->draft_parameter);
578 $this->tpl->setOnScreenMessage(
580 $this->
lng->txt(
'webr_link_added'),
583 $this->
ctrl->redirect($this,
'view');
585 $this->tpl->setOnScreenMessage(
587 $this->
lng->txt(
'err_check_input')
589 $this->
form->setValuesByPost();
591 $this->tpl->setContent($form->
getHTML());
598 $link_id = $this->
http->wrapper()->query()->retrieve(
602 $this->
ctrl->setParameter($this,
'link_id', $link_id);
604 $param_id = $this->
http->wrapper()->query()->retrieve(
610 $this->tpl->setOnScreenMessage(
612 $this->
lng->txt(
'select_one'),
615 $this->
ctrl->redirect($this,
'view');
618 $this->
getWebLinkRepo()->deleteParameterByLinkIdAndParamId($link_id, $param_id);
620 $this->tpl->setOnScreenMessage(
623 'links_parameter_deleted' 627 $this->
ctrl->redirect($this,
'editLinks');
634 $link_id = $this->
http->wrapper()->query()->retrieve(
639 $param_id = $this->
http->wrapper()->query()->retrieve(
644 $this->tpl->setOnScreenMessage(
646 $this->
lng->txt(
'select_one'),
649 $this->
ctrl->redirect($this,
'view');
652 $this->
getWebLinkRepo()->deleteParameterByLinkIdAndParamId($link_id, $param_id);
654 $this->tpl->setOnScreenMessage(
657 'links_parameter_deleted' 661 $this->
ctrl->redirect($this,
'view');
670 if ($this->
http->wrapper()->post()->has(
'ids')) {
671 $ids = $this->
http->wrapper()->post()->retrieve(
673 $this->
refinery->kindlyTo()->dictOf(
680 $this->tpl->setOnScreenMessage(
682 $this->
lng->txt(
'select_one'),
685 $this->
ctrl->redirect($this,
'view');
688 $link_post = (array) ($this->
http->request()->getParsedBody(
693 foreach ($ids as $link_id) {
694 $data = $link_post[$link_id];
697 $this->
http->wrapper()->post()->has(
698 'tar_' . $link_id .
'_ajax_type' 700 $this->
http->wrapper()->post()->has(
701 'tar_' . $link_id .
'_ajax_id' 705 $this->
http->wrapper()->post()->retrieve(
706 'tar_' . $link_id .
'_ajax_type',
707 $this->
refinery->kindlyTo()->string()
709 $this->
http->wrapper()->post()->retrieve(
710 'tar_' . $link_id .
'_ajax_id',
711 $this->
refinery->kindlyTo()->string()
714 if (!strlen(
$data[
'title'] ??
'')) {
715 $invalid[] = $link_id;
718 if (!strlen(
$data[
'tar'] ??
'')) {
719 $invalid[] = $link_id;
722 if ((
$data[
'nam'] ??
false) && !(
$data[
'val'] ??
false)) {
723 $invalid[] = $link_id;
726 if (!(
$data[
'nam'] ??
false) && (
$data[
'val'] ??
false)) {
727 $invalid[] = $link_id;
731 if ($invalid !== []) {
732 $this->tpl->setOnScreenMessage(
734 $this->
lng->txt(
'err_check_input')
736 $this->tpl->addBlockFile(
739 'tpl.webr_manage.html',
740 'components/ILIAS/WebResource' 743 $table->setInvalidLinks($invalid);
744 $table->parseSelectedLinks($ids);
745 $table->updateFromPost();
746 $this->tpl->setVariable(
'TABLE_LINKS', $table->getHTML());
751 foreach ($ids as $link_id) {
752 $data = $link_post[$link_id];
755 $this->
http->wrapper()->post()->has(
756 'tar_' . $link_id .
'_ajax_type' 758 $this->
http->wrapper()->post()->has(
759 'tar_' . $link_id .
'_ajax_id' 763 $this->
http->wrapper()->post()->retrieve(
764 'tar_' . $link_id .
'_ajax_type',
765 $this->
refinery->kindlyTo()->string()
767 $this->
http->wrapper()->post()->retrieve(
768 'tar_' . $link_id .
'_ajax_id',
769 $this->
refinery->kindlyTo()->string()
779 (
bool) (
$data[
'act'] ??
false),
780 $item->getParameters()
783 if (strlen(
$data[
'nam'] ??
'') &&
$data[
'val'] ??
'') {
785 (
int) (
$data[
'val'] ?? 0),
788 $draft->addParameter(
$param);
795 $this->
object->setDescription(
798 $this->
object->update();
801 $this->tpl->setOnScreenMessage(
803 $this->
lng->txt(
'settings_saved'),
806 $this->
ctrl->redirect($this,
'view');
812 $this->
form->setValuesByArray(
814 'title' => $item->getTitle(),
815 'tar' => $item->getTarget(),
816 'desc' => $item->getDescription(),
817 'act' => (
int) $item->isActive()
824 if ($a_mode == self::LINK_MOD_CREATE) {
826 $this->
form->getInput(
'title'),
827 $this->
form->getInput(
'desc')
831 if ($a_mode == self::LINK_MOD_SET_LIST) {
833 $this->
form->getInput(
'lti'),
834 $this->
form->getInput(
'tde')
842 ?
int $a_link_id =
null 846 $link_input = $this->
form->getInput(
'tar');
849 if ($a_mode == self::LINK_MOD_CREATE) {
852 $active = (bool) $this->
form->getInput(
'act');
857 $this->
form->getInput(
'title'),
858 $this->
form->getInput(
'desc'),
859 str_replace(
'"',
'', $link_input),
864 if (!$this->
settings->get(
'links_dynamic')) {
869 (
int) $this->
form->getInput(
'val'),
870 $this->
form->getInput(
'nam')
873 $error = $this->draft_parameter->validate();
878 $this->draft_parameter =
null;
882 $this->
form->getItemByPostVar(
'nam')->setAlert(
883 $this->
lng->txt(
'links_no_name_given')
888 $this->
form->getItemByPostVar(
'val')->setAlert(
889 $this->
lng->txt(
'links_no_value_given')
901 $this->tabs_gui->activateTab(
"id_content");
905 case self::LINK_MOD_CREATE:
907 $this->
ctrl->setParameter($this,
'new_type',
'webr');
908 $this->
form->setTitle($this->
lng->txt(
'webr_new_link'));
909 $this->
form->setTableWidth(
'600px');
912 $this->
form->addCommandButton(
914 $this->
lng->txt(
'webr_add')
916 $this->
form->addCommandButton(
918 $this->
lng->txt(
'cancel')
922 case self::LINK_MOD_ADD:
924 $this->
form->setTitle($this->
lng->txt(
'webr_new_link'));
927 $this->
form->addCommandButton(
929 $this->
lng->txt(
'webr_add')
931 $this->
form->addCommandButton(
933 $this->
lng->txt(
'cancel')
937 case self::LINK_MOD_EDIT:
939 $this->
ctrl->setParameter(
943 (
int) $_REQUEST[
'link_id']
945 $this->
form->setTitle($this->
lng->txt(
'webr_edit'));
948 $this->
form->addCommandButton(
950 $this->
lng->txt(
'save')
952 $this->
form->addCommandButton(
954 $this->
lng->txt(
'cancel')
964 case self::LINK_MOD_ASYNC:
969 if ($a_mode == self::LINK_MOD_SET_LIST) {
970 $this->
form->setValuesByPost();
971 $this->
form->setFormAction(
972 $this->
ctrl->getFormAction($this,
'saveLinkList')
974 $this->
form->setId(uniqid(
'form'));
978 $this->
lng->txt(
'webr_list_title'),
981 $title->setRequired(
true);
983 $title->setMaxLength(127);
984 $this->
form->addItem($title);
988 $this->
lng->txt(
'webr_list_desc'),
993 $this->
form->addItem($desc);
996 $item->setValue(
'submit');
997 $this->
form->addItem($item);
999 $this->
form->setFormAction($this->
ctrl->getFormAction($this));
1005 $this->
lng->txt(
'webr_link_title'),
1008 $tit->setRequired(
true);
1010 $tit->setMaxLength(127);
1011 $this->
form->addItem($tit);
1015 $this->
lng->txt(
'description'),
1020 $this->
form->addItem($des);
1022 if ($a_mode != self::LINK_MOD_CREATE) {
1025 $act->setChecked(
true);
1026 $act->setValue(
'1');
1027 $this->
form->addItem($act);
1030 if ($this->
settings->get(
'links_dynamic') &&
1031 $a_mode != self::LINK_MOD_CREATE
1034 $this->
lng->txt(
'links_dyn_parameter')
1036 $dyn->setInfo($this->
lng->txt(
'links_dynamic_info'));
1038 if ($this->
http->wrapper()->query()->has(
'link_id')) {
1039 $link_id = $this->
http->wrapper()->query()->retrieve(
1050 $this->
lng->txt(
'links_existing_params'),
1053 $dyn->addSubItem($ex);
1055 foreach ($params as
$param) {
1059 'tpl.link_dyn_param_edit.html',
1062 'components/ILIAS/WebResource' 1068 $this->
ctrl->setParameter($this,
'param_id', $param->getParamId());
1069 $this->
ctrl->setParameter($this,
'link_id', $link_id);
1072 $this->
ctrl->getLinkTarget(
1074 'deleteParameterForm' 1079 $this->
lng->txt(
'delete')
1081 $p->setHtml($ptpl->get());
1082 $dyn->addSubItem($p);
1089 $nam->setMaxLength(128);
1090 $dyn->addSubItem($nam);
1094 $this->
lng->txt(
'links_value'),
1101 $val->setOptions($options);
1103 $dyn->addSubItem($val);
1105 $this->
form->addItem($dyn);
1114 $this->
lng->txt(
'type'),
1117 if ($mode == self::LINK_MOD_CREATE) {
1120 $tar->setInternalLinkFilterTypes(
1128 $tar->setExternalLinkMaxLength(1000);
1129 $tar->setInternalLinkFilterTypes(
1130 [
"PageObject",
"GlossaryItem",
"RepositoryItem"]
1132 $tar->setRequired(
true);
1133 $this->
form->addItem($tar);
1142 if ($force_view_mode !==
null) {
1143 $new_view_mode = $force_view_mode;
1144 } elseif ($this->
http->wrapper()->query()->has(
'switch_mode')) {
1145 $new_view_mode = $this->
http->wrapper()->query()->retrieve(
1164 $this->tabs_gui->activateTab(
"id_content");
1167 $base_class = $this->
http->wrapper()->query()->retrieve(
1169 $this->
refinery->kindlyTo()->string()
1171 if (strcasecmp($base_class, ilAdministrationGUI::class) === 0) {
1175 switch ($this->view_mode) {
1176 case self::VIEW_MODE_MANAGE:
1180 case self::VIEW_MODE_SORT:
1196 $this->tpl->setPermanentLink(
1197 $this->
object->getType(),
1198 $this->
object->getRefId()
1207 $this->tpl->addBlockFile(
1210 'tpl.webr_manage.html',
1211 'components/ILIAS/WebResource' 1220 $this->tpl->addJavaScript(
"assets/js/intLink.js");
1221 $this->tpl->addJavascript(
"assets/js/Form.js");
1223 $this->tpl->setVariable(
'TABLE_LINKS', $table->getHTML() . $js);
1234 $this->tpl->addBlockFile(
1237 'tpl.webr_view.html',
1238 'components/ILIAS/WebResource' 1241 $this->tpl->setVariable(
'LINK_TABLE', $table->getHTML());
1252 $this->tpl->addBlockFile(
1255 'tpl.webr_view.html',
1256 'components/ILIAS/WebResource' 1259 $this->tpl->setVariable(
'LINK_TABLE', $table->getHTML());
1268 if ($this->
http->wrapper()->post()->has(
'position')) {
1269 $position = $this->
http->wrapper()->post()->retrieve(
1271 $this->
refinery->kindlyTo()->dictOf(
1272 $this->
refinery->kindlyTo()->string()
1276 $sort->savePost($position);
1277 $this->tpl->setOnScreenMessage(
1279 $this->
lng->txt(
'settings_saved'),
1290 $tool->setFormAction($this->
ctrl->getFormAction($this));
1292 $f = $DIC->ui()->factory();
1293 $r = $DIC->ui()->renderer();
1300 $this->
lng->txt(
'webr_add'),
1301 $this->
ctrl->getLinkTarget($this,
'addLink')
1305 $button =
$f->button()->standard(
1306 $this->
lng->txt(
'webr_set_to_list'),
1309 ->withOnClick($modal->getShowSignal());
1311 $this->tpl->setVariable(
"MODAL",
$r->render([$modal]));
1313 $tool->addComponent($button);
1316 $download_button =
$f->button()->standard(
1317 $this->
lng->txt(
'export_html'),
1318 $this->
ctrl->getLinkTarget($this,
'exportHTML')
1320 $tool->addComponent($download_button);
1321 $this->tpl->setVariable($a_tpl_var, $tool->getHTML());
1330 if ($this->
http->wrapper()->query()->has(
'link_id')) {
1331 $link_ids = (array) $this->
http->wrapper()->query()->retrieve(
1335 } elseif ($this->
http->wrapper()->post()->has(
'link_ids')) {
1336 $link_ids = $this->
http->wrapper()->post()->retrieve(
1338 $this->
refinery->kindlyTo()->dictOf(
1343 if ($link_ids === []) {
1344 $this->tpl->setOnScreenMessage(
1346 $this->
lng->txt(
'select_one')
1353 $confirm->setFormAction($this->
ctrl->getFormAction($this,
'view'));
1354 $confirm->setHeaderText($this->
lng->txt(
'webr_sure_delete_items'));
1355 $confirm->setConfirm($this->
lng->txt(
'delete'),
'deleteLinks');
1356 $confirm->setCancel($this->
lng->txt(
'cancel'),
'view');
1358 $items = $this->
getWebLinkRepo()->getAllItemsAsContainer()->getItems();
1360 foreach ($items as $item) {
1361 if (!in_array($item->getLinkId(), $link_ids)) {
1366 (
string) $item->getLinkId(),
1370 $this->tpl->setContent($confirm->getHTML());
1378 if ($this->
http->wrapper()->post()->has(
'link_ids')) {
1379 $link_ids = $this->
http->wrapper()->post()->retrieve(
1381 $this->
refinery->kindlyTo()->dictOf(
1387 foreach ($link_ids as $link_id) {
1391 $this->tpl->setOnScreenMessage(
1393 $this->
lng->txt(
'webr_deleted_items'),
1396 $this->
ctrl->redirect($this,
'view');
1404 if ($this->
http->wrapper()->query()->has(
'link_id')) {
1405 $link_id = $this->
http->wrapper()->query()->retrieve(
1411 $this->tpl->setOnScreenMessage(
1413 $this->
lng->txt(
'select_one'),
1416 $this->
ctrl->redirect($this,
'view');
1421 $item->isInternal(),
1423 $item->getDescription(),
1426 $item->getParameters()
1429 $this->tpl->setOnScreenMessage(
1431 $this->
lng->txt(
'webr_inactive_success'),
1434 $this->
ctrl->redirect($this,
'view');
1444 $this->
ctrl->redirectByClass(
1445 [self::class, ilInfoScreenGUI::class],
1458 $this->tabs_gui->activateTab(
'id_info');
1462 $info->enablePrivateNotes();
1465 $info->addMetaDataSections(
1468 $this->
object->getType()
1472 $this->
ctrl->forwardCommand($info);
1478 $this->tabs_gui->activateTab(
'id_history');
1484 $this->
object->getType()
1487 $this->tpl->setContent($hist_gui->getHTML());
1494 string $a_active_tab,
1495 string $a_active_subtab =
'' 1497 switch ($a_active_tab) {
1500 $this->
lng->loadLanguageModule(
'cntr');
1502 $this->
ctrl->setParameter(
1505 self::VIEW_MODE_VIEW
1507 $this->tabs_gui->addSubTab(
1509 $this->
lng->txt(
'view'),
1510 $this->
ctrl->getLinkTarget($this,
'switchViewMode')
1512 $this->
ctrl->setParameter(
1515 self::VIEW_MODE_MANAGE
1517 $this->tabs_gui->addSubTab(
1518 'id_content_manage',
1519 $this->
lng->txt(
'cntr_manage'),
1520 $this->
ctrl->getLinkTarget($this,
'switchViewMode')
1526 $this->
ctrl->setParameter(
1529 self::VIEW_MODE_SORT
1531 $this->tabs_gui->addSubTab(
1532 'id_content_ordering',
1533 $this->
lng->txt(
'cntr_ordering'),
1534 $this->
ctrl->getLinkTarget($this,
'switchViewMode')
1538 $this->
ctrl->clearParameters($this);
1539 $this->tabs_gui->activateSubTab($a_active_subtab);
1543 $this->tabs_gui->activateTab(
'id_content');
1550 $ilHelp = $DIC[
'ilHelp'];
1551 $ilHelp->setScreenIdComponent(
"webr");
1554 $this->tabs_gui->addTab(
1556 $this->
lng->txt(
"content"),
1557 $this->
ctrl->getLinkTarget($this,
"view")
1565 $this->tabs_gui->addTab(
1567 $this->
lng->txt(
"info_short"),
1568 $this->
ctrl->getLinkTarget($this,
"infoScreen")
1573 $this->tabs_gui->addTab(
1575 $this->
lng->txt(
"settings"),
1576 $this->
ctrl->getLinkTarget($this,
"settings")
1581 $this->tabs_gui->addTab(
1583 $this->
lng->txt(
"history"),
1584 $this->
ctrl->getLinkTarget($this,
"history")
1590 $mdtab = $mdgui->getTab();
1592 $this->tabs_gui->addTab(
1594 $this->
lng->txt(
"meta_data"),
1601 $this->tabs_gui->addTab(
1603 $this->
lng->txt(
'export'),
1604 $this->
ctrl->getLinkTargetByClass(
'ilexportgui',
'')
1614 $this->tpl->setLocator();
1624 $ilLocator = $DIC[
'ilLocator'];
1625 if (is_object($this->
object)) {
1626 $ilLocator->addItem(
1627 $this->
object->getTitle(),
1628 $this->
ctrl->getLinkTarget($this),
1630 $this->
object->getRefId(),
1638 $obj_id = $this->
object->getId();
1646 $item->getResolvedLink((
bool) $this->settings->get(
'links_dynamic'))
1653 if ($this->
http->wrapper()->query()->has(
'link_id')) {
1654 $link_id = $this->
http->wrapper()->query()->retrieve(
1664 $item->getResolvedLink((
bool) $this->
settings->get(
'links_dynamic'))
1679 $this->
user->getId()
1688 "tpl.export_html.html",
1691 "components/ILIAS/WebResource" 1696 foreach ($items as $item) {
1702 ->format(
'Y-m-d H-i-s'));
1704 ->format(
'Y-m-d H-i-s'));
1715 ($this->
settings->get(
'short_inst_name') !=
"")
1716 ? $this->
settings->get(
'short_inst_name')
1723 public static function _goto(
string $a_target, $a_additional =
null): void
1727 $main_tpl = $DIC->ui()->mainTemplate();
1728 $ilAccess = $DIC->access();
1729 $lng = $DIC->language();
1730 $ctrl = $DIC->ctrl();
1733 if ($a_additional && substr($a_additional, -3) ==
"wsp") {
1736 ilSharedResourceGUI::class,
1742 ilSharedResourceGUI::class
1750 if ($ilAccess->checkAccess(
"read",
"", (
int) $a_target)) {
1752 "ilias.php?baseClass=ilLinkResourceHandlerGUI&ref_id=" . $a_target
1754 } elseif ($ilAccess->checkAccess(
"visible",
"", (
int) $a_target)) {
1756 "ilias.php?baseClass=ilLinkResourceHandlerGUI&ref_id=" . $a_target .
"&cmd=infoScreen" 1759 $main_tpl->setOnScreenMessage(
1762 $lng->
txt(
"msg_no_perm_read_item"),
static get(string $a_var)
setValuesFromLink(int $a_link_id)
parseCurrentBlock(string $block_name=self::DEFAULT_BLOCK)
Parses the given block.
ilWebLinkDraftParameter $draft_parameter
infoScreen()
instead of redirecting here, links to the info screen should directly lead to the right place...
static _goto(string $a_target, $a_additional=null)
Draft class for creating and updating a parameter attached to Web Link items.
static getInitHTML(string $a_url)
Get initialisation HTML to use internal link editing.
TableGUI class for search results.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
Sets the template to the given block.
New implementation of ilObjectGUI.
GUI class for the workflow of copying objects.
initFormLink(int $a_mode)
if(! $DIC->user() ->getId()||!ilLTIConsumerAccess::hasCustomProviderCreationAccess()) $params
TableGUI class for search results.
static stripSlashes(string $a_str, bool $a_strip_html=true, string $a_allow="")
getLinkToListModal()
Get form to transform a single weblink to a weblink list.
createItem(ilWebLinkDraftItem $item)
Creates a new item, complete with parameters.
getDidacticTemplateVar(string $type)
Get didactic template setting from creation screen.
Class ilObjLinkResourceGUI.
activateTabs(string $a_active_tab, string $a_active_subtab='')
Activate tab and subtabs.
setParameterByClass(string $a_class, string $a_parameter, $a_value)
prepareOutput(bool $show_sub_objects=true)
showToolbar(string $a_tpl_var)
infoScreenForward()
show information screen
static deliverData(string $a_data, string $a_filename, string $mime="application/octet-stream")
setVariable(string $variable, $value='')
Sets the given variable to the given value.
initCreateForm(string $new_type)
redirectToLink(int $a_ref_id, int $a_obj_id, string $a_url)
checkLinkInput(int $a_mode, bool $a_valid, ?int $a_link_id=null)
redirectByClass( $a_class, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
withOnLoadCode(Closure $binder)
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static _lookupSortMode(int $a_obj_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
afterSave(ilObject $new_object)
static http()
Fetches the global http state from ILIAS.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $node_id=null)
static _lookupTitle(int $obj_id)
editLinks()
Start with manage mode.
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
ilGlobalTemplateInterface $tpl
putObjectInTree(ilObject $obj, ?int $parent_node_id=null)
Add object to tree at given position.
ilWebLinkDraftItem $draft_item
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
ilNavigationHistory $navigationHistory
__construct(int $id=0, int $id_type=self::REPOSITORY_NODE_ID, int $parent_node_id=0)
Last visited history for repository items.
const WORKSPACE_OBJECT_ID
ilWebLinkDraftList $draft_list
checkPermission(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
static redirect(string $a_script)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
switchViewMode(?int $force_view_mode=null)
Switch between "View" "Manage" and "Sort".
form( $class_path, string $cmd, string $submit_caption="")
Draft class for creating or updating a Web Link list.
setTargetScript(string $a_target_script)
addLinkInputToForm(int $mode)
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static _getInstance(int $a_obj_id)
Draft class for creating and updating a Web Link item.
const VALUES
TODO Once the GUI is updated, undefined can be dropped.
const VALUES_TEXT
Keys of the language variables to the possible values, e.g.
addHeaderAction()
Add header action menu.
static set(string $a_var, $a_val)
Set a value.
static _getFirstLink(int $a_webr_id)
Get first link item Check before with _isSingular() if there is more or less than one...
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call
static _gotoRepositoryRoot(bool $raise_error=false)
Goto repository root.
const LINKS_ERR_NO_NAME
TODO: This can be removed when validate is.
initViewMode(?int $new_view_mode=null)