49 $this->
user = $DIC->user();
51 $this->db = $DIC->database();
55 $this->
setLMId($a_content_obj->getId());
80 $md_gen = $md->getGeneral();
84 foreach ($md_gen->getDescriptionIds() as
$id) {
85 $md_des = $md_gen->getDescription(
$id);
94 $obj_lp->getCurrentMode(),
110 public static function _lookupNID($a_lm_id, $a_lm_obj_id, $a_type)
112 $md =
new ilMD($a_lm_id, $a_lm_obj_id, $a_type);
113 $md_gen = $md->getGeneral();
114 if (is_object($md_gen)) {
115 foreach ($md_gen->getIdentifierIds() as
$id) {
116 $md_id = $md_gen->getIdentifier(
$id);
117 if ($md_id->getCatalog() ==
"ILIAS_NID") {
118 return $md_id->getEntry();
135 $md_creator->setTitle($this->
getTitle());
136 $md_creator->setTitleLanguage(
$ilUser->getPref(
'language'));
138 $md_creator->setDescriptionLanguage(
$ilUser->getPref(
'language'));
139 $md_creator->setKeywordLanguage(
$ilUser->getPref(
'language'));
140 $md_creator->setLanguage(
$ilUser->getPref(
'language'));
141 $md_creator->create();
152 $md_gen = $md->getGeneral();
153 $md_gen->setTitle($this->
getTitle());
156 $md_des_ids = $md_gen->getDescriptionIds();
157 if (count($md_des_ids) > 0) {
158 $md_des = $md_gen->getDescription($md_des_ids[0]);
183 $this->data_record = $a_record;
190 if (!isset($this->data_record)) {
191 $query =
"SELECT * FROM lm_data WHERE obj_id = " .
192 $ilDB->quote($this->
id,
"integer");
194 $this->data_record =
$ilDB->fetchAssoc($obj_set);
197 $this->type = $this->data_record[
"type"];
198 $this->
setImportId($this->data_record[
"import_id"]);
199 $this->
setTitle($this->data_record[
"title"]);
201 $this->
setLayout($this->data_record[
"layout"]);
215 $ilDB = $DIC->database();
218 "SELECT * FROM lm_data " .
219 " WHERE lm_id = " .
$ilDB->quote($a_lm_id,
"integer")
221 while ($rec =
$ilDB->fetchAssoc($set)) {
222 self::$data_records[$rec[
"obj_id"]] = $rec;
224 return count(self::$data_records);
235 $this->title = $a_title;
255 $this->short_title = $a_title;
274 protected static function _lookup($a_obj_id, $a_field)
278 $ilDB = $DIC->database();
280 if (isset(self::$data_records[$a_obj_id])) {
281 return self::$data_records[$a_obj_id][$a_field];
284 $query =
"SELECT " . $a_field .
" FROM lm_data WHERE obj_id = " .
285 $ilDB->quote($a_obj_id,
"integer");
287 $obj_rec =
$ilDB->fetchAssoc($obj_set);
289 return $obj_rec[$a_field];
300 return self::_lookup($a_obj_id,
"title");
311 return self::_lookup($a_obj_id,
"short_title");
324 $ilDB = $DIC->database();
326 if (isset(self::$data_records[$a_obj_id])) {
327 if ($a_lm_id == 0 || self::$data_records[$a_obj_id][
"lm_id"] == $a_lm_id) {
328 return self::$data_records[$a_obj_id][
"type"];
333 $and =
' AND lm_id = ' .
$ilDB->quote($a_lm_id,
'integer');
336 $query =
"SELECT type FROM lm_data WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer") . $and;
338 $obj_rec =
$ilDB->fetchAssoc($obj_set);
340 return $obj_rec[
"type"];
348 $ilDB = $DIC->database();
350 $query =
"UPDATE lm_data SET " .
351 " title = " .
$ilDB->quote($a_title,
"text") .
352 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
359 $this->description = $a_description;
369 $this->type = $a_type;
379 $this->lm_id = $a_lm_id;
389 $this->content_object = $a_content_obj;
409 return $this->import_id;
414 $this->import_id = $a_id;
424 $this->layout = $a_val;
434 return $this->layout;
448 $ilDB = $DIC->database();
450 $q =
"UPDATE lm_data " .
452 "import_id = " .
$ilDB->quote($a_import_id,
"text") .
"," .
453 "last_update = " .
$ilDB->now() .
" " .
454 "WHERE obj_id = " .
$ilDB->quote($a_id,
"integer");
456 $ilDB->manipulate($q);
459 public function create($a_upload =
false)
465 $query =
"INSERT INTO lm_data (obj_id, title, type, layout, lm_id, import_id, short_title, create_date) " .
467 $ilDB->quote($this->
getId(),
"integer") .
"," .
474 ", " .
$ilDB->now() .
")";
475 $ilDB->manipulate($query);
482 $this->content_object->getType() .
":" . $this->
getType()
499 $query =
"UPDATE lm_data SET " .
500 " lm_id = " .
$ilDB->quote($this->
getLMId(),
"integer") .
504 " WHERE obj_id = " .
$ilDB->quote($this->
getId(),
"integer");
522 $ilDB = $DIC->database();
523 $ilLog = $DIC[
"ilLog"];
526 if (!is_array($a_pages)) {
534 if (empty($a_cont_obj_id)) {
535 $message = sprintf(
'ilLMObject::_writePublicAccessStatus(): Invalid parameter! $a_cont_obj_id is empty');
536 $ilLog->write(
$message, $ilLog->WARNING);
542 $lm_tree =
new ilTree($a_cont_obj_id);
543 $lm_tree->setTableNames(
'lm_tree',
'lm_data');
544 $lm_tree->setTreeTablePK(
"lm_id");
545 $lm_tree->readRootId();
548 $q =
"SELECT obj_id FROM lm_data " .
549 "WHERE lm_id = " .
$ilDB->quote($a_cont_obj_id,
"integer") .
" " .
551 $r =
$ilDB->query($q);
554 while ($row =
$ilDB->fetchAssoc($r)) {
555 $childs = $lm_tree->getChilds($row[
"obj_id"]);
557 foreach ($childs as $page) {
558 if ($page[
"type"] ==
"pg" and in_array($page[
"obj_id"], $a_pages)) {
559 array_push($a_pages, $row[
"obj_id"]);
566 $q =
"UPDATE lm_data SET " .
567 "public_access = CASE " .
568 "WHEN " .
$ilDB->in(
"obj_id", $a_pages,
false,
"integer") .
" " .
569 "THEN " .
$ilDB->quote(
"y",
"text") .
570 "ELSE " .
$ilDB->quote(
"n",
"text") .
572 "WHERE lm_id = " .
$ilDB->quote($a_cont_obj_id,
"integer") .
" " .
573 "AND " .
$ilDB->in(
"type", array(
"pg",
"st"),
false,
"text");
574 $ilDB->manipulate($q);
579 public static function _isPagePublic($a_node_id, $a_check_public_mode =
false)
583 $ilDB = $DIC->database();
584 $ilLog = $DIC[
"ilLog"];
586 if (empty($a_node_id)) {
587 $message = sprintf(
'ilLMObject::_isPagePublic(): Invalid parameter! $a_node_id is empty');
588 $ilLog->write(
$message, $ilLog->WARNING);
592 if ($a_check_public_mode ===
true) {
593 $lm_id = ilLMObject::_lookupContObjId($a_node_id);
595 $q =
"SELECT public_access_mode FROM content_object WHERE id = " .
597 $r =
$ilDB->query($q);
598 $row =
$ilDB->fetchAssoc($r);
600 if ($row[
"public_access_mode"] ==
"complete") {
605 $q =
"SELECT public_access FROM lm_data WHERE obj_id=" .
606 $ilDB->quote($a_node_id,
"integer");
607 $r =
$ilDB->query($q);
608 $row =
$ilDB->fetchAssoc($r);
616 public function delete($a_delete_meta_data =
true)
620 $query =
"DELETE FROM lm_data WHERE obj_id = " .
642 $ilDB = $DIC->database();
644 $q =
"SELECT obj_id FROM lm_data WHERE import_id = " .
645 $ilDB->quote($a_import_id,
"text") .
" " .
646 " ORDER BY create_date DESC";
647 $obj_set =
$ilDB->query($q);
648 while ($obj_rec =
$ilDB->fetchAssoc($obj_set)) {
655 return $obj_rec[
"obj_id"];
675 $ilDB = $DIC->database();
677 $where = ($a_in_lm > 0)
678 ?
" AND lm_id = " .
$ilDB->quote($a_in_lm,
"integer") .
" " 681 $q =
"SELECT * FROM lm_data WHERE import_id = " .
682 $ilDB->quote($a_import_id,
"text") .
" " .
684 " ORDER BY create_date DESC";
685 $obj_set =
$ilDB->query($q);
688 while ($obj_rec =
$ilDB->fetchAssoc($obj_set)) {
709 $ilDB = $DIC->database();
711 if (is_int(strpos($a_id,
"_"))) {
715 $q =
"SELECT * FROM lm_data WHERE obj_id = " .
716 $ilDB->quote($a_id,
"integer");
717 $obj_set =
$ilDB->query($q);
718 if ($obj_rec =
$ilDB->fetchAssoc($obj_set)) {
732 $ilDB = $DIC->database();
734 $type_str = (
$type !=
"")
735 ?
"AND type = " .
$ilDB->quote(
$type,
"text") .
" " 738 $query =
"SELECT * FROM lm_data " .
739 "WHERE lm_id= " .
$ilDB->quote(
$lm_id,
"integer") .
" " .
744 while ($obj_rec =
$ilDB->fetchAssoc($obj_set)) {
745 $obj_list[] = array(
"obj_id" => $obj_rec[
"obj_id"],
746 "title" => $obj_rec[
"title"],
747 "import_id" => $obj_rec[
"import_id"],
748 "type" => $obj_rec[
"type"]);
761 $ilDB = $DIC->database();
763 $query =
"SELECT * FROM lm_data " .
764 "WHERE lm_id= " .
$ilDB->quote($a_cobj->getId(),
"integer");
767 while ($obj_rec =
$ilDB->fetchAssoc($obj_set)) {
770 if (is_object($lm_obj)) {
771 $lm_obj->delete(
true);
785 $ilDB = $DIC->database();
787 if (isset(self::$data_records[$a_id])) {
788 return self::$data_records[$a_id][
"lm_id"];
791 $query =
"SELECT lm_id FROM lm_data WHERE obj_id = " .
792 $ilDB->quote($a_id,
"integer");
794 $obj_rec =
$ilDB->fetchAssoc($obj_set);
796 return $obj_rec[
"lm_id"];
802 public static function putInTree($a_obj, $a_parent_id =
"", $a_target_node_id =
"")
806 $ilLog = $DIC[
"ilLog"];
808 $tree =
new ilTree($a_obj->getContentObject()->getId());
809 $tree->setTableNames(
'lm_tree',
'lm_data');
810 $tree->setTreeTablePK(
"lm_id");
813 $parent_id = ($a_parent_id !=
"")
815 : $tree->getRootId();
818 if ($a_target_node_id !=
"") {
819 $target = $a_target_node_id;
822 if ($a_obj->getType() ==
"st") {
823 $s_types = array(
"st",
"pg");
824 $childs = $tree->getChildsByTypeFilter($parent_id, $s_types);
827 $childs = $tree->getChildsByType($parent_id, $s_types);
830 if (count($childs) == 0) {
833 $target = $childs[count($childs) - 1][
"obj_id"];
837 if ($tree->isInTree($parent_id) && !$tree->isInTree($a_obj->getId())) {
838 $ilLog->write(
"LMObject::putInTree: insertNode, ID: " . $a_obj->getId() .
839 "Parent ID: " . $parent_id .
", Target: " . $target);
841 $tree->insertNode($a_obj->getId(), $parent_id, $target);
852 public static function getTree($a_cont_obj_id)
854 $tree =
new ilTree($a_cont_obj_id);
855 $tree->setTableNames(
'lm_tree',
'lm_data');
856 $tree->setTreeTablePK(
"lm_id");
869 if (!is_array($a_ids)) {
873 foreach ($a_ids as
$id) {
874 $path = $tree->getPathId($id);
876 foreach ($path as $path_id) {
877 if ($path_id != $id && in_array($path_id, $a_ids)) {
892 foreach ($cut_ids as
$id) {
893 $curnode = $tree->getNodeData($id);
894 if ($tree->isInTree($id)) {
895 $tree->deleteTree($curnode);
911 $ilUser->clipboardDeleteObjectsOfType(
"pg");
912 $ilUser->clipboardDeleteObjectsOfType(
"st");
915 $time = date(
"Y-m-d H:i:s", time());
917 foreach ($a_ids as
$id) {
919 if ($tree->isInTree($id)) {
920 $curnode = $tree->getNodeData($id);
921 $subnodes = $tree->getSubTree($curnode);
922 foreach ($subnodes as $subnode) {
923 if ($subnode[
"child"] != $id) {
935 $order = ($curnode[
"lft"] > 0)
937 : (
int) ($order + 1);
965 $ilLog = $DIC[
"ilLog"];
970 if ($item_type ==
"st") {
972 } elseif ($item_type ==
"pg") {
976 $ilLog->write(
"Getting from clipboard type " . $item_type .
", " .
977 "Item ID: " . $a_item_id .
", of original LM: " . $item_lm_id);
979 if ($item_lm_id != $a_target_lm->getId() && !$a_as_copy) {
983 $md =
new ilMD($item_lm_id, $item->getId(), $item->getType());
984 $new_md = $md->
cloneMD($a_target_lm->getId(), $item->getId(), $item->getType());
987 $item->setLMId($a_target_lm->getId());
988 $item->setContentObject($a_target_lm);
994 if ($item_type ==
"pg") {
995 $page = $item->getPageObject();
997 $page->setParentId($a_target_lm->getId());
1003 $target_item = $item->copy($a_target_lm);
1004 $a_copied_nodes[$item->getId()] = $target_item->getId();
1006 $target_item = $item;
1009 $ilLog->write(
"Putting into tree type " . $target_item->getType() .
1010 "Item ID: " . $target_item->getId() .
", Parent: " . $a_parent_id .
", " .
1011 "Target: " . $a_target .
", Item LM:" . $target_item->getContentObject()->getId());
1015 if ($a_source_lm == null) {
1016 $childs =
$ilUser->getClipboardChilds($item->getId(), $a_insert_time);
1018 $childs = $a_source_lm->lm_tree->getChilds($item->getId());
1019 foreach ($childs as $k => $child) {
1020 $childs[$k][
"id"] = $childs[$k][
"child"];
1024 foreach ($childs as $child) {
1028 $target_item->getId(),
1037 return $target_item->getId();
1046 public static function saveTitles($a_lm, $a_titles, $a_lang =
"-")
1048 if ($a_lang ==
"") {
1051 if (is_array($a_titles)) {
1055 if ($a_lang ==
"-") {
1057 if (is_object($lmobj)) {
1059 $md =
new ilMD($a_lm->getId(),
$id, $lmobj->getType());
1061 if (is_object($md_gen)) {
1062 $md_gen->setTitle(
$title);
1070 $lmobjtrans->setTitle(
$title);
1071 $lmobjtrans->save();
1082 $all_fixes = array();
1083 foreach ($a_copied_nodes as $original_id => $copied_id) {
1087 if ($copied_type ==
"pg") {
1093 $tpg =
new ilLMPage($copied_id, 0, $l);
1095 $il = $tpg->getInternalLinks();
1097 foreach ($il as $l) {
1103 foreach ($targets as $target) {
1104 if (($target[
"inst"] == 0 || $target[
"inst"] =
IL_INST_ID) &&
1105 ($target[
"type"] ==
"pg" || $target[
"type"] ==
"st")) {
1107 if ($a_copied_nodes[$target[
"id"]] > 0) {
1108 $fix[$target[
"id"]] = $a_copied_nodes[$target[
"id"]];
1114 if ($trg_lm != $copy_lm) {
1118 foreach ($lm_data as $item) {
1119 if (!$found && ($item[
"lm_id"] == $copy_lm)) {
1120 $fix[$target[
"id"]] = $item[
"obj_id"];
1130 if (count($fix) > 0) {
1134 if (is_array($all_fixes[$t .
":" . $copied_id])) {
1135 $all_fixes[$t .
":" . $copied_id] += $fix;
1137 $all_fixes[$t .
":" . $copied_id] = $fix;
1143 if ($copied_type ==
"pg" ||
1144 $copied_type ==
"st") {
1156 if ($original_lm != $copy_lm) {
1170 "_" . $original_id);
1173 foreach (
$mobs as $mob) {
1182 foreach ($usages as $usage) {
1183 if ($usage[
"type"] ==
"lm:pg" | $usage[
"type"] ==
"lm:st") {
1184 $sources[] = $usage;
1189 foreach ($sources as
$source) {
1190 $stype = explode(
":", $source[
"type"]);
1191 $source_type = $stype[1];
1193 if ($source_type ==
"pg" || $source_type ==
"st") {
1197 if ($src_lm == $original_lm) {
1201 "il__" . $source_type .
"_" . $source[
"id"],
1205 foreach ($lm_data as $item) {
1207 $fix[$item[
"obj_id"]][$original_id] = $copied_id;
1215 if (count($fix) > 0) {
1216 foreach ($fix as $page_id => $fix_array) {
1218 if (is_array($all_fixes[$t .
":" . $page_id])) {
1219 $all_fixes[$t .
":" . $page_id] += $fix_array;
1221 $all_fixes[$t .
":" . $page_id] = $fix_array;
1229 foreach ($all_fixes as $pg => $fixes) {
1230 $pg = explode(
":", $pg);
1233 if ($page->moveIntLinks($fixes)) {
1234 $page->update(
true,
true);
1246 if (is_array($a_items)) {
1247 foreach ($a_items as $item) {
1253 if (count($types) > 1) {
1265 public static function writeLayout($a_obj_id, $a_layout, $a_lm = null)
1269 $ilDB = $DIC->database();
1274 $query =
"UPDATE lm_data SET " .
1275 " layout = " .
$ilDB->quote($a_layout,
"text") .
1276 " WHERE obj_id = " .
$ilDB->quote($a_obj_id,
"integer");
1278 } elseif ($t ==
"st" && is_object($a_lm)) {
1279 $node = $a_lm->getLMTree()->getNodeData($a_obj_id);
1280 $child_nodes = $a_lm->getLMTree()->getSubTree($node);
1281 if (is_array($child_nodes) && count($child_nodes) > 0) {
1282 foreach ($child_nodes as
$c) {
1283 if ($c[
"type"] ==
"pg") {
1284 $query =
"UPDATE lm_data SET " .
1285 " layout = " .
$ilDB->quote($a_layout,
"text") .
1286 " WHERE obj_id = " .
$ilDB->quote($c[
"child"],
"integer");
1303 $ilDB = $DIC->database();
1305 $query =
"SELECT layout FROM lm_data WHERE obj_id = " .
1306 $ilDB->quote($a_obj_id,
"integer");
1308 $obj_rec =
$ilDB->fetchAssoc($obj_set);
1310 return $obj_rec[
"layout"];
1322 $lm_tree =
new ilTree($a_lm_id);
1323 $lm_tree->setTableNames(
'lm_tree',
'lm_data');
1324 $lm_tree->setTreeTablePK(
"lm_id");
1325 $lm_tree->readRootId();
1327 $childs = $lm_tree->getChildsByType($a_chap_id,
"pg");
1342 $ilDB = $DIC->database();
1344 $and = ($a_type !=
"")
1345 ?
" AND type = " .
$ilDB->quote($a_type,
"text")
1348 $set =
$ilDB->query(
"SELECT obj_id FROM lm_data " .
1349 " WHERE lm_id = " .
$ilDB->quote($a_lm_id,
"integer") . $and);
1351 while ($rec =
$ilDB->fetchAssoc($set)) {
1352 $obj_ids[] = $rec[
"obj_id"];
1369 public static function saveExportId($a_lm_id, $a_lmobj_id, $a_exp_id, $a_type =
"pg")
1373 $ilDB = $DIC->database();
1375 if (trim($a_exp_id) ==
"") {
1383 foreach ($entries as
$id =>
$e) {
1384 if (
$e[
"catalog"] ==
"ILIAS_NID") {
1386 $identifier->setMetaId(
$id);
1387 $identifier->delete();
1399 foreach ($entries as
$id =>
$e) {
1400 if (
$e[
"catalog"] ==
"ILIAS_NID") {
1402 $identifier->setMetaId(
$id);
1403 $identifier->read();
1404 $identifier->setEntry($a_exp_id);
1405 $identifier->update();
1412 $md =
new ilMD($a_lm_id, $a_lmobj_id, $a_type);
1413 $md_gen = $md->getGeneral();
1414 $identifier = $md_gen->addIdentifier();
1415 $identifier->setEntry($a_exp_id);
1416 $identifier->setCatalog(
"ILIAS_NID");
1417 $identifier->save();
1428 public static function getExportId($a_lm_id, $a_lmobj_id, $a_type =
"pg")
1437 foreach ($entries as
$e) {
1438 if ($e[
"catalog"] ==
"ILIAS_NID") {
1462 foreach ($entries as
$e) {
1463 if ($e[
"catalog"] ==
"ILIAS_NID") {
1465 $res[trim($e[
"entry"])]++;
1492 $a_mode = self::PAGE_TITLE,
1493 $a_include_numbers =
false,
1494 $a_time_scheduled_activation =
false,
1495 $a_force_content =
false,
1499 if ($a_lang ==
"") {
1503 if ($a_node[
"type"] ==
"st") {
1506 self::CHAPTER_TITLE,
1508 $a_time_scheduled_activation,
1518 $a_time_scheduled_activation,
1536 $db = $DIC->database();
1538 $title_data = array();
1539 if ($a_lang ==
"-") {
1540 $set =
$db->query(
"SELECT t.child, d.obj_id, d.title, d.short_title FROM lm_data d LEFT JOIN lm_tree t ON (d.obj_id = t.child) WHERE d.lm_id = " .
1541 $db->quote($a_lm_id,
"integer") .
" ORDER BY t.lft, d.title");
1543 $set =
$db->query(
"SELECT t.child, d.obj_id, tr.title, tr.short_title, d.title default_title, d.short_title default_short_title FROM lm_data d " .
1544 " LEFT JOIN lm_tree t ON (d.obj_id = t.child) " .
1545 " LEFT JOIN lm_data_transl tr ON (tr.id = d.obj_id AND tr.lang=" .
$db->quote($a_lang,
"text") .
") WHERE d.lm_id = " .
1546 $db->quote($a_lm_id,
"integer") .
" ORDER BY t.lft, d.title");
1548 while ($rec =
$db->fetchAssoc($set)) {
1549 $title_data[] = $rec;
1564 $db = $DIC->database();
1566 if ($a_lang !=
"-" && $a_lang !=
"") {
1568 $trans->setShortTitle($a_short_title);
1572 "UPDATE lm_data SET " .
1573 " short_title = " .
$db->quote($a_short_title,
"text") .
1574 " WHERE obj_id = " .
$db->quote($a_id,
"integer")
& cloneMD($a_rbac_id, $a_obj_id, $a_obj_type)
getShortTitle()
get short title of lm object
setLayout($a_val)
Set layout.
static _getPresentationTitle( $a_pg_id, $a_mode=self::CHAPTER_TITLE, $a_include_numbers=false, $a_time_scheduled_activation=false, $a_force_content=false, $a_lm_id=0, $a_lang="-", $a_include_short=false)
presentation title doesn't have to be page title, it may be chapter title + page title or chapter tit...
MDUpdateListener($a_element)
Meta data update listener.
static updateInternalLinks($a_copied_nodes, $a_parent_type="lm")
Update internal links, after multiple pages have been copied.
static _lookup($a_obj_id, $a_field)
Lookup title.
static saveExportId($a_lm_id, $a_lmobj_id, $a_exp_id, $a_type="pg")
Save export id.
static _lookupType($a_obj_id, $a_lm_id=0)
Lookup type.
static _hasUntrashedReference($a_obj_id)
checks wether an object has at least one reference that is not in trash
existsExportID($a_lm_id, $a_exp_id, $a_type="pg")
Does export ID exist in lm?
static getShortTitles($a_lm_id, $a_lang="-")
Get short titles.
static uniqueTypesCheck($a_items)
Check for unique types (all pages or all chapters)
static _exists($a_id)
checks wether a lm content object with specified id exists or not
static _extractInstOfTarget($a_target)
Extract installation id out of target.
static _lookupShortTitle($a_obj_id)
Lookup short title.
static _getIdForImportId($a_import_id)
get current object id for import id (static)
static saveTitles($a_lm, $a_titles, $a_lang="-")
Save titles for lm objects.
static _extractTypeOfTarget($a_target)
Extract type out of target.
setTitle($a_title)
set title of lm object
static _writeTitle($a_obj_id, $a_title)
static _extractObjIdOfTarget($a_target)
Extract object id out of target.
static _writePublicAccessStatus($a_pages, $a_cont_obj_id)
update public access flags in lm_data for all pages of a content object
static _getAllLMObjectsOfLM($a_lm_id, $a_type="")
Get all objects of learning module.
getExportIDInfo($a_lm_id, $a_exp_id, $a_type="pg")
Does export ID exist in lm?
static writeLayout($a_obj_id, $a_layout, $a_lm=null)
Write layout setting.
const LP_MODE_COLLECTION_TLT
static _lookupContObjID($a_id)
get learning module / digibook id for lm object
update()
update complete object
static _refreshStatus($a_obj_id, $a_users=null)
Set dirty.
static _lookupTitle($a_obj_id)
Lookup title.
static existsIdInRbacObject($a_rbac_id, $a_obj_type, $a_catalog, $a_entry)
Does id entry exist in rbac object?
static isHelpLM($a_lm_id)
Check if LM is a help LM.
__construct($a_content_obj, $a_id=0)
static _createEntry( $a_obj_id, $a_action, $a_info_params="", $a_obj_type="", $a_user_comment="", $a_update_last=false)
Creates a new history entry for an object.
static _getAllObjectsForImportId($a_import_id, $a_in_lm=0)
Get all items for an import ID.
static _getAllReferences($a_id)
get all reference ids of object
static getTree($a_cont_obj_id)
Get learningmodule tree.
static getDuplicateExportIDs($a_lm_id, $a_type="pg")
Get duplicate export IDs (count export ID usages)
foreach($_POST as $key=> $value) $res
static clipboardCopy($a_cont_obj_id, $a_ids)
Copy a set of chapters/pages into the clipboard.
static _deleteAllObjectData(&$a_cobj)
delete all objects of content object (digi book / learning module)
static putInTree($a_obj, $a_parent_id="", $a_target_node_id="")
put this object into content object tree
static preloadDataByLM($a_lm_id)
Preload data records by lm.
static clipboardCut($a_cont_obj_id, $a_ids)
Copy a set of chapters/pages into the clipboard.
static _getPresentationTitle( $a_st_id, $a_mode=self::CHAPTER_TITLE, $a_include_numbers=false, $a_time_scheduled_activation=false, $a_force_content=false, $a_lm_id=0, $a_lang="-", $a_include_short=false)
get presentation title
static getInstance(&$a_content_obj, $a_id=0, $a_halt=true)
static _getEntriesForObj($a_rbac_id, $a_obj_id, $a_obj_type)
Get IDs for an object.
static _getPresentationTitle( $a_node, $a_mode=self::PAGE_TITLE, $a_include_numbers=false, $a_time_scheduled_activation=false, $a_force_content=false, $a_lm_id=0, $a_lang="-")
Get affective title.
setDescription($a_description)
static _getSourcesOfTarget($a_target_type, $a_target_id, $a_target_inst)
get all sources of a link target
updateMetaData()
update meta data entry
static getExportId($a_lm_id, $a_lmobj_id, $a_type="pg")
Get export ID.
static _getMobsForTarget($a_type, $a_target)
Get areas for a certain target.
static lookupLayout($a_obj_id)
Lookup type.
static _writeImportId($a_id, $a_import_id)
write import id to db (static)
static getInstanceByObjId($a_obj_id, $stop_on_error=true)
get an instance of an Ilias object by object id
static _lookupType($a_id, $a_reference=false)
lookup object type
setDataRecord($a_record)
this method should only be called by class ilLMObjectFactory
static getPagesOfChapter($a_lm_id, $a_chap_id)
Get pages of chapter.
setShortTitle($a_title)
set short title of lm object
setContentObject(&$a_content_obj)
static getInstance($a_parent_type, $a_id=0, $a_old_nr=0, $a_lang="-")
Get page object instance.
getTitle()
get title of lm object
createMetaData()
create meta data entry
static writeShortTitle($a_id, $a_short_title, $a_lang="-")
Write short title.
static lookupTranslations($a_parent_type, $a_id)
Lookup translations.
static readIdData($a_rbac_id, $a_obj_type, $a_catalog, $a_entry)
Does id entry exist in rbac object?
deleteMetaData()
delete meta data entry
static pasteTree( $a_target_lm, $a_item_id, $a_parent_id, $a_target, $a_insert_time, &$a_copied_nodes, $a_as_copy=false, $a_source_lm=null)
Paste item (tree) from clipboard to current lm.
static _getEntriesForRbacObj($a_rbac_id, $a_obj_type="")
Get IDs for an rbac object.
static _isPagePublic($a_node_id, $a_check_public_mode=false)
static getObjectList($lm_id, $type="")
static
static yn2tf($a_yn)
convert "y"/"n" to true/false
Translation information on lm object.
static getInstance($a_obj_id)
static _lookupNID($a_lm_id, $a_lm_obj_id, $a_type)
lookup named identifier (ILIAS_NID)
Extension of ilPageObject for learning modules.