31 "page" =>
"PageObject",
32 "chap" =>
"StructureObject",
33 "term" =>
"GlossaryItem",
52 $this->ctrl = $DIC->ctrl();
53 $this->lng = $DIC->language();
58 $this->obj_definition = $DIC[
"objDefinition"];
68 $this->allowed_link_types = $a_val;
89 $this->int_link_default_type =
$a_type;
90 $this->int_link_default_obj = $a_obj;
100 $this->int_link_filter_types = $a_val;
110 return self::$iltypemap;
120 return array_flip(self::$iltypemap);
130 $this->filter_white_list = $a_val;
148 $this->external_link_max_length = $a_max;
167 $next_class =
$ilCtrl->getNextClass($this);
170 switch ($next_class) {
171 case "ilinternallinkgui":
172 $lng->loadLanguageModule(
"content");
173 require_once(
"./Services/Link/classes/class.ilInternalLinkGUI.php");
175 $this->int_link_default_type,
176 $this->int_link_default_obj
178 foreach ($this->int_link_filter_types as $t) {
179 $link_gui->filterLinkType($t);
182 $link_gui->setMode(
"asynch");
202 $this->value = $a_value;
222 switch ($a_values[$this->
getPostVar() .
"_mode"]) {
224 if ($a_values[$this->
getPostVar() .
"_ajax_type"] &&
225 $a_values[$this->
getPostVar() .
"_ajax_id"]) {
226 $val = $a_values[$this->
getPostVar() .
"_ajax_type"] .
"|" .
228 if ($a_values[$this->
getPostVar() .
"_ajax_target"] !=
"") {
229 $val .=
"|" . $a_values[$this->
getPostVar() .
"_ajax_target"];
313 $has_int = $has_ext = $has_radio =
false;
345 $ilCtrl->setParameterByClass(
"ilformpropertydispatchgui",
"postvar", $this->
getPostVar());
346 $link = array(get_class($this->
getParent()),
"ilformpropertydispatchgui", get_class($this),
"ilinternallinkgui");
347 $link =
$ilCtrl->getLinkTargetByClass($link,
"",
false,
true,
false);
348 $ilCtrl->setParameterByClass(
"ilformpropertydispatchgui",
"postvar", $_REQUEST[
"postvar"]);
350 $no_disp_class = (strpos($this->
getValue(),
"|"))
354 $itpl =
new ilTemplate(
'tpl.prop_link.html',
true,
true,
'Services/Form');
355 $itpl->setVariable(
"VAL_ID", $this->
getPostVar());
356 $itpl->setVariable(
"URL_EDIT", $link);
357 $itpl->setVariable(
"TXT_EDIT",
$lng->txt(
"form_get_link"));
358 $itpl->setVariable(
"CSS_REMOVE", $no_disp_class);
359 $itpl->setVariable(
"TXT_REMOVE",
$lng->txt(
"remove"));
382 $mode->addOption($no);
384 $mode->addOption($ext);
386 $mode->addOption($int);
391 $mode->setValue(
"int");
393 $mode->setValue(
"ext");
401 if ($has_int && self::isInternalLink($value)) {
402 $mode->setValue(
"int");
404 $value_trans = self::getTranslatedValue($value);
406 $value = explode(
"|", $value);
407 $hidden_type->setValue($value[0]);
408 $hidden_id->setValue($value[1]);
409 $hidden_target->setValue($value[2]);
411 $itpl->setVariable(
"VAL_OBJECT_TYPE", $value_trans[
"type"]);
412 $itpl->setVariable(
"VAL_OBJECT_NAME", $value_trans[
"name"]);
413 if ($value[2] !=
"") {
414 $itpl->setVariable(
"VAL_TARGET_FRAME",
"(" . $value[2] .
")");
416 } elseif ($has_ext) {
417 $mode->setValue(
"ext");
419 $ti->setValue($value);
422 $mode->setValue(
"no");
426 if ($has_ext && !$ti->getValue()) {
427 $ti->setValue(
"https://");
431 $ne->setValue($itpl->get());
436 $html = $mode->render();
438 $html = $mode->getToolbarHTML();
441 $html .= $ti->getToolbarHTML();
442 } elseif ($has_int) {
443 $html .= $ne->render() .
444 '<div class="help-block">' . $ne->getInfo() .
'</div>';
450 include_once(
"./Services/Link/classes/class.ilInternalLinkGUI.php");
451 $html .= $hidden_type->getToolbarHTML() .
452 $hidden_id->getToolbarHTML() .
453 $hidden_target->getToolbarHTML();
470 if (strpos($a_value,
"|")) {
471 $parts = explode(
"|", $a_value);
472 if (
sizeof($parts) == 2 ||
sizeof($parts) == 3) {
474 if (is_numeric($parts[1])) {
476 if (preg_match(
"/^[a-zA-Z_]+$/", $parts[0], $matches)) {
489 $lng = $DIC->language();
491 $value = explode(
"|", $a_value);
500 include_once(
"./Modules/LearningModule/classes/class.ilLMPageObject.php");
506 include_once(
"./Modules/LearningModule/classes/class.ilStructureObject.php");
522 return array(
"type" =>
$type,
"name" =>
$name);
534 $a_tpl->setCurrentBlock(
"prop_generic");
535 $a_tpl->setVariable(
"PROP_GENERIC", $html);
536 $a_tpl->parseCurrentBlock();
552 $target_frame = $val[2];
553 $map = self::getTypeToAttrType();
554 if (isset($map[$val[0]])) {
555 $type = $map[$val[0]];
557 if ($val[0] ==
"chap") {
560 if ($val[0] ==
"term") {
563 if ($val[0] ==
"page") {
567 } elseif ($this->obj_definition->isRBACObject($val[0])) {
568 $type =
"RepositoryItem";
569 $target =
"il__obj_" . $val[1];
575 "TargetFrame" => $target_frame
590 $t = explode(
"_", $a_target);
593 $map = self::getAttrTypeToType();
594 if (
$a_type ==
"RepositoryItem") {
596 } elseif (isset($map[
$a_type])) {
601 if ($a_target_frame !=
"") {
602 $val .=
"|" . $a_target_frame;
This class represents an option in a radio group.
static getInitHTML($a_url)
Get initialisation HTML to use interna link editing.
static _lookupTitle($a_id)
lookup object title
static _lookupTitle($a_obj_id)
Lookup title.
addSubItem($a_item)
Add Subitem.
static _lookupObjId($a_id)
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static _lookupType($a_id, $a_reference=false)
lookup object type
This class represents a non editable value in a property form.
__construct(Container $dic, ilPlugin $plugin)
static _lookGlossaryTerm($term_id)
get glossary term