4 require_once(
"./Services/MediaObjects/classes/class.ilObjMediaObject.php");
5 require_once(
"./Services/Link/classes/class.ilInternalLinkGUI.php");
6 require_once(
"./Services/Object/classes/class.ilObjectGUI.php");
77 public function __construct($a_data, $a_id = 0, $a_call_by_reference =
false, $a_prepare_output =
false)
81 $this->tpl = $DIC[
"tpl"];
82 $this->access = $DIC->access();
83 $this->error = $DIC[
"ilErr"];
84 $this->
help = $DIC[
"ilHelp"];
85 $this->tabs = $DIC->tabs();
86 $this->toolbar = $DIC->toolbar();
87 $this->
user = $DIC->user();
88 $lng = $DIC->language();
89 $ilCtrl = $DIC->ctrl();
92 $this->ctrl = $ilCtrl;
95 $this->back_title =
"";
98 $lng->loadLanguageModule(
"mob");
109 $this->adv_ref_id = $a_adv_ref_id;
110 $this->adv_type = $a_adv_type;
111 $this->adv_subtype = $a_adv_subtype;
121 if ($this->adv_type == null) {
129 $this->header = $a_title;
144 $this->enabledmapareas = $a_enabledmapareas;
164 $this->width_preset = $a_val;
174 return $this->width_preset;
184 $this->height_preset = $a_val;
194 return $this->height_preset;
204 return $this->form_gui;
209 if ($this->
id != 0) {
216 $this->ctrl->returnToParent($this);
231 $next_class = $this->ctrl->getNextClass($this);
232 $cmd = $this->ctrl->getCmd();
234 switch ($next_class) {
235 case 'ilobjectmetadatagui':
236 include_once
'Services/Object/classes/class.ilObjectMetaDataGUI.php';
239 $md_gui->
addMDObserver($this->
object,
'MDUpdateListener',
'General');
242 if ($this->adv_type !=
"") {
243 $md_gui->setAdvMdRecordObject($this->adv_ref_id, $this->adv_type, $this->adv_subtype);
246 $this->ctrl->forwardCommand($md_gui);
249 case "ilimagemapeditorgui":
250 require_once(
"./Services/MediaObjects/classes/class.ilImageMapEditorGUI.php");
252 $ret = $this->ctrl->forwardCommand($image_map_edit);
257 case "ilfilesystemgui":
258 include_once(
"./Services/FileSystem/classes/class.ilFileSystemGUI.php");
262 $fs_gui->activateLabels(
true, $this->lng->txt(
"cont_purpose"));
263 $fs_gui->setTableId(
"mobfs" . $this->object->getId());
265 $this->object->getMediaItem(
"Standard")->getLocation(),
266 $this->lng->txt(
"cont_std_view")
268 if ($this->object->hasFullscreenItem()) {
270 $this->object->getMediaItem(
"Fullscreen")->getLocation(),
271 $this->lng->txt(
"cont_fullscreen")
274 $fs_gui->addCommand($this,
"assignStandardObject", $this->lng->txt(
"cont_assign_std"));
275 $fs_gui->addCommand($this,
"assignFullscreenObject", $this->lng->txt(
"cont_assign_full"));
277 $ret = $this->ctrl->forwardCommand($fs_gui);
279 include_once(
"./Services/MediaObjects/classes/class.ilMediaSvgSanitizer.php");
285 if (isset(
$_POST[
"editImagemapForward"]) ||
286 isset(
$_POST[
"editImagemapForward_x"]) ||
287 isset(
$_POST[
"editImagemapForward_y"])) {
288 $cmd =
"editImagemapForward";
291 $ret = $this->$cmd();
303 $this->back_title = $a_title;
314 $ilHelp->setScreenId(
"create");
316 $tpl->setContent($this->form_gui->getHTML());
327 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
329 if ($a_mode ==
"edit") {
330 $std_item = $this->
object->getMediaItem(
"Standard");
338 $title->setMaxLength(120);
339 $this->form_gui->addItem($title);
346 if ($a_mode ==
"create" || $std_item->getLocationType() !=
"LocalFile") {
347 $up->setRequired(
true);
350 $radio_prop->addOption($op1);
354 $ref->setRequired(
true);
356 $radio_prop->addOption($op2);
357 $radio_prop->setValue(
"File");
358 $this->form_gui->addItem($radio_prop);
361 if ($a_mode ==
"edit") {
363 $format->setValue($std_item->getFormat());
364 $this->form_gui->addItem(
$format);
369 if ($a_mode ==
"edit") {
370 if ($orig_size = $std_item->getOriginalSize()) {
371 $add_str =
" (" . $orig_size[
"width"] .
" x " . $orig_size[
"height"] .
")";
373 $op1 =
new ilRadioOption(
$lng->txt(
"cont_resource_size") . $add_str,
"original");
374 $op1->
setInfo(
$lng->txt(
"cont_resource_size_info"));
378 $op1->
setInfo(
$lng->txt(
"cont_resource_size_info"));
381 $radio_size->addOption($op1);
384 include_once(
"./Services/MediaObjects/classes/class.ilWidthHeightInputGUI.php");
386 " / " .
$lng->txt(
"cont_height"),
"standard_width_height");
387 if ($a_mode ==
"edit" && is_int(strpos($std_item->getFormat(),
"image"))
388 && $std_item->getLocationType() ==
"LocalFile") {
390 $width_height->setConstrainProportions(
true);
392 $op2->addSubItem($width_height);
395 if ($a_mode ==
"edit") {
396 $std_item = $this->
object->getMediaItem(
"Standard");
397 if (is_int(strpos($std_item->getFormat(),
"image"))
398 && $std_item->getLocationType() ==
"LocalFile") {
404 $radio_size->setValue(
"original");
406 $radio_size->setValue(
"selected");
410 $radio_size->addOption($op2);
411 $this->form_gui->addItem($radio_size);
416 $caption->setRows(2);
417 $this->form_gui->addItem($caption);
425 if ($a_mode ==
"edit" && $this->media_type->usesAltTextProperty($std_item->getFormat())) {
429 $ta->setInfo(
$lng->txt(
"text_repr_info"));
430 $this->form_gui->addItem($ta);
434 if ($a_mode ==
"edit" &&
435 $this->media_type->usesParameterProperty($std_item->getFormat())) {
436 if ($this->media_type->usesAutoStartParameterOnly(
437 $std_item->getLocation(),
438 $std_item->getFormat()
446 $this->form_gui->addItem($par);
450 if ($a_mode ==
"edit") {
451 $full_item = $this->
object->getMediaItem(
"Fullscreen");
456 $fs_sec->setTitle(
$lng->txt(
"cont_fullscreen"));
457 $this->form_gui->addItem($fs_sec);
461 $radio_prop2->addOption($op1);
462 $op4 =
new ilRadioOption(
$lng->txt(
"cont_use_same_resource_as_above"),
"Standard");
463 $radio_prop2->addOption($op4);
469 if ($a_mode ==
"create" || !$full_item || $full_item->getLocationType() !=
"LocalFile") {
470 $up->setRequired(
true);
473 $radio_prop2->addOption($op2);
477 $ref->setRequired(
true);
479 $radio_prop2->addOption($op3);
480 $radio_prop2->setValue(
"None");
481 $this->form_gui->addItem($radio_prop2);
484 if ($a_mode ==
"edit") {
485 if ($this->object->hasFullscreenItem()) {
487 $format->setValue($full_item->getFormat());
488 $this->form_gui->addItem(
$format);
493 $full_support_constraint_props =
false;
495 if ($a_mode ==
"edit") {
497 if ($this->object->hasFullscreenItem() && ($orig_size = $full_item->getOriginalSize())) {
498 $add_str =
" (" . $orig_size[
"width"] .
" x " . $orig_size[
"height"] .
")";
500 if (is_int(strpos($full_item->getFormat(),
"image"))
501 && $full_item->getLocationType() ==
"LocalFile") {
502 $full_support_constraint_props =
true;
505 $op1 =
new ilRadioOption(
$lng->txt(
"cont_resource_size") . $add_str,
"original");
506 $op1->
setInfo(
$lng->txt(
"cont_resource_size_info"));
510 $op1->
setInfo(
$lng->txt(
"cont_resource_size_info"));
513 $radio_size->addOption($op1);
517 " / " .
$lng->txt(
"cont_height"),
"full_width_height");
518 if ($full_support_constraint_props) {
520 $width_height->setConstrainProportions(
true);
522 $op2->addSubItem($width_height);
525 if ($a_mode ==
"edit") {
526 $full_item = $this->
object->getMediaItem(
"Fullscreen");
527 if ($this->object->hasFullscreenItem() &&
528 is_int(strpos($full_item->getFormat(),
"image")) &&
529 $full_item->getLocationType() ==
"LocalFile") {
531 $lng->txt(
"cont_resize_img"),
538 $radio_size->setValue(
"original");
539 $radio_size->addOption($op2);
540 $this->form_gui->addItem($radio_size);
545 $caption->setRows(2);
546 $this->form_gui->addItem($caption);
554 if ($a_mode ==
"edit" && $this->object->hasFullscreenItem() && $this->media_type->usesAltTextProperty($std_item->getFormat())) {
558 $ta->setInfo(
$lng->txt(
"text_repr_info"));
559 $this->form_gui->addItem($ta);
564 if ($a_mode ==
"edit" && $this->object->hasFullscreenItem() &&
565 $this->media_type->usesParameterProperty($full_item->getFormat())) {
566 if ($this->media_type->usesAutoStartParameterOnly(
567 $full_item->getLocation(),
568 $full_item->getFormat()
576 $this->form_gui->addItem($par);
580 $this->form_gui->setTitle(
$lng->txt(
"cont_insert_mob"));
581 if ($a_mode ==
"edit") {
582 $this->form_gui->addCommandButton(
"saveProperties",
$lng->txt(
"save"));
584 $this->form_gui->addCommandButton(
"save",
$lng->txt(
"save"));
585 $this->form_gui->addCommandButton(
"cancel",
$lng->txt(
"cancel"));
587 $this->form_gui->setFormAction($ilCtrl->getFormAction($this));
598 $std_item = $this->
object->getMediaItem(
"Standard");
599 if ($std_item->getWidth() ==
"" || $std_item->getHeight() ==
"") {
613 $values[
"standard_title"] = $this->
object->getTitle();
615 $std_item = $this->
object->getMediaItem(
"Standard");
616 if ($std_item->getLocationType() ==
"LocalFile") {
617 $values[
"standard_type"] =
"File";
618 $values[
"standard_file"] = $std_item->getLocation();
620 $values[
"standard_type"] =
"Reference";
621 $values[
"standard_reference"] = $std_item->getLocation();
623 $values[
"standard_format"] = $std_item->getFormat();
624 $values[
"standard_width_height"][
"width"] = $std_item->getWidth();
625 $values[
"standard_width_height"][
"height"] = $std_item->getHeight();
626 $values[
"standard_width_height"][
"constr_prop"] =
true;
628 $values[
"standard_size"] =
"selected";
630 $orig_size = $std_item->getOriginalSize();
631 if ($std_item->getWidth() ==
"" && $std_item->getHeight() ==
"") {
632 $values[
"standard_size"] =
"original";
633 $values[
"standard_width_height"][
"width"] = $orig_size[
"width"];
634 $values[
"standard_width_height"][
"height"] = $orig_size[
"height"];
637 $values[
"standard_caption"] = $std_item->getCaption();
638 $values[
"text_representation"] = $std_item->getTextRepresentation();
639 if ($this->media_type->usesAutoStartParameterOnly(
640 $std_item->getLocation(),
641 $std_item->getFormat()
648 $values[
"standard_parameters"] = $std_item->getParameterString();
651 $values[
"full_type"] =
"None";
652 $values[
"full_size"] =
"original";
653 if ($this->object->hasFullScreenItem()) {
654 $full_item = $this->
object->getMediaItem(
"Fullscreen");
655 if ($full_item->getLocationType() ==
"LocalFile") {
656 $values[
"full_type"] =
"File";
657 $values[
"full_file"] = $full_item->getLocation();
659 $values[
"full_type"] =
"Reference";
660 $values[
"full_reference"] = $full_item->getLocation();
662 $values[
"full_format"] = $full_item->getFormat();
663 $values[
"full_width_height"][
"width"] = $full_item->getWidth();
664 $values[
"full_width_height"][
"height"] = $full_item->getHeight();
665 $values[
"full_width_height"][
"constr_prop"] =
true;
667 $values[
"full_size"] =
"selected";
669 $orig_size = $full_item->getOriginalSize();
670 if ($full_item->getWidth() ==
"" &&
671 $full_item->getHeight() ==
"") {
672 $values[
"full_size"] =
"original";
673 $values[
"full_width_height"][
"width"] = $orig_size[
"width"];
674 $values[
"full_width_height"][
"height"] = $orig_size[
"height"];
676 $values[
"full_caption"] = $full_item->getCaption();
677 if ($this->media_type->usesAutoStartParameterOnly(
678 $full_item->getLocation(),
679 $full_item->getFormat()
686 $values[
"full_parameters"] = $full_item->getParameterString();
688 $values[
"full_text_representation"] = $full_item->getTextRepresentation();
691 $this->form_gui->setValuesByArray($values);
703 if ($this->form_gui->checkInput()) {
706 ilUtil::sendSuccess(
$lng->txt(
"saved_media_object"),
true);
709 $this->form_gui->setValuesByPost();
710 $tpl->setContent($this->form_gui->getHTML());
723 if (!$this->form_gui->checkInput()) {
724 $this->form_gui->setValuesByPost();
737 if (trim(
$_POST[
"standard_title"]) !=
"") {
738 $title = trim(
$_POST[
"standard_title"]);
740 if (
$_POST[
"standard_type"] ==
"File") {
741 $title = $_FILES[
'standard_file'][
'name'];
747 $a_mob->setTitle($title);
748 $a_mob->setDescription(
"");
753 $a_mob->createDirectory();
757 $a_mob->addMediaItem($media_item);
758 $media_item->setPurpose(
"Standard");
760 if (
$_POST[
"standard_type"] ==
"File") {
762 $file = $mob_dir .
"/" . $file_name;
764 $_FILES[
'standard_file'][
'tmp_name'],
774 if (
$_POST[
"standard_size"] !=
"original" &&
775 is_int(strpos(
$format,
"image"))) {
778 (
int)
$_POST[
"standard_width_height"][
"width"],
779 (
int) $_POST[
"standard_width_height"][
"height"],
780 (
boolean) $_POST[
"standard_width_height"][
"contr_prop"]
785 $media_item->setFormat(
$format);
787 $media_item->setLocationType(
"LocalFile");
790 $media_item->setFormat(
$format);
792 $media_item->setLocationType(
"Reference");
794 $a_mob->setDescription(
$format);
801 $media_item->getLocation(),
802 $_POST[
"standard_width_height"][
"constr_prop"],
803 (
$_POST[
"standard_size"] ==
"original"),
804 $_POST[
"standard_width_height"][
"width"],
805 $_POST[
"standard_width_height"][
"height"]
807 $media_item->setWidth($wh[
"width"]);
808 $media_item->setHeight($wh[
"height"]);
809 if ($wh[
"info"] !=
"") {
813 if ($_POST[
"standard_caption"] !=
"") {
818 $media_item->setHAlign(
"Left");
821 if ($_POST[
"full_type"] !=
"None") {
823 $a_mob->addMediaItem($media_item2);
824 $media_item2->setPurpose(
"Fullscreen");
827 if ($_POST[
"full_type"] ==
"File") {
829 if ($_FILES[
'full_file'][
'name'] !=
"") {
831 $file = $mob_dir .
"/" . $full_file_name;
833 $_FILES[
'full_file'][
'tmp_name'],
838 $location = $full_file_name;
840 } elseif ($_POST[
"full_type"] ==
"Standard" && $_POST[
"standard_type"] ==
"File") {
841 $location = $file_name;
845 if ($_POST[
"full_type"] ==
"File" ||
846 ($_POST[
"full_type"] ==
"Standard" && $_POST[
"standard_type"] ==
"File")) {
847 if (($_POST[
"full_size"] !=
"original" &&
848 is_int(strpos(
$format,
"image")))
852 (
int) $_POST[
"full_width_height"][
"width"],
853 (
int) $_POST[
"full_width_height"][
"height"],
854 (
boolean) $_POST[
"full_width_height"][
"constr_prop"]
858 $media_item2->setFormat(
$format);
859 $media_item2->setLocation($location);
860 $media_item2->setLocationType(
"LocalFile");
864 if ($_POST[
"full_type"] ==
"Reference") {
866 if ($_POST[
"full_reference"] !=
"") {
872 if ($_POST[
"full_type"] ==
"Reference" ||
873 ($_POST[
"full_type"] ==
"Standard" && $_POST[
"standard_type"] ==
"Reference")) {
874 $media_item2->setFormat(
$format);
875 $media_item2->setLocation($location);
876 $media_item2->setLocationType(
"Reference");
884 $mob_dir .
"/" . $location,
885 $media_item2->getLocation(),
886 $_POST[
"full_width_height"][
"constr_prop"],
887 ($_POST[
"full_size"] ==
"original"),
888 $_POST[
"full_width_height"][
"width"],
889 $_POST[
"full_width_height"][
"height"]
892 $media_item2->setWidth($wh[
"width"]);
893 $media_item2->setHeight($wh[
"height"]);
895 if ($_POST[
"full_caption"] !=
"") {
901 include_once(
"./Services/MediaObjects/classes/class.ilMediaSvgSanitizer.php");
912 $this->ctrl->returnToParent($this);
926 $tpl->setContent($this->form_gui->getHTML());
939 $std_item = $this->
object->getMediaItem(
"Standard");
940 if ($std_item->getLocationType() ==
"LocalFile" &&
941 is_int(strpos($std_item->getFormat(),
"image"))
943 $file = $mob_dir .
"/" . $std_item->getLocation();
946 $std_item->getWidth(),
947 $std_item->getHeight()
954 if ($this->object->hasFullScreenItem()) {
955 $full_item = $this->
object->getMediaItem(
"Fullscreen");
956 if ($full_item->getLocationType() ==
"LocalFile" &&
957 is_int(strpos($full_item->getFormat(),
"image"))
959 $file = $mob_dir .
"/" . $full_item->getLocation();
962 $full_item->getWidth(),
963 $full_item->getHeight()
966 $full_item->update();
970 $this->ctrl->redirect($this,
"edit");
979 $std_item = $this->
object->getMediaItem(
"Standard");
982 if ($std_item->getLocationType() ==
"LocalFile") {
983 $file = $mob_dir .
"/" . $std_item->getLocation();
985 include_once(
"./Services/MediaObjects/classes/class.ilMediaImageUtil.php");
988 $std_item->setWidth(
$size[0]);
989 $std_item->setHeight(
$size[1]);
990 $this->
object->update();
992 $this->ctrl->redirect($this,
"edit");
1001 $full_item = $this->
object->getMediaItem(
"Fullscreen");
1004 if ($full_item->getLocationType() ==
"LocalFile") {
1005 $file = $mob_dir .
"/" . $full_item->getLocation();
1006 include_once(
"./Services/MediaObjects/classes/class.ilMediaImageUtil.php");
1008 $full_item->setWidth(
$size[0]);
1009 $full_item->setHeight(
$size[1]);
1010 $this->
object->update();
1012 $this->ctrl->redirect($this,
"edit");
1024 if ($this->form_gui->checkInput()) {
1025 $title = trim(
$_POST[
"standard_title"]);
1026 $this->
object->setTitle($title);
1028 $std_item = $this->
object->getMediaItem(
"Standard");
1030 $format = $std_item->getFormat();
1031 if (
$_POST[
"standard_type"] ==
"Reference") {
1033 $std_item->setFormat(
$format);
1035 $std_item->setLocationType(
"Reference");
1038 if (
$_POST[
"standard_type"] ==
"File") {
1040 if ($_FILES[
'standard_file'][
'name'] !=
"") {
1042 $file = $mob_dir .
"/" . $file_name;
1044 $_FILES[
'standard_file'][
'tmp_name'],
1054 } elseif (
$_POST[
"standard_resize"]) {
1061 if (
$_POST[
"standard_size"] !=
"original" &&
1062 is_int(strpos(
$format,
"image"))) {
1065 (
int)
$_POST[
"standard_width_height"][
"width"],
1066 (
int) $_POST[
"standard_width_height"][
"height"],
1067 (
boolean) $_POST[
"standard_width_height"][
"contr_prop"]
1070 $std_item->setFormat(
$format);
1074 $std_item->setLocationType(
"LocalFile");
1076 $this->
object->setDescription(
$format);
1082 $std_item->getLocation(),
1083 $_POST[
"standard_width_height"][
"constr_prop"],
1084 (
$_POST[
"standard_size"] ==
"original"),
1085 $_POST[
"standard_width_height"][
"width"],
1086 $_POST[
"standard_width_height"][
"height"]
1088 if ($wh[
"info"] !=
"") {
1091 $std_item->setWidth($wh[
"width"]);
1092 $std_item->setHeight($wh[
"height"]);
1101 if ($this->media_type->usesParameterProperty($std_item->getFormat())) {
1102 if ($this->media_type->usesAutoStartParameterOnly(
1103 $std_item->getLocation(),
1104 $std_item->getFormat()
1118 if ($_POST[
"full_type"] ==
"None") {
1119 if ($this->object->hasFullscreenItem()) {
1120 $this->
object->removeMediaItem(
"Fullscreen");
1123 if ($this->object->hasFullscreenItem()) {
1124 $full_item = $this->
object->getMediaItem(
"Fullscreen");
1127 $this->
object->addMediaItem($full_item);
1128 $full_item->setPurpose(
"Fullscreen");
1130 $location = $full_item->getLocation();
1131 $format = $full_item->getFormat();
1132 if ($_POST[
"full_type"] ==
"Reference") {
1134 $full_item->setFormat(
$format);
1135 $full_item->setLocationType(
"Reference");
1137 $type =
"Reference";
1140 if ($_POST[
"full_type"] ==
"File") {
1142 if ($_FILES[
'full_file'][
'name'] !=
"") {
1144 $file = $mob_dir .
"/" . $full_file_name;
1146 $_FILES[
'full_file'][
'tmp_name'],
1152 $location = $full_file_name;
1155 } elseif ($_POST[
"full_resize"]) {
1162 if ($_POST[
"full_size"] !=
"original" &&
1163 is_int(strpos(
$format,
"image"))) {
1166 (
int) $_POST[
"full_width_height"][
"width"],
1167 (
int) $_POST[
"full_width_height"][
"height"],
1168 (
boolean) $_POST[
"full_width_height"][
"contr_prop"]
1171 $full_item->setFormat(
$format);
1172 $full_item->setLocation($location);
1175 $full_item->setLocationType(
"LocalFile");
1178 if ($_POST[
"full_type"] ==
"Standard") {
1179 $format = $std_item->getFormat();
1180 $location = $std_item->getLocation();
1181 $full_item->setLocationType($std_item->getLocationType());
1182 $full_item->setFormat(
$format);
1183 $full_item->setLocation($location);
1184 $type = $std_item->getLocationType();
1185 if (
$type ==
"LocalFile") {
1190 if ($_POST[
"full_size"] !=
"original" &&
1191 is_int(strpos(
$format,
"image")) &&
1192 $full_item->getLocationType() ==
"LocalFile") {
1196 (
int) $_POST[
"full_width_height"][
"width"],
1197 (
int) $_POST[
"full_width_height"][
"height"],
1198 (
boolean) $_POST[
"full_width_height"][
"contr_prop"]
1207 $mob_dir .
"/" . $location,
1208 $full_item->getLocation(),
1209 $_POST[
"full_width_height"][
"constr_prop"],
1210 ($_POST[
"full_size"] ==
"original"),
1211 $_POST[
"full_width_height"][
"width"],
1212 $_POST[
"full_width_height"][
"height"]
1214 if ($wh[
"info"] !=
"") {
1218 $full_item->setWidth($wh[
"width"]);
1219 $full_item->setHeight($wh[
"height"]);
1220 $full_item->setLocation($location);
1229 if ($this->media_type->usesParameterProperty($std_item->getFormat())) {
1230 if ($this->media_type->usesAutoStartParameterOnly(
1231 $std_item->getLocation(),
1232 $std_item->getFormat()
1247 include_once(
"./Services/MediaObjects/classes/class.ilMediaSvgSanitizer.php");
1250 $this->
object->update();
1251 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
1252 $this->ctrl->redirect($this,
"edit");
1254 $this->form_gui->setValuesByPost();
1255 $tpl->setContent($this->form_gui->getHTML());
1266 $std_item = $this->
object->getMediaItem(
"Standard");
1267 if ($this->object->hasFullscreenItem()) {
1268 $full_item = $this->
object->getMediaItem(
"Fullscreen");
1272 require_once(
"./Services/Table/classes/class.ilTableGUI.php");
1276 $cur_subdir =
$_GET[
"cdir"];
1277 if (
$_GET[
"newdir"] ==
"..") {
1278 $cur_subdir = substr($cur_subdir, 0, strrpos($cur_subdir,
"/"));
1280 if (!empty(
$_GET[
"newdir"])) {
1281 if (!empty($cur_subdir)) {
1282 $cur_subdir = $cur_subdir .
"/" .
$_GET[
"newdir"];
1284 $cur_subdir =
$_GET[
"newdir"];
1289 $cur_subdir = str_replace(
".",
"", $cur_subdir);
1291 $cur_dir = (!empty($cur_subdir))
1292 ? $mob_dir .
"/" . $cur_subdir
1296 $this->tpl->addBlockfile(
"ADM_CONTENT",
"adm_content",
"tpl.mob_files.html",
"Services/MediaObjects");
1298 $this->ctrl->setParameter($this,
"cdir", urlencode($cur_subdir));
1299 $this->tpl->setVariable(
"FORMACTION1", $this->ctrl->getFormAction($this));
1302 $this->tpl->setVariable(
"TXT_NEW_DIRECTORY", $this->lng->txt(
"cont_new_dir"));
1303 $this->tpl->setVariable(
"TXT_NEW_FILE", $this->lng->txt(
"cont_new_file"));
1304 $this->tpl->setVariable(
"CMD_NEW_DIR",
"createDirectory");
1305 $this->tpl->setVariable(
"CMD_NEW_FILE",
"uploadFile");
1306 $this->tpl->setVariable(
"BTN_NEW_DIR", $this->lng->txt(
"create"));
1307 $this->tpl->setVariable(
"BTN_NEW_FILE", $this->lng->txt(
"upload"));
1310 $this->tpl->addBlockfile(
"FILE_TABLE",
"files",
"tpl.table.html");
1313 $this->tpl->addBlockfile(
"TBL_CONTENT",
"tbl_content",
"tpl.mob_file_row.html",
"Services/MediaObjects");
1317 $obj_str = ($this->call_by_reference) ?
"" :
"&obj_id=" . $this->obj_id;
1318 $this->tpl->setVariable(
"FORMACTION", $this->ctrl->getFormAction($this));
1320 $tbl->setTitle($this->lng->txt(
"cont_files") .
" " . $cur_subdir);
1323 $tbl->setHeaderNames(array(
"",
"", $this->lng->txt(
"cont_dir_file"),
1324 $this->lng->txt(
"cont_size"), $this->lng->txt(
"cont_purpose")));
1326 $cols = array(
"",
"",
"dir_file",
"size",
"purpose");
1327 $header_params = array(
"ref_id" =>
$_GET[
"ref_id"],
"obj_id" =>
$_GET[
"obj_id"],
1328 "cmd" =>
"editFiles",
"hier_id" =>
$_GET[
"hier_id"],
"item_id" =>
$_GET[
"item_id"]);
1329 $tbl->setHeaderVars(
$cols, $header_params);
1330 $tbl->setColumnWidth(array(
"1%",
"1%",
"33%",
"33%",
"32%"));
1333 $tbl->setOrderColumn(
$_GET[
"sort_by"]);
1334 $tbl->setOrderDirection(
$_GET[
"sort_order"]);
1335 $tbl->setLimit(
$_GET[
"limit"]);
1336 $tbl->setOffset(
$_GET[
"offset"]);
1337 $tbl->setMaxCount($this->maxcount);
1340 $this->tpl->setVariable(
"COLUMN_COUNTS", 5);
1344 $this->tpl->setCurrentBlock(
"tbl_action_btn");
1345 $this->tpl->setVariable(
"BTN_NAME",
"deleteFile");
1346 $this->tpl->setVariable(
"BTN_VALUE", $this->lng->txt(
"delete"));
1347 $this->tpl->parseCurrentBlock();
1349 $this->tpl->setCurrentBlock(
"tbl_action_btn");
1350 $this->tpl->setVariable(
"BTN_NAME",
"assignStandard");
1351 $this->tpl->setVariable(
"BTN_VALUE", $this->lng->txt(
"cont_assign_std"));
1352 $this->tpl->parseCurrentBlock();
1354 $this->tpl->setCurrentBlock(
"tbl_action_btn");
1355 $this->tpl->setVariable(
"BTN_NAME",
"assignFullscreen");
1356 $this->tpl->setVariable(
"BTN_VALUE", $this->lng->txt(
"cont_assign_full"));
1357 $this->tpl->parseCurrentBlock();
1360 $tbl->setFooter(
"tblfooter", $this->lng->txt(
"previous"), $this->lng->txt(
"next"));
1366 $tbl->setMaxCount(count($entries));
1367 $entries = array_slice($entries,
$_GET[
"offset"],
$_GET[
"limit"]);
1370 if (count($entries) > 0) {
1372 foreach ($entries as $entry) {
1373 if (($entry[
"entry"] ==
".") || ($entry[
"entry"] ==
".." && empty($cur_subdir))) {
1378 if ($entry[
"type"] ==
"dir") {
1379 $this->tpl->setCurrentBlock(
"FileLink");
1380 $this->ctrl->setParameter($this,
"cdir", $cur_subdir);
1381 $this->ctrl->setParameter($this,
"newdir", rawurlencode($entry[
"entry"]));
1382 $this->tpl->setVariable(
"LINK_FILENAME", $this->ctrl->getLinkTarget($this,
"editFiles"));
1383 $this->tpl->setVariable(
"TXT_FILENAME", $entry[
"entry"]);
1384 $this->tpl->parseCurrentBlock();
1386 $this->tpl->setVariable(
"ICON",
"<img src=\"" .
1389 $this->tpl->setCurrentBlock(
"File");
1390 $this->tpl->setVariable(
"TXT_FILENAME2", $entry[
"entry"]);
1391 $this->tpl->parseCurrentBlock();
1394 $this->tpl->setCurrentBlock(
"tbl_content");
1396 $this->tpl->setVariable(
"CSS_ROW", $css_row);
1398 $this->tpl->setVariable(
"TXT_SIZE", $entry[
"size"]);
1399 $this->tpl->setVariable(
"CHECKBOX_ID", $entry[
"entry"]);
1400 $compare = (!empty($cur_subdir))
1401 ? $cur_subdir .
"/" . $entry[
"entry"]
1404 if ($std_item->getLocation() == $compare) {
1405 $purpose[] = $this->lng->txt(
"cont_std_view");
1407 if ($this->object->hasFullscreenItem()) {
1408 if ($full_item->getLocation() == $compare) {
1409 $purpose[] = $this->lng->txt(
"cont_fullscreen");
1412 $this->tpl->setVariable(
"TXT_PURPOSE", implode(
", ", $purpose));
1414 $this->tpl->parseCurrentBlock();
1418 $this->tpl->setCurrentBlock(
"notfound");
1419 $this->tpl->setVariable(
"TXT_OBJECT_NOT_FOUND", $this->lng->txt(
"obj_not_found"));
1420 $this->tpl->setVariable(
"NUM_COLS", 4);
1421 $this->tpl->parseCurrentBlock();
1424 $this->tpl->parseCurrentBlock();
1435 $cur_subdir = str_replace(
".",
"",
$_GET[
"cdir"]);
1437 $cur_dir = (!empty($cur_subdir))
1438 ? $mob_dir .
"/" . $cur_subdir
1441 $new_dir = str_replace(
".",
"",
$_POST[
"new_dir"]);
1442 $new_dir = str_replace(
"/",
"", $new_dir);
1444 if (!empty($new_dir)) {
1447 $this->ctrl->saveParameter($this,
"cdir");
1448 $this->ctrl->redirect($this,
"editFiles");
1457 $cur_subdir = str_replace(
".",
"",
$_GET[
"cdir"]);
1459 $cur_dir = (!empty($cur_subdir))
1460 ? $mob_dir .
"/" . $cur_subdir
1462 if (is_file($_FILES[
"new_file"][
"tmp_name"])) {
1464 $file = $cur_dir .
"/" . $file_name;
1466 $_FILES[
'new_file'][
'tmp_name'],
1472 include_once(
"./Services/MediaObjects/classes/class.ilMediaSvgSanitizer.php");
1475 $this->ctrl->saveParameter($this,
"cdir");
1476 $this->ctrl->redirect($this,
"editFiles");
1485 $cur_subdir = dirname($a_file);
1487 $cur_dir = (!empty($cur_subdir))
1488 ? $mob_dir .
"/" . $cur_subdir
1490 $file = $cur_dir .
"/" . basename($a_file);
1493 if (!is_file($file)) {
1494 $this->
ilias->raiseError($this->lng->txt(
"cont_select_file"), $this->
ilias->error_obj->MESSAGE);
1497 $std_item = $this->
object->getMediaItem(
"Standard");
1498 $std_item->setLocationType(
"LocalFile");
1501 $std_item->setFormat(
$format);
1502 $this->
object->update();
1504 $this->ctrl->redirectByClass(
"ilfilesystemgui",
"listFiles");
1514 $cur_subdir = dirname($a_file);
1516 $cur_dir = (!empty($cur_subdir))
1517 ? $mob_dir .
"/" . $cur_subdir
1519 $file = $cur_dir .
"/" . basename($a_file);
1522 if (!is_file($file)) {
1523 $this->
ilias->raiseError($this->lng->txt(
"cont_select_file"), $this->
ilias->error_obj->MESSAGE);
1526 if (!$this->object->hasFullScreenItem()) {
1527 $std_item = $this->
object->getMediaItem(
"Standard");
1531 $full_item->setMobId($std_item->getMobId());
1533 $full_item->setLocationType(
"LocalFile");
1535 $full_item->setPurpose(
"Fullscreen");
1536 $this->
object->addMediaItem($full_item);
1538 $full_item = $this->
object->getMediaItem(
"Fullscreen");
1540 $full_item->setLocationType(
"LocalFile");
1543 $full_item->setFormat(
$format);
1545 $this->
object->update();
1547 $this->ctrl->redirectByClass(
"ilfilesystemgui",
"listFiles");
1556 $this->
object->removeMediaItem(
"Fullscreen");
1557 $this->
object->update();
1559 $this->ctrl->redirect($this,
"edit");
1568 if (!$this->object->hasFullScreenItem()) {
1569 $std_item = $this->
object->getMediaItem(
"Standard");
1571 $full_item->setMobId($std_item->getMobId());
1572 $full_item->setLocation($std_item->getLocation());
1573 $full_item->setLocationType($std_item->getLocationType());
1574 $full_item->setFormat($std_item->getFormat());
1575 $full_item->setWidth($std_item->getWidth());
1576 $full_item->setHeight($std_item->getHeight());
1577 $full_item->setCaption($std_item->getCaption());
1578 $full_item->setTextRepresentation($std_item->getTextRepresentation());
1579 $full_item->setPurpose(
"Fullscreen");
1580 $this->
object->addMediaItem($full_item);
1582 $this->
object->update();
1585 $this->ctrl->redirect($this,
"edit");
1594 if (!isset(
$_POST[
"file"])) {
1595 $this->
ilias->raiseError($this->lng->txt(
"no_checkbox"), $this->
ilias->error_obj->MESSAGE);
1598 if (count(
$_POST[
"file"]) > 1) {
1599 $this->
ilias->raiseError($this->lng->txt(
"cont_select_max_one_item"), $this->
ilias->error_obj->MESSAGE);
1602 if (
$_POST[
"file"][0] ==
"..") {
1603 $this->
ilias->raiseError($this->lng->txt(
"no_checkbox"), $this->
ilias->error_obj->MESSAGE);
1606 $cur_subdir = str_replace(
".",
"",
$_GET[
"cdir"]);
1608 $cur_dir = (!empty($cur_subdir))
1609 ? $mob_dir .
"/" . $cur_subdir
1611 $file = $cur_dir .
"/" .
$_POST[
"file"][0];
1613 ? $cur_subdir .
"/" .
$_POST[
"file"][0]
1616 $full_item = $this->
object->getMediaItem(
"Fullscreen");
1617 $std_item = $this->
object->getMediaItem(
"Standard");
1619 if (
$location == $std_item->getLocation()) {
1620 $this->
ilias->raiseError($this->lng->txt(
"cont_cant_del_std"), $this->
ilias->error_obj->MESSAGE);
1623 if ($this->object->hasFullScreenItem()) {
1624 if (
$location == $full_item->getLocation()) {
1625 $this->
ilias->raiseError($this->lng->txt(
"cont_cant_del_full"), $this->
ilias->error_obj->MESSAGE);
1629 if (@is_dir($file)) {
1631 $this->
ilias->raiseError($this->lng->txt(
"cont_std_is_in_dir"), $this->
ilias->error_obj->MESSAGE);
1634 if ($this->object->hasFullScreenItem()) {
1636 $this->
ilias->raiseError($this->lng->txt(
"cont_full_is_in_dir"), $this->
ilias->error_obj->MESSAGE);
1641 if (@is_file($file)) {
1645 if (@is_dir($file)) {
1649 $this->ctrl->saveParameter($this,
"cdir");
1650 $this->ctrl->redirect($this,
"editFiles");
1675 $lng->txt(
"cont_current_usages"),
1676 $ilCtrl->getLinkTarget($this,
"showUsages")
1681 $lng->txt(
"cont_all_usages"),
1682 $ilCtrl->getLinkTarget($this,
"showAllUsages")
1686 $ilTabs->activateSubTab(
"all_usages");
1687 $cmd =
"showAllUsages";
1689 $ilTabs->activateSubTab(
"current_usages");
1690 $cmd =
"showUsages";
1693 include_once(
"./Services/MediaObjects/classes/class.ilMediaObjectUsagesTableGUI.php");
1700 $tpl->setContent($usages_table->getHTML());
1710 $lng = $DIC->language();
1712 $tpl =
new ilTemplate(
"tpl.media_info.html",
true,
true,
"Services/MediaObjects");
1713 $types = array(
"Standard",
"Fullscreen");
1714 foreach ($types as
$type) {
1715 if ($type ==
"Fullscreen" && !$a_mob->hasFullScreenItem()) {
1719 $med = $a_mob->getMediaItem($type);
1724 $tpl->setCurrentBlock(
"media_info");
1725 if ($type ==
"Standard") {
1726 $tpl->setVariable(
"TXT_PURPOSE",
$lng->txt(
"cont_std_view"));
1728 $tpl->setVariable(
"TXT_PURPOSE",
$lng->txt(
"cont_fullscreen"));
1730 $tpl->setVariable(
"TXT_TYPE",
$lng->txt(
"cont_" . strtolower($med->getLocationType())));
1731 $tpl->setVariable(
"VAL_LOCATION", $med->getLocation());
1732 if ($med->getLocationType() ==
"LocalFile") {
1734 if (is_file($file)) {
1735 $size = filesize($file);
1739 $tpl->setVariable(
"VAL_FILE_SIZE",
" ($size " .
$lng->txt(
"bytes") .
")");
1741 $tpl->setVariable(
"TXT_FORMAT",
$lng->txt(
"cont_format"));
1742 $tpl->setVariable(
"VAL_FORMAT", $med->getFormat());
1743 if ($med->getWidth() !=
"" && $med->getHeight() !=
"") {
1744 $tpl->setCurrentBlock(
"size");
1745 $tpl->setVariable(
"TXT_SIZE",
$lng->txt(
"size"));
1746 $tpl->setVariable(
"VAL_SIZE", $med->getWidth() .
"x" . $med->getHeight());
1747 $tpl->parseCurrentBlock();
1751 if ($orig_size = $med->getOriginalSize()) {
1752 if ($orig_size[
"width"] != $med->getWidth() ||
1753 $orig_size[
"height"] != $med->getHeight()) {
1754 $tpl->setCurrentBlock(
"orig_size");
1755 $tpl->setVariable(
"TXT_ORIG_SIZE",
$lng->txt(
"cont_orig_size"));
1756 $tpl->setVariable(
"ORIG_WIDTH", $orig_size[
"width"]);
1757 $tpl->setVariable(
"ORIG_HEIGHT", $orig_size[
"height"]);
1758 $tpl->parseCurrentBlock();
1763 if ($med && strlen($med->getCaption())) {
1764 $tpl->setCurrentBlock(
'additional_info');
1765 $tpl->setVariable(
'ADD_INFO',
$lng->txt(
'cont_caption') .
': ' . $med->getCaption());
1766 $tpl->parseCurrentBlock();
1770 if ($type ==
"Standard") {
1771 include_once
'./Services/MetaData/classes/class.ilMDKeyword.php';
1773 $tpl->setCurrentBlock(
'additional_info');
1774 $tpl->setVariable(
'ADD_INFO',
$lng->txt(
'keywords') .
': ' . implode(
', ', $kws));
1775 $tpl->parseCurrentBlock();
1779 $tpl->setCurrentBlock(
"media_info");
1780 $tpl->parseCurrentBlock();
1798 if (is_object($this->
object) && strtolower(get_class($this->
object)) ==
"ilobjmediaobject") {
1800 $this->tpl->setTitle($this->object->getTitle());
1804 $this->tpl->setTitle($this->lng->txt(
"cont_create_mob"));
1816 $ilHelp->setScreenIdComponent(
"mob");
1818 if (is_object($this->
object) && strtolower(get_class($this->
object)) ==
"ilobjmediaobject" 1819 && $this->object->getId() > 0) {
1821 $this->tabs_gui->addTarget(
1822 "cont_mob_def_prop",
1823 $this->ctrl->getLinkTarget($this,
"edit"),
1828 $st_item = $this->
object->getMediaItem(
"Standard");
1833 $format = $st_item->getFormat();
1834 if (substr(
$format, 0, 5) ==
"image" && !is_int(strpos(
$format,
"svg"))) {
1835 $this->tabs_gui->addTarget(
1836 "cont_def_map_areas",
1837 $this->ctrl->getLinkTargetByClass(
1838 array(
"ilobjmediaobjectgui",
"ilimagemapeditorgui"),
1842 "ilimagemapeditorgui" 1848 $this->tabs_gui->addTarget(
1850 $this->ctrl->getLinkTarget($this,
"showUsages"),
1856 $std_item = $this->
object->getMediaItem(
"Standard");
1857 $full_item = $this->
object->getMediaItem(
"Fullscreen");
1859 if ($mset->get(
"file_manager_always") ||
1860 ($this->media_type->usesParameterProperty($std_item->getFormat()) ||
1861 (is_object($full_item) && $this->media_type->usesParameterProperty($full_item->getFormat())))
1863 $this->tabs_gui->addTarget(
1865 $this->ctrl->getLinkTargetByClass(
1866 array(
"ilobjmediaobjectgui",
"ilfilesystemgui"),
1874 include_once
"Services/Object/classes/class.ilObjectMetaDataGUI.php";
1876 $mdtab = $mdgui->
getTab(
"ilobjmediaobjectgui");
1878 $this->tabs_gui->addTarget(
1888 if ($this->back_title !=
"") {
1889 $this->tabs_gui->setBackTarget(
1891 $this->ctrl->getParentReturn($this)
1906 include_once(
"./Services/MediaObjects/classes/class.ilFFmpeg.php");
1913 $formats_str = implode(
"<br />",
$formats);
1914 $tpl->setContent($formats_str);
1927 if ($a_tpl == null) {
1931 include_once(
"./Services/jQuery/classes/class.iljQueryUtil.php");
1932 iljQueryUtil::initjQUery($a_tpl);
1933 include_once(
"./Services/jQuery/classes/class.iljQueryUtil.php");
1935 $a_tpl->addJavascript(
"./Services/COPage/js/ilCOPagePres.js");
1937 include_once(
"./Services/MediaObjects/classes/class.ilPlayerUtil.php");
1952 $ilTabs->activateTab(
"cont_mob_def_prop");
1956 $lng->txt(
"mob_general"),
1957 $ilCtrl->getLinkTarget($this,
"edit")
1960 if ($this->object->getMediaItem(
"Standard")->getFormat() ==
"video/webm" ||
1961 $this->
object->getMediaItem(
"Standard")->getFormat() ==
"video/mp4") {
1964 $lng->txt(
"mob_subtitles"),
1965 $ilCtrl->getLinkTarget($this,
"listSubtitleFiles")
1969 $ilTabs->activateSubTab($a_active);
1989 $ilToolbar->setFormAction($ilCtrl->getFormAction($this),
true);
1990 include_once(
"./Services/Form/classes/class.ilFileInputGUI.php");
1991 $fi =
new ilFileInputGUI(
$lng->txt(
"mob_subtitle_file") .
" (.srt)",
"subtitle_file");
1993 $ilToolbar->addInputItem($fi,
true);
1996 include_once(
"./Services/Form/classes/class.ilSelectInputGUI.php");
1997 include_once(
"./Services/MetaData/classes/class.ilMDLanguageItem.php");
2000 $si->setOptions($options);
2002 $ilToolbar->addInputItem(
$si,
true);
2004 $ilToolbar->addFormButton(
$lng->txt(
"upload"),
"uploadSubtitleFile");
2006 $ilToolbar->addSeparator();
2007 $ilToolbar->addFormButton(
$lng->txt(
"mob_upload_multi_srt"),
"uploadMultipleSubtitleFileForm");
2009 include_once(
"./Services/MediaObjects/classes/class.ilMobSubtitleTableGUI.php");
2012 $tpl->setContent($tab->getHTML());
2027 ilUtil::sendSuccess(
$lng->txt(
"msg_obj_modified"),
true);
2029 $ilCtrl->redirect($this,
"listSubtitleFiles");
2041 $lng->loadLanguageModule(
"meta");
2043 if (!is_array(
$_POST[
"srt"]) || count(
$_POST[
"srt"]) == 0) {
2045 $ilCtrl->redirect($this,
"listSubtitleFiles");
2047 include_once(
"./Services/Utilities/classes/class.ilConfirmationGUI.php");
2049 $cgui->setFormAction($ilCtrl->getFormAction($this));
2050 $cgui->setHeaderText(
$lng->txt(
"mob_really_delete_srt"));
2051 $cgui->setCancel(
$lng->txt(
"cancel"),
"listSubtitleFiles");
2052 $cgui->setConfirm(
$lng->txt(
"delete"),
"deleteSrtFiles");
2055 $cgui->addItem(
"srt[]", $i,
"subtitle_" . $i .
".srt (" .
$lng->txt(
"meta_l_" . $i) .
")");
2058 $tpl->setContent($cgui->getHTML());
2071 if (strlen($i) == 2 && !is_int(strpos($i,
"."))) {
2072 $this->
object->removeAdditionalFile(
"srt/subtitle_" . $i .
".srt");
2075 ilUtil::sendSuccess(
$lng->txt(
"mob_srt_files_deleted"),
true);
2076 $ilCtrl->redirect($this,
"listSubtitleFiles");
2096 $ilToolbar->setFormAction($ilCtrl->getFormAction($this),
true);
2097 include_once(
"./Services/Form/classes/class.ilFileInputGUI.php");
2098 $fi =
new ilFileInputGUI(
$lng->txt(
"mob_subtitle_file") .
" (.zip)",
"subtitle_file");
2100 $ilToolbar->addInputItem($fi,
true);
2102 $ilToolbar->addFormButton(
$lng->txt(
"upload"),
"uploadMultipleSubtitleFile");
2112 $this->ctrl->redirect($this,
"showMultiSubtitleConfirmationTable");
2115 $this->ctrl->redirect($this,
"uploadMultipleSubtitleFileForm");
2128 include_once(
"./Services/MediaObjects/classes/class.ilMultiSrtConfirmationTable2GUI.php");
2130 $tpl->setContent($tab->getHTML());
2138 $this->
object->clearMultiSrtDirectory();
2139 $this->ctrl->redirect($this,
"listSubtitleFiles");
2148 $srt_files = $this->
object->getMultiSrtFiles();
2149 if (is_array(
$_POST[
"file"])) {
2151 foreach ($srt_files as $srt_file) {
2152 if ($f == $srt_file[
"filename"]) {
2153 $this->
object->uploadSrtFile($this->object->getMultiSrtUploadDir() .
"/" . $srt_file[
"filename"], $srt_file[
"lang"],
"rename");
2158 $this->
object->clearMultiSrtDirectory();
2159 $ilCtrl->redirect($this,
"listSubtitleFiles");
This class represents an option in a radio group.
TableGUI class for subtitle list.
static getDir($a_dir, $a_rec=false, $a_sub_dir="")
get directory
static getSupportedFormatsInfo()
Get all supported formats.
setInfo($a_info)
Set Info.
static sendInfo($a_info="", $a_keep=false)
Send Info Message to Screen.
List srt files from zip file for upload confirmation.
addSubItem($a_item)
Add Subitem.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static moveUploadedFile($a_file, $a_name, $a_target, $a_raise_errors=true, $a_mode="move_uploaded")
move uploaded file
Class ilObjectGUI Basic methods of all Output classes.
setAllowedSuffixes($a_suffixes)
Set allowed Suffixes.
static initMediaElementJs($a_tpl=null)
Init mediaelement.js scripts.
setCols($a_cols)
Set Cols.
redirection script todo: (a better solution should control the processing via a xml file) ...
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
static makeDir($a_dir)
creates a new directory and inherits all filesystem permissions of the parent directory You may pass ...
static stripSlashesArray($a_arr, $a_strip_html=true, $a_allow="")
Strip slashes from array.
User interface class for map editor.
static secureLink($a_str)
This class represents a non editable value in a property form.
setRows($a_rows)
Set Rows.
__construct(Container $dic, ilPlugin $plugin)
This class represents a text area property in a property form.
static switchColor($a_num, $a_css1, $a_css2)
switches style sheets for each even $a_num (used for changing colors of different result rows) ...
static getLocalMaphilightPath()
Get local path of maphilight file.
File System Explorer GUI class.
static lookupKeywords($a_rbac_id, $a_obj_id, $a_return_ids=false)
Lookup Keywords.
static delDir($a_dir, $a_clean_only=false)
removes a dir and all its content (subdirs and files) recursively
static getWebspaceDir($mode="filesystem")
get webspace directory
Confirmation screen class.