4 require_once(
"./Modules/LearningModule/classes/class.ilLMPageObject.php");
5 require_once(
"./Services/MediaObjects/classes/class.ilObjMediaObjectGUI.php");
91 public function __construct($a_default_link_type, $a_default_parent_id, $a_is_ref =
true)
94 $this->tree = $DIC->repositoryTree();
95 $this->lng = $DIC->language();
96 $this->ctrl = $DIC->ctrl();
97 $this->
user = $DIC->user();
99 $this->lng->loadLanguageModule(
"link");
100 $this->lng->loadLanguageModule(
"content");
103 $this->ctrl->saveParameter($this, array(
"linkmode",
"link_par_ref_id",
"link_par_obj_id",
104 "link_par_fold_id",
"link_type"));
107 $this->default_link_type = $a_default_link_type;
109 $this->default_parent_ref_id = $a_default_parent_id;
112 $this->default_parent_ref_id = 0;
113 $this->default_parent_obj_id = $a_default_parent_id;
115 $this->default_parent_obj_type = ($this->default_parent_obj_id > 0)
120 $this->parent_ref_id = (int)
$_GET[
"link_par_ref_id"];
121 $this->parent_fold_id = (int)
$_GET[
"link_par_fold_id"];
122 if ($this->parent_ref_id > 0) {
125 $this->parent_obj_id = (int)
$_GET[
"link_par_obj_id"];
138 if ($this->parent_ref_id > 0 && !
$tree->isInTree($this->parent_ref_id)) {
142 $this->parent_type = array(
143 "StructureObject" =>
"lm",
144 "PageObject" =>
"lm",
145 "GlossaryItem" =>
"glo",
147 "WikiPage" =>
"wiki",
148 "PortfolioPage" =>
"prtf",
149 "PortfolioTemplatePage" =>
"prtt",
151 "RepositoryItem" =>
"",
156 $this->ltypes = array(
157 "StructureObject" =>
$lng->txt(
"cont_lk_chapter"),
158 "StructureObject_New" =>
$lng->txt(
"cont_lk_chapter_new"),
159 "PageObject" =>
$lng->txt(
"cont_lk_page"),
160 "PageObject_FAQ" =>
$lng->txt(
"cont_lk_page_faq"),
161 "PageObject_New" =>
$lng->txt(
"cont_lk_page_new"),
162 "GlossaryItem" =>
$lng->txt(
"cont_lk_term"),
163 "GlossaryItem_New" =>
$lng->txt(
"cont_lk_term_new"),
164 "Media" =>
$lng->txt(
"cont_lk_media_inline"),
165 "Media_Media" =>
$lng->txt(
"cont_lk_media_media"),
166 "Media_FAQ" =>
$lng->txt(
"cont_lk_media_faq"),
167 "Media_New" =>
$lng->txt(
"cont_lk_media_new"),
168 "WikiPage" =>
$lng->txt(
"cont_wiki_page"),
169 "PortfolioPage" =>
$lng->txt(
"cont_prtf_page"),
170 "PortfolioTemplatePage" =>
$lng->txt(
"cont_prtt_page"),
171 "File" =>
$lng->txt(
"cont_lk_file"),
172 "RepositoryItem" =>
$lng->txt(
"cont_repository_item"),
173 "User" =>
$lng->txt(
"cont_user")
175 if (!$this->filter_white_list) {
176 foreach ($this->filter_link_types as
$link_type) {
177 unset($this->ltypes[$link_type]);
181 foreach ($this->ltypes as $k => $l) {
182 if (in_array($k, $this->filter_link_types)) {
189 $this->link_type = (
$_GET[
"link_type"] ==
"")
190 ? $this->default_link_type
191 :
$_GET[
"link_type"];
192 $ltype_arr = explode(
"_", $this->link_type);
193 $this->base_link_type = $ltype_arr[0];
194 $this->link_target = $ltype_arr[1];
200 switch ($this->base_link_type) {
202 case "StructureObject":
206 case "PortfolioPage":
207 case "PortfolioTemplatePage":
208 if ($this->parent_ref_id == 0 && $this->parent_obj_id == 0
209 && $def_type == $this->parent_type[$this->base_link_type]) {
212 $ctrl->setParameter($this,
"link_par_obj_id", $this->parent_obj_id);
213 $ctrl->setParameter($this,
"link_par_ref_id", $this->parent_ref_id);
230 $this->set_link_script = $a_script;
235 $this->
return = $a_return;
245 $this->filter_link_types[] = $a_link_type;
255 $this->filter_white_list = $a_white_list;
262 $next_class = $this->ctrl->getNextClass($this);
264 $cmd = $this->ctrl->getCmd(
"showLinkHelp");
265 switch ($next_class) {
267 $ret = $this->$cmd();
278 $ctrl->setParameter($this,
"link_par_ref_id",
"");
279 $ctrl->setParameter($this,
"link_par_obj_id",
"");
280 $ctrl->setParameter($this,
"link_par_fold_id",
"");
281 $ctrl->setParameter($this,
"link_type",
"");
283 $ctrl->redirect($this,
"showLinkHelp",
"",
true);
288 if ($this->
return ==
"") {
289 $this->ctrl->returnToParent($this);
300 return htmlspecialchars($str, ENT_QUOTES);
314 if ((in_array($this->base_link_type, array(
"GlossaryItem",
"WikiPage",
"PageObject",
"StructureObject")) &&
315 ($this->parent_ref_id == 0))
317 (($this->parent_ref_id > 0) &&
325 $tpl->setVariable(
"NEW_LINK_URL", $this->ctrl->getLinkTarget(
337 $tpl->setVariable(
"FORMACTION", $this->ctrl->getFormAction($this,
"changeLinkType",
"",
true));
338 $tpl->setVariable(
"FORMACTION2", $this->ctrl->getFormAction($this));
339 $tpl->setVariable(
"TXT_HELP_HEADER", $this->lng->txt(
"cont_link_select"));
340 $tpl->setVariable(
"TXT_TYPE", $this->lng->txt(
"cont_link_type"));
351 array(
"id" =>
"ilIntLinkTypeSelector")
353 $tpl->setVariable(
"SELECT_TYPE", $select_ltype);
354 $tpl->setVariable(
"CMD_CHANGETYPE",
"changeLinkType");
355 $tpl->setVariable(
"BTN_CHANGETYPE", $this->lng->txt(
"cont_change_type"));
357 $tpl->setVariable(
"CMD_CLOSE",
"closeLinkHelp");
358 $tpl->setVariable(
"BTN_CLOSE", $this->lng->txt(
"close"));
360 $chapterRowBlock =
"chapter_row_js";
363 switch ($this->base_link_type) {
366 require_once(
"./Modules/LearningModule/classes/class.ilObjLearningModule.php");
367 include_once(
"./Modules/LearningModule/classes/class.ilLMPage.php");
372 $ctree = $cont_obj->getLMTree();
373 $nodes = $ctree->getSubtree($ctree->getNodeData($ctree->getRootId()));
374 $tpl->setCurrentBlock(
"chapter_list");
375 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->lng->txt(
"obj_lm"));
376 $tpl->setVariable(
"TXT_CONT_TITLE", $cont_obj->getTitle());
377 $tpl->setVariable(
"THEAD", $this->lng->txt(
"pages"));
380 $tpl->setCurrentBlock(
"change_cont_obj");
381 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
382 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->lng->txt(
"change"));
383 $tpl->parseCurrentBlock();
385 foreach ($nodes as $node) {
386 if ($node[
"type"] ==
"st") {
387 $tpl->setCurrentBlock(
"header_row");
388 $tpl->setVariable(
"TXT_HEADER", $node[
"title"]);
389 $tpl->parseCurrentBlock();
390 $tpl->setCurrentBlock(
"row");
391 $tpl->parseCurrentBlock();
394 if ($node[
"type"] ==
"pg") {
395 include_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
410 $free_pages = array();
411 foreach ($pages as $page) {
412 if (!$ctree->isInTree($page[
"obj_id"])) {
413 $free_pages[] = $page;
416 if (count($free_pages) > 0) {
417 $tpl->setCurrentBlock(
"header_row");
418 $tpl->setVariable(
"TXT_HEADER", $this->lng->txt(
"cont_free_pages"));
419 $tpl->parseCurrentBlock();
421 foreach ($free_pages as $node) {
422 include_once(
"./Services/COPage/classes/class.ilPCParagraph.php");
435 $tpl->setCurrentBlock(
"chapter_list");
436 $tpl->parseCurrentBlock();
441 case "StructureObject":
451 require_once(
"./Modules/LearningModule/classes/class.ilObjLearningModule.php");
455 $ctree = &$cont_obj->getLMTree();
456 $nodes = $ctree->getSubtree($ctree->getNodeData($ctree->getRootId()));
457 $tpl->setCurrentBlock(
"chapter_list");
458 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->lng->txt(
"obj_lm"));
459 $tpl->setVariable(
"TXT_CONT_TITLE", $cont_obj->getTitle());
460 $tpl->setVariable(
"THEAD", $this->lng->txt(
"link_chapters"));
461 $tpl->setCurrentBlock(
"change_cont_obj");
462 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
463 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->lng->txt(
"change"));
464 $tpl->parseCurrentBlock();
466 foreach ($nodes as $node) {
467 if ($node[
"type"] ==
"st") {
478 $tpl->setCurrentBlock(
"chapter_list");
479 $tpl->parseCurrentBlock();
487 $terms = $glossary->getTermList();
488 $tpl->setCurrentBlock(
"chapter_list");
489 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->lng->txt(
"glossary"));
490 $tpl->setVariable(
"TXT_CONT_TITLE", $glossary->getTitle());
491 $tpl->setVariable(
"THEAD", $this->lng->txt(
"link_terms"));
492 $tpl->setCurrentBlock(
"change_cont_obj");
493 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
494 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->lng->txt(
"change"));
495 $tpl->parseCurrentBlock();
497 foreach ($terms as $term) {
508 $tpl->setCurrentBlock(
"chapter_list");
509 $tpl->parseCurrentBlock();
514 include_once(
"./Modules/MediaPool/classes/class.ilMediaPoolItem.php");
517 if ($this->parent_ref_id == 0) {
518 $tpl->setCurrentBlock(
"change_cont_obj");
519 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
520 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->lng->txt(
"change"));
521 $tpl->parseCurrentBlock();
522 $mobjs =
$ilUser->getClipboardObjects(
"mob");
525 foreach ($mobjs as $obj) {
526 $objs[$obj[
"title"] .
":" . $obj[
"id"]] = $obj;
529 $tpl->setCurrentBlock(
"chapter_list");
530 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->lng->txt(
"cont_media_source"));
531 $tpl->setVariable(
"TXT_CONT_TITLE", $this->lng->txt(
"cont_personal_clipboard"));
532 $tpl->setVariable(
"THEAD", $this->lng->txt(
"link_mobs"));
533 $tpl->setVariable(
"COLSPAN",
"2");
535 foreach ($objs as $obj) {
545 $tpl->setCurrentBlock(
"chapter_list");
546 $tpl->parseCurrentBlock();
548 require_once(
"./Modules/MediaPool/classes/class.ilObjMediaPool.php");
551 $fobjs = $med_pool->getChilds($this->parent_fold_id,
"fold");
553 foreach ($fobjs as $obj) {
554 $f2objs[$obj[
"title"] .
":" . $obj[
"child"]] = $obj;
558 $mobjs = $med_pool->getChilds($this->parent_fold_id,
"mob");
560 foreach ($mobjs as $obj) {
561 $m2objs[$obj[
"title"] .
":" . $obj[
"child"]] = $obj;
566 $objs = array_merge($f2objs, $m2objs);
568 $tpl->setCurrentBlock(
"chapter_list");
569 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->lng->txt(
"mep"));
570 $tpl->setVariable(
"TXT_CONT_TITLE", $med_pool->getTitle());
571 $tpl->setVariable(
"THEAD", $this->lng->txt(
"link_mobs"));
572 $tpl->setCurrentBlock(
"change_cont_obj");
573 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
574 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->lng->txt(
"change"));
575 $tpl->setVariable(
"COLSPAN",
"2");
576 $tpl->parseCurrentBlock();
577 if ($parent_id = $med_pool->getParentId($this->parent_fold_id)) {
578 $css_row =
"tblrow1";
579 $tpl->setCurrentBlock(
"icon");
581 $tpl->parseCurrentBlock();
582 $tpl->setCurrentBlock(
"link_row");
583 $tpl->setVariable(
"ROWCLASS", $css_row);
584 $tpl->setVariable(
"TXT_CHAPTER",
"..");
585 $this->ctrl->setParameter($this,
"mep_fold", $parent_id);
587 $tpl->setVariable(
"LINK",
"#");
590 " onclick=\"return il.IntLink.setMepPoolFolder('" . $parent_id .
"');\" " 595 $this->ctrl->getLinkTarget($this,
"setMedPoolFolder")
598 $tpl->parseCurrentBlock();
599 $tpl->setCurrentBlock(
"row");
600 $tpl->parseCurrentBlock();
602 foreach ($objs as $obj) {
603 if ($obj[
"type"] ==
"fold") {
604 $css_row = ($css_row ==
"tblrow2")
607 $tpl->setCurrentBlock(
"icon");
609 $tpl->parseCurrentBlock();
610 $tpl->setCurrentBlock(
"link_row");
611 $tpl->setVariable(
"ROWCLASS", $css_row);
612 $tpl->setVariable(
"TXT_CHAPTER", $obj[
"title"]);
613 $this->ctrl->setParameter($this,
"mep_fold", $obj[
"child"]);
615 $tpl->setVariable(
"LINK",
"#");
618 " onclick=\"return il.IntLink.setMepPoolFolder('" . $obj[
"child"] .
"');\" " 623 $this->ctrl->getLinkTarget($this,
"setMedPoolFolder")
626 $tpl->parseCurrentBlock();
640 $tpl->setCurrentBlock(
"row");
641 $tpl->parseCurrentBlock();
643 $tpl->setCurrentBlock(
"chapter_list");
644 $tpl->parseCurrentBlock();
651 require_once(
"./Modules/Wiki/classes/class.ilWikiPage.php");
655 $tpl->setCurrentBlock(
"chapter_list");
656 $tpl->setVariable(
"TXT_CONTENT_OBJECT", $this->lng->txt(
"obj_wiki"));
658 $tpl->setVariable(
"THEAD", $this->lng->txt(
"link_wpages"));
659 $tpl->setCurrentBlock(
"change_cont_obj");
660 $tpl->setVariable(
"CMD_CHANGE_CONT_OBJ",
"changeTargetObject");
661 $tpl->setVariable(
"BTN_CHANGE_CONT_OBJ", $this->lng->txt(
"change"));
662 $tpl->parseCurrentBlock();
664 foreach ($wpages as $wpage) {
675 $tpl->setCurrentBlock(
"chapter_list");
676 $tpl->parseCurrentBlock();
680 case "PortfolioPage":
681 case "PortfolioTemplatePage":
683 require_once(
"./Modules/Portfolio/classes/class.ilPortfolioPage.php");
687 $tpl->setCurrentBlock(
"chapter_list");
690 $tpl->setVariable(
"THEAD", $this->lng->txt(
"pages"));
692 foreach ($ppages as $ppage) {
705 $tpl->setCurrentBlock(
"chapter_list");
706 $tpl->parseCurrentBlock();
710 case "RepositoryItem":
716 if (!is_object($this->uploaded_file)) {
726 $tpl->setVariable(
"LINK_HELP_CONTENT", $this->
addUser());
748 if (!is_object($this->uploaded_file)) {
749 $tpl =
new ilTemplate(
"tpl.link_file.html",
true,
true,
"Services/Link");
750 $tpl->setCurrentBlock(
"form");
753 $ilCtrl->getFormAction($this,
"saveFileLink",
"",
true)
755 $tpl->setVariable(
"TXT_SELECT_FILE",
$lng->txt(
"cont_select_file"));
756 $tpl->setVariable(
"TXT_SAVE_LINK",
$lng->txt(
"cont_create_link"));
757 $tpl->setVariable(
"CMD_SAVE_LINK",
"saveFileLink");
758 include_once(
"./Services/Form/classes/class.ilFileInputGUI.php");
761 $tpl->setVariable(
"INPUT", $fi->getToolbarHTML());
762 $tpl->parseCurrentBlock();
765 $tpl =
new ilTemplate(
"tpl.link_file.html",
true,
true,
"Services/Link");
766 $tpl->setCurrentBlock(
"link_js");
772 '[iln dfile=\x22' . $this->uploaded_file->getId() .
'\x22]' 780 $this->uploaded_file->getTitle()
792 if ($_FILES[
"link_file"][
"name"] !=
"") {
793 include_once(
"./Modules/File/classes/class.ilObjFile.php");
795 $fileObj->setType(
"file");
796 $fileObj->setTitle($_FILES[
"link_file"][
"name"]);
797 $fileObj->setDescription(
"");
798 $fileObj->setFileName($_FILES[
"link_file"][
"name"]);
799 $fileObj->setFileType($_FILES[
"link_file"][
"type"]);
800 $fileObj->setFileSize($_FILES[
"link_file"][
"size"]);
801 $fileObj->setMode(
"filelist");
804 $fileObj->createDirectory();
805 $fileObj->raiseUploadError(
false);
806 $fileObj->getUploadFile(
807 $_FILES[
"link_file"][
"tmp_name"],
808 $_FILES[
"link_file"][
"name"]
810 $this->uploaded_file = $fileObj;
822 $med = &$mob->getMediaItem(
"Standard");
823 $target = $med->getThumbnailTarget(
"small");
826 $tpl->setCurrentBlock(
"thumbnail_link");
829 $tpl->setCurrentBlock(
"thumbnail_js");
834 $tpl->setCurrentBlock(
"thumb" . $suff);
835 $tpl->setVariable(
"SRC_THUMB", $target);
836 $tpl->parseCurrentBlock();
838 $tpl->setVariable(
"NO_THUMB",
" ");
842 $tpl->setCurrentBlock(
"thumbnail_link");
844 $tpl->setCurrentBlock(
"thumbnail_js");
846 $tpl->parseCurrentBlock();
857 $ctrl->setParameter($this,
"link_type",
$_GET[
"link_type"]);
858 $base_type = explode(
"_",
$_GET[
"link_type"])[0];
860 $ctrl->setParameter($this,
"link_par_ref_id", 0);
861 $ctrl->setParameter($this,
"link_par_obj_id", 0);
864 $ctrl->redirect($this,
"showLinkHelp",
"",
true);
873 $ctrl->setParameter($this,
"link_par_fold_id",
$_GET[
"mep_fold"]);
874 $ctrl->redirect($this,
"showLinkHelp",
"",
true);
883 include_once(
"./Services/Link/classes/class.ilLinkTargetObjectExplorerGUI.php");
888 $white = array(
"root",
"cat",
"crs",
"fold",
"grp");
891 $exp->setClickableType(
$a_type);
894 $exp->setClickableType(
"prtt");
897 $exp->setTypeWhiteList($white);
900 if (!$exp->handleCommand()) {
901 return $exp->getHTML();
912 $ilCtrl->setParameter($this,
"link_par_fold_id",
"");
913 if (
$_GET[
"do"] ==
"set") {
914 $ilCtrl->setParameter($this,
"link_par_ref_id",
$_GET[
"sel_id"]);
915 $ilCtrl->redirect($this,
"showLinkHelp",
"",
true);
919 $ilCtrl->setParameter($this,
"link_type", $this->link_type);
921 $tpl =
new ilTemplate(
"tpl.link_help_explorer.html",
true,
true,
"Services/Link");
925 $tpl->setVariable(
"TXT_EXPLORER_HEADER", $this->lng->txt(
"cont_choose_" . $this->parent_type[$this->base_link_type]));
927 $tpl->setVariable(
"EXPLORER", $output);
928 $tpl->setVariable(
"ACTION", $this->ctrl->getFormAction($this,
"resetLinkList",
"",
true));
929 $tpl->setVariable(
"BTN_RESET",
"resetLinkList");
930 $tpl->setVariable(
"TXT_RESET", $this->lng->txt(
"back"));
932 if ($this->parent_type[$this->base_link_type] ==
"mep") {
933 $tpl->setCurrentBlock(
"sel_clipboard");
934 $this->ctrl->setParameter($this,
"do",
"set");
936 $tpl->setVariable(
"LINK_CLIPBOARD",
"#");
939 " onclick=\"return il.IntLink.selectLinkTargetObject('mep', 0, '" . $this->link_type .
"');\" " 942 $tpl->setVariable(
"LINK_CLIPBOARD", $this->ctrl->getLinkTarget($this,
"changeTargetObject"));
944 $tpl->setVariable(
"TXT_PERS_CLIPBOARD", $this->lng->txt(
"clipboard"));
945 $tpl->parseCurrentBlock();
948 $tpl->parseCurrentBlock();
962 $ilCtrl->setParameter($this,
"link_par_fold_id",
"");
965 include_once(
"./Services/Link/classes/class.ilIntLinkRepItemExplorerGUI.php");
969 if (!$exp->handleCommand()) {
970 return $exp->getHTML();
992 $lng = $DIC->language();
995 $lng->loadLanguageModule(
"link");
997 $tpl->addJavaScript(
"./Services/UIComponent/Explorer/js/ilExplorer.js");
998 include_once(
"./Services/UIComponent/Explorer2/classes/class.ilExplorerBaseGUI.php");
1001 include_once(
"./Services/YUI/classes/class.ilYuiUtil.php");
1004 $tpl->addJavascript(
"./Services/Link/js/ilIntLink.js");
1007 $tpl->addJavaScript(
"Services/Form/js/Form.js");
1009 include_once(
"./Services/UIComponent/Modal/classes/class.ilModalGUI.php");
1011 $modal->setHeading(
$lng->txt(
"link_link"));
1012 $modal->setId(
"ilIntLinkModal");
1013 $modal->setBody(
"<div id='ilIntLinkModalContent'></div>");
1015 $ltpl =
new ilTemplate(
"tpl.int_link_panel.html",
true,
true,
"Services/Link");
1016 $ltpl->setVariable(
"MODAL", $modal->getHTML());
1018 $ltpl->setVariable(
"IL_INT_LINK_URL", $a_url);
1020 return $ltpl->get();
1033 $a_anchors = array(),
1034 $a_link_content =
"" 1036 $chapterRowBlock =
"chapter_row_js";
1037 $anchor_row_block =
"anchor_link_js";
1039 $target_str = ($this->link_target ==
"")
1041 :
" target=\"" . $this->link_target .
"\"";
1043 if (count($a_anchors) > 0) {
1044 foreach ($a_anchors as $anchor) {
1058 $tpl->setCurrentBlock($anchor_row_block);
1061 $this->
prepareJavascriptOutput(
"[iln " . $a_bb_type .
"=\"" . $a_obj_id .
"\"" . $target_str .
" anchor=\"$anchor\"]")
1063 $tpl->setVariable(
"ALINK_END",
"[/iln]");
1064 $tpl->setVariable(
"TXT_LINK",
"#" . $anchor);
1065 $tpl->parseCurrentBlock();
1070 $this->css_row = ($this->css_row ==
"tblrow1")
1075 require_once(
"./Services/MediaObjects/classes/class.ilObjMediaObjectGUI.php");
1076 require_once(
"./Services/MediaObjects/classes/class.ilImageMapEditorGUI.php");
1078 if (
$a_type ==
"MediaObject") {
1081 $tpl->setCurrentBlock(
"link_row");
1082 $tpl->setVariable(
"ROWCLASS", $this->css_row);
1083 $tpl->setVariable(
"TXT_CHAPTER", $a_title);
1089 "&linktarget=il__" . $a_type_short .
"_" . $a_obj_id .
1090 "&linktargetframe=" . $this->link_target
1093 $tpl->parseCurrentBlock();
1095 $tpl->setCurrentBlock($chapterRowBlock);
1096 if (
$a_type ==
"MediaObject") {
1098 $tpl->setCurrentBlock($chapterRowBlock);
1100 $tpl->setVariable(
"ROWCLASS", $this->css_row);
1101 $tpl->setVariable(
"TXT_CHAPTER", $a_title);
1102 if (
$a_type ==
"MediaObject" && empty($target_str)) {
1107 $tpl->setVariable(
"LINK_END",
"");
1113 $tpl->setVariable(
"LINK_CONTENT", $a_link_content);
1114 $tpl->setVariable(
"LINK_END",
"[/iln]");
1116 $tpl->parseCurrentBlock();
1119 $tpl->setCurrentBlock(
"row");
1120 $tpl->parseCurrentBlock();
1140 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
1142 $form->setId(
"link_user_search_form");
1145 $ti =
new ilTextInputGUI($this->lng->txt(
"obj_user"),
"usr_search_str");
1146 $ti->setValue(
$_POST[
"usr_search_str"]);
1147 $form->addItem($ti);
1149 $form->addCommandButton(
"searchUser", $this->lng->txt(
"search"));
1165 $lng = $DIC->language();
1167 if (strlen(
$_POST[
"usr_search_str"]) < 3) {
1168 if (strlen(
$_POST[
"usr_search_str"]) > 0) {
1169 $lng->loadLanguageModule(
"search");
1177 $form->checkInput();
1180 if (count($users) == 0) {
1184 $f = $DIC->ui()->factory();
1185 $r = $DIC->ui()->renderer();
1186 $lng = $DIC->language();
1188 foreach ($users as
$user) {
1189 $b = $f->button()->standard(
$lng->txt(
"insert"),
"#")
1192 '$("#' . $id .
"\").click(function(ev) { il.IntLink.addInternalLink('[iln user=\"" .
1197 ->withSections(array(
$b));
1199 $deck = $f->deck($cards)->withLargeCardsSize();
1201 return $r->renderAsync($deck);
static _lookupLogin($a_user_id)
lookup login
static getAllPortfolioPages($a_portfolio_id)
Get pages of portfolio.
Internal Link: Repository Item Selector Explorer.
static getInitHTML($a_url)
Get initialisation HTML to use interna link editing.
static searchUsers($a_search_str)
Search users.
Class ilObjLearningModule.
Internal Link: Repository Item Selector Explorer.
if(isset($_FILES['img_file']['size']) && $_FILES['img_file']['size'] > 0) $tpl
special template class to simplify handling of ITX/PEAR
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
getUserSearchResult()
Search user.
static getSystemMessageHTML($a_txt, $a_type="info")
Get HTML for a system message.
outputThumbnail(&$tpl, $a_id, $a_mode="")
output thumbnail
static initConnection(ilGlobalTemplateInterface $a_main_tpl=null)
Init YUI Connection module.
setFilterWhiteList($a_white_list)
Set filter list as white list (per detault it is a black list)
static _lookupTitle($a_id)
lookup object title
getFileLinkHTML()
Get HTML for file link.
static init($a_main_tpl=null)
Init JS.
showLinkHelp()
Show link help list.
setSetLinkTargetScript($a_script)
setMode($a_mode="text")
Set mode.
filterLinkType($a_link_type)
static appendUrlParameterString($a_url, $a_par, $xml_style=false)
append URL parameter string ("par1=value1&par2=value2...") to given URL string
__construct($a_default_link_type, $a_default_parent_id, $a_is_ref=true)
getTargetExplorer()
Cange target object.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
changeTargetObject($a_type="")
Cange target object.
static _lookupObjId($a_id)
static getNamePresentation( $a_user_id, $a_user_image=false, $a_profile_link=false, $a_profile_back_link="", $a_force_first_lastname=false, $a_omit_login=false, $a_sortable=true, $a_return_data_array=false, $a_ctrl_path="ilpublicuserprofilegui")
Default behaviour is:
static getAllWikiPages($a_wiki_id)
Get all pages of wiki.
static _lookupType($a_id, $a_reference=false)
lookup object type
static _readAnchors($a_parent_type, $a_page_id, $a_page_lang="-")
Read anchors of a page.
prepareJavascriptOutput($str)
Prepare output for JS enabled editing.
static getInstance()
Get instance.
setMedPoolFolder()
select media pool folder
static _recoverParameters()
Recover parameters from session variables (static)
static formSelect( $selected, $varname, $options, $multiple=false, $direct_text=false, $size="0", $style_class="", $attribs="", $disabled=false)
Builds a select form field with options and shows the selected option first.
initUserSearchForm()
Init user search form.
static _getPersonalPicturePath( $a_usr_id, $a_size="small", $a_force_pic=false, $a_prevent_no_photo_image=false)
Get path to personal picture.
renderLink( $tpl, $a_title, $a_obj_id, $a_type, $a_type_short, $a_bb_type, $a_anchors=array(), $a_link_content="")
Render internal link item.
saveFileLink()
Save file link.
init()
Init (first in execute command)
selectRepositoryItem()
select repository item explorer
static getPageList($lm_id)
static
static redirect($a_script)
changeLinkType()
change link type
withOnLoadCode(\Closure $binder)
refreshRepositorySelector()
Refresh Repository Selector.