23 $this->ctrl = $DIC->ctrl();
24 $this->lng = $DIC->language();
25 $ilCtrl = $DIC->ctrl();
26 $lng = $DIC->language();
35 "tpl.links_table_row.html",
36 "Modules/LearningModule" 38 $this->lm_id = $a_lm_id;
39 $this->lm_type = $a_lm_type;
63 $this->tpl->setVariable(
"TXT_PAGE_TITLE", $a_set[
"title"]);
64 $ilCtrl->setParameterByClass(
69 $this->tpl->setVariable(
71 $ilCtrl->getLinkTargetByClass(
"illmpageobjectgui",
"edit")
74 $page_object =
new ilLMPage($a_set[
"obj_id"]);
75 $page_object->buildDom();
76 $int_links = $page_object->getInternalLinks();
78 foreach ($int_links as $link) {
79 $target = $link[
"Target"];
80 if (substr($target, 0, 4) ==
"il__") {
83 $type = $link[
"Type"];
87 $this->tpl->setCurrentBlock(
"link");
88 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"pg"));
91 $add_str = ($lm_id != $this->lm_id)
94 $this->tpl->setVariable(
99 $this->tpl->setVariable(
101 "<b>" .
$lng->txt(
"cont_target_missing") .
" [" .
$target_id .
"]" .
"</b>" 104 $this->tpl->parseCurrentBlock();
107 case "StructureObject":
108 $this->tpl->setCurrentBlock(
"link");
109 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"st"));
112 $add_str = ($lm_id != $this->lm_id)
115 $this->tpl->setVariable(
120 $this->tpl->setVariable(
122 "<b>" .
$lng->txt(
"cont_target_missing") .
" [" .
$target_id .
"]" .
"</b>" 125 $this->tpl->parseCurrentBlock();
129 $this->tpl->setCurrentBlock(
"link");
130 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"cont_term"));
132 $this->tpl->setVariable(
137 $this->tpl->setVariable(
139 "<b>" .
$lng->txt(
"cont_target_missing") .
" [" .
$target_id .
"]" .
"</b>" 142 $this->tpl->parseCurrentBlock();
146 $this->tpl->setCurrentBlock(
"link");
147 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"mob"));
149 $this->tpl->setVariable(
154 $this->tpl->setVariable(
156 "<b>" .
$lng->txt(
"cont_target_missing") .
" [" .
$target_id .
"]" .
"</b>" 159 $this->tpl->parseCurrentBlock();
162 case "RepositoryItem":
163 $this->tpl->setCurrentBlock(
"link");
164 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"cont_repository_item"));
168 $this->tpl->setVariable(
171 $lng->txt((
"obj_" . $obj_type))
175 $this->tpl->setVariable(
177 "<b>" .
$lng->txt(
"cont_target_missing") .
" [" .
$target_id .
"]" .
"</b>" 180 $this->tpl->parseCurrentBlock();
185 $type = $link[
"Type"];
189 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"pg"));
191 case "StructureObject":
192 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"st"));
195 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"cont_term"));
198 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"mob"));
200 case "RepositoryItem":
201 $this->tpl->setVariable(
"TXT_LINK_TYPE",
$lng->txt(
"cont_repository_item"));
205 $this->tpl->setCurrentBlock(
"link");
206 $this->tpl->setVariable(
208 "<b>" .
$lng->txt(
"cont_target_missing") .
" [" . $target .
"]" .
"</b>" 210 $this->tpl->parseCurrentBlock();
static _exists($a_id, $a_reference=false, $a_type=null)
checks if an object exists in object_data
static _exists($a_id)
checks wether a lm content object with specified id exists or not
static _lookupTitle($a_id)
lookup object title
static _lookupContObjID($a_id)
get learning module / digibook id for lm object
static _lookupTitle($a_obj_id)
Lookup title.
__construct( $a_parent_obj, $a_parent_cmd, $a_lm_id, $a_lm_type)
setTitle($a_title, $a_icon=0, $a_icon_alt=0)
Set title and title icon.
static _exists($a_id)
checks wether a glossary term with specified id exists or not
fillRow($a_set)
Standard Version of Fill Row.
TableGUI class for (broken) links in learning module.
static _lookupObjId($a_id)
static getPagesWithLinksList($a_lm_id, $a_par_type)
Get all pages of lm that contain any internal links.
setRowTemplate($a_template, $a_template_dir="")
Set row template.
static _lookupType($a_id, $a_reference=false)
lookup object type
setFormAction($a_form_action, $a_multipart=false)
Set Form action parameter.
__construct(Container $dic, ilPlugin $plugin)
addColumn( $a_text, $a_sort_field="", $a_width="", $a_is_checkbox_action_column=false, $a_class="", $a_tooltip="", $a_tooltip_with_html=false)
Add a column to the header.
setEnableHeader($a_enableheader)
Set Enable Header.
getLinks()
Get pages incl.
static _lookGlossaryTerm($term_id)
get glossary term
Extension of ilPageObject for learning modules.