55 string $a_default_link_type,
56 int $a_default_parent_id,
60 $this->tree = $DIC->repositoryTree();
61 $this->
lng = $DIC->language();
62 $this->
ctrl = $DIC->ctrl();
63 $this->
user = $DIC->user();
69 $this->thumbs_gui = $DIC->mediaObjects()->internal()->gui()->thumbs();
71 $this->
lng->loadLanguageModule(
"link");
72 $this->
lng->loadLanguageModule(
"content");
73 $this->
ctrl->saveParameter($this, array(
"linkmode",
"link_par_ref_id",
"link_par_obj_id",
74 "link_par_fold_id",
"link_type"));
77 $this->default_link_type = $a_default_link_type;
79 $this->default_parent_ref_id = $a_default_parent_id;
82 $this->default_parent_ref_id = 0;
83 $this->default_parent_obj_id = $a_default_parent_id;
85 $this->default_parent_obj_type = ($this->default_parent_obj_id > 0)
90 $this->parent_ref_id = $this->request->getLinkParentRefId();
91 $this->parent_fold_id = $this->request->getLinkParentFolderId();
92 if ($this->parent_ref_id > 0) {
95 $this->parent_obj_id = $this->request->getLinkParentObjId();
99 public function init(): void
105 if ($this->parent_ref_id > 0 && !$tree->
isInTree($this->parent_ref_id)) {
109 $this->parent_type = array(
110 "StructureObject" =>
"lm",
111 "PageObject" =>
"lm",
112 "GlossaryItem" =>
"glo",
114 "WikiPage" =>
"wiki",
115 "PortfolioPage" =>
"prtf",
116 "PortfolioTemplatePage" =>
"prtt",
118 "RepositoryItem" =>
"",
123 $this->ltypes = array(
124 "StructureObject" => $lng->
txt(
"cont_lk_chapter"),
125 "StructureObject_New" => $lng->
txt(
"cont_lk_chapter_new"),
126 "PageObject" => $lng->
txt(
"cont_lk_page"),
127 "PageObject_FAQ" => $lng->
txt(
"cont_lk_page_faq"),
128 "PageObject_New" => $lng->
txt(
"cont_lk_page_new"),
129 "GlossaryItem" => $lng->
txt(
"cont_lk_term"),
130 "GlossaryItem_New" => $lng->
txt(
"cont_lk_term_new"),
131 "Media" => $lng->
txt(
"cont_lk_media_inline"),
132 "Media_Media" => $lng->
txt(
"cont_lk_media_media"),
133 "Media_FAQ" => $lng->
txt(
"cont_lk_media_faq"),
134 "Media_New" => $lng->
txt(
"cont_lk_media_new"),
135 "WikiPage" => $lng->
txt(
"cont_wiki_page"),
136 "PortfolioPage" => $lng->
txt(
"cont_prtf_page"),
137 "PortfolioTemplatePage" => $lng->
txt(
"cont_prtt_page"),
138 "File" => $lng->
txt(
"cont_lk_file"),
139 "RepositoryItem" => $lng->
txt(
"cont_repository_item"),
140 "User" => $lng->
txt(
"cont_user")
142 if (!$this->filter_white_list) {
143 foreach ($this->filter_link_types as $link_type) {
144 unset($this->ltypes[$link_type]);
148 foreach ($this->ltypes as $k => $l) {
149 if (in_array($k, $this->filter_link_types,
true)) {
156 $this->link_type = ($this->request->getLinkType() ===
"")
157 ? $this->default_link_type
158 : $this->request->getLinkType();
159 $ltype_arr = explode(
"_", $this->link_type);
160 $this->base_link_type = $ltype_arr[0];
161 $this->link_target = $ltype_arr[1] ??
"";
167 switch ($this->base_link_type) {
169 case "StructureObject":
173 case "PortfolioPage":
174 case "PortfolioTemplatePage":
175 if ($this->parent_ref_id === 0 && $this->parent_obj_id === 0
176 && $def_type === ($this->parent_type[$this->base_link_type] ??
"")) {
179 $ctrl->
setParameter($this,
"link_par_obj_id", $this->parent_obj_id);
180 $ctrl->
setParameter($this,
"link_par_ref_id", $this->parent_ref_id);
188 $this->set_link_script = $a_script;
193 $this->
return = $a_return;
203 $this->filter_link_types[] = $a_link_type;
211 $this->filter_white_list = $a_white_list;
218 $next_class = $this->
ctrl->getNextClass($this);
220 $cmd = $this->
ctrl->getCmd(
"showLinkHelp");
221 switch ($next_class) {
223 $ret = $this->$cmd();
227 return (
string) $ret;
239 $ctrl->
redirect($this,
"showLinkHelp",
"",
true);
244 if ($this->
return ===
"") {
245 $this->
ctrl->returnToParent($this);
256 return htmlspecialchars($str, ENT_QUOTES);
270 if ((in_array($this->base_link_type, array(
"GlossaryItem",
"WikiPage",
"PageObject",
"StructureObject"),
true) &&
271 ($this->parent_ref_id === 0))
273 (($this->parent_ref_id > 0) &&
275 if ($parent_type !==
"") {
279 if ($ilCtrl->isAsynch()) {
280 $tpl =
new ilGlobalTemplate(
"tpl.link_help_asynch.html",
true,
true,
"components/ILIAS/COPage/IntLink");
281 $tpl->setVariable(
"NEW_LINK_URL", $this->
ctrl->getLinkTarget(
289 $tpl =
new ilGlobalTemplate(
"tpl.link_help.html",
true,
true,
"components/ILIAS/COPage/IntLink");
293 $tpl->setVariable(
"FORMACTION", $this->
ctrl->getFormAction($this,
"changeLinkType",
"",
true));
294 $tpl->setVariable(
"FORMACTION2", $this->
ctrl->getFormAction($this));
295 $tpl->setVariable(
"TXT_HELP_HEADER", $this->
lng->txt(
"cont_link_select"));
296 $tpl->setVariable(
"TXT_TYPE", $this->
lng->txt(
"cont_link_type"));
307 array(
"id" =>
"ilIntLinkTypeSelector")
309 $tpl->setVariable(
"SELECT_TYPE", $select_ltype);
310 $tpl->setVariable(
"CMD_CHANGETYPE",
"changeLinkType");
311 $tpl->setVariable(
"BTN_CHANGETYPE", $this->
lng->txt(
"cont_change_type"));
313 $tpl->setVariable(
"CMD_CLOSE",
"closeLinkHelp");
314 $tpl->setVariable(
"BTN_CLOSE", $this->
lng->txt(
"close"));
316 $chapterRowBlock =
"chapter_row_js";
319 switch ($this->base_link_type) {
325 $ctree = $cont_obj->getLMTree();
326 $nodes = $ctree->getSubTree($ctree->getNodeData($ctree->getRootId()));
327 $tpl->setCurrentBlock(
"chapter_list");
328 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->
lng->txt(
"obj_lm"));
329 $tpl->setVariable(
"TXT_CONT_TITLE", $cont_obj->getTitle());
330 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"pages"));
333 $tpl->setCurrentBlock(
"change_cont_obj");
334 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
335 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->
lng->txt(
"change"));
336 $tpl->parseCurrentBlock();
338 foreach ($nodes as $node) {
339 if ($node[
"type"] ===
"st") {
340 $tpl->setCurrentBlock(
"header_row");
341 $tpl->setVariable(
"TXT_HEADER", $node[
"title"]);
342 $tpl->parseCurrentBlock();
343 $tpl->setCurrentBlock(
"row");
344 $tpl->parseCurrentBlock();
347 if ($node[
"type"] ===
"pg") {
362 $free_pages = array();
363 foreach ($pages as $page) {
364 if (!$ctree->isInTree($page[
"obj_id"])) {
365 $free_pages[] = $page;
368 if (count($free_pages) > 0) {
369 $tpl->setCurrentBlock(
"header_row");
370 $tpl->setVariable(
"TXT_HEADER", $this->
lng->txt(
"cont_free_pages"));
371 $tpl->parseCurrentBlock();
373 foreach ($free_pages as $node) {
386 $tpl->setCurrentBlock(
"chapter_list");
387 $tpl->parseCurrentBlock();
392 case "StructureObject":
402 $ctree = $cont_obj->getLMTree();
403 $nodes = $ctree->getSubTree($ctree->getNodeData($ctree->getRootId()));
404 $tpl->setCurrentBlock(
"chapter_list");
405 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->
lng->txt(
"obj_lm"));
406 $tpl->setVariable(
"TXT_CONT_TITLE", $cont_obj->getTitle());
407 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"link_chapters"));
408 $tpl->setCurrentBlock(
"change_cont_obj");
409 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
410 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->
lng->txt(
"change"));
411 $tpl->parseCurrentBlock();
413 foreach ($nodes as $node) {
414 if ($node[
"type"] ===
"st") {
425 $tpl->setCurrentBlock(
"chapter_list");
426 $tpl->parseCurrentBlock();
434 $terms = $glossary->getTermList();
435 $tpl->setCurrentBlock(
"chapter_list");
436 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->
lng->txt(
"glossary"));
437 $tpl->setVariable(
"TXT_CONT_TITLE", $glossary->getTitle());
438 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"link_terms"));
439 $tpl->setCurrentBlock(
"change_cont_obj");
440 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
441 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->
lng->txt(
"change"));
442 $tpl->parseCurrentBlock();
444 foreach ($terms as $term) {
455 $tpl->setCurrentBlock(
"chapter_list");
456 $tpl->parseCurrentBlock();
463 if ($this->parent_ref_id === 0) {
464 $tpl->setCurrentBlock(
"change_cont_obj");
465 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
466 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->
lng->txt(
"change"));
467 $tpl->parseCurrentBlock();
468 $mobjs = $ilUser->getClipboardObjects(
"mob");
471 foreach ($mobjs as $obj) {
472 $objs[$obj[
"title"] .
":" . $obj[
"id"]] = $obj;
475 $tpl->setCurrentBlock(
"chapter_list");
476 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->
lng->txt(
"cont_media_source"));
477 $tpl->setVariable(
"TXT_CONT_TITLE", $this->
lng->txt(
"cont_personal_clipboard"));
478 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"link_mobs"));
479 $tpl->setVariable(
"COLSPAN",
"2");
481 foreach ($objs as $obj) {
494 $fobjs = $med_pool->getChilds($this->parent_fold_id,
"fold");
496 foreach ($fobjs as $obj) {
497 $f2objs[$obj[
"title"] .
":" . $obj[
"child"]] = $obj;
501 $mobjs = $med_pool->getChilds($this->parent_fold_id,
"mob");
503 foreach ($mobjs as $obj) {
504 $m2objs[$obj[
"title"] .
":" . $obj[
"child"]] = $obj;
509 $objs = array_merge($f2objs, $m2objs);
511 $tpl->setCurrentBlock(
"chapter_list");
512 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->
lng->txt(
"mep"));
513 $tpl->setVariable(
"TXT_CONT_TITLE", $med_pool->getTitle());
514 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"link_mobs"));
515 $tpl->setCurrentBlock(
"change_cont_obj");
516 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
517 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->
lng->txt(
"change"));
518 $tpl->setVariable(
"COLSPAN",
"2");
519 $tpl->parseCurrentBlock();
520 if ($parent_id = $med_pool->getParentId($this->parent_fold_id)) {
521 $tpl->setCurrentBlock(
"icon");
523 $tpl->parseCurrentBlock();
524 $tpl->setCurrentBlock(
"link_row");
525 $tpl->setVariable(
"TXT_CHAPTER",
"..");
526 $this->
ctrl->setParameter($this,
"mep_fold", $parent_id);
527 if ($ilCtrl->isAsynch()) {
528 $tpl->setVariable(
"LINK",
"#");
531 " onclick=\"return il.IntLink.setMepPoolFolder('" . $parent_id .
"');\" " 536 $this->
ctrl->getLinkTarget($this,
"setMedPoolFolder")
539 $tpl->parseCurrentBlock();
540 $tpl->setCurrentBlock(
"row");
541 $tpl->parseCurrentBlock();
543 foreach ($objs as $obj) {
544 if ($obj[
"type"] ===
"fold") {
545 $tpl->setCurrentBlock(
"icon");
547 $tpl->parseCurrentBlock();
548 $tpl->setCurrentBlock(
"link_row");
549 $tpl->setVariable(
"TXT_CHAPTER", $obj[
"title"]);
550 $this->
ctrl->setParameter($this,
"mep_fold", $obj[
"child"]);
551 if ($ilCtrl->isAsynch()) {
552 $tpl->setVariable(
"LINK",
"#");
555 " onclick=\"return il.IntLink.setMepPoolFolder('" . $obj[
"child"] .
"');\" " 560 $this->
ctrl->getLinkTarget($this,
"setMedPoolFolder")
563 $tpl->parseCurrentBlock();
577 $tpl->setCurrentBlock(
"row");
578 $tpl->parseCurrentBlock();
581 $tpl->setCurrentBlock(
"chapter_list");
582 $tpl->parseCurrentBlock();
591 $tpl->setCurrentBlock(
"chapter_list");
592 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->
lng->txt(
"obj_wiki"));
594 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"link_wpages"));
595 $tpl->setCurrentBlock(
"change_cont_obj");
596 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
597 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->
lng->txt(
"change"));
598 $tpl->parseCurrentBlock();
600 foreach ($wpages as $wpage) {
611 $tpl->setCurrentBlock(
"chapter_list");
612 $tpl->parseCurrentBlock();
616 case "PortfolioPage":
617 case "PortfolioTemplatePage":
622 $tpl->setCurrentBlock(
"chapter_list");
625 $tpl->setVariable(
"THEAD", $this->
lng->txt(
"pages"));
627 foreach ($ppages as $ppage) {
640 $tpl->setCurrentBlock(
"chapter_list");
641 $tpl->parseCurrentBlock();
645 case "RepositoryItem":
651 if (!isset($this->uploaded_file)) {
661 $tpl->setVariable(
"LINK_HELP_CONTENT", $this->
addUser());
665 if ($ilCtrl->isAsynch()) {
681 $tpl =
new ilTemplate(
"tpl.link_file.html",
true,
true,
"components/ILIAS/COPage/IntLink");
682 if (!is_object($this->uploaded_file)) {
683 $tpl->setCurrentBlock(
"form");
686 $ilCtrl->getFormAction($this,
"saveFileLink",
"",
true)
688 $tpl->setVariable(
"TXT_SELECT_FILE", $lng->
txt(
"cont_select_file"));
689 $tpl->setVariable(
"TXT_SAVE_LINK", $lng->
txt(
"cont_create_link"));
690 $tpl->setVariable(
"CMD_SAVE_LINK",
"saveFileLink");
693 $tpl->setVariable(
"INPUT", $fi->getToolbarHTML());
694 $tpl->parseCurrentBlock();
696 $tpl->setCurrentBlock(
"link_js");
702 '[iln dfile=\x22' . $this->uploaded_file->getId() .
'\x22]' 710 $this->uploaded_file->getTitle()
722 if ($_FILES[
"link_file"][
"name"] !=
"") {
724 $fileObj->setType(
"file");
725 $fileObj->setTitle($_FILES[
"link_file"][
"name"]);
726 $fileObj->setDescription(
"");
727 $fileObj->setFileName($_FILES[
"link_file"][
"name"]);
728 $fileObj->setMode(
"filelist");
731 $fileObj->getUploadFile(
732 $_FILES[
"link_file"][
"tmp_name"],
733 $_FILES[
"link_file"][
"name"]
735 $this->uploaded_file = $fileObj;
760 $this->thumbs_gui->getThumbHtml($a_id)
776 $ctrl->
setParameter($this,
"link_type", $this->request->getLinkType());
777 $base_type = explode(
"_", $this->request->getLinkType())[0];
783 $ctrl->
redirect($this,
"showLinkHelp",
"",
true);
792 $ctrl->
setParameter($this,
"link_par_fold_id", $this->request->getMediaPoolFolder());
793 $ctrl->
redirect($this,
"showLinkHelp",
"",
true);
806 $white = array(
"root",
"cat",
"crs",
"fold",
"grp");
809 $exp->setClickableType($a_type);
810 if ($a_type ===
"prtf") {
812 $exp->setClickableType(
"prtt");
815 $exp->setTypeWhiteList($white);
818 if (!$exp->handleCommand()) {
819 return $exp->getHTML();
833 if ($this->request->getDo() ===
"set") {
834 $ilCtrl->setParameter($this,
"link_par_ref_id", $this->request->getSelectedId());
835 $ilCtrl->redirect($this,
"showLinkHelp",
"",
true);
839 $ilCtrl->setParameter($this,
"link_type", $this->link_type);
841 $tpl =
new ilTemplate(
"tpl.link_help_explorer.html",
true,
true,
"components/ILIAS/COPage/IntLink");
845 $tpl->setVariable(
"TXT_EXPLORER_HEADER", $this->
lng->txt(
"cont_choose_" . ($this->parent_type[$this->base_link_type] ??
"")));
847 $tpl->setVariable(
"EXPLORER", $output);
848 $tpl->setVariable(
"ACTION", $this->
ctrl->getFormAction($this,
"resetLinkList",
"",
true));
849 $tpl->setVariable(
"BTN_RESET",
"resetLinkList");
850 $tpl->setVariable(
"TXT_RESET", $this->
lng->txt(
"back"));
852 if (($this->parent_type[$this->base_link_type] ??
"") ===
"mep") {
853 $tpl->setCurrentBlock(
"sel_clipboard");
854 $this->
ctrl->setParameter($this,
"do",
"set");
855 if ($ilCtrl->isAsynch()) {
856 $tpl->setVariable(
"LINK_CLIPBOARD",
"#");
859 " onclick=\"return il.IntLink.selectLinkTargetObject('mep', 0, '" . $this->link_type .
"');\" " 862 $tpl->setVariable(
"LINK_CLIPBOARD", $this->
ctrl->getLinkTarget($this,
"changeTargetObject"));
864 $tpl->setVariable(
"TXT_PERS_CLIPBOARD", $this->
lng->txt(
"clipboard"));
865 $tpl->parseCurrentBlock();
868 $tpl->parseCurrentBlock();
887 if (!$exp->handleCommand()) {
888 return $exp->getHTML();
905 return "il.Util.addOnLoad(function() {il.IntLink.init({url: '$a_url'});});";
915 $lng = $DIC->language();
919 self::getOnloadCode($a_url)
926 $tpl->addJavaScript(
"assets/js/ilExplorer.js");
930 $tpl->addJavascript(
"../components/ILIAS/COPage/IntLink/resources/ilIntLink.js");
932 $tpl->addJavascript(
"assets/js/ilIntLink.js");
936 $tpl->addJavaScript(
"assets/js/Form.js");
938 $mt = self::getModalTemplate();
939 $tpl->addOnLoadCode(
'il.IntLink.setModalTemplate("' . addslashes(json_encode($mt[
"template"])) .
'");');
941 $html =
"<div id='ilIntLinkModal' data-show-signal='" . $mt[
"show"] .
"' data-close-signal='" . $mt[
"close"] .
"'></div>";
950 $lng = $DIC->language();
953 $modal = $ui->factory()->modal()->roundtrip($lng->
txt(
"link_link"), $ui->factory()->legacy()->content(
"<div id='ilIntLinkModalContent'></div>"));
954 $modalt[
"show"] = $modal->getShowSignal()->getId();
955 $modalt[
"close"] = $modal->getCloseSignal()->getId();
956 $modalt[
"template"] = $ui->renderer()->renderAsync($modal);
970 string $a_type_short,
972 array $a_anchors = array(),
973 string $a_link_content =
"" 975 $chapterRowBlock =
"chapter_row_js";
976 $anchor_row_block =
"anchor_link_js";
978 $target_str = ($this->link_target ===
"")
980 :
" target=\"" . $this->link_target .
"\"";
982 if (count($a_anchors) > 0) {
983 foreach ($a_anchors as $anchor) {
1000 $this->
prepareJavascriptOutput(
"[iln " . $a_bb_type .
"=\"" . $a_obj_id .
"\"" . $target_str .
" anchor=\"$anchor\"]")
1011 if ($a_type ===
"MediaObject") {
1020 "linktype=" . $a_type .
1021 "&linktarget=il__" . $a_type_short .
"_" . $a_obj_id .
1022 "&linktargetframe=" . $this->link_target
1027 if ($a_type ===
"MediaObject") {
1032 if ($a_type ===
"MediaObject" && empty($target_str)) {
1043 $tpl->
setVariable(
"LINK_CONTENT", $a_link_content);
1068 $form->setId(
"link_user_search_form");
1072 $ti->setValue($this->request->getUserSearchStr());
1073 $form->addItem($ti);
1075 $form->addCommandButton(
"searchUser", $this->
lng->txt(
"search"));
1087 $lng = $DIC->language();
1089 if (strlen($this->request->getUserSearchStr()) < 3) {
1090 if (strlen($this->request->getUserSearchStr()) > 0) {
1099 $form->checkInput();
1102 if (count($users) === 0) {
1106 $f = $DIC->ui()->factory();
1107 $r = $DIC->ui()->renderer();
1108 $lng = $DIC->language();
1110 foreach ($users as $user) {
1111 $b = $f->button()->standard($lng->
txt(
"insert"),
"#")
1114 '$("#' .
$id .
"\").click(function(ev) { il.IntLink.addInternalLink('[iln user=\"" .
1119 ->withSections(array(
$b));
1121 $deck = $f->deck($cards)->withLargeCardsSize();
1123 return $r->renderAsync($deck);
static getAllPortfolioPages(int $a_portfolio_id)
Get pages of portfolio.
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static appendUrlParameterString(string $a_url, string $a_par, bool $xml_style=false)
static getInitHTML(string $a_url)
Get initialisation HTML to use internal link editing.
static getSystemMessageHTML(string $a_txt, string $a_type="info")
Get HTML for a system message.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
setVariable(string $variable, $value='')
Sets the given variable to the given value.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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...
special template class to simplify handling of ITX/PEAR
static _readAnchors(string $a_parent_type, int $a_page_id, string $a_page_lang="-")
Read anchors of a page.
getUserSearchResult()
Search user.
setReturn(string $a_return)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
changeTargetObject(string $a_type="")
Cange target object.
int $default_parent_obj_id
isInTree(?int $a_node_id)
get all information of a node.
parseCurrentBlock(string $part=self::DEFAULT_BLOCK)
outputThumbnail(ilGlobalTemplate $tpl, int $a_id, string $a_mode="")
output thumbnail
static getOnloadCode(string $a_url)
getFileLinkHTML()
Get HTML for file link.
loadLanguageModule(string $a_module)
Load language module.
showLinkHelp()
Show link help list.
int $default_parent_ref_id
filterLinkType(string $a_link_type)
withOnLoadCode(Closure $binder)
static _lookupObjId(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
__construct(string $a_default_link_type, int $a_default_parent_id, bool $a_is_ref=true)
static getNamePresentation( $a_user_id, bool $a_user_image=false, bool $a_profile_link=false, string $a_profile_back_link='', bool $a_force_first_lastname=false, bool $a_omit_login=false, bool $a_sortable=true, bool $a_return_data_array=false, $a_ctrl_path='ilpublicuserprofilegui')
Default behaviour is:
static _lookupTitle(int $obj_id)
getTargetExplorer()
Cange target object.
redirect(object $a_gui_obj, ?string $a_cmd=null, ?string $a_anchor=null, bool $is_async=false)
renderLink(ilGlobalTemplate $tpl, string $a_title, int $a_obj_id, string $a_type, string $a_type_short, string $a_bb_type, array $a_anchors=array(), string $a_link_content="")
Render internal link item.
static getImagePath(string $image_name, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
ILIAS MediaObjects Thumbs ThumbsGUI $thumbs_gui
static searchUsers(string $a_search_str)
Search users.
static redirect(string $a_script)
static _getPersonalPicturePath(int $a_usr_id, string $a_size='small', bool $a_force_pic=false, bool $a_prevent_no_photo_image=false, bool $html_export=false)
setMedPoolFolder()
select media pool folder
static _recoverParameters()
Recover parameters from session variables (static)
setFilterWhiteList(bool $a_white_list)
Set filter list as white list (per detault it is a black list)
prepareJavascriptOutput(string $str)
Prepare output for JS enabled editing.
static getPageList(int $lm_id)
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
initUserSearchForm()
Init user search form.
string $default_parent_obj_type
string $default_link_type
saveFileLink()
Save file link.
setCurrentBlock(string $part=self::DEFAULT_BLOCK)
setParameter(object $a_gui_obj, string $a_parameter, $a_value)
selectRepositoryItem()
select repository item explorer
StandardGUIRequest $request
static getAllWikiPages(int $a_wiki_id, string $lang="-")
static _lookupType(int $id, bool $reference=false)
setSetLinkTargetScript(string $a_script)
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static init(?ilGlobalTemplateInterface $a_main_tpl=null)
static getModalTemplate()
refreshRepositorySelector()
Refresh Repository Selector.
static _lookupLogin(int $a_user_id)