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)
437 if ($new_id = $a_mapping->getMapping(
'Services/Container',
'objs', $a_rec[
'Id'])) {
441 $newObj->setType(
"lm");
442 $newObj->create(
true);
443 $newObj->createLMTree();
446 $newObj->setTitle($a_rec[
"Title"]);
447 $newObj->setDescription($a_rec[
"Description"]);
448 $newObj->setLayout($a_rec[
"DefaultLayout"]);
449 $newObj->setPageHeader($a_rec[
"PageHeader"]);
451 $newObj->setActiveLMMenu(
ilUtil::yn2tf($a_rec[
"LmMenuActive"]));
452 $newObj->setTOCMode($a_rec[
"TocMode"]);
453 $newObj->setActivePrintView(
ilUtil::yn2tf($a_rec[
"PrintViewActive"]));
454 $newObj->setActivePreventGlossaryAppendix(
ilUtil::yn2tf($a_rec[
"NoGloAppendix"]));
455 $newObj->setActiveNumbering(
ilUtil::yn2tf($a_rec[
"Numbering"]));
456 $newObj->setHistoryUserComments(
ilUtil::yn2tf($a_rec[
"HistUserComments"]));
457 $newObj->setPublicAccessMode($a_rec[
"PublicAccessMode"]);
460 $newObj->setLayoutPerPage($a_rec[
"LayoutPerPage"]);
461 $newObj->setRating($a_rec[
"Rating"]);
462 $newObj->setHideHeaderFooterPrint($a_rec[
"HideHeadFootPrint"]);
463 $newObj->setDisableDefaultFeedback($a_rec[
"DisableDefFeedback"]);
464 $newObj->setRatingPages($a_rec[
"RatingPages"]);
465 $newObj->setForTranslation($a_rec[
"ForTranslation"]);
466 $newObj->setProgressIcons($a_rec[
"ProgrIcons"]);
467 $newObj->setStoreTries($a_rec[
"StoreTries"]);
468 $newObj->setRestrictForwardNavigation($a_rec[
"RestrictForwNav"]);
469 if ($a_rec[
"HeaderPage"] > 0) {
470 $a_mapping->addMapping(
"Modules/LearningModule",
"lm_header_page", $a_rec[
"HeaderPage"],
"-");
472 if ($a_rec[
"FooterPage"] > 0) {
473 $a_mapping->addMapping(
"Modules/LearningModule",
"lm_footer_page", $a_rec[
"FooterPage"],
"-");
476 $newObj->update(
true);
477 $this->current_obj = $newObj;
482 $a_mapping->addMapping(
"Modules/LearningModule",
"lm", $a_rec[
"Id"], $newObj->getId());
483 $a_mapping->addMapping(
"Modules/LearningModule",
"lm_style", $newObj->getId(), $a_rec[
"StyleId"]);
484 $a_mapping->addMapping(
"Services/Object",
"obj", $a_rec[
"Id"], $newObj->getId());
485 $a_mapping->addMapping(
488 $a_rec[
"Id"] .
":0:lm",
489 $newObj->getId() .
":0:lm" 495 switch ($a_rec[
"Type"]) {
497 $parent = (int) $a_mapping->getMapping(
"Modules/LearningModule",
"lm_tree", $a_rec[
"Parent"]);
499 $st_obj->setType(
"st");
500 $st_obj->setLMId($this->current_obj->getId());
501 $st_obj->setTitle($a_rec[
"Title"]);
502 $st_obj->setShortTitle($a_rec[
"ShortTitle"]);
503 $st_obj->setImportId($a_rec[
"ImportId"]);
504 $st_obj->create(
true);
506 $a_mapping->addMapping(
507 "Modules/LearningModule",
512 $a_mapping->addMapping(
515 $a_rec[
"LmId"] .
":" . $a_rec[
"Child"] .
":st",
516 $this->current_obj->getId() .
":" . $st_obj->getId() .
":st" 521 $parent = (int) $a_mapping->getMapping(
"Modules/LearningModule",
"lm_tree", $a_rec[
"Parent"]);
523 $pg_obj->setType(
"pg");
524 $pg_obj->setLMId($this->current_obj->getId());
525 $pg_obj->setTitle($a_rec[
"Title"]);
526 $pg_obj->setShortTitle($a_rec[
"ShortTitle"]);
527 $pg_obj->setImportId($a_rec[
"ImportId"]);
528 $pg_obj->create(
true,
true);
530 $a_mapping->addMapping(
531 "Modules/LearningModule",
536 $a_mapping->addMapping(
"Modules/LearningModule",
"pg", $a_rec[
"Child"], $pg_obj->getId());
537 $this->lm_log->debug(
"add pg map (1), old : " . $a_rec[
"Child"] .
", new: " . $pg_obj->getId());
538 $a_mapping->addMapping(
541 "lm:" . $a_rec[
"Child"],
542 "lm:" . $pg_obj->getId()
544 $a_mapping->addMapping(
547 $a_rec[
"LmId"] .
":" . $a_rec[
"Child"] .
":pg",
548 $this->current_obj->getId() .
":" . $pg_obj->getId() .
":pg" 555 $pg_obj->setType(
"pg");
556 $pg_obj->setLMId($this->current_obj->getId());
557 $pg_obj->setTitle($a_rec[
"Title"]);
558 $pg_obj->setShortTitle($a_rec[
"ShortTitle"]);
559 $pg_obj->setImportId($a_rec[
"ImportId"]);
560 $pg_obj->create(
true,
true);
561 $a_mapping->addMapping(
562 "Modules/LearningModule",
567 $a_mapping->addMapping(
"Modules/LearningModule",
"pg", $a_rec[
"Child"], $pg_obj->getId());
568 $this->lm_log->debug(
"add pg map (2), old : " . $a_rec[
"Child"] .
", new: " . $pg_obj->getId());
569 $a_mapping->addMapping(
572 "lm:" . $a_rec[
"Child"],
573 "lm:" . $pg_obj->getId()
575 $a_mapping->addMapping(
578 $a_rec[
"LmId"] .
":" . $a_rec[
"Child"] .
":pg",
579 $this->current_obj->getId() .
":" . $pg_obj->getId() .
":pg" 584 switch ($a_rec[
"Type"]) {
587 $imp_id = explode(
"_", $a_rec[
"ImportId"]);
588 if ($imp_id[0] ==
"il" &&
589 (
int) $imp_id[1] == (
int) IL_INST_ID &&
593 if (ilLMObject::_lookupContObjId($st_id) == $this->
getTranslationLM()->getId()) {
595 $trans->setTitle($a_rec[
"Title"]);
597 $a_mapping->addMapping(
598 "Modules/LearningModule",
610 $imp_id = explode(
"_", $a_rec[
"ImportId"]);
611 if ($imp_id[0] ==
"il" &&
612 (
int) $imp_id[1] == (
int) IL_INST_ID &&
616 if (ilLMObject::_lookupContObjId($pg_id) == $this->
getTranslationLM()->getId()) {
618 $trans->setTitle($a_rec[
"Title"]);
620 $a_mapping->addMapping(
"Modules/LearningModule",
"pg", $a_rec[
"Child"], $pg_id);
621 $this->lm_log->debug(
"add pg map (3), old : " . $a_rec[
"Child"] .
", new: " . $pg_id);
622 $a_mapping->addMapping(
623 "Modules/LearningModule",
628 $a_mapping->addMapping(
631 "lm:" . $a_rec[
"Child"],
642 case "lm_data_transl":
645 $lm_obj_id = $a_mapping->getMapping(
"Modules/LearningModule",
"lm_tree", $a_rec[
"Id"]);
646 if ($lm_obj_id > 0) {
648 $t->setTitle($a_rec[
"Title"]);
649 $t->setShortTitle($a_rec[
"ShortTitle"]);
656 $lm_id = (int) $a_mapping->getMapping(
"Modules/LearningModule",
"lm", $a_rec[
"LmId"]);
659 $lm_menu_ed->setObjId($lm_id);
660 $lm_menu_ed->setTitle($a_rec[
"Title"]);
661 $lm_menu_ed->setTarget($a_rec[
"Target"]);
662 $lm_menu_ed->setLinkType($a_rec[
"LinkType"]);
663 $lm_menu_ed->setLinkRefId($a_rec[
"LinkRefId"]);
664 $lm_menu_ed->setActive($a_rec[
"Active"]);
665 $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.
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.