47 $this->master_lang_only = $a_val;
69 $this->transl_into =
true;
70 $this->transl_into_lm = $a_lm;
71 $this->transl_lang = $a_lang;
73 $this->transl_into =
false;
115 return array(
"5.1.0",
"5.4.0");
126 return "http://www.ilias.de/xml/Modules/LearningModule/" . $a_entity;
138 if ($a_entity ==
"lm") {
139 switch ($a_version) {
144 "Description" =>
"text",
145 "DefaultLayout" =>
"text",
146 "PageHeader" =>
"text",
147 "TocActive" =>
"text",
148 "LMMenuActive" =>
"text",
150 "PrintViewActive" =>
"text",
151 "Numbering" =>
"text",
152 "HistUserComments" =>
"text",
153 "PublicAccessMode" =>
"text",
154 "PubNotes" =>
"text",
155 "HeaderPage" =>
"integer",
156 "FooterPage" =>
"integer",
157 "LayoutPerPage" =>
"integer",
158 "Rating" =>
"integer",
159 "HideHeadFootPrint" =>
"integer",
160 "DisableDefFeedback" =>
"integer",
161 "RatingPages" =>
"integer",
162 "ProgrIcons" =>
"integer",
163 "StoreTries" =>
"integer",
164 "RestrictForwNav" =>
"integer",
165 "Comments" =>
"integer",
166 "ForTranslation" =>
"integer",
167 "StyleId" =>
"integer" 174 "Description" =>
"text",
175 "DefaultLayout" =>
"text",
176 "PageHeader" =>
"text",
177 "TocActive" =>
"text",
178 "LMMenuActive" =>
"text",
180 "PrintViewActive" =>
"text",
181 "NoGloAppendix" =>
"text",
182 "Numbering" =>
"text",
183 "HistUserComments" =>
"text",
184 "PublicAccessMode" =>
"text",
185 "PubNotes" =>
"text",
186 "HeaderPage" =>
"integer",
187 "FooterPage" =>
"integer",
188 "LayoutPerPage" =>
"integer",
189 "Rating" =>
"integer",
190 "HideHeadFootPrint" =>
"integer",
191 "DisableDefFeedback" =>
"integer",
192 "RatingPages" =>
"integer",
193 "ProgrIcons" =>
"integer",
194 "StoreTries" =>
"integer",
195 "RestrictForwNav" =>
"integer",
196 "Comments" =>
"integer",
197 "ForTranslation" =>
"integer",
198 "StyleId" =>
"integer" 204 if ($a_entity ==
"lm_tree") {
205 switch ($a_version) {
210 "Child" =>
"integer",
211 "Parent" =>
"integer",
212 "Depth" =>
"integer",
215 "ShortTitle" =>
"text",
216 "PublicAccess" =>
"text",
224 if ($a_entity ==
"lm_menu") {
225 switch ($a_version) {
230 "LinkType" =>
"text",
233 "LinkRefId" =>
"text",
239 if ($a_entity ==
"lm_data_transl") {
240 switch ($a_version) {
247 "ShortTitle" =>
"text" 259 public function readData($a_entity, $a_version, $a_ids, $a_field =
"")
263 if (!is_array($a_ids)) {
264 $a_ids = array($a_ids);
267 if ($a_entity ==
"lm") {
268 switch ($a_version) {
271 switch ($a_version) {
273 $q =
"SELECT id, title, description," .
274 " default_layout, page_header, toc_active, lm_menu_active, toc_mode, print_view_active, numbering," .
275 " hist_user_comments, public_access_mode, header_page, footer_page, layout_per_page, rating, " .
276 " hide_head_foot_print, disable_def_feedback, rating_pages, store_tries, restrict_forw_nav, progr_icons, stylesheet style_id" .
277 " FROM content_object JOIN object_data ON (content_object.id = object_data.obj_id)" .
278 " WHERE " .
$ilDB->in(
"id", $a_ids,
false,
"integer");
282 $q =
"SELECT id, title, description," .
283 " default_layout, page_header, toc_active, lm_menu_active, toc_mode, print_view_active, numbering," .
284 " hist_user_comments, public_access_mode, no_glo_appendix, header_page, footer_page, layout_per_page, rating, " .
285 " hide_head_foot_print, disable_def_feedback, rating_pages, store_tries, restrict_forw_nav, progr_icons, stylesheet style_id" .
286 " FROM content_object JOIN object_data ON (content_object.id = object_data.obj_id)" .
287 " WHERE " .
$ilDB->in(
"id", $a_ids,
false,
"integer");
291 $set =
$ilDB->query($q);
292 $this->data = array();
293 while ($rec =
$ilDB->fetchAssoc($set)) {
298 $rec[
"for_translation"] = 1;
301 foreach ($rec as $k => $v) {
307 $this->data[] = $rec;
316 if ($a_entity ==
"lm_tree") {
317 switch ($a_version) {
322 $q =
"SELECT lm_tree.lm_id, child, parent, depth, type, title, short_title, public_access, active, layout, import_id" .
323 " FROM lm_tree JOIN lm_data ON (lm_tree.child = lm_data.obj_id)" .
324 " WHERE " .
$ilDB->in(
"lm_tree.lm_id", $a_ids,
false,
"integer") .
327 $set =
$ilDB->query($q);
328 $this->data = array();
330 while ($rec =
$ilDB->fetchAssoc($set)) {
331 $set2 =
$ilDB->query(
"SELECT for_translation FROM content_object WHERE id = " .
$ilDB->quote($rec[
"lm_id"],
"integer"));
332 $rec2 =
$ilDB->fetchAssoc($set2);
333 if (!$rec2[
"for_translation"]) {
334 $rec[
"import_id"] =
"il_" .
IL_INST_ID .
"_" . $rec[
"type"] .
"_" . $rec[
"child"];
337 foreach ($rec as $k => $v) {
342 $obj_ids[] = $rec[
"Child"];
343 $this->data[] = $rec;
347 $set3 =
$ilDB->query($q =
"SELECT lm_id, type, title, short_title, public_access, active, layout, import_id, obj_id child FROM lm_data " .
348 "WHERE " .
$ilDB->in(
"lm_id", $a_ids,
false,
"integer") .
349 " AND " .
$ilDB->in(
"obj_id", $obj_ids,
true,
"integer") .
350 " AND type = " .
$ilDB->quote(
"pg",
"text"));
351 while ($rec3 =
$ilDB->fetchAssoc($set3)) {
352 $set2 =
$ilDB->query(
"SELECT for_translation FROM content_object WHERE id = " .
$ilDB->quote($rec3[
"lm_id"],
"integer"));
353 $rec2 =
$ilDB->fetchAssoc($set2);
354 if (!$rec2[
"for_translation"]) {
355 $rec3[
"import_id"] =
"il_" .
IL_INST_ID .
"_pg_" . $rec3[
"child"];
357 $rec3[
"type"] =
"free_pg";
361 foreach ($rec3 as $k => $v) {
365 $this->data[] = $tmp;
371 if ($a_entity ==
"lm_menu") {
372 switch ($a_version) {
377 " WHERE " .
$ilDB->in(
"lm_id", $a_ids,
false,
"integer"));
382 if ($a_entity ==
"lm_data_transl") {
383 switch ($a_version) {
387 " FROM lm_data_transl " .
388 " WHERE " .
$ilDB->in(
"id", $a_ids,
false,
"integer"));
402 "lm_tree" => array(
"ids" => $a_rec[
"Id"]),
403 "lm_menu" => array(
"ids" => $a_rec[
"Id"])
411 "lm_data_transl" => array(
"ids" => $a_rec[
"Child"])
426 public function importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
438 if ($new_id = $a_mapping->getMapping(
'Services/Container',
'objs', $a_rec[
'Id'])) {
442 $newObj->setType(
"lm");
443 $newObj->create(
true);
444 $newObj->createLMTree();
447 $newObj->setTitle($a_rec[
"Title"]);
448 $newObj->setDescription($a_rec[
"Description"]);
449 $newObj->setLayout($a_rec[
"DefaultLayout"]);
450 $newObj->setPageHeader($a_rec[
"PageHeader"]);
452 $newObj->setActiveLMMenu(
ilUtil::yn2tf($a_rec[
"LmMenuActive"]));
453 $newObj->setTOCMode($a_rec[
"TocMode"]);
454 $newObj->setActivePrintView(
ilUtil::yn2tf($a_rec[
"PrintViewActive"]));
455 $newObj->setActivePreventGlossaryAppendix(
ilUtil::yn2tf($a_rec[
"NoGloAppendix"]));
456 $newObj->setActiveNumbering(
ilUtil::yn2tf($a_rec[
"Numbering"]));
457 $newObj->setHistoryUserComments(
ilUtil::yn2tf($a_rec[
"HistUserComments"]));
458 $newObj->setPublicAccessMode($a_rec[
"PublicAccessMode"]);
461 $newObj->setLayoutPerPage($a_rec[
"LayoutPerPage"]);
462 $newObj->setRating($a_rec[
"Rating"]);
463 $newObj->setHideHeaderFooterPrint($a_rec[
"HideHeadFootPrint"]);
464 $newObj->setDisableDefaultFeedback($a_rec[
"DisableDefFeedback"]);
465 $newObj->setRatingPages($a_rec[
"RatingPages"]);
466 $newObj->setForTranslation($a_rec[
"ForTranslation"]);
467 $newObj->setProgressIcons($a_rec[
"ProgrIcons"]);
468 $newObj->setStoreTries($a_rec[
"StoreTries"]);
469 $newObj->setRestrictForwardNavigation($a_rec[
"RestrictForwNav"]);
470 if ($a_rec[
"HeaderPage"] > 0) {
471 $a_mapping->addMapping(
"Modules/LearningModule",
"lm_header_page", $a_rec[
"HeaderPage"],
"-");
473 if ($a_rec[
"FooterPage"] > 0) {
474 $a_mapping->addMapping(
"Modules/LearningModule",
"lm_footer_page", $a_rec[
"FooterPage"],
"-");
477 $newObj->update(
true);
478 $this->current_obj = $newObj;
483 $a_mapping->addMapping(
"Modules/LearningModule",
"lm", $a_rec[
"Id"], $newObj->getId());
484 $a_mapping->addMapping(
"Modules/LearningModule",
"lm_style", $newObj->getId(), $a_rec[
"StyleId"]);
485 $a_mapping->addMapping(
"Services/Object",
"obj", $a_rec[
"Id"], $newObj->getId());
486 $a_mapping->addMapping(
489 $a_rec[
"Id"] .
":0:lm",
490 $newObj->getId() .
":0:lm" 496 switch ($a_rec[
"Type"]) {
498 $parent = (int) $a_mapping->getMapping(
"Modules/LearningModule",
"lm_tree", $a_rec[
"Parent"]);
500 $st_obj->setType(
"st");
501 $st_obj->setLMId($this->current_obj->getId());
502 $st_obj->setTitle($a_rec[
"Title"]);
503 $st_obj->setShortTitle($a_rec[
"ShortTitle"]);
504 $st_obj->setImportId($a_rec[
"ImportId"]);
505 $st_obj->create(
true);
507 $a_mapping->addMapping(
508 "Modules/LearningModule",
513 $a_mapping->addMapping(
516 $a_rec[
"LmId"] .
":" . $a_rec[
"Child"] .
":st",
517 $this->current_obj->getId() .
":" . $st_obj->getId() .
":st" 522 $parent = (int) $a_mapping->getMapping(
"Modules/LearningModule",
"lm_tree", $a_rec[
"Parent"]);
524 $pg_obj->setType(
"pg");
525 $pg_obj->setLMId($this->current_obj->getId());
526 $pg_obj->setTitle($a_rec[
"Title"]);
527 $pg_obj->setShortTitle($a_rec[
"ShortTitle"]);
528 $pg_obj->setImportId($a_rec[
"ImportId"]);
529 $pg_obj->create(
true,
true);
531 $a_mapping->addMapping(
532 "Modules/LearningModule",
537 $a_mapping->addMapping(
"Modules/LearningModule",
"pg", $a_rec[
"Child"], $pg_obj->getId());
538 $this->lm_log->debug(
"add pg map (1), old : " . $a_rec[
"Child"] .
", new: " . $pg_obj->getId());
539 $a_mapping->addMapping(
542 "lm:" . $a_rec[
"Child"],
543 "lm:" . $pg_obj->getId()
545 $a_mapping->addMapping(
548 $a_rec[
"LmId"] .
":" . $a_rec[
"Child"] .
":pg",
549 $this->current_obj->getId() .
":" . $pg_obj->getId() .
":pg" 556 $pg_obj->setType(
"pg");
557 $pg_obj->setLMId($this->current_obj->getId());
558 $pg_obj->setTitle($a_rec[
"Title"]);
559 $pg_obj->setShortTitle($a_rec[
"ShortTitle"]);
560 $pg_obj->setImportId($a_rec[
"ImportId"]);
561 $pg_obj->create(
true,
true);
562 $a_mapping->addMapping(
563 "Modules/LearningModule",
568 $a_mapping->addMapping(
"Modules/LearningModule",
"pg", $a_rec[
"Child"], $pg_obj->getId());
569 $this->lm_log->debug(
"add pg map (2), old : " . $a_rec[
"Child"] .
", new: " . $pg_obj->getId());
570 $a_mapping->addMapping(
573 "lm:" . $a_rec[
"Child"],
574 "lm:" . $pg_obj->getId()
576 $a_mapping->addMapping(
579 $a_rec[
"LmId"] .
":" . $a_rec[
"Child"] .
":pg",
580 $this->current_obj->getId() .
":" . $pg_obj->getId() .
":pg" 585 switch ($a_rec[
"Type"]) {
588 $imp_id = explode(
"_", $a_rec[
"ImportId"]);
589 if ($imp_id[0] ==
"il" &&
594 if (ilLMObject::_lookupContObjId($st_id) == $this->
getTranslationLM()->getId()) {
596 $trans->setTitle($a_rec[
"Title"]);
598 $a_mapping->addMapping(
599 "Modules/LearningModule",
611 $imp_id = explode(
"_", $a_rec[
"ImportId"]);
612 if ($imp_id[0] ==
"il" &&
617 if (ilLMObject::_lookupContObjId($pg_id) == $this->
getTranslationLM()->getId()) {
619 $trans->setTitle($a_rec[
"Title"]);
621 $a_mapping->addMapping(
"Modules/LearningModule",
"pg", $a_rec[
"Child"], $pg_id);
622 $this->lm_log->debug(
"add pg map (3), old : " . $a_rec[
"Child"] .
", new: " . $pg_id);
623 $a_mapping->addMapping(
624 "Modules/LearningModule",
629 $a_mapping->addMapping(
632 "lm:" . $a_rec[
"Child"],
643 case "lm_data_transl":
646 $lm_obj_id = $a_mapping->getMapping(
"Modules/LearningModule",
"lm_tree", $a_rec[
"Id"]);
647 if ($lm_obj_id > 0) {
649 $t->setTitle($a_rec[
"Title"]);
650 $t->setShortTitle($a_rec[
"ShortTitle"]);
657 $lm_id = (int) $a_mapping->getMapping(
"Modules/LearningModule",
"lm", $a_rec[
"LmId"]);
660 $lm_menu_ed->setObjId($lm_id);
661 $lm_menu_ed->setTitle($a_rec[
"Title"]);
662 $lm_menu_ed->setTarget($a_rec[
"Target"]);
663 $lm_menu_ed->setLinkType($a_rec[
"LinkType"]);
664 $lm_menu_ed->setLinkRefId($a_rec[
"LinkRefId"]);
665 $lm_menu_ed->setActive($a_rec[
"Active"]);
666 $lm_menu_ed->create();
getXmlNamespace($a_entity, $a_schema_version)
Get xml namespace.
Class ilObjLearningModule.
static commentsActivated($a_rep_obj_id, $a_obj_id, $a_obj_type, $a_news_id=0)
Are comments activated for object?
getDirectDataFromQuery($a_query, $a_convert_to_leading_upper=true, $a_set=true)
Get data from query.This is a standard procedure, all db field names are directly mapped to abstract ...
setTranslationImportMode($a_lm, $a_lang="")
Set translation import mode.
getTranslationLM()
Get translation lm (import.
convertToLeadingUpper($a_str)
Make xyz_abc a XyzAbc string.
getTypes($a_entity, $a_version)
Get field types for entity.
__construct()
Constructor.
readData($a_entity, $a_version, $a_ids, $a_field="")
Read data.
static putInTree($a_obj, $a_parent_id="", $a_target_node_id="")
put this object into content object tree
setMasterLanguageOnly($a_val)
Set master language only (export)
getCurrentInstallationId()
Get current installation id.
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
getSupportedVersions()
Get supported versions.
getTranslationImportMode()
Get translation import mode.
LearningModule Data set class.
importRecord($a_entity, $a_types, $a_rec, $a_mapping, $a_schema_version)
Import record.
static activateComments($a_rep_obj_id, $a_obj_id, $a_obj_type, $a_activate=true)
Activate notes feature.
__construct(Container $dic, ilPlugin $plugin)
getDependencies($a_entity, $a_version, $a_rec, $a_ids)
Determine the dependent sets of data.
static getLogger($a_component_id)
Get component logger.
stripTags(array $rec, array $omit_keys=[])
static yn2tf($a_yn)
convert "y"/"n" to true/false
A dataset contains in data in a common structure that can be shared and transformed for different pur...
Translation information on lm object.
getMasterLanguageOnly()
Get master language only (export)
getTranslationLang()
Get translation language (import.