5 define(
'IL_TLT_MAX_HOURS', 99);
30 public function __construct($a_rbac_id, $a_obj_id, $a_obj_type)
34 $this->lng = $DIC->language();
35 $this->tpl = $DIC[
'tpl'];
36 $this->tabs_gui = $DIC->tabs();
37 $this->ctrl = $DIC->ctrl();
39 $this->ui_factory = $DIC->ui()->factory();
40 $this->ui_renderer = $DIC->ui()->renderer();
42 $this->md_obj =
new ilMD($a_rbac_id, $a_obj_id, $a_obj_type);
44 $this->lng->loadLanguageModule(
'meta');
46 include_once(
'Services/MetaData/classes/class.ilMDSettings.php');
54 $rbacsystem = $DIC[
'rbacsystem'];
56 $next_class = $this->ctrl->getNextClass($this);
58 $cmd = $this->ctrl->getCmd();
59 switch ($next_class) {
60 case 'ilformpropertydispatchgui':
62 include_once
'./Services/Form/classes/class.ilFormPropertyDispatchGUI.php';
65 $item = $this->getFilterItemByPostVar(
$_GET[
"postvar"]);
66 $form_prop_dispatch->setItem($item);
67 return $this->ctrl->forwardCommand($form_prop_dispatch);
82 $xml_writer =
new ilMD2XML($this->md_obj->getRBACId(), $this->md_obj->getObjId(), $this->md_obj->getObjType());
87 $this->tpl->setContent(htmlentities($xml_writer->getXML()));
100 if (!is_object($this->md_section = $this->md_obj->getGeneral())) {
101 $this->md_section = $this->md_obj->addGeneral();
102 $this->md_section->save();
107 $tpl =
new ilTemplate(
'tpl.md_quick_edit_scorm.html',
true,
true,
'Services/MetaData');
109 $this->ctrl->setReturn($this,
'listGeneral');
110 $this->ctrl->setParameter($this,
'section',
'meta_general');
111 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
113 $tpl->setVariable(
"TXT_QUICK_EDIT", $this->lng->txt(
"meta_quickedit"));
114 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
115 $tpl->setVariable(
"TXT_KEYWORD", $this->lng->txt(
"meta_keyword"));
116 $tpl->setVariable(
"TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
117 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
121 foreach ($ids = $this->md_section->getLanguageIds() as $id) {
122 $md_lan = $this->md_section->getLanguage($id);
125 $tpl->setCurrentBlock(
"language_head");
126 $tpl->setVariable(
"ROWSPAN_LANG", count($ids));
127 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
128 $tpl->parseCurrentBlock();
132 if (count($ids) > 1) {
133 $this->ctrl->setParameter($this,
'meta_index', $id);
134 $this->ctrl->setParameter($this,
'meta_path',
'meta_language');
136 $tpl->setCurrentBlock(
"language_delete");
137 $tpl->setVariable(
"LANGUAGE_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
138 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
139 $tpl->parseCurrentBlock();
141 $tpl->setCurrentBlock(
"language_loop");
143 'gen_language[' . $id .
'][language]',
144 $md_lan->getLanguageCode()
146 $tpl->parseCurrentBlock();
150 $tpl->setCurrentBlock(
"language_head");
151 $tpl->setVariable(
"ROWSPAN_LANG", 1);
152 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
153 $tpl->parseCurrentBlock();
154 $tpl->setCurrentBlock(
"language_loop");
156 'gen_language[][language]',
159 $tpl->parseCurrentBlock();
163 $tpl->setVariable(
"TXT_TITLE", $this->lng->txt(
'title'));
166 'gen_title_language',
167 $this->md_section->getTitleLanguageCode()
171 foreach ($ids = $this->md_section->getDescriptionIds() as $id) {
172 $md_des = $this->md_section->getDescription($id);
174 if (count($ids) > 1) {
175 $this->ctrl->setParameter($this,
'meta_index', $id);
176 $this->ctrl->setParameter($this,
'meta_path',
'meta_description');
178 $tpl->setCurrentBlock(
"description_delete");
179 $tpl->setVariable(
"DESCRIPTION_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
180 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
181 $tpl->parseCurrentBlock();
184 $tpl->setCurrentBlock(
"description_loop");
185 $tpl->setVariable(
"DESCRIPTION_LOOP_NO", $id);
186 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
187 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
189 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
191 "gen_description[" . $id .
'][language]',
192 $md_des->getDescriptionLanguageCode()
194 $tpl->parseCurrentBlock();
200 foreach ($ids = $this->md_section->getKeywordIds() as $id) {
201 $md_key = $this->md_section->getKeyword($id);
202 $keywords[$md_key->getKeywordLanguageCode()][]
203 = $md_key->getKeyword();
206 foreach ($keywords as
$lang => $keyword_set) {
208 $tpl->setCurrentBlock(
"keyword_head");
209 $tpl->setVariable(
"ROWSPAN_KEYWORD", count($keywords));
210 $tpl->setVariable(
"TXT_COMMA_SEP2", $this->lng->txt(
'comma_separated'));
211 $tpl->setVariable(
"KEYWORD_LOOP_TXT_KEYWORD", $this->lng->txt(
"keywords"));
212 $tpl->parseCurrentBlock();
216 $tpl->setCurrentBlock(
"keyword_loop");
218 implode(
", ", $keyword_set)
222 "keyword[language][$lang]",
225 $tpl->parseCurrentBlock();
228 if (count($keywords) == 0) {
229 $tpl->setCurrentBlock(
"keyword_head");
230 $tpl->setVariable(
"ROWSPAN_KEYWORD", 1);
231 $tpl->setVariable(
"TXT_COMMA_SEP2", $this->lng->txt(
'comma_separated'));
232 $tpl->setVariable(
"KEYWORD_LOOP_TXT_KEYWORD", $this->lng->txt(
"keywords"));
233 $tpl->parseCurrentBlock();
234 $tpl->setCurrentBlock(
"keyword_loop");
236 "keyword[language][$lang]",
243 $tpl->setVariable(
"TXT_EXPERTS",
$lng->txt(
'meta_subjectmatterexpert'));
244 $tpl->setVariable(
"TXT_COMMA_SEP", $this->lng->txt(
'comma_separated'));
245 $tpl->setVariable(
"TXT_SCOPROP_EXPERT", $this->lng->txt(
'sco_propagate'));
246 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
247 $sep = $ent_str =
"";
248 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
249 $md_con = $this->md_section->getContribute($con_id);
250 if ($md_con->getRole() ==
"SubjectMatterExpert") {
251 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
252 $md_ent = $md_con->getEntity($ent_id);
253 $ent_str = $ent_str . $sep . $md_ent->getEntity();
261 $tpl->setVariable(
"TXT_DESIGNERS",
$lng->txt(
'meta_instructionaldesigner'));
262 $tpl->setVariable(
"TXT_SCOPROP_DESIGNERS", $this->lng->txt(
'sco_propagate'));
263 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
264 $sep = $ent_str =
"";
265 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
266 $md_con = $this->md_section->getContribute($con_id);
267 if ($md_con->getRole() ==
"InstructionalDesigner") {
268 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
269 $md_ent = $md_con->getEntity($ent_id);
270 $ent_str = $ent_str . $sep . $md_ent->getEntity();
278 $tpl->setVariable(
"TXT_POC",
$lng->txt(
'meta_pointofcontact'));
279 $tpl->setVariable(
"TXT_SCOPROP_POC", $this->lng->txt(
'sco_propagate'));
280 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
281 $sep = $ent_str =
"";
282 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
283 $md_con = $this->md_section->getContribute($con_id);
284 if ($md_con->getRole() ==
"PointOfContact") {
285 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
286 $md_ent = $md_con->getEntity($ent_id);
287 $ent_str = $ent_str . $sep . $md_ent->getEntity();
295 $tpl->setVariable(
"TXT_STATUS", $this->lng->txt(
'meta_status'));
296 if (!is_object($this->md_section = $this->md_obj->getLifecycle())) {
297 $this->md_section = $this->md_obj->addLifecycle();
298 $this->md_section->save();
300 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
302 $this->md_section->getStatus(),
304 array(0 => $this->lng->txt(
'meta_please_select'))
312 $tlt = array(0,0,0,0,0);
314 if (is_object($this->md_section = $this->md_obj->getEducational())) {
315 include_once
'Services/MetaData/classes/class.ilMDUtils.php';
318 if (strlen($this->md_section->getTypicalLearningTime())) {
319 $tlt = array(0,0,0,0,0);
324 $tpl->setVariable(
"TXT_MONTH", $this->lng->txt(
'md_months'));
328 $tpl->setVariable(
"TXT_DAYS", $this->lng->txt(
'md_days'));
329 $tpl->setVariable(
"TXT_TIME", $this->lng->txt(
'md_time'));
331 $tpl->setVariable(
"TXT_TYPICAL_LEARN_TIME", $this->lng->txt(
'meta_typical_learning_time'));
334 $tlt[4] ?
false :
true,
340 $tpl->setVariable(
"TLT_HINT", $tlt[4] ?
'(hh:mm:ss)' :
'(hh:mm)');
343 $tpl->setCurrentBlock(
"tlt_not_valid");
344 $tpl->setVariable(
"TXT_CURRENT_VAL", $this->lng->txt(
'meta_current_value'));
345 $tpl->setVariable(
"TLT", $this->md_section->getTypicalLearningTime());
346 $tpl->setVariable(
"INFO_TLT_NOT_VALID", $this->lng->txt(
'meta_info_tlt_not_valid'));
347 $tpl->parseCurrentBlock();
350 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
'save'));
352 $this->tpl->setContent(
$tpl->get());
361 if (!is_object($this->md_section = $this->md_obj->getGeneral())) {
362 $this->md_section = $this->md_obj->addGeneral();
363 $this->md_section->save();
370 $interruptive_signal =
'';
372 if ($interruptive_modal != null) {
373 $interruptive_signal = $interruptive_modal->getShowSignal();
374 $modal_content = $this->ui_renderer->render($interruptive_modal);
379 $modal_content . $form->getHTML()
392 $tree = $DIC[
'tree'];
394 include_once(
"Services/Form/classes/class.ilPropertyFormGUI.php");
396 $this->form->setId(
'ilquickeditform');
397 $this->form->setShowTopButtons(
false);
401 $ti->setMaxLength(200);
403 if ($this->md_obj->getObjType() !=
'sess') {
404 $ti->setRequired(
true);
406 $ti->setValue($this->md_section->getTitle());
407 $this->form->addItem($ti);
410 foreach ($ids = $this->md_section->getDescriptionIds() as $id) {
411 $md_des = $this->md_section->getDescription($id);
413 $ta =
new ilTextAreaInputGUI($this->lng->txt(
"meta_description"),
"gen_description[" . $id .
"][description]");
416 $ta->setValue($md_des->getDescription());
417 if (count($ids) > 1) {
418 $ta->setInfo($this->lng->txt(
"meta_l_" . $md_des->getDescriptionLanguageCode()));
421 $this->form->addItem($ta);
427 foreach ($ids = $this->md_section->getLanguageIds() as $id) {
428 $md_lan = $this->md_section->getLanguage($id);
429 $first_lang = $md_lan->getLanguageCode();
430 $si =
new ilSelectInputGUI($this->lng->txt(
"meta_language"),
"gen_language[" . $id .
"][language]");
431 $si->setOptions($options);
432 $si->setValue($md_lan->getLanguageCode());
433 $this->form->addItem(
$si);
438 $si->setOptions($options);
439 $this->form->addItem(
$si);
445 foreach ($ids = $this->md_section->getKeywordIds() as $id) {
446 $md_key = $this->md_section->getKeyword($id);
447 if (trim($md_key->getKeyword()) !=
"") {
448 $keywords[$md_key->getKeywordLanguageCode()][]
449 = $md_key->getKeyword();
452 foreach ($keywords as
$lang => $keyword_set) {
454 $this->lng->txt(
"keywords"),
455 "keywords[value][" .
$lang .
"]" 457 $kw->setDataSource($this->ctrl->getLinkTarget($this,
"keywordAutocomplete",
"",
true));
458 $kw->setMaxLength(200);
461 if (count($keywords) > 1) {
462 $kw->setInfo($this->lng->txt(
"meta_l_" .
$lang));
464 $this->form->addItem($kw);
466 $kw->setValue($keyword_set);
468 if (count($keywords) == 0) {
470 $this->lng->txt(
"keywords"),
471 "keywords[value][" . $first_lang .
"]" 473 $kw->setDataSource($this->ctrl->getLinkTarget($this,
"keywordAutocomplete",
"",
true));
474 $kw->setMaxLength(200);
477 $this->form->addItem($kw);
483 $this->lng->txt(
'authors') .
"<br />" .
484 "(" . sprintf($this->lng->txt(
'md_separated_by'), $this->md_settings->getDelimiter()) .
")",
489 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
490 $sep = $ent_str =
"";
491 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
492 $md_con = $this->md_section->getContribute($con_id);
493 if ($md_con->getRole() ==
"Author") {
494 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
495 $md_ent = $md_con->getEntity($ent_id);
496 $ent_str = $ent_str . $sep . $md_ent->getEntity();
497 $sep = $this->md_settings->getDelimiter() .
" ";
501 $ta->setValue($ent_str);
503 $this->form->addItem($ta);
510 include_once(
"./Services/MetaData/classes/class.ilTypicalLearningTimeInputGUI.php");
512 $edu = $this->md_obj->getEducational();
513 if (is_object($edu)) {
516 $this->form->addItem($tlt);
518 $this->form->addCommandButton(
"updateQuickEdit",
$lng->txt(
"save"),
'button_ilquickeditform');
519 $this->form->setTitle($this->lng->txt(
"meta_quickedit"));
520 $this->form->setFormAction(
$ilCtrl->getFormAction($this));
524 $DIC->ui()->mainTemplate()->addJavaScript(
525 'Services/MetaData/js/ilMetaCopyrightListener.js' 527 $DIC->ui()->mainTemplate()->addOnLoadCode(
528 'il.MetaDataCopyrightListener.init("' .
529 $a_signal_id .
'","copyright","form_ilquickeditform","button_ilquickeditform");' 549 $this->md_obj->getRBACId(),
550 $this->md_obj->getObjId()
562 !$this->md_settings->isCopyrightSelectionActive() ||
572 foreach ($cp_entries as $copyright_entry) {
574 $copyright_entry->getTitle(),
575 $copyright_entry->getEntryId(),
576 $copyright_entry->getDescription()
579 if ($copyright_entry->getOutdated()) {
580 $radio_entry->
setTitle(
"(" . $this->lng->txt(
'meta_copyright_outdated') .
") " . $radio_entry->getTitle());
581 $radio_entry->setDisabled(
true);
585 $oer_settings->supportsHarvesting($this->md_obj->getObjType()) &&
586 $oer_settings->isActiveCopyrightTemplate($copyright_entry->getEntryId())
590 $this->lng->txt(
'meta_oer_blocked'),
591 'copyright_oer_blocked_' . $copyright_entry->getEntryId()
593 $blocked->
setInfo($this->lng->txt(
'meta_oer_blocked_info'));
594 $blocked->setValue(1);
596 if ($status->isBlocked()) {
597 $blocked->setChecked(
true);
599 $radio_entry->addSubItem($blocked);
603 $copyright->addOption($radio_entry);
608 $this->lng->txt(
'meta_cp_own'),
618 if ($current_id == 0) {
619 $own_copyright->setValue($description);
621 $own_selection->addSubItem($own_copyright);
622 $copyright->addOption($own_selection);
634 include_once(
"./Services/MetaData/classes/class.ilMDKeyword.php");
637 $this->md_obj->getObjType(),
638 $this->md_obj->getRBACId()
643 foreach (
$res as $r) {
647 $entry =
new stdClass();
653 include_once
'./Services/JSON/classes/class.ilJsonUtil.php';
667 if (!trim(
$_POST[
'gen_title'])) {
668 if ($this->md_obj->getObjType() !=
'sess') {
676 $this->md_section = $this->md_obj->getGeneral();
679 $this->md_section->update();
682 if (is_array(
$_POST[
'gen_language'])) {
685 $md_lan = $this->md_section->getLanguage($id);
689 $md_lan = $this->md_section->addLanguage();
696 if (is_array(
$_POST[
'gen_description'])) {
697 foreach (
$_POST[
'gen_description'] as $id =>
$data) {
698 $md_des = $this->md_section->getDescription($id);
706 if (is_array(
$_POST[
"keywords"][
"value"])) {
707 include_once(
"./Services/MetaData/classes/class.ilMDKeyword.php");
714 if (!is_object($this->md_section = $this->md_obj->getRights())) {
715 $this->md_section = $this->md_obj->addRights();
716 $this->md_section->save();
718 if (
$_POST[
'copyright'] > 0) {
719 $this->md_section->setCopyrightAndOtherRestrictions(
"Yes");
720 $this->md_section->setDescription(
'il_copyright_entry__' . IL_INST_ID .
'__' . (
int)
$_POST[
'copyright']);
722 $this->md_section->setCopyrightAndOtherRestrictions(
"Yes");
725 $this->md_section->update();
730 if ($oer_settings->supportsHarvesting($this->md_obj->getObjType())) {
731 $chosen_copyright = (int)
$_POST[
'copyright'];
734 $status->
setBlocked((
int)
$_POST[
'copyright_oer_blocked_' . $chosen_copyright] ?
true :
false);
738 if (is_object($this->md_section = $this->md_obj->getRights())) {
739 $this->md_section->setCopyrightAndOtherRestrictions(
"No");
740 $this->md_section->setDescription(
"");
741 $this->md_section->update();
750 if (!is_object($this->md_section = $this->md_obj->getEducational())) {
751 $this->md_section = $this->md_obj->addEducational();
752 $this->md_section->save();
754 $this->md_section->setPhysicalTypicalLearningTime(
755 (
int) $_POST[
'tlt'][
'mo'],
756 (
int) $_POST[
'tlt'][
'd'],
757 (
int) $_POST[
'tlt'][
'h'],
758 (
int) $_POST[
'tlt'][
'm'],
759 (
int) $_POST[
'tlt'][
's']
761 $this->md_section->update();
763 if (is_object($this->md_section = $this->md_obj->getEducational())) {
764 $this->md_section->setPhysicalTypicalLearningTime(0, 0, 0, 0, 0);
765 $this->md_section->update();
771 if ($_POST[
"life_authors"] !=
"") {
772 if (!is_object($this->md_section = $this->md_obj->getLifecycle())) {
773 $this->md_section = $this->md_obj->addLifecycle();
774 $this->md_section->save();
778 $auth_arr = explode($this->md_settings->getDelimiter(), $_POST[
"life_authors"]);
779 for (
$i = 0;
$i < count($auth_arr);
$i++) {
780 $auth_arr[
$i] = trim($auth_arr[
$i]);
786 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
787 $md_con = $this->md_section->getContribute($con_id);
788 if ($md_con->getRole() ==
"Author") {
789 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
790 $md_ent = $md_con->getEntity($ent_id);
793 if (in_array($md_ent->getEntity(), $auth_arr)) {
794 unset($auth_arr[array_search($md_ent->getEntity(), $auth_arr)]);
799 $md_con_author = $md_con;
804 if (count($auth_arr) > 0) {
805 if (!is_object($md_con_author)) {
806 $md_con_author = $this->md_section->addContribute();
807 $md_con_author->setRole(
"Author");
808 $md_con_author->save();
810 foreach ($auth_arr as
$auth) {
811 $md_ent = $md_con_author->addEntity();
817 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
818 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
819 $md_con = $this->md_section->getContribute($con_id);
820 if ($md_con->getRole() ==
"Author") {
840 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"),
true);
841 $this->ctrl->redirect($this,
'listSection');
846 $module_id = $this->md_obj->obj_id;
847 if ($this->md_obj->obj_type ==
'sco') {
848 $module_id = $this->md_obj->rbac_id;
850 $tree =
new ilTree($module_id);
851 $tree->setTableNames(
'sahs_sc13_tree',
'sahs_sc13_tree_node');
852 $tree->setTreeTablePK(
"slm_id");
853 foreach ($tree->getSubTree($tree->getNodeData($tree->getRootId()),
true,
'sco') as $sco) {
854 $sco_md =
new ilMD($module_id, $sco[
'obj_id'],
'sco');
855 if (
$_POST[$request] !=
"") {
857 if (!is_object($sco_md_section = $sco_md->getLifecycle())) {
858 $sco_md_section = $sco_md->addLifecycle();
859 $sco_md_section->save();
862 $auth_arr = explode(
",",
$_POST[$request]);
863 for (
$i = 0;
$i < count($auth_arr);
$i++) {
864 $auth_arr[
$i] = trim($auth_arr[
$i]);
870 foreach (($ids = $sco_md_section->getContributeIds()) as $con_id) {
871 $md_con = $sco_md_section->getContribute($con_id);
872 if ($md_con->getRole() ==
$type) {
873 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
874 $md_ent = $md_con->getEntity($ent_id);
877 if (in_array($md_ent->getEntity(), $auth_arr)) {
878 unset($auth_arr[array_search($md_ent->getEntity(), $auth_arr)]);
883 $md_con_author = $md_con;
888 if (count($auth_arr) > 0) {
889 if (!is_object($md_con_author)) {
890 $md_con_author = $sco_md_section->addContribute();
891 $md_con_author->setRole(
$type);
892 $md_con_author->save();
894 foreach ($auth_arr as
$auth) {
895 $md_ent = $md_con_author->addEntity();
901 if (is_object($sco_md_section = $sco_md->getLifecycle())) {
902 foreach (($ids = $sco_md_section->getContributeIds()) as $con_id) {
903 $md_con = $sco_md_section->getContribute($con_id);
904 if ($md_con->getRole() ==
$type) {
932 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
935 $this->md_section = $this->md_obj->getGeneral();
938 $this->md_section->update();
941 if (is_array(
$_POST[
'gen_language'])) {
944 $md_lan = $this->md_section->getLanguage($id);
948 $md_lan = $this->md_section->addLanguage();
955 if (is_array(
$_POST[
'gen_description'])) {
956 foreach (
$_POST[
'gen_description'] as $id =>
$data) {
957 $md_des = $this->md_section->getDescription($id);
966 if (is_array(
$_POST[
"keywords"][
"value"])) {
967 $new_keywords = array();
968 foreach (
$_POST[
"keywords"][
"value"] as
$lang => $keywords) {
970 $keywords = explode(
",", $keywords);
971 foreach ($keywords as $keyword) {
972 $new_keywords[$language][] = trim($keyword);
977 foreach ($ids = $this->md_section->getKeywordIds() as $id) {
978 $md_key = $this->md_section->getKeyword($id);
980 $lang = $md_key->getKeywordLanguageCode();
983 if (is_array($new_keywords[
$lang]) &&
984 in_array($md_key->getKeyword(), $new_keywords[
$lang])) {
985 unset($new_keywords[$lang]
986 [array_search($md_key->getKeyword(), $new_keywords[
$lang])]);
993 foreach ($new_keywords as
$lang => $key_arr) {
994 foreach ($key_arr as $keyword) {
995 if ($keyword !=
"") {
996 $md_key = $this->md_section->addKeyword();
1007 if (
$_POST[
'copyright_id'] or
$_POST[
'rights_copyright']) {
1008 if (!is_object($this->md_section = $this->md_obj->getRights())) {
1009 $this->md_section = $this->md_obj->addRights();
1010 $this->md_section->save();
1012 if ($_POST[
'copyright_id']) {
1013 $this->md_section->setCopyrightAndOtherRestrictions(
"Yes");
1014 $this->md_section->setDescription(
'il_copyright_entry__' . IL_INST_ID .
'__' . (
int) $_POST[
'copyright_id']);
1016 $this->md_section->setCopyrightAndOtherRestrictions(
"Yes");
1019 $this->md_section->update();
1021 if (is_object($this->md_section = $this->md_obj->getRights())) {
1022 $this->md_section->setCopyrightAndOtherRestrictions(
"No");
1023 $this->md_section->setDescription(
"");
1024 $this->md_section->update();
1031 if ($_POST[
'tlt'][
'mo'] or $_POST[
'tlt'][
'd'] or
1032 $_POST[
"tlt"][
'h'] or $_POST[
'tlt'][
'm'] or $_POST[
'tlt'][
's']) {
1033 if (!is_object($this->md_section = $this->md_obj->getEducational())) {
1034 $this->md_section = $this->md_obj->addEducational();
1035 $this->md_section->save();
1037 $this->md_section->setPhysicalTypicalLearningTime(
1038 (
int) $_POST[
'tlt'][
'mo'],
1039 (
int) $_POST[
'tlt'][
'd'],
1040 (
int) $_POST[
'tlt'][
'h'],
1041 (
int) $_POST[
'tlt'][
'm'],
1042 (
int) $_POST[
'tlt'][
's']
1044 $this->md_section->update();
1046 if (is_object($this->md_section = $this->md_obj->getEducational())) {
1047 $this->md_section->setPhysicalTypicalLearningTime(0, 0, 0, 0, 0);
1048 $this->md_section->update();
1054 if ($_POST[
"life_experts"] !=
"") {
1055 if (!is_object($this->md_section = $this->md_obj->getLifecycle())) {
1056 $this->md_section = $this->md_obj->addLifecycle();
1057 $this->md_section->save();
1061 $auth_arr = explode(
",", $_POST[
"life_experts"]);
1062 for (
$i = 0;
$i < count($auth_arr);
$i++) {
1063 $auth_arr[
$i] = trim($auth_arr[
$i]);
1066 $md_con_author =
"";
1069 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1070 $md_con = $this->md_section->getContribute($con_id);
1071 if ($md_con->getRole() ==
"SubjectMatterExpert") {
1072 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
1073 $md_ent = $md_con->getEntity($ent_id);
1076 if (in_array($md_ent->getEntity(), $auth_arr)) {
1077 unset($auth_arr[array_search($md_ent->getEntity(), $auth_arr)]);
1082 $md_con_author = $md_con;
1087 if (count($auth_arr) > 0) {
1088 if (!is_object($md_con_author)) {
1089 $md_con_author = $this->md_section->addContribute();
1090 $md_con_author->setRole(
"SubjectMatterExpert");
1091 $md_con_author->save();
1093 foreach ($auth_arr as
$auth) {
1094 $md_ent = $md_con_author->addEntity();
1100 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
1101 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1102 $md_con = $this->md_section->getContribute($con_id);
1103 if ($md_con->getRole() ==
"SubjectMatterExpert") {
1111 if ($_POST[
"life_designers"] !=
"") {
1112 if (!is_object($this->md_section = $this->md_obj->getLifecycle())) {
1113 $this->md_section = $this->md_obj->addLifecycle();
1114 $this->md_section->save();
1118 $auth_arr = explode(
",", $_POST[
"life_designers"]);
1119 for (
$i = 0;
$i < count($auth_arr);
$i++) {
1120 $auth_arr[
$i] = trim($auth_arr[
$i]);
1123 $md_con_author =
"";
1126 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1127 $md_con = $this->md_section->getContribute($con_id);
1128 if ($md_con->getRole() ==
"InstructionalDesigner") {
1129 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
1130 $md_ent = $md_con->getEntity($ent_id);
1133 if (in_array($md_ent->getEntity(), $auth_arr)) {
1134 unset($auth_arr[array_search($md_ent->getEntity(), $auth_arr)]);
1139 $md_con_author = $md_con;
1144 if (count($auth_arr) > 0) {
1145 if (!is_object($md_con_author)) {
1146 $md_con_author = $this->md_section->addContribute();
1147 $md_con_author->setRole(
"InstructionalDesigner");
1148 $md_con_author->save();
1150 foreach ($auth_arr as
$auth) {
1151 $md_ent = $md_con_author->addEntity();
1157 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
1158 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1159 $md_con = $this->md_section->getContribute($con_id);
1160 if ($md_con->getRole() ==
"InstructionalDesigner") {
1168 if ($_POST[
"life_poc"] !=
"") {
1169 if (!is_object($this->md_section = $this->md_obj->getLifecycle())) {
1170 $this->md_section = $this->md_obj->addLifecycle();
1171 $this->md_section->save();
1175 $auth_arr = explode(
",", $_POST[
"life_poc"]);
1176 for (
$i = 0;
$i < count($auth_arr);
$i++) {
1177 $auth_arr[
$i] = trim($auth_arr[
$i]);
1180 $md_con_author =
"";
1183 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1184 $md_con = $this->md_section->getContribute($con_id);
1185 if ($md_con->getRole() ==
"PointOfContact") {
1186 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
1187 $md_ent = $md_con->getEntity($ent_id);
1190 if (in_array($md_ent->getEntity(), $auth_arr)) {
1191 unset($auth_arr[array_search($md_ent->getEntity(), $auth_arr)]);
1196 $md_con_author = $md_con;
1201 if (count($auth_arr) > 0) {
1202 if (!is_object($md_con_author)) {
1203 $md_con_author = $this->md_section->addContribute();
1204 $md_con_author->setRole(
"PointOfContact");
1205 $md_con_author->save();
1207 foreach ($auth_arr as
$auth) {
1208 $md_ent = $md_con_author->addEntity();
1214 if (is_object($this->md_section = $this->md_obj->getLifecycle())) {
1215 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1216 $md_con = $this->md_section->getContribute($con_id);
1217 if ($md_con->getRole() ==
"PointOfContact") {
1224 $this->md_section = $this->md_obj->getLifecycle();
1225 $this->md_section->setVersionLanguage(
new ilMDLanguageItem($_POST[
'lif_language']));
1227 $this->md_section->setStatus($_POST[
'lif_status']);
1228 $this->md_section->update();
1235 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"),
true);
1236 $this->ctrl->redirect($this,
'listSection');
1244 if (!is_object($this->md_section = $this->md_obj->getGeneral())) {
1245 $this->md_section = $this->md_obj->addGeneral();
1246 $this->md_section->save();
1251 $tpl =
new ilTemplate(
'tpl.md_general.html',
true,
true,
'Services/MetaData');
1253 $this->ctrl->setReturn($this,
'listGeneral');
1254 $this->ctrl->setParameter($this,
'section',
'meta_general');
1255 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
1259 $tpl->setVariable(
"TXT_GENERAL", $this->lng->txt(
"meta_general"));
1260 $tpl->setVariable(
"TXT_IDENTIFIER", $this->lng->txt(
"meta_identifier"));
1261 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
1262 $tpl->setVariable(
"TXT_KEYWORD", $this->lng->txt(
"meta_keyword"));
1263 $tpl->setVariable(
"TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
1264 $tpl->setVariable(
"TXT_STRUCTURE", $this->lng->txt(
"meta_structure"));
1265 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
1266 $tpl->setVariable(
"TXT_ATOMIC", $this->lng->txt(
"meta_atomic"));
1267 $tpl->setVariable(
"TXT_COLLECTION", $this->lng->txt(
"meta_collection"));
1268 $tpl->setVariable(
"TXT_NETWORKED", $this->lng->txt(
"meta_networked"));
1269 $tpl->setVariable(
"TXT_HIERARCHICAL", $this->lng->txt(
"meta_hierarchical"));
1270 $tpl->setVariable(
"TXT_LINEAR", $this->lng->txt(
"meta_linear"));
1273 $tpl->setVariable(
"STRUCTURE_VAL_" . strtoupper($this->md_section->getStructure()),
" selected=selected");
1277 foreach ($ids = $this->md_section->getIdentifierIds() as $id) {
1278 $md_ide = $this->md_section->getIdentifier($id);
1282 $tpl->setCurrentBlock(
"id_head");
1283 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_IDENTIFIER", $this->lng->txt(
"meta_identifier"));
1284 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_CATALOG", $this->lng->txt(
"meta_catalog"));
1285 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_ENTRY", $this->lng->txt(
"meta_entry"));
1286 $tpl->setVariable(
"ROWSPAN_ID", count($ids));
1287 $tpl->parseCurrentBlock();
1291 if (count($ids) > 1) {
1292 $this->ctrl->setParameter($this,
'meta_index', $id);
1293 $this->ctrl->setParameter($this,
'meta_path',
'meta_identifier');
1295 if ($md_ide->getCatalog() !=
"ILIAS") {
1296 $tpl->setCurrentBlock(
"identifier_delete");
1297 $tpl->setVariable(
"IDENTIFIER_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1298 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1299 $tpl->parseCurrentBlock();
1303 $tpl->setCurrentBlock(
"identifier_loop");
1304 if ($md_ide->getCatalog() ==
"ILIAS") {
1305 $tpl->setVariable(
"DISABLE_IDENT",
' disabled="disabled" ');
1307 $tpl->setVariable(
"IDENTIFIER_LOOP_NO", $id);
1309 "IDENTIFIER_LOOP_VAL_IDENTIFIER_CATALOG",
1313 "IDENTIFIER_LOOP_VAL_IDENTIFIER_ENTRY",
1316 $tpl->parseCurrentBlock();
1322 foreach ($ids = $this->md_section->getLanguageIds() as $id) {
1323 $md_lan = $this->md_section->getLanguage($id);
1326 $tpl->setCurrentBlock(
"language_head");
1327 $tpl->setVariable(
"ROWSPAN_LANG", count($ids));
1328 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
1329 $tpl->parseCurrentBlock();
1333 if (count($ids) > 1) {
1334 $this->ctrl->setParameter($this,
'meta_index', $id);
1335 $this->ctrl->setParameter($this,
'meta_path',
'meta_language');
1337 $tpl->setCurrentBlock(
"language_delete");
1338 $tpl->setVariable(
"LANGUAGE_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1339 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
1340 $tpl->parseCurrentBlock();
1342 $tpl->setCurrentBlock(
"language_loop");
1344 'gen_language[' . $id .
'][language]',
1345 $md_lan->getLanguageCode()
1347 $tpl->parseCurrentBlock();
1351 $tpl->setVariable(
"TXT_TITLE", $this->lng->txt(
'title'));
1354 'gen_title_language',
1355 $this->md_section->getTitleLanguageCode()
1360 foreach ($ids = $this->md_section->getDescriptionIds() as $id) {
1361 $md_des = $this->md_section->getDescription($id);
1363 if (count($ids) > 1) {
1364 $this->ctrl->setParameter($this,
'meta_index', $id);
1365 $this->ctrl->setParameter($this,
'meta_path',
'meta_description');
1367 $tpl->setCurrentBlock(
"description_delete");
1368 $tpl->setVariable(
"DESCRIPTION_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1369 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
1370 $tpl->parseCurrentBlock();
1373 $tpl->setCurrentBlock(
"description_loop");
1374 $tpl->setVariable(
"DESCRIPTION_LOOP_NO", $id);
1375 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
1376 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
1378 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
1380 "gen_description[" . $id .
'][language]',
1381 $md_des->getDescriptionLanguageCode()
1383 $tpl->parseCurrentBlock();
1388 foreach ($ids = $this->md_section->getKeywordIds() as $id) {
1389 $md_key = $this->md_section->getKeyword($id);
1392 $tpl->setCurrentBlock(
"keyword_head");
1393 $tpl->setVariable(
"ROWSPAN_KEYWORD", count($ids));
1394 $tpl->setVariable(
"KEYWORD_LOOP_TXT_KEYWORD", $this->lng->txt(
"meta_keyword"));
1395 $tpl->parseCurrentBlock();
1400 if (count($ids) > 1) {
1401 $this->ctrl->setParameter($this,
'meta_index', $id);
1402 $this->ctrl->setParameter($this,
'meta_path',
'meta_keyword');
1404 $tpl->setCurrentBlock(
"keyword_delete");
1405 $tpl->setVariable(
"KEYWORD_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1406 $tpl->setVariable(
"KEYWORD_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
1407 $tpl->parseCurrentBlock();
1410 $tpl->setCurrentBlock(
"keyword_loop");
1411 $tpl->setVariable(
"KEYWORD_LOOP_NO", $id);
1412 $tpl->setVariable(
"KEYWORD_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
1414 $tpl->setVariable(
"KEYWORD_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
1416 "gen_keyword[" . $id .
'][language]',
1417 $md_key->getKeywordLanguageCode()
1420 $tpl->parseCurrentBlock();
1424 $tpl->setVariable(
"COVERAGE_LOOP_TXT_COVERAGE", $this->lng->txt(
'meta_coverage'));
1426 $tpl->setVariable(
"COVERAGE_LOOP_TXT_LANGUAGE", $this->lng->txt(
'meta_language'));
1428 'gen_coverage_language',
1429 $this->md_section->getCoverageLanguageCode()
1432 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
'save'));
1434 $this->tpl->setContent(
$tpl->get());
1442 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
1444 if (!strlen(trim(
$_POST[
'gen_title']))) {
1445 if ($this->md_obj->getObjType() !=
'sess') {
1453 $this->md_section = $this->md_obj->getGeneral();
1454 $this->md_section->setStructure(
$_POST[
'gen_structure']);
1459 $this->md_section->update();
1462 if (is_array(
$_POST[
'gen_identifier'])) {
1463 foreach (
$_POST[
'gen_identifier'] as $id =>
$data) {
1464 $md_ide = $this->md_section->getIdentifier($id);
1472 if (is_array(
$_POST[
'gen_language'])) {
1473 foreach (
$_POST[
'gen_language'] as $id =>
$data) {
1474 $md_lan = $this->md_section->getLanguage($id);
1480 if (is_array(
$_POST[
'gen_description'])) {
1481 foreach (
$_POST[
'gen_description'] as $id =>
$data) {
1482 $md_des = $this->md_section->getDescription($id);
1489 if (is_array(
$_POST[
'gen_keyword'])) {
1491 $md_key = $this->md_section->getKeyword($id);
1502 $this->ctrl->setParameter($this,
"section",
"meta_general");
1503 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"),
true);
1504 $this->ctrl->redirect($this,
'listSection');
1509 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
1512 $this->md_section = $this->md_obj->getTechnical();
1519 $this->md_section->update();
1522 if (is_array(
$_POST[
'met_format'])) {
1524 $md_for = $this->md_section->getFormat($id);
1530 if (is_array(
$_POST[
'met_location'])) {
1531 foreach (
$_POST[
'met_location'] as $id =>
$data) {
1532 $md_loc = $this->md_section->getLocation($id);
1538 if (is_array(
$_POST[
'met_re'])) {
1540 $md_re = $this->md_section->getRequirement($id);
1552 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
1563 $tpl =
new ilTemplate(
'tpl.md_technical.html',
true,
true,
'Services/MetaData');
1565 $this->ctrl->setParameter($this,
"section",
"meta_technical");
1566 if (!is_object($this->md_section = $this->md_obj->getTechnical())) {
1567 $tpl->setCurrentBlock(
"no_technical");
1568 $tpl->setVariable(
"TXT_NO_TECHNICAL", $this->lng->txt(
"meta_no_technical"));
1569 $tpl->setVariable(
"TXT_ADD_TECHNICAL", $this->lng->txt(
"meta_add"));
1570 $tpl->setVariable(
"ACTION_ADD_TECHNICAL", $this->ctrl->getLinkTarget($this,
"addSection"));
1571 $tpl->parseCurrentBlock();
1573 $this->tpl->setContent(
$tpl->get());
1576 $this->ctrl->setReturn($this,
'listTechnical');
1577 $this->ctrl->setParameter($this,
"meta_index", $this->md_section->getMetaId());
1579 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
1580 $tpl->setVariable(
"TXT_TECHNICAL", $this->lng->txt(
'meta_technical'));
1585 $this->ctrl->getLinkTarget($this,
"deleteSection")
1587 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
'delete'));
1593 foreach ($ids = $this->md_section->getFormatIds() as $id) {
1594 $md_for = &$this->md_section->getFormat($id);
1596 $tpl->setCurrentBlock(
"format_loop");
1598 $this->ctrl->setParameter($this,
'meta_index', $id);
1599 $this->ctrl->setParameter($this,
'meta_path',
'meta_format');
1600 $tpl->setVariable(
"FORMAT_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1601 $tpl->setVariable(
"FORMAT_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1603 $tpl->setVariable(
"FORMAT_LOOP_NO", $id);
1604 $tpl->setVariable(
"FORMAT_LOOP_TXT_FORMAT", $this->lng->txt(
'meta_format'));
1607 $tpl->parseCurrentBlock();
1610 $tpl->setVariable(
"SIZE_TXT_SIZE", $this->lng->txt(
'meta_size'));
1614 foreach ($ids = $this->md_section->getLocationIds() as $id) {
1615 $md_loc = &$this->md_section->getLocation($id);
1617 $tpl->setCurrentBlock(
"location_loop");
1619 $this->ctrl->setParameter($this,
'meta_index', $id);
1620 $this->ctrl->setParameter($this,
'meta_path',
'meta_location');
1621 $tpl->setVariable(
"LOCATION_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1622 $tpl->setVariable(
"LOCATION_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1624 $tpl->setVariable(
"LOCATION_LOOP_TXT_LOCATION", $this->lng->txt(
'meta_location'));
1625 $tpl->setVariable(
"LOCATION_LOOP_NO", $id);
1626 $tpl->setVariable(
"LOCATION_LOOP_TXT_TYPE", $this->lng->txt(
'meta_type'));
1630 "SEL_LOCATION_TYPE",
1632 $md_loc->getLocationType(),
1633 "met_location[" . $id .
"][Type]",
1634 array(0 => $this->lng->txt(
'meta_please_select'))
1637 $tpl->parseCurrentBlock();
1640 foreach ($ids = $this->md_section->getRequirementIds() as $id) {
1641 $md_re = &$this->md_section->getRequirement($id);
1643 $tpl->setCurrentBlock(
"requirement_loop");
1645 $this->ctrl->setParameter($this,
'meta_index', $id);
1646 $this->ctrl->setParameter($this,
'meta_path',
'meta_requirement');
1647 $tpl->setVariable(
"REQUIREMENT_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1648 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1650 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_REQUIREMENT", $this->lng->txt(
'meta_requirement'));
1651 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_TYPE", $this->lng->txt(
'meta_type'));
1652 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_OPERATINGSYSTEM", $this->lng->txt(
'meta_operating_system'));
1653 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_BROWSER", $this->lng->txt(
'meta_browser'));
1654 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_NAME", $this->lng->txt(
'meta_name'));
1655 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_MINIMUMVERSION", $this->lng->txt(
'meta_minimum_version'));
1656 $tpl->setVariable(
"REQUIREMENT_LOOP_TXT_MAXIMUMVERSION", $this->lng->txt(
'meta_maximum_version'));
1658 $tpl->setVariable(
"REQUIREMENT_LOOP_NO", $id);
1660 "REQUIREMENT_SEL_OS_NAME",
1662 $md_re->getOperatingSystemName(),
1663 "met_re[" . $id .
"][os][name]",
1664 array(0 => $this->lng->txt(
'meta_please_select'))
1668 "REQUIREMENT_SEL_BROWSER_NAME",
1670 $md_re->getBrowserName(),
1671 "met_re[" . $id .
"][browser][name]",
1672 array(0 => $this->lng->txt(
'meta_please_select'))
1677 "REQUIREMENT_LOOP_VAL_OPERATINGSYSTEM_MINIMUMVERSION",
1682 "REQUIREMENT_LOOP_VAL_OPERATINGSYSTEM_MAXIMUMVERSION",
1687 "REQUIREMENT_LOOP_VAL_BROWSER_MINIMUMVERSION",
1692 "REQUIREMENT_LOOP_VAL_BROWSER_MAXIMUMVERSION",
1695 $tpl->parseCurrentBlock();
1698 foreach ($ids = $this->md_section->getOrCompositeIds() as $or_id) {
1699 $md_or = &$this->md_section->getOrComposite($or_id);
1700 foreach ($ids = $md_or->getRequirementIds() as $id) {
1701 $md_re = &$this->md_section->getRequirement($id);
1703 $tpl->setCurrentBlock(
"orrequirement_loop");
1705 $this->ctrl->setParameter($this,
'meta_index', $id);
1706 $this->ctrl->setParameter($this,
'meta_path',
'meta_requirement');
1707 $tpl->setVariable(
"ORREQUIREMENT_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1708 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1710 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_REQUIREMENT", $this->lng->txt(
'meta_requirement'));
1711 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_TYPE", $this->lng->txt(
'meta_type'));
1712 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_OPERATINGSYSTEM", $this->lng->txt(
'meta_operating_system'));
1713 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_BROWSER", $this->lng->txt(
'meta_browser'));
1714 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_NAME", $this->lng->txt(
'meta_name'));
1715 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_MINIMUMVERSION", $this->lng->txt(
'meta_minimum_version'));
1716 $tpl->setVariable(
"ORREQUIREMENT_LOOP_TXT_MAXIMUMVERSION", $this->lng->txt(
'meta_maximum_version'));
1718 $tpl->setVariable(
"ORREQUIREMENT_LOOP_NO", $id);
1720 "ORREQUIREMENT_SEL_OS_NAME",
1722 $md_re->getOperatingSystemName(),
1723 "met_re[" . $id .
"][os][name]",
1724 array(0 => $this->lng->txt(
'meta_please_select'))
1728 "ORREQUIREMENT_SEL_BROWSER_NAME",
1730 $md_re->getBrowserName(),
1731 "met_re[" . $id .
"][browser][name]",
1732 array(0 => $this->lng->txt(
'meta_please_select'))
1737 "ORREQUIREMENT_LOOP_VAL_OPERATINGSYSTEM_MINIMUMVERSION",
1742 "ORREQUIREMENT_LOOP_VAL_OPERATINGSYSTEM_MAXIMUMVERSION",
1747 "ORREQUIREMENT_LOOP_VAL_BROWSER_MINIMUMVERSION",
1752 "ORREQUIREMENT_LOOP_VAL_BROWSER_MAXIMUMVERSION",
1755 $tpl->parseCurrentBlock();
1757 $tpl->setCurrentBlock(
"orcomposite_loop");
1759 $this->ctrl->setParameter($this,
'meta_index', $or_id);
1760 $this->ctrl->setParameter($this,
'meta_path',
'meta_or_composite');
1761 $this->ctrl->setParameter($this,
'meta_technical', $this->md_section->getMetaId());
1762 $tpl->setVariable(
"ORCOMPOSITE_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1763 $tpl->setVariable(
"ORCOMPOSITE_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1765 $tpl->setVariable(
"ORCOMPOSITE_LOOP_TXT_ORCOMPOSITE", $this->lng->txt(
'meta_or_composite'));
1766 $tpl->parseCurrentBlock();
1770 $tpl->setVariable(
"INSTALLATIONREMARKS_TXT_INSTALLATIONREMARKS", $this->lng->txt(
'meta_installation_remarks'));
1771 $tpl->setVariable(
"INSTALLATIONREMARKS_TXT_LANGUAGE", $this->lng->txt(
'meta_language'));
1775 "INSTALLATIONREMARKS_VAL_LANGUAGE",
1778 $this->md_section->getInstallationRemarksLanguageCode()
1784 "OTHERPLATTFORMREQUIREMENTS_TXT_OTHERPLATTFORMREQUIREMENTS",
1785 $this->lng->txt(
'meta_other_plattform_requirements')
1787 $tpl->setVariable(
"OTHERPLATTFORMREQUIREMENTS_TXT_LANGUAGE", $this->lng->txt(
'meta_language'));
1790 "OTHERPLATTFORMREQUIREMENTS_VAL",
1794 "OTHERPLATTFORMREQUIREMENTS_VAL_LANGUAGE",
1797 $this->md_section->getOtherPlatformRequirementsLanguageCode()
1802 $tpl->setVariable(
"DURATION_TXT_DURATION", $this->lng->txt(
'meta_duration'));
1805 $tpl->setCurrentBlock(
"technical");
1806 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
'save'));
1807 $tpl->parseCurrentBlock();
1809 $this->tpl->setContent(
$tpl->get());
1818 $tpl =
new ilTemplate(
'tpl.md_lifecycle.html',
true,
true,
'Services/MetaData');
1820 $this->ctrl->setParameter($this,
"section",
"meta_lifecycle");
1821 if (!is_object($this->md_section = $this->md_obj->getLifecycle())) {
1822 $tpl->setCurrentBlock(
"no_lifecycle");
1823 $tpl->setVariable(
"TXT_NO_LIFECYCLE", $this->lng->txt(
"meta_no_lifecycle"));
1824 $tpl->setVariable(
"TXT_ADD_LIFECYCLE", $this->lng->txt(
"meta_add"));
1825 $tpl->setVariable(
"ACTION_ADD_LIFECYCLE", $this->ctrl->getLinkTarget($this,
"addSection"));
1826 $tpl->parseCurrentBlock();
1828 $this->tpl->setContent(
$tpl->get());
1831 $this->ctrl->setReturn($this,
'listLifecycle');
1832 $this->ctrl->setParameter($this,
"meta_index", $this->md_section->getMetaId());
1834 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
1835 $tpl->setVariable(
"TXT_LIFECYCLE", $this->lng->txt(
'meta_lifecycle'));
1840 $this->ctrl->getLinkTarget($this,
"deleteSection")
1842 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
'delete'));
1848 $tpl->setVariable(
"TXT_STATUS", $this->lng->txt(
'meta_status'));
1850 $this->md_section->getStatus(),
1852 array(0 => $this->lng->txt(
'meta_please_select'))
1855 $tpl->setVariable(
"TXT_VERSION", $this->lng->txt(
'meta_version'));
1858 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
'meta_language'));
1861 $this->md_section->getVersionLanguageCode()
1865 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
1866 $md_con = $this->md_section->getContribute($con_id);
1868 if (count($ids) > 1) {
1869 $this->ctrl->setParameter($this,
'meta_index', $con_id);
1870 $this->ctrl->setParameter($this,
'meta_path',
'meta_contribute');
1872 $tpl->setCurrentBlock(
"contribute_delete");
1873 $tpl->setVariable(
"CONTRIBUTE_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1874 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1875 $tpl->parseCurrentBlock();
1878 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
1879 $md_ent = $md_con->getEntity($ent_id);
1881 $this->ctrl->setParameter($this,
'meta_path',
'meta_entity');
1883 if (count($ent_ids) > 1) {
1884 $tpl->setCurrentBlock(
"contribute_entity_delete");
1886 $this->ctrl->setParameter($this,
'meta_index', $ent_id);
1887 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
1888 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
1889 $tpl->parseCurrentBlock();
1892 $tpl->setCurrentBlock(
"contribute_entity_loop");
1894 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_CONTRIBUTE_NO", $con_id);
1895 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_NO", $ent_id);
1897 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_TXT_ENTITY", $this->lng->txt(
'meta_entity'));
1898 $tpl->parseCurrentBlock();
1900 $tpl->setCurrentBlock(
"contribute_loop");
1902 $this->ctrl->setParameter($this,
'section_element',
'meta_entity');
1903 $this->ctrl->setParameter($this,
'meta_index', $con_id);
1904 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_ACTION_ADD", $this->ctrl->getLinkTarget($this,
'addSectionElement'));
1906 "CONTRIBUTE_ENTITY_LOOP_TXT_ADD",
1907 $this->lng->txt(
'add') .
" " . $this->lng->txt(
'meta_entity')
1910 $tpl->setVariable(
"CONTRIBUTE_LOOP_ROWSPAN", 2 + count($ent_ids));
1911 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_CONTRIBUTE", $this->lng->txt(
'meta_contribute'));
1912 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_ROLE", $this->lng->txt(
'meta_role'));
1915 "met_contribute[" . $con_id .
"][Role]",
1916 array(0 => $this->lng->txt(
'meta_please_select'))
1918 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_DATE", $this->lng->txt(
'meta_date'));
1919 $tpl->setVariable(
"CONTRIBUTE_LOOP_NO", $con_id);
1922 $tpl->parseCurrentBlock();
1924 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
'save'));
1926 $this->tpl->setContent(
$tpl->get());
1931 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
1934 $this->md_section = $this->md_obj->getLifecycle();
1937 $this->md_section->setStatus(
$_POST[
'lif_status']);
1938 $this->md_section->update();
1941 if (is_array(
$_POST[
'met_identifier'])) {
1942 foreach (
$_POST[
'met_identifier'] as $id =>
$data) {
1943 $md_ide = $this->md_section->getIdentifier($id);
1950 if (is_array(
$_POST[
'met_contribute'])) {
1951 foreach (
$_POST[
'met_contribute'] as $id =>
$data) {
1952 $md_con = &$this->md_section->getContribute($id);
1957 if (is_array(
$_POST[
'met_entity'][$id])) {
1958 foreach (
$_POST[
'met_entity'][$id] as $ent_id =>
$data) {
1959 $md_ent = &$md_con->getEntity($ent_id);
1967 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
1980 $tpl =
new ilTemplate(
'tpl.md_meta_metadata.html',
true,
true,
'Services/MetaData');
1982 $this->ctrl->setParameter($this,
"section",
"meta_meta_metadata");
1983 if (!is_object($this->md_section = $this->md_obj->getMetaMetadata())) {
1984 $tpl->setCurrentBlock(
"no_meta_meta");
1985 $tpl->setVariable(
"TXT_NO_META_META", $this->lng->txt(
"meta_no_meta_metadata"));
1986 $tpl->setVariable(
"TXT_ADD_META_META", $this->lng->txt(
"meta_add"));
1987 $tpl->setVariable(
"ACTION_ADD_META_META", $this->ctrl->getLinkTarget($this,
"addSection"));
1988 $tpl->parseCurrentBlock();
1990 $this->tpl->setContent(
$tpl->get());
1993 $this->ctrl->setReturn($this,
'listMetaMetaData');
1994 $this->ctrl->setParameter($this,
"meta_index", $this->md_section->getMetaId());
1996 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
1997 $tpl->setVariable(
"TXT_META_METADATA", $this->lng->txt(
'meta_meta_metadata'));
2002 $this->ctrl->getLinkTarget($this,
"deleteSection")
2004 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
'delete'));
2009 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
'meta_language'));
2011 $tpl->setVariable(
"VAL_LANGUAGE", $this->
__showLanguageSelect(
'met_language', $this->md_section->getLanguageCode()));
2012 $tpl->setVariable(
"TXT_METADATASCHEME", $this->lng->txt(
'meta_metadatascheme'));
2013 $tpl->setVariable(
"VAL_METADATASCHEME", $this->md_section->getMetaDataScheme());
2017 foreach ($ids = $this->md_section->getIdentifierIds() as $id) {
2018 $md_ide = $this->md_section->getIdentifier($id);
2020 if (count($ids) > 1) {
2021 $this->ctrl->setParameter($this,
'meta_index', $id);
2022 $this->ctrl->setParameter($this,
'meta_path',
'meta_identifier');
2024 $tpl->setCurrentBlock(
"identifier_delete");
2025 $tpl->setVariable(
"IDENTIFIER_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
2026 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
2027 $tpl->parseCurrentBlock();
2030 $tpl->setCurrentBlock(
"identifier_loop");
2031 $tpl->setVariable(
"IDENTIFIER_LOOP_NO", $id);
2032 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_IDENTIFIER", $this->lng->txt(
"meta_identifier"));
2033 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_CATALOG", $this->lng->txt(
"meta_catalog"));
2035 "IDENTIFIER_LOOP_VAL_IDENTIFIER_CATALOG",
2038 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_ENTRY", $this->lng->txt(
"meta_entry"));
2040 "IDENTIFIER_LOOP_VAL_IDENTIFIER_ENTRY",
2043 $tpl->parseCurrentBlock();
2047 foreach (($ids = $this->md_section->getContributeIds()) as $con_id) {
2048 $md_con = $this->md_section->getContribute($con_id);
2050 if (count($ids) > 1) {
2051 $this->ctrl->setParameter($this,
'meta_index', $con_id);
2052 $this->ctrl->setParameter($this,
'meta_path',
'meta_contribute');
2054 $tpl->setCurrentBlock(
"contribute_delete");
2055 $tpl->setVariable(
"CONTRIBUTE_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
2056 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
2057 $tpl->parseCurrentBlock();
2060 foreach ($ent_ids = $md_con->getEntityIds() as $ent_id) {
2061 $md_ent = $md_con->getEntity($ent_id);
2063 $this->ctrl->setParameter($this,
'meta_path',
'meta_entity');
2065 if (count($ent_ids) > 1) {
2066 $tpl->setCurrentBlock(
"contribute_entity_delete");
2068 $this->ctrl->setParameter($this,
'meta_index', $ent_id);
2069 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_ACTION_DELETE", $this->ctrl->getLinkTarget($this,
'deleteElement'));
2070 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_TXT_DELETE", $this->lng->txt(
'delete'));
2071 $tpl->parseCurrentBlock();
2074 $tpl->setCurrentBlock(
"contribute_entity_loop");
2076 $this->ctrl->setParameter($this,
'section_element',
'meta_entity');
2077 $this->ctrl->setParameter($this,
'meta_index', $con_id);
2078 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_ACTION_ADD", $this->ctrl->getLinkTarget($this,
'addSectionElement'));
2079 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_TXT_ADD", $this->lng->txt(
'add'));
2082 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_CONTRIBUTE_NO", $con_id);
2083 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_NO", $ent_id);
2085 $tpl->setVariable(
"CONTRIBUTE_ENTITY_LOOP_TXT_ENTITY", $this->lng->txt(
'meta_entity'));
2086 $tpl->parseCurrentBlock();
2088 $tpl->setCurrentBlock(
"contribute_loop");
2089 $tpl->setVariable(
"CONTRIBUTE_LOOP_ROWSPAN", 2 + count($ent_ids));
2090 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_CONTRIBUTE", $this->lng->txt(
'meta_contribute'));
2091 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_ROLE", $this->lng->txt(
'meta_role'));
2094 "met_contribute[" . $con_id .
"][Role]",
2095 array(0 => $this->lng->txt(
'meta_please_select'))
2097 $tpl->setVariable(
"CONTRIBUTE_LOOP_TXT_DATE", $this->lng->txt(
'meta_date'));
2098 $tpl->setVariable(
"CONTRIBUTE_LOOP_NO", $con_id);
2101 $tpl->parseCurrentBlock();
2103 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
'save'));
2105 $this->tpl->setContent(
$tpl->get());
2111 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
2114 $this->md_section = $this->md_obj->getMetaMetadata();
2116 $this->md_section->update();
2119 if (is_array(
$_POST[
'met_identifier'])) {
2120 foreach (
$_POST[
'met_identifier'] as $id =>
$data) {
2121 $md_ide = $this->md_section->getIdentifier($id);
2128 if (is_array(
$_POST[
'met_contribute'])) {
2129 foreach (
$_POST[
'met_contribute'] as $id =>
$data) {
2130 $md_con = &$this->md_section->getContribute($id);
2135 if (is_array(
$_POST[
'met_entity'][$id])) {
2136 foreach (
$_POST[
'met_entity'][$id] as $ent_id =>
$data) {
2137 $md_ent = &$md_con->getEntity($ent_id);
2145 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
2158 $tpl =
new ilTemplate(
'tpl.md_rights.html',
true,
true,
'Services/MetaData');
2160 if (!is_object($this->md_section = $this->md_obj->getRights())) {
2161 $tpl->setCurrentBlock(
"no_rights");
2162 $tpl->setVariable(
"TXT_NO_RIGHTS", $this->lng->txt(
"meta_no_rights"));
2163 $tpl->setVariable(
"TXT_ADD_RIGHTS", $this->lng->txt(
"meta_add"));
2164 $this->ctrl->setParameter($this,
"section",
"meta_rights");
2166 "ACTION_ADD_RIGHTS",
2167 $this->ctrl->getLinkTarget($this,
"addSection")
2169 $tpl->parseCurrentBlock();
2171 $this->ctrl->setReturn($this,
'listRights');
2172 $this->ctrl->setParameter($this,
'section',
'meta_rights');
2173 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
2175 $tpl->setVariable(
"TXT_RIGHTS", $this->lng->txt(
"meta_rights"));
2176 $tpl->setVariable(
"TXT_COST", $this->lng->txt(
"meta_cost"));
2177 $tpl->setVariable(
"TXT_COPYRIGHTANDOTHERRESTRICTIONS", $this->lng->txt(
"meta_copyright_and_other_restrictions"));
2178 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
2179 $tpl->setVariable(
"TXT_YES", $this->lng->txt(
"meta_yes"));
2180 $tpl->setVariable(
"TXT_NO", $this->lng->txt(
"meta_no"));
2182 $this->ctrl->setParameter($this,
"section",
"meta_rights");
2183 $this->ctrl->setParameter($this,
"meta_index", $this->md_section->getMetaId());
2186 $this->ctrl->getLinkTarget($this,
"deleteSection")
2189 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
"meta_delete"));
2191 $tpl->setVariable(
"VAL_COST_" . strtoupper($this->md_section->getCosts()),
" selected");
2192 $tpl->setVariable(
"VAL_COPYRIGHTANDOTHERRESTRICTIONS_" .
2193 strtoupper($this->md_section->getCopyrightAndOtherRestrictions()),
" selected");
2195 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
2196 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
2198 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2200 "DESCRIPTION_LOOP_VAL_LANGUAGE",
2202 'rights[DescriptionLanguage]',
2203 $this->md_section->getDescriptionLanguageCode()
2207 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
"save"));
2209 $tpl->setCurrentBlock(
"rights");
2210 $tpl->parseCurrentBlock();
2213 $this->tpl->setContent(
$tpl->get());
2218 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
2221 $this->md_section = $this->md_obj->getRights();
2222 $this->md_section->setCosts(
$_POST[
'rights'][
'Cost']);
2223 $this->md_section->setCopyrightAndOtherRestrictions(
$_POST[
'rights'][
'CopyrightAndOtherRestrictions']);
2224 $this->md_section->setDescriptionLanguage(
new ilMDLanguageItem(
$_POST[
'rights'][
'DescriptionLanguage']));
2226 $this->md_section->update();
2229 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
2240 $tpl =
new ilTemplate(
'tpl.md_educational.html',
true,
true,
'Services/MetaData');
2242 if (!is_object($this->md_section = $this->md_obj->getEducational())) {
2243 $tpl->setCurrentBlock(
"no_educational");
2244 $tpl->setVariable(
"TXT_NO_EDUCATIONAL", $this->lng->txt(
"meta_no_educational"));
2245 $tpl->setVariable(
"TXT_ADD_EDUCATIONAL", $this->lng->txt(
"meta_add"));
2246 $this->ctrl->setParameter($this,
"section",
"meta_educational");
2248 "ACTION_ADD_EDUCATIONAL",
2249 $this->ctrl->getLinkTarget($this,
"addSection")
2251 $tpl->parseCurrentBlock();
2253 $this->ctrl->setReturn($this,
'listEducational');
2254 $this->ctrl->setParameter($this,
'section',
'meta_educational');
2255 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
2257 $this->ctrl->setParameter($this,
"meta_index", $this->md_section->getMetaId());
2260 $this->ctrl->getLinkTarget($this,
"deleteSection")
2263 $tpl->setVariable(
"TXT_EDUCATIONAL", $this->lng->txt(
"meta_educational"));
2264 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
"meta_delete"));
2265 $tpl->setVariable(
"TXT_NEW_ELEMENT", $this->lng->txt(
"meta_new_element"));
2266 $tpl->setVariable(
"TXT_TYPICALAGERANGE", $this->lng->txt(
"meta_typical_age_range"));
2267 $tpl->setVariable(
"TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
2268 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2269 $tpl->setVariable(
"TXT_ADD", $this->lng->txt(
"meta_add"));
2270 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
2272 $tpl->setVariable(
"TXT_INTERACTIVITYTYPE", $this->lng->txt(
"meta_interactivity_type"));
2273 $tpl->setVariable(
"TXT_LEARNINGRESOURCETYPE", $this->lng->txt(
"meta_learning_resource_type"));
2274 $tpl->setVariable(
"TXT_INTERACTIVITYLEVEL", $this->lng->txt(
"meta_interactivity_level"));
2275 $tpl->setVariable(
"TXT_SEMANTICDENSITY", $this->lng->txt(
"meta_semantic_density"));
2276 $tpl->setVariable(
"TXT_INTENDEDENDUSERROLE", $this->lng->txt(
"meta_intended_end_user_role"));
2277 $tpl->setVariable(
"TXT_CONTEXT", $this->lng->txt(
"meta_context"));
2278 $tpl->setVariable(
"TXT_DIFFICULTY", $this->lng->txt(
"meta_difficulty"));
2280 $tpl->setVariable(
"VAL_INTERACTIVITYTYPE_" . strtoupper($this->md_section->getInteractivityType()),
" selected");
2281 $tpl->setVariable(
"VAL_LEARNINGRESOURCETYPE_" . strtoupper($this->md_section->getLearningResourceType()),
" selected");
2282 $tpl->setVariable(
"VAL_INTERACTIVITYLEVEL_" . strtoupper($this->md_section->getInteractivityLevel()),
" selected");
2283 $tpl->setVariable(
"VAL_SEMANTICDENSITY_" . strtoupper($this->md_section->getSemanticDensity()),
" selected");
2284 $tpl->setVariable(
"VAL_INTENDEDENDUSERROLE_" . strtoupper($this->md_section->getIntendedEndUserRole()),
" selected");
2285 $tpl->setVariable(
"VAL_CONTEXT_" . strtoupper($this->md_section->getContext()),
" selected");
2286 $tpl->setVariable(
"VAL_DIFFICULTY_" . strtoupper($this->md_section->getDifficulty()),
" selected");
2287 #$tpl->setVariable("VAL_TYPICALLEARNINGTIME", ilUtil::prepareFormOutput($this->md_section->getTypicalLearningTime())); 2289 $tpl->setVariable(
"TXT_ACTIVE", $this->lng->txt(
"meta_active"));
2290 $tpl->setVariable(
"TXT_EXPOSITIVE", $this->lng->txt(
"meta_expositive"));
2291 $tpl->setVariable(
"TXT_MIXED", $this->lng->txt(
"meta_mixed"));
2292 $tpl->setVariable(
"TXT_EXERCISE", $this->lng->txt(
"meta_exercise"));
2293 $tpl->setVariable(
"TXT_SIMULATION", $this->lng->txt(
"meta_simulation"));
2294 $tpl->setVariable(
"TXT_QUESTIONNAIRE", $this->lng->txt(
"meta_questionnaire"));
2295 $tpl->setVariable(
"TXT_DIAGRAMM", $this->lng->txt(
"meta_diagramm"));
2296 $tpl->setVariable(
"TXT_FIGURE", $this->lng->txt(
"meta_figure"));
2297 $tpl->setVariable(
"TXT_GRAPH", $this->lng->txt(
"meta_graph"));
2298 $tpl->setVariable(
"TXT_INDEX", $this->lng->txt(
"meta_index"));
2299 $tpl->setVariable(
"TXT_SLIDE", $this->lng->txt(
"meta_slide"));
2300 $tpl->setVariable(
"TXT_TABLE", $this->lng->txt(
"meta_table"));
2301 $tpl->setVariable(
"TXT_NARRATIVETEXT", $this->lng->txt(
"meta_narrative_text"));
2302 $tpl->setVariable(
"TXT_EXAM", $this->lng->txt(
"meta_exam"));
2303 $tpl->setVariable(
"TXT_EXPERIMENT", $this->lng->txt(
"meta_experiment"));
2304 $tpl->setVariable(
"TXT_PROBLEMSTATEMENT", $this->lng->txt(
"meta_problem_statement"));
2305 $tpl->setVariable(
"TXT_SELFASSESSMENT", $this->lng->txt(
"meta_self_assessment"));
2306 $tpl->setVariable(
"TXT_LECTURE", $this->lng->txt(
"meta_lecture"));
2307 $tpl->setVariable(
"TXT_VERYLOW", $this->lng->txt(
"meta_very_low"));
2308 $tpl->setVariable(
"TXT_LOW", $this->lng->txt(
"meta_low"));
2309 $tpl->setVariable(
"TXT_MEDIUM", $this->lng->txt(
"meta_medium"));
2310 $tpl->setVariable(
"TXT_HIGH", $this->lng->txt(
"meta_high"));
2311 $tpl->setVariable(
"TXT_VERYHIGH", $this->lng->txt(
"meta_very_high"));
2312 $tpl->setVariable(
"TXT_TEACHER", $this->lng->txt(
"meta_teacher"));
2313 $tpl->setVariable(
"TXT_AUTHOR", $this->lng->txt(
"meta_author"));
2314 $tpl->setVariable(
"TXT_LEARNER", $this->lng->txt(
"meta_learner"));
2315 $tpl->setVariable(
"TXT_MANAGER", $this->lng->txt(
"meta_manager"));
2316 $tpl->setVariable(
"TXT_SCHOOL", $this->lng->txt(
"meta_school"));
2317 $tpl->setVariable(
"TXT_HIGHEREDUCATION", $this->lng->txt(
"meta_higher_education"));
2318 $tpl->setVariable(
"TXT_TRAINING", $this->lng->txt(
"meta_training"));
2319 $tpl->setVariable(
"TXT_OTHER", $this->lng->txt(
"meta_other"));
2320 $tpl->setVariable(
"TXT_VERYEASY", $this->lng->txt(
"meta_very_easy"));
2321 $tpl->setVariable(
"TXT_EASY", $this->lng->txt(
"meta_easy"));
2322 $tpl->setVariable(
"TXT_DIFFICULT", $this->lng->txt(
"meta_difficult"));
2323 $tpl->setVariable(
"TXT_VERYDIFFICULT", $this->lng->txt(
"meta_very_difficult"));
2324 $tpl->setVariable(
"TXT_TYPICALLEARNINGTIME", $this->lng->txt(
"meta_typical_learning_time"));
2328 $tlt = array(0,0,0,0,0);
2331 include_once
'Services/MetaData/classes/class.ilMDUtils.php';
2334 if (strlen($this->md_section->getTypicalLearningTime())) {
2335 $tlt = array(0,0,0,0,0);
2340 $tpl->setVariable(
"TXT_MONTH", $this->lng->txt(
'md_months'));
2344 $tpl->setVariable(
"TXT_DAYS", $this->lng->txt(
'md_days'));
2345 $tpl->setVariable(
"TXT_TIME", $this->lng->txt(
'md_time'));
2347 $tpl->setVariable(
"TXT_TYPICAL_LEARN_TIME", $this->lng->txt(
'meta_typical_learning_time'));
2350 $tlt[4] ?
false :
true,
2356 $tpl->setVariable(
"TLT_HINT", $tlt[4] ?
'(hh:mm:ss)' :
'(hh:mm)');
2359 $tpl->setCurrentBlock(
"tlt_not_valid");
2360 $tpl->setVariable(
"TXT_CURRENT_VAL", $this->lng->txt(
'meta_current_value'));
2361 $tpl->setVariable(
"TLT", $this->md_section->getTypicalLearningTime());
2362 $tpl->setVariable(
"INFO_TLT_NOT_VALID", $this->lng->txt(
'meta_info_tlt_not_valid'));
2363 $tpl->parseCurrentBlock();
2369 foreach ($ids = $this->md_section->getTypicalAgeRangeIds() as $id) {
2370 $md_age = $this->md_section->getTypicalAgeRange($id);
2373 if (is_object($md_age)) {
2375 $tpl->setCurrentBlock(
"agerange_head");
2377 "TYPICALAGERANGE_LOOP_TXT_TYPICALAGERANGE",
2378 $this->lng->txt(
"meta_typical_age_range")
2380 $tpl->setVariable(
"ROWSPAN_AGERANGE", count($ids));
2381 $tpl->parseCurrentBlock();
2386 $this->ctrl->setParameter($this,
'meta_index', $id);
2387 $this->ctrl->setParameter($this,
'meta_path',
'educational_typical_age_range');
2389 $tpl->setCurrentBlock(
"typicalagerange_delete");
2391 "TYPICALAGERANGE_LOOP_ACTION_DELETE",
2392 $this->ctrl->getLinkTarget($this,
"deleteElement")
2394 $tpl->setVariable(
"TYPICALAGERANGE_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2395 $tpl->parseCurrentBlock();
2397 $tpl->setCurrentBlock(
"typicalagerange_loop");
2398 $tpl->setVariable(
"TYPICALAGERANGE_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
2400 $tpl->setVariable(
"TYPICALAGERANGE_LOOP_NO", $id);
2401 $tpl->setVariable(
"TYPICALAGERANGE_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2403 "TYPICALAGERANGE_LOOP_VAL_LANGUAGE",
2405 'educational[TypicalAgeRange][' . $id .
'][Language]',
2406 $md_age->getTypicalAgeRangeLanguageCode()
2409 $this->ctrl->setParameter($this,
"section_element",
"educational_typical_age_range");
2411 "TYPICALAGERANGE_LOOP_ACTION_ADD",
2412 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2414 $tpl->setVariable(
"TYPICALAGERANGE_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2415 $tpl->parseCurrentBlock();
2421 foreach ($ids = $this->md_section->getDescriptionIds() as $id) {
2423 $tpl->setCurrentBlock(
"desc_head");
2424 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
2425 $tpl->setVariable(
"ROWSPAN_DESC", count($ids));
2426 $tpl->parseCurrentBlock();
2430 $md_des = $this->md_section->getDescription($id);
2432 $this->ctrl->setParameter($this,
'meta_index', $id);
2433 $this->ctrl->setParameter($this,
'meta_path',
'educational_description');
2435 $tpl->setCurrentBlock(
"description_loop");
2436 $tpl->setVariable(
"DESCRIPTION_LOOP_NO", $id);
2437 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
2439 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2441 "DESCRIPTION_LOOP_VAL_LANGUAGE",
2443 'educational[Description][' . $id .
'][Language]',
2444 $md_des->getDescriptionLanguageCode()
2448 "DESCRIPTION_LOOP_ACTION_DELETE",
2449 $this->ctrl->getLinkTarget($this,
"deleteElement")
2451 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2452 $this->ctrl->setParameter($this,
"section_element",
"educational_description");
2454 "DESCRIPTION_LOOP_ACTION_ADD",
2455 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2457 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2458 $tpl->parseCurrentBlock();
2464 foreach ($ids = $this->md_section->getLanguageIds() as $id) {
2466 $tpl->setCurrentBlock(
"language_head");
2467 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2468 $tpl->setVariable(
"ROWSPAN_LANG", count($ids));
2469 $tpl->parseCurrentBlock();
2473 $md_lang = $this->md_section->getLanguage($id);
2475 $this->ctrl->setParameter($this,
'meta_index', $id);
2476 $this->ctrl->setParameter($this,
'meta_path',
'educational_language');
2478 $tpl->setCurrentBlock(
"language_loop");
2480 "LANGUAGE_LOOP_VAL_LANGUAGE",
2482 'educational[Language][' . $id .
']',
2483 $md_lang->getLanguageCode()
2488 "LANGUAGE_LOOP_ACTION_DELETE",
2489 $this->ctrl->getLinkTarget($this,
"deleteElement")
2491 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2492 $this->ctrl->setParameter($this,
"section_element",
"educational_language");
2494 "LANGUAGE_LOOP_ACTION_ADD",
2495 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2497 $tpl->setVariable(
"LANGUAGE_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2498 $tpl->parseCurrentBlock();
2501 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
"save"));
2503 $tpl->setCurrentBlock(
"educational");
2504 $tpl->parseCurrentBlock();
2507 $this->tpl->setContent(
$tpl->get());
2512 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
2515 $this->md_section = $this->md_obj->getEducational();
2516 $this->md_section->setInteractivityType(
$_POST[
'educational'][
'InteractivityType']);
2517 $this->md_section->setLearningResourceType(
$_POST[
'educational'][
'LearningResourceType']);
2518 $this->md_section->setInteractivityLevel(
$_POST[
'educational'][
'InteractivityLevel']);
2519 $this->md_section->setSemanticDensity(
$_POST[
'educational'][
'SemanticDensity']);
2520 $this->md_section->setIntendedEndUserRole(
$_POST[
'educational'][
'IntendedEndUserRole']);
2521 $this->md_section->setContext(
$_POST[
'educational'][
'Context']);
2522 $this->md_section->setDifficulty(
$_POST[
'educational'][
'Difficulty']);
2529 $this->md_section->setPhysicalTypicalLearningTime(
2530 (
int) $_POST[
'tlt'][
'mo'],
2531 (
int) $_POST[
'tlt'][
'd'],
2532 (
int) $_POST[
'tlt'][
'h'],
2533 (
int) $_POST[
'tlt'][
'm'],
2534 (
int) $_POST[
'tlt'][
's']
2537 $this->md_section->setTypicalLearningTime(
'');
2543 foreach ($ids = $this->md_section->getTypicalAgeRangeIds() as $id) {
2544 $md_age = $this->md_section->getTypicalAgeRange($id);
2545 $md_age->setTypicalAgeRange(
ilUtil::stripSlashes($_POST[
'educational'][
'TypicalAgeRange'][$id][
'Value']));
2546 $md_age->setTypicalAgeRangeLanguage(
2547 new ilMDLanguageItem($_POST[
'educational'][
'TypicalAgeRange'][$id][
'Language'])
2553 foreach ($ids = $this->md_section->getDescriptionIds() as $id) {
2554 $md_des = $this->md_section->getDescription($id);
2555 $md_des->setDescription(
ilUtil::stripSlashes($_POST[
'educational'][
'Description'][$id][
'Value']));
2556 $md_des->setDescriptionLanguage(
2557 new ilMDLanguageItem($_POST[
'educational'][
'Description'][$id][
'Language'])
2563 foreach ($ids = $this->md_section->getLanguageIds() as $id) {
2564 $md_lang = $this->md_section->getLanguage($id);
2565 $md_lang->setLanguage(
2571 $this->md_section->update();
2574 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
2585 $tpl =
new ilTemplate(
'tpl.md_relation.html',
true,
true,
'Services/MetaData');
2587 $rel_ids = $this->md_obj->getRelationIds();
2588 if (!is_array($rel_ids) || count($rel_ids) == 0) {
2589 $tpl->setCurrentBlock(
"no_relation");
2590 $tpl->setVariable(
"TXT_NO_RELATION", $this->lng->txt(
"meta_no_relation"));
2591 $tpl->setVariable(
"TXT_ADD_RELATION", $this->lng->txt(
"meta_add"));
2592 $this->ctrl->setParameter($this,
"section",
"meta_relation");
2594 "ACTION_ADD_RELATION",
2595 $this->ctrl->getLinkTarget($this,
"addSection")
2597 $tpl->parseCurrentBlock();
2599 foreach ($rel_ids as $rel_id) {
2600 $this->md_section = $this->md_obj->getRelation($rel_id);
2602 $this->ctrl->setParameter($this,
'meta_index', $rel_id);
2603 $this->ctrl->setParameter($this,
"section",
"meta_relation");
2606 $res_ids = $this->md_section->getIdentifier_Ids();
2607 foreach ($res_ids as $res_id) {
2608 $ident = $this->md_section->getIdentifier_($res_id);
2609 $this->ctrl->setParameter($this,
"meta_index", $res_id);
2611 if (count($res_ids) > 1) {
2612 $tpl->setCurrentBlock(
"identifier_delete");
2613 $this->ctrl->setParameter($this,
"meta_path",
"relation_resource_identifier");
2615 "IDENTIFIER_LOOP_ACTION_DELETE",
2616 $this->ctrl->getLinkTarget($this,
"deleteElement")
2618 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2619 $tpl->parseCurrentBlock();
2622 $tpl->setCurrentBlock(
"identifier_loop");
2624 $tpl->setVariable(
"IDENTIFIER_LOOP_NO", $res_id);
2625 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_IDENTIFIER", $this->lng->txt(
"meta_identifier"));
2626 $this->ctrl->setParameter($this,
'meta_index', $rel_id);
2627 $this->ctrl->setParameter($this,
"section_element",
"relation_resource_identifier");
2629 "IDENTIFIER_LOOP_ACTION_ADD",
2630 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2632 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2633 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_ENTRY", $this->lng->txt(
"meta_entry"));
2634 $tpl->setVariable(
"IDENTIFIER_LOOP_TXT_CATALOG", $this->lng->txt(
"meta_catalog"));
2636 "IDENTIFIER_LOOP_VAL_CATALOG",
2640 "IDENTIFIER_LOOP_VAL_ENTRY",
2643 $tpl->parseCurrentBlock();
2647 $res_dess = $this->md_section->getDescriptionIds();
2648 foreach ($res_dess as $res_des) {
2649 $des = $this->md_section->getDescription($res_des);
2650 $this->ctrl->setParameter($this,
"meta_index", $res_des);
2652 if (count($res_dess) > 1) {
2653 $tpl->setCurrentBlock(
"description_delete");
2654 $this->ctrl->setParameter($this,
"meta_path",
"relation_resource_description");
2656 "DESCRIPTION_LOOP_ACTION_DELETE",
2657 $this->ctrl->getLinkTarget($this,
"deleteElement")
2659 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2660 $tpl->parseCurrentBlock();
2663 $tpl->setCurrentBlock(
"description_loop");
2664 $tpl->setVariable(
"DESCRIPTION_LOOP_NO", $res_des);
2665 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
2666 $this->ctrl->setParameter($this,
'meta_index', $rel_id);
2667 $this->ctrl->setParameter($this,
"section_element",
"relation_resource_description");
2669 "DESCRIPTION_LOOP_ACTION_ADD",
2670 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2672 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2673 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
2674 $tpl->setVariable(
"DESCRIPTION_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2676 "DESCRIPTION_LOOP_VAL",
2680 "DESCRIPTION_LOOP_VAL_LANGUAGE",
2682 'relation[Resource][Description][' . $res_des .
'][Language]',
2683 $des->getDescriptionLanguageCode()
2686 $tpl->parseCurrentBlock();
2689 $tpl->setCurrentBlock(
"relation_loop");
2690 $tpl->setVariable(
"REL_ID", $rel_id);
2691 $tpl->setVariable(
"TXT_RELATION", $this->lng->txt(
"meta_relation"));
2692 $this->ctrl->setParameter($this,
"meta_index", $this->md_section->getMetaId());
2695 $this->ctrl->getLinkTarget($this,
"deleteSection")
2697 $this->ctrl->setParameter($this,
"section",
"meta_relation");
2700 $this->ctrl->getLinkTarget($this,
"addSection")
2702 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
"meta_delete"));
2703 $tpl->setVariable(
"TXT_ADD", $this->lng->txt(
"meta_add"));
2704 $tpl->setVariable(
"TXT_NEW_ELEMENT", $this->lng->txt(
"meta_new_element"));
2705 $tpl->setVariable(
"TXT_KIND", $this->lng->txt(
"meta_kind"));
2706 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
2707 $tpl->setVariable(
"TXT_ISPARTOF", $this->lng->txt(
"meta_is_part_of"));
2708 $tpl->setVariable(
"TXT_HASPART", $this->lng->txt(
"meta_has_part"));
2709 $tpl->setVariable(
"TXT_ISVERSIONOF", $this->lng->txt(
"meta_is_version_of"));
2710 $tpl->setVariable(
"TXT_HASVERSION", $this->lng->txt(
"meta_has_version"));
2711 $tpl->setVariable(
"TXT_ISFORMATOF", $this->lng->txt(
"meta_is_format_of"));
2712 $tpl->setVariable(
"TXT_HASFORMAT", $this->lng->txt(
"meta_has_format"));
2713 $tpl->setVariable(
"TXT_REFERENCES", $this->lng->txt(
"meta_references"));
2714 $tpl->setVariable(
"TXT_ISREFERENCEDBY", $this->lng->txt(
"meta_is_referenced_by"));
2715 $tpl->setVariable(
"TXT_ISBASEDON", $this->lng->txt(
"meta_is_based_on"));
2716 $tpl->setVariable(
"TXT_ISBASISFOR", $this->lng->txt(
"meta_is_basis_for"));
2717 $tpl->setVariable(
"TXT_REQUIRES", $this->lng->txt(
"meta_requires"));
2718 $tpl->setVariable(
"TXT_ISREQUIREDBY", $this->lng->txt(
"meta_is_required_by"));
2719 $tpl->setVariable(
"TXT_RESOURCE", $this->lng->txt(
"meta_resource"));
2720 $tpl->setVariable(
"VAL_KIND_" . strtoupper($this->md_section->getKind()),
" selected");
2721 $tpl->parseCurrentBlock();
2724 $tpl->setCurrentBlock(
"relation");
2725 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
2726 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
"save"));
2727 $tpl->parseCurrentBlock();
2730 $this->tpl->setContent(
$tpl->get());
2735 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
2738 foreach ($ids = $this->md_obj->getRelationIds() as $id) {
2740 $relation = $this->md_obj->getRelation($id);
2741 $relation->setKind(
$_POST[
'relation'][$id][
'Kind']);
2743 $relation->update();
2746 $res_idents = $relation->getIdentifier_Ids();
2747 foreach ($res_idents as $res_id) {
2748 $ident = $relation->getIdentifier_($res_id);
2755 $res_dess = $relation->getDescriptionIds();
2756 foreach ($res_dess as $res_des) {
2757 $des = $relation->getDescription($res_des);
2759 $des->setDescriptionLanguage(
2767 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
2778 $tpl =
new ilTemplate(
'tpl.md_annotation.html',
true,
true,
'Services/MetaData');
2780 $anno_ids = $this->md_obj->getAnnotationIds();
2781 if (!is_array($anno_ids) || count($anno_ids) == 0) {
2782 $tpl->setCurrentBlock(
"no_annotation");
2783 $tpl->setVariable(
"TXT_NO_ANNOTATION", $this->lng->txt(
"meta_no_annotation"));
2784 $tpl->setVariable(
"TXT_ADD_ANNOTATION", $this->lng->txt(
"meta_add"));
2785 $this->ctrl->setParameter($this,
"section",
"meta_annotation");
2787 "ACTION_ADD_ANNOTATION",
2788 $this->ctrl->getLinkTarget($this,
"addSection")
2790 $tpl->parseCurrentBlock();
2792 foreach ($anno_ids as $anno_id) {
2793 $this->ctrl->setParameter($this,
'meta_index', $anno_id);
2794 $this->ctrl->setParameter($this,
"section",
"meta_annotation");
2796 $this->md_section = $this->md_obj->getAnnotation($anno_id);
2798 $tpl->setCurrentBlock(
"annotation_loop");
2799 $tpl->setVariable(
"ANNOTATION_ID", $anno_id);
2800 $tpl->setVariable(
"TXT_ANNOTATION", $this->lng->txt(
"meta_annotation"));
2801 $this->ctrl->setParameter($this,
"meta_index", $anno_id);
2804 $this->ctrl->getLinkTarget($this,
"deleteSection")
2806 $this->ctrl->setParameter($this,
"section",
"meta_annotation");
2809 $this->ctrl->getLinkTarget($this,
"addSection")
2811 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
"meta_delete"));
2812 $tpl->setVariable(
"TXT_ADD", $this->lng->txt(
"meta_add"));
2814 $tpl->setVariable(
"TXT_ENTITY", $this->lng->txt(
"meta_entity"));
2816 $tpl->setVariable(
"TXT_DATE", $this->lng->txt(
"meta_date"));
2820 $tpl->setVariable(
"TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
2821 $tpl->setVariable(
"TXT_VALUE", $this->lng->txt(
"meta_value"));
2823 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2825 "VAL_DESCRIPTION_LANGUAGE",
2827 'annotation[' . $anno_id .
'][Language]',
2828 $this->md_section->getDescriptionLanguageCode()
2832 $tpl->parseCurrentBlock();
2835 $tpl->setCurrentBlock(
"annotation");
2836 $tpl->setVariable(
"EDIT_ACTION", $this->ctrl->getFormAction($this));
2837 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
"save"));
2838 $tpl->parseCurrentBlock();
2841 $this->tpl->setContent(
$tpl->get());
2846 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
2849 foreach ($ids = $this->md_obj->getAnnotationIds() as $id) {
2851 $annotation = $this->md_obj->getAnnotation($id);
2855 $annotation->setDescriptionLanguage(
2859 $annotation->update();
2863 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
2872 $this->
__setTabs(
'meta_classification');
2874 $tpl =
new ilTemplate(
'tpl.md_classification.html',
true,
true,
'Services/MetaData');
2876 $class_ids = $this->md_obj->getClassificationIds();
2877 if (!is_array($class_ids) || count($class_ids) == 0) {
2878 $tpl->setCurrentBlock(
"no_classification");
2879 $tpl->setVariable(
"TXT_NO_CLASSIFICATION", $this->lng->txt(
"meta_no_classification"));
2880 $tpl->setVariable(
"TXT_ADD_CLASSIFICATION", $this->lng->txt(
"meta_add"));
2881 $this->ctrl->setParameter($this,
"section",
"meta_classification");
2883 "ACTION_ADD_CLASSIFICATION",
2884 $this->ctrl->getLinkTarget($this,
"addSection")
2886 $tpl->parseCurrentBlock();
2888 foreach ($class_ids as $class_id) {
2889 $this->md_section = $this->md_obj->getClassification($class_id);
2890 $this->ctrl->setParameter($this,
"section",
"meta_classification");
2893 $tp_ids = $this->md_section->getTaxonPathIds();
2894 foreach ($tp_ids as $tp_id) {
2895 $tax_path = $this->md_section->getTaxonPath($tp_id);
2897 $tax_ids = $tax_path->getTaxonIds();
2899 foreach ($tax_ids as $tax_id) {
2900 $taxon = $tax_path->getTaxon($tax_id);
2902 if (count($tax_ids) > 1) {
2903 $tpl->setCurrentBlock(
"taxon_delete");
2904 $this->ctrl->setParameter($this,
"meta_index", $tax_id);
2905 $this->ctrl->setParameter($this,
"meta_path",
"classification_taxon");
2907 "TAXONPATH_TAXON_LOOP_ACTION_DELETE",
2908 $this->ctrl->getLinkTarget($this,
"deleteElement")
2910 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2911 $tpl->parseCurrentBlock();
2914 $tpl->setCurrentBlock(
"taxonpath_taxon_loop");
2915 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_NO", $tax_id);
2916 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TAXONPATH_NO", $tp_id);
2917 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TXT_TAXON", $this->lng->txt(
"meta_taxon"));
2918 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
2920 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TXT_ID", $this->lng->txt(
"meta_id"));
2922 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2924 "TAXONPATH_TAXON_LOOP_VAL_TAXON_LANGUAGE",
2926 'classification[TaxonPath][Taxon][' . $tax_id .
'][Language]',
2927 $taxon->getTaxonLanguageCode()
2931 $this->ctrl->setParameter($this,
"section_element",
"Taxon_" . $class_id);
2932 $this->ctrl->setParameter($this,
"meta_index", $tp_id);
2934 "TAXONPATH_TAXON_LOOP_ACTION_ADD",
2935 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2937 $tpl->setVariable(
"TAXONPATH_TAXON_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2938 $tpl->parseCurrentBlock();
2941 if (count($tp_ids) > 1) {
2942 $tpl->setCurrentBlock(
"taxonpath_delete");
2943 $this->ctrl->setParameter($this,
"meta_index", $tp_id);
2944 $this->ctrl->setParameter($this,
"meta_path",
"classification_taxon_path");
2946 "TAXONPATH_LOOP_ACTION_DELETE",
2947 $this->ctrl->getLinkTarget($this,
"deleteElement")
2949 $tpl->setVariable(
"TAXONPATH_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
2950 $tpl->parseCurrentBlock();
2953 $tpl->setCurrentBlock(
"taxonpath_loop");
2954 $tpl->setVariable(
"TAXONPATH_LOOP_NO", $tp_id);
2955 $tpl->setVariable(
"TAXONPATH_LOOP_ROWSPAN", (3 * count($tax_ids)) + 2);
2956 $tpl->setVariable(
"TAXONPATH_LOOP_TXT_TAXONPATH", $this->lng->txt(
"meta_taxon_path"));
2957 $tpl->setVariable(
"TAXONPATH_LOOP_TXT_SOURCE", $this->lng->txt(
"meta_source"));
2958 $tpl->setVariable(
"TAXONPATH_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
2959 $tpl->setVariable(
"TAXONPATH_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2962 "TAXONPATH_LOOP_VAL_SOURCE_LANGUAGE",
2964 'classification[TaxonPath][' . $tp_id .
'][Source][Language]',
2965 $tax_path->getSourceLanguageCode()
2968 $this->ctrl->setParameter($this,
"section_element",
"TaxonPath_" . $class_id);
2969 $this->ctrl->setParameter($this,
"meta_index", $class_id);
2971 "TAXONPATH_LOOP_ACTION_ADD",
2972 $this->ctrl->getLinkTarget($this,
"addSectionElement")
2974 $tpl->setVariable(
"TAXONPATH_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
2975 $tpl->parseCurrentBlock();
2979 $tpl->setVariable(
"TXT_DESCRIPTION", $this->lng->txt(
"meta_description"));
2980 $tpl->setVariable(
"TXT_VALUE", $this->lng->txt(
"meta_value"));
2985 $tpl->setVariable(
"TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
2987 "VAL_DESCRIPTION_LANGUAGE",
2989 'classification[' . $class_id .
'][Language]',
2990 $this->md_section->getDescriptionLanguageCode()
2995 $key_ids = $this->md_section->getKeywordIds();
2996 foreach ($key_ids as $key_id) {
2997 if (count($key_ids) > 1) {
2998 $this->ctrl->setParameter($this,
"meta_index", $key_id);
2999 $this->ctrl->setParameter($this,
"meta_path",
"classification_keyword");
3000 $tpl->setCurrentBlock(
"keyword_delete");
3002 "KEYWORD_LOOP_ACTION_DELETE",
3003 $this->ctrl->getLinkTarget($this,
"deleteElement")
3005 $tpl->setVariable(
"KEYWORD_LOOP_TXT_DELETE", $this->lng->txt(
"meta_delete"));
3006 $tpl->parseCurrentBlock();
3009 $keyword = $this->md_section->getKeyword($key_id);
3010 $tpl->setCurrentBlock(
"keyword_loop");
3011 $tpl->setVariable(
"KEYWORD_LOOP_NO", $key_id);
3012 $tpl->setVariable(
"KEYWORD_LOOP_TXT_KEYWORD", $this->lng->txt(
"meta_keyword"));
3013 $tpl->setVariable(
"KEYWORD_LOOP_TXT_VALUE", $this->lng->txt(
"meta_value"));
3018 $tpl->setVariable(
"KEYWORD_LOOP_TXT_LANGUAGE", $this->lng->txt(
"meta_language"));
3020 "KEYWORD_LOOP_VAL_LANGUAGE",
3022 'classification[Keyword][' . $key_id .
'][Language]',
3023 $keyword->getKeywordLanguageCode()
3026 $this->ctrl->setParameter($this,
"meta_index", $class_id);
3027 $this->ctrl->setParameter($this,
"section_element",
"Keyword_" . $class_id);
3029 "KEYWORD_LOOP_ACTION_ADD",
3030 $this->ctrl->getLinkTarget($this,
"addSectionElement")
3032 $tpl->setVariable(
"KEYWORD_LOOP_TXT_ADD", $this->lng->txt(
"meta_add"));
3033 $tpl->parseCurrentBlock();
3036 $tpl->setCurrentBlock(
"classification_loop");
3037 $tpl->setVariable(
"TXT_CLASSIFICATION", $this->lng->txt(
"meta_classification"));
3038 $this->ctrl->setParameter($this,
"meta_index", $class_id);
3041 $this->ctrl->getLinkTarget($this,
"deleteSection")
3043 $tpl->setVariable(
"TXT_DELETE", $this->lng->txt(
"meta_delete"));
3046 $this->ctrl->getLinkTarget($this,
"addSection")
3048 $tpl->setVariable(
"TXT_ADD", $this->lng->txt(
"meta_add"));
3050 $tpl->setVariable(
"TXT_NEW_ELEMENT", $this->lng->txt(
"meta_new_element"));
3051 $tpl->setVariable(
"TXT_TAXONPATH", $this->lng->txt(
"meta_taxon_path"));
3052 $tpl->setVariable(
"TXT_KEYWORD", $this->lng->txt(
"meta_keyword"));
3053 $tpl->setVariable(
"TXT_ADD", $this->lng->txt(
"meta_add"));
3055 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
3056 $tpl->setVariable(
"CLASS_ID", $class_id);
3057 $tpl->setVariable(
"TXT_PURPOSE", $this->lng->txt(
"meta_purpose"));
3058 $tpl->setVariable(
"TXT_DISCIPLINE", $this->lng->txt(
"meta_learning_resource_type"));
3059 $tpl->setVariable(
"TXT_IDEA", $this->lng->txt(
"meta_idea"));
3060 $tpl->setVariable(
"TXT_PREREQUISITE", $this->lng->txt(
"meta_prerequisite"));
3061 $tpl->setVariable(
"TXT_EDUCATIONALOBJECTIVE", $this->lng->txt(
"meta_educational_objective"));
3062 $tpl->setVariable(
"TXT_ACCESSIBILITYRESTRICTIONS", $this->lng->txt(
"meta_accessibility_restrictions"));
3063 $tpl->setVariable(
"TXT_EDUCATIONALLEVEL", $this->lng->txt(
"meta_educational_level"));
3064 $tpl->setVariable(
"TXT_SKILLLEVEL", $this->lng->txt(
"meta_skill_level"));
3065 $tpl->setVariable(
"TXT_SECURITYLEVEL", $this->lng->txt(
"meta_security_level"));
3066 $tpl->setVariable(
"TXT_COMPETENCY", $this->lng->txt(
"meta_competency"));
3067 $tpl->setVariable(
"VAL_PURPOSE_" . strtoupper($this->md_section->getPurpose()),
" selected");
3068 $tpl->parseCurrentBlock();
3071 $tpl->setCurrentBlock(
"classification");
3074 $this->ctrl->getFormAction($this)
3076 $tpl->setVariable(
"TXT_SAVE", $this->lng->txt(
"save"));
3077 $tpl->parseCurrentBlock();
3080 $this->tpl->setContent(
$tpl->get());
3085 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
3088 foreach ($ids = $this->md_obj->getClassificationIds() as $id) {
3090 $classification = $this->md_obj->getClassification($id);
3091 $classification->setPurpose(
$_POST[
'classification'][$id][
'Purpose']);
3094 $classification->setDescriptionLanguage(
3098 $classification->update();
3100 $key_ids = $classification->getKeywordIds();
3101 foreach ($key_ids as $key_id) {
3102 $keyword = $classification->getKeyword($key_id);
3104 $keyword->setKeywordLanguage(
3110 $tp_ids = $classification->getTaxonPathIds();
3111 foreach ($tp_ids as $tp_id) {
3112 $tax_path = $classification->getTaxonPath($tp_id);
3114 $tax_path->setSourceLanguage(
3117 $tax_path->update();
3119 $tax_ids = $tax_path->getTaxonIds();
3121 foreach ($tax_ids as $tax_id) {
3122 $taxon = $tax_path->getTaxon($tax_id);
3124 $taxon->setTaxonLanguage(
3134 ilUtil::sendSuccess($this->lng->txt(
"saved_successfully"));
3140 include_once
'Services/MetaData/classes/class.ilMDFactory.php';
3143 $md_element->delete();
3152 include_once
'Services/MetaData/classes/class.ilMDFactory.php';
3155 $md_element->delete();
3165 switch (
$_GET[
'section']) {
3166 case 'meta_technical':
3167 $this->md_section = &$this->md_obj->addTechnical();
3168 $this->md_section->save();
3172 case 'meta_lifecycle':
3173 $this->md_section = &$this->md_obj->addLifecycle();
3174 $this->md_section->save();
3175 $con = &$this->md_section->addContribute();
3178 $ent = &$con->addEntity();
3182 case 'meta_meta_metadata':
3183 $this->md_section = $this->md_obj->addMetaMetadata();
3184 $this->md_section->save();
3186 $ide = &$this->md_section->addIdentifier();
3189 $con = &$this->md_section->addContribute();
3192 $ent = &$con->addEntity();
3197 $this->md_section = $this->md_obj->addRights();
3198 $this->md_section->save();
3201 case 'meta_educational':
3202 $this->md_section = $this->md_obj->addEducational();
3203 $this->md_section->save();
3206 case 'meta_relation':
3207 $this->md_section = $this->md_obj->addRelation();
3208 $this->md_section->save();
3209 $ident = $this->md_section->addIdentifier_();
3211 $des = $this->md_section->addDescription();
3215 case 'meta_annotation':
3216 $this->md_section = $this->md_obj->addAnnotation();
3217 $this->md_section->save();
3220 case 'meta_classification':
3221 $this->md_section = $this->md_obj->addClassification();
3222 $this->md_section->save();
3224 $taxon_path = &$this->md_section->addTaxonPath();
3225 $taxon_path->save();
3227 $taxon = &$taxon_path->addTaxon();
3230 $key = &$this->md_section->addKeyword();
3242 $section_element = (empty(
$_POST[
'section_element']))
3243 ?
$_GET[
'section_element']
3244 :
$_POST[
'section_element'];
3248 switch (
$_GET[
'section']) {
3249 case 'meta_technical':
3250 $this->md_section = &$this->md_obj->getTechnical();
3253 case 'meta_lifecycle':
3254 $this->md_section = &$this->md_obj->getLifecycle();
3257 case 'meta_meta_metadata':
3258 $this->md_section = &$this->md_obj->getMetaMetadata();
3261 case 'meta_general':
3262 $this->md_section = $this->md_obj->getGeneral();
3265 case 'meta_educational':
3266 $this->md_section = $this->md_obj->getEducational();
3269 case 'meta_classification':
3270 $arr = explode(
"_", $section_element);
3271 $section_element = $arr[0];
3272 $this->md_section = $this->md_obj->getClassification($arr[1]);
3277 switch ($section_element) {
3278 case 'meta_or_composite':
3279 $md_new = &$this->md_section->addOrComposite();
3280 $md_new = $md_new->addRequirement();
3283 case 'meta_requirement':
3284 $md_new = &$this->md_section->addRequirement();
3287 case 'meta_location':
3288 $md_new = &$this->md_section->addLocation();
3292 $md_new = $this->md_section->addFormat();
3296 $md_new = $this->md_section->getContribute((
int)
$_GET[
'meta_index']);
3297 $md_new = $md_new->addEntity();
3300 case 'meta_identifier':
3301 $md_new = $this->md_section->addIdentifier();
3304 case 'meta_contribute':
3305 $md_new = &$this->md_section->addContribute();
3307 $md_new = $md_new->addEntity();
3310 case 'educational_language':
3311 case 'meta_language':
3312 $md_new = $this->md_section->addLanguage();
3315 case 'educational_description':
3316 case 'meta_description':
3317 $md_new = $this->md_section->addDescription();
3321 case 'meta_keyword':
3322 $md_new = $this->md_section->addKeyword();
3325 case 'educational_typical_age_range':
3326 $md_new = $this->md_section->addTypicalAgeRange();
3329 case 'relation_resource_identifier':
3330 $rel = $this->md_obj->getRelation($_GET[
'meta_index']);
3331 $md_new = $rel->addIdentifier_();
3334 case 'relation_resource_description':
3335 $rel = $this->md_obj->getRelation($_GET[
'meta_index']);
3336 $md_new = $rel->addDescription();
3340 $md_new = $this->md_section->addTaxonPath();
3342 $md_new = $md_new->addTaxon();
3346 $tax_path = $this->md_section->getTaxonPath($_GET[
'meta_index']);
3347 $md_new = $tax_path->addTaxon();
3360 switch ($_REQUEST[
'section']) {
3361 case 'meta_general':
3364 case 'meta_lifecycle':
3367 case 'meta_technical':
3370 case 'meta_meta_metadata':
3371 return $this->listMetaMetadata();
3374 return $this->
debug();
3379 case 'meta_educational':
3382 case 'meta_relation':
3385 case 'meta_annotation':
3388 case 'meta_classification':
3392 if ($this->md_obj->obj_type ==
'sahs' || $this->md_obj->obj_type ==
'sco') {
3404 if (count($subs = $this->md_section->getPossibleSubelements())) {
3409 $tpl->
setVariable(
"TXT_NEW_ELEMENT", $this->lng->txt(
"meta_new_element"));
3412 $tpl->
setVariable(
"TXT_ADD", $this->lng->txt(
'meta_add'));
3423 $ilToolbar = $DIC[
'ilToolbar'];
3425 $tabs = array(
'meta_quickedit' =>
'listQuickEdit',
3426 'meta_general' =>
'listGeneral',
3427 'meta_lifecycle' =>
'listLifecycle',
3428 'meta_meta_metadata' =>
'listMetaMetadata',
3429 'meta_technical' =>
'listTechnical',
3430 'meta_educational' =>
'listEducational',
3431 'meta_rights' =>
'listRights',
3432 'meta_relation' =>
'listRelation',
3433 'meta_annotation' =>
'listAnnotation',
3434 'meta_classification' =>
'listClassification');
3437 $tabs[
'debug'] =
'debug';
3440 include_once
'Services/Form/classes/class.ilSelectInputGUI.php';
3444 foreach (array_keys($tabs) as $key) {
3445 $options[$key] = $this->lng->txt($key);
3450 $ilToolbar->addStickyItem(
$section,
true);
3452 include_once
"Services/UIComponent/Button/classes/class.ilSubmitButton.php";
3454 $button->setCaption(
"show");
3455 $button->setCommand(
"listSection");
3456 $ilToolbar->addStickyItem($button);
3458 $ilToolbar->setFormAction($this->ctrl->getFormAction($this,
"listSection"));
3469 include_once
'Services/MetaData/classes/class.ilMDLanguageItem.php';
3472 "tpl.lang_selection.html",
3479 $tpl->setCurrentBlock(
"lg_option");
3480 $tpl->setVariable(
"VAL_LG", $code);
3481 $tpl->setVariable(
"TXT_LG", $text);
3483 if ($a_value !=
"" &&
3484 $a_value == $code) {
3485 $tpl->setVariable(
"SELECTED",
"selected");
3488 $tpl->parseCurrentBlock();
3490 $tpl->setVariable(
"TXT_PLEASE_SELECT", $this->lng->txt(
"meta_please_select"));
3491 $tpl->setVariable(
"SEL_NAME", $a_name);
3493 $return =
$tpl->get();
3501 for (
$i = 0;
$i <= 24;
$i++) {
3502 $options[
$i] = sprintf(
'%02d',
$i);
3510 for (
$i = 0;
$i <= 31;
$i++) {
3511 $options[
$i] = sprintf(
'%02d',
$i);
3521 $this->observers[$a_element][
'class'] = &$a_class;
3522 $this->observers[$a_element][
'method'] = &$a_method;
3528 if (isset($this->observers[$a_element])) {
3529 $class = &$this->observers[$a_element][
'class'];
3530 $method = $this->observers[$a_element][
'method'];
3532 return $class->$method($a_element);
3545 if (!$md_settings->isCopyrightSelectionActive()) {
3549 $link = $this->ctrl->getLinkTarget($this,
'updateQuickEdit');
3550 return $this->ui_factory
3553 $this->lng->txt(
"meta_copyright_change_warning_title"),
3554 $this->lng->txt(
"meta_copyright_change_info"),
static prepareFormOutput($a_str, $a_strip=false)
prepares string output for html forms public
This class represents an option in a radio group.
setTitle($a_title)
Set Title.
static _getEntries()
get entries
updateQuickEdit_scorm()
update quick edit properties - SCORM customization
__buildDaysSelect($sel_day)
keywordAutocomplete()
Keyword list for autocomplete.
static _getInstance($a_type, $a_index, $a_technical_id=0)
static _getLocationTypeSelect($a_selected, $a_name, $prepend=array())
Prepare a meta location type.
addObserver(&$a_class, $a_method, $a_element)
__fillSubelements(ilTemplate $tpl)
updateGeneral()
update general section
static makeTimeSelect($prefix, $short=true, $hour="", $minute="", $second="", $a_use_default=true, $a_further_options=array())
Creates a combination of HTML selects for time inputs.
static _LOMDurationToArray($a_string)
LOM datatype duration is a string like P2M4DT7H18M2S (2 months 4 days 7 hours 18 minutes 2 seconds) T...
static _getStatusSelect($a_selected, $a_name, $prepend=array(), $a_options_only=false)
Prepare a meta lifecycle status selector.
static updateKeywords(ilMDGeneral $a_md_section, array $a_keywords)
Update keywords from input array.
static _getInstance()
get instance
getChangeCopyrightModal()
Get cnange copyright modal.
static _lookupDescription($a_rbac_id, $a_obj_id)
Lookup description (copyright)
setValue($a_value)
Set Value.
static encode($mixed, $suppress_native=false)
initQuickEditForm($a_signal_id)
Init quick edit form.
foreach($_POST as $key=> $value) $res
static _getBrowserSelect($a_selected, $a_name, $prepend=array(), $a_options_only=false)
Prepare a meta technical browser selector.
updateQuickEdit()
update quick edit properties
__showLanguageSelect($a_name, $a_value="")
shows language select box
updateQuickEdit_scorm_propagate($request, $type)
setCols($a_cols)
Set Cols.
static _extractEntryId($a_cp_string)
extract entry id
updateQuickEdit_scorm_prop_expert()
setVariable($variable, $value='')
static getDefault()
Get default.
static stripSlashes($a_str, $a_strip_html=true, $a_allow="")
strip slashes if magic qoutes is enabled
OER harvester object status.
callListeners($a_element)
static sendFailure($a_info="", $a_keep=false)
Send Failure Message to Screen.
setCurrentBlock($part="DEFAULT")
Überladene Funktion, die sich hier lokal noch den aktuellen Block merkt.
static _getOperatingSystemSelect($a_selected, $a_name, $prepend=array(), $a_options_only=false)
Prepare a meta technical os selector.
static _getMatchingKeywords($a_query, $a_type, $a_rbac_id=0)
Search for keywords.
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.
updateQuickEdit_scorm_prop_poc()
This class represents a text area property in a property form.
updateQuickEdit_scorm_prop_designer()
static getLogger($a_component_id)
Get component logger.
static _getRoleSelect($a_selected, $a_name, $prepend=array(), $a_options_only=false)
Prepare a meta lifecycle status selector.
__construct($a_rbac_id, $a_obj_id, $a_obj_type)
__buildMonthsSelect($sel_month)
parseCurrentBlock($part="DEFAULT")
Überladene Funktion, die auf den aktuelle Block vorher noch ein replace ausführt public...
listQuickEditCopyright(ilPropertyFormGUI $form)
Show copyright selecetion.