40 'No import id given.',
47 $ilLog = $DIC[
'ilLog'];
49 $ilLog->write(
"SOAP getObjIdByImportId(): import_id = " . $import_id .
' obj_id = ' . $obj_id);
50 return $obj_id ?:
"0";
66 'No import id given.',
73 $tree = $DIC->repositoryTree();
79 if ($tree->isInTree($ref_id)) {
99 'No object id given.',
106 foreach ($ref_ids as
$ref_id) {
124 if (!count($ref_ids)) {
125 return $this->
raiseError(
'No reference id(s) given.',
'Client');
129 foreach ($ref_ids as
$ref_id) {
130 $ref_id = trim($ref_id);
131 if (!is_numeric($ref_id)) {
132 return $this->
raiseError(
'Reference ID has to be numeric. Value: ' . $ref_id,
'Client');
137 return $this->
raiseError(
'No object found for reference ID. Value: ' . $ref_id,
'Client');
141 'No untrashed reference found for reference ID. Value: ' . $ref_id,
145 $obj_ids[] = $obj_id;
164 return $this->
raiseError(
'Cannot create object instance!',
'Server');
167 return $this->
raiseError(
"Object with ID $a_ref_id has been deleted.",
'Client');
171 $xml_writer->enablePermissionCheck(
true);
174 $xml_writer->enableOperations(
true);
176 $xml_writer->setObjects(array($tmp_obj));
177 if ($xml_writer->start()) {
178 return $xml_writer->getXML();
180 return $this->
raiseError(
'Cannot create object xml !',
'Server');
194 if ($a_title ===
'') {
196 'No valid query string given.',
201 $query_parser->setMinWordLength(0);
203 $query_parser->parse();
204 if (!$query_parser->validate()) {
206 $query_parser->getMessage(),
212 $object_search->setFields(array(
'title'));
213 $object_search->appendToFilter(
'role');
214 $object_search->appendToFilter(
'rolt');
215 $res = $object_search->performSearch();
223 foreach (
$res->getUniqueResults() as $entry) {
224 if ($entry[
'type'] ===
'role' || $entry[
'type'] ===
'rolt') {
239 $xml_writer->enablePermissionCheck(
true);
242 $xml_writer->enableOperations(
true);
244 $xml_writer->setObjects($objs);
245 if ($xml_writer->start()) {
246 return $xml_writer->getXML();
248 return $this->
raiseError(
'Cannot create object xml !',
'Server');
263 if ($combination !==
'and' && $combination !==
'or') {
265 'No valid combination given. Must be "and" or "or".',
274 $typeFilterQuery =
'';
275 if (is_array($types)) {
276 foreach ($types as $objectType) {
277 if ($typeFilterQuery ===
'') {
278 $typeFilterQuery .=
'+( ';
280 $typeFilterQuery .=
'OR';
282 $typeFilterQuery .= (
' type:' . $objectType .
' ');
284 $typeFilterQuery .=
') ';
288 $query_parser->parse();
294 $filter->setCandidates($searcher->getResult());
297 $result_ids = $filter->getResults();
300 foreach ($result_ids as
$ref_id => $obj_id) {
307 if ($filter->getResultObjIds()) {
308 $highlighter = $searcher->highlight($filter->getResultObjIds());
314 $query_parser->parse();
315 if (!$query_parser->validate()) {
317 $query_parser->getMessage(),
323 $object_search->setFilter($types);
324 $res = $object_search->performSearch();
328 $res->setMaxHits(100);
332 foreach (
$res->getUniqueResults() as $entry) {
346 $xml_writer->enableReferences(
false);
348 $xml_writer->setHighlighter($highlighter);
351 $xml_writer->enablePermissionCheck(
true);
355 $xml_writer->enableOperations(
true);
358 $xml_writer->setObjects($objs);
359 if ($xml_writer->start()) {
360 return $xml_writer->getXML();
363 return $this->
raiseError(
'Cannot create object xml !',
'Server');
382 $tree = $DIC[
'tree'];
386 'No valid reference id given.',
392 'No valid reference id given.',
397 if (!is_array($types) || empty($types)) {
403 foreach ($tree->getChilds($ref_id,
'title') as $child) {
404 if ($all || in_array($child[
'type'], $types,
true)) {
412 $xml_writer->enablePermissionCheck(
true);
413 $xml_writer->setObjects($objs);
414 $xml_writer->enableOperations(
true);
419 if ($xml_writer->start()) {
420 return $xml_writer->getXML();
422 return $this->
raiseError(
'Cannot create object xml !',
'Server');
439 $tree = $DIC[
'tree'];
440 $access = $DIC[
'ilAccess'];
442 $nodedata = $tree->getNodeData($ref_id);
443 $nodearray = $tree->getSubTree($nodedata);
446 if (!is_array($types) || empty($types)) {
454 $objDefinition = $DIC[
'objDefinition'];
456 foreach ($nodearray as $node) {
458 !$objDefinition->isAdministrationObject($node[
'type']) &&
459 !$objDefinition->isSystemObject($node[
'type']) &&
460 ($all || !in_array($node[
'type'], $filter,
true)) &&
461 $access->checkAccess(
"read",
"", (
int) $node[
'ref_id']) &&
468 $xml_writer->enablePermissionCheck(
true);
469 $xml_writer->setObjects($nodes);
470 $xml_writer->enableOperations(
false);
476 if ($xml_writer->start()) {
477 return $xml_writer->getXML();
480 return $this->
raiseError(
'Cannot create object xml !',
'Server');
486 public function addObject(
string $sid,
int $a_target_id,
string $a_xml)
496 'No valid xml string given.',
503 $rbacsystem = $DIC[
'rbacsystem'];
504 $objDefinition = $DIC[
'objDefinition'];
505 $ilUser = $DIC[
'ilUser'];
507 $ilObjDataCache = $DIC[
'ilObjDataCache'];
511 'No valid target given.',
517 return $this->
raiseError(
"Parent with ID $a_target_id has been deleted.",
'Client');
520 $allowed_types = array(
'root',
'cat',
'grp',
'crs',
'fold');
521 if (!in_array($target_obj->getType(), $allowed_types)) {
523 'No valid target type. Target must be reference id of "course, group, category or folder"',
528 $allowed_subtypes = $target_obj->getPossibleSubObjects();
530 foreach ($allowed_subtypes as $row) {
531 if ($row[
'name'] !==
'rolf') {
532 $allowed[] = $row[
'name'];
539 $xml_parser->startParsing();
541 return $this->
raiseError($se->getMessage(),
'Client');
543 return $this->
raiseError($e->getMessage(),
'Client');
547 foreach ($xml_parser->getObjectData() as $object_data) {
554 if (!in_array($object_data[
'type'], $allowed,
true)) {
556 'Objects of type: ' . $object_data[
'type'] .
' are not allowed to be subobjects of type ' .
557 $target_obj->getType() .
'!',
561 if (!$rbacsystem->checkAccess(
'create', $a_target_id, $object_data[
'type'])) {
563 'No permission to create objects of type ' . $object_data[
'type'] .
'!',
571 'An object with import id ' . $object_data[
'import_id'] .
' already exists!',
577 $class_name = $objDefinition->getClassName($object_data[
'type']);
578 $location = $objDefinition->getLocation($object_data[
'type']);
580 $class_constr =
"ilObj" . $class_name;
582 $newObj =
new $class_constr();
583 if (isset($object_data[
'owner']) && $object_data[
'owner'] !=
'') {
584 if ((
int) $object_data[
'owner']) {
586 $ilObjDataCache->lookupType((
int) $object_data[
'owner']) ===
'usr') {
587 $newObj->setOwner((
int) $object_data[
'owner']);
592 $newObj->setOwner((
int) $usr_id);
597 $newObj->setType($object_data[
'type']);
598 if ($object_data[
'import_id'] !=
'') {
599 $newObj->setImportId($object_data[
'import_id']);
602 if ($objDefinition->supportsOfflineHandling($newObj->getType())) {
603 $newObj->setOfflineStatus((
bool) $object_data[
'offline']);
605 $newObj->setTitle($object_data[
'title']);
606 $newObj->setDescription($object_data[
'description']);
608 $newObj->createReference();
609 $newObj->putInTree($a_target_id);
610 $newObj->setPermissions($a_target_id);
612 switch ($object_data[
'type']) {
616 $object_data[
'owner'] ?: $ilUser->getId(),
617 $newObj->getDefaultAdminRole()
625 $newObj->createLMTree();
629 $newObj->addTranslation(
630 $object_data[
"title"],
631 $object_data[
"description"],
650 public function addReference(
string $sid,
int $a_source_id,
int $a_target_id)
661 $objDefinition = $DIC[
'objDefinition'];
662 $rbacsystem = $DIC[
'rbacsystem'];
663 $tree = $DIC[
'tree'];
667 'No valid source id given.',
673 'No valid target id given.',
678 if (!$objDefinition->allowLink($source_obj->getType()) and
679 $source_obj->getType() !==
'cat' and
680 $source_obj->getType() !==
'crs') {
682 'Linking of object type: ' . $source_obj->getType() .
' is not allowed',
687 $allowed_subtypes = $target_obj->getPossibleSubObjects();
689 foreach ($allowed_subtypes as $row) {
690 if ($row[
'name'] !==
'rolf') {
691 $allowed[] = $row[
'name'];
694 if (!in_array($source_obj->getType(), $allowed,
true)) {
696 'Objects of type: ' . $source_obj->getType() .
' are not allowed to be subobjects of type ' .
697 $target_obj->getType() .
'!',
703 if (!$rbacsystem->checkAccess(
'create', $target_obj->getRefId(), $source_obj->getType())) {
705 'No permission to create objects of type ' . $source_obj->getType() .
'!',
709 if (!$rbacsystem->checkAccess(
'delete', $source_obj->getRefId())) {
711 'No permission to link object with id: ' . $source_obj->getRefId() .
'!',
716 if ($source_obj->getType() !==
'cat' and $source_obj->getType() !==
'crs') {
718 $possibleChilds = $tree->getChildsByType($target_obj->getRefId(), $source_obj->getType());
719 foreach ($possibleChilds as $child) {
720 if ((
int) $child[
"obj_id"] === $source_obj->getId()) {
721 return $this->
raiseError(
"Object already linked to target.",
"Client");
727 $new_ref_id = $source_obj->createReference();
728 $source_obj->putInTree($target_obj->getRefId());
729 $source_obj->setPermissions($target_obj->getRefId());
731 return $new_ref_id ?:
"0";
735 switch ($source_obj->getType()) {
748 $new_ref_id = $new_ref->createReference();
750 $new_ref->putInTree($target_obj->getRefId());
751 $new_ref->setPermissions($target_obj->getRefId());
753 $new_ref->setTargetId($source_obj->getId());
756 if (!$new_ref instanceof
ilObject) {
760 return $new_ref_id ?: 0;
777 $tree = $DIC->repositoryTree();
778 $rbacsystem = $DIC[
'rbacsystem'];
779 $rbacadmin = $DIC[
'rbacadmin'];
780 $user = $DIC->user();
784 'No valid reference id given.',
788 if (!$rbacsystem->checkAccess(
'delete', $del_obj->getRefId())) {
790 'No permission to delete object with id: ' . $del_obj->getRefId() .
'!',
795 if ($tree->isDeleted($reference_id)) {
796 return $this->
raiseError(
'Node already deleted',
'Server');
799 if ($del_obj->getType() ===
'rolf') {
800 return $this->
raiseError(
'Delete is not available for role folders.',
'Client');
803 $subnodes = $tree->getSubTree($tree->getNodeData($reference_id));
804 foreach ($subnodes as $subnode) {
805 $rbacadmin->revokePermission($subnode[
"child"]);
807 if (!$tree->moveToTrash($reference_id,
true, $user->getId())) {
808 return $this->
raiseError(
'Node already deleted',
'Client');
824 if ($import_id ===
'') {
826 'No import id given. Aborting!',
832 $rbacsystem = $DIC[
'rbacsystem'];
833 $tree = $DIC[
'tree'];
834 $ilLog = $DIC[
'ilLog'];
839 'No object found with import id: ' . $import_id,
845 $permission_ok =
false;
847 if ($rbacsystem->checkAccess(
'delete', $ref_id)) {
848 $permission_ok =
true;
852 if (!$permission_ok) {
854 'No permission to delete the object with import id: ' . $import_id,
860 foreach ($ref_ids as $ref_id) {
862 $node_data = $tree->getNodeData($ref_id);
863 $subtree_nodes = $tree->getSubtree($node_data);
865 foreach ($subtree_nodes as $node) {
866 $ilLog->write(
'Soap: removeFromSystemByImportId(). Deleting object with title id: ' . $node[
'title']);
868 if (!is_object($tmp_obj)) {
870 'Cannot create instance of reference id: ' . $node[
'ref_id'],
877 $tree->deleteTree($node_data);
885 public function updateObjects(
string $sid,
string $a_xml)
895 'No valid xml string given.',
902 $rbacreview = $DIC[
'rbacreview'];
903 $rbacsystem = $DIC[
'rbacsystem'];
905 $ilAccess = $DIC[
'ilAccess'];
906 $objDefinition = $DIC[
'objDefinition'];
910 $xml_parser->startParsing();
912 return $this->
raiseError($se->getMessage(),
'Client');
914 return $this->
raiseError($e->getMessage(),
'Client');
918 $object_datas = $xml_parser->getObjectData();
919 foreach ($object_datas as &$object_data) {
925 if (!$object_data[
"obj_id"]) {
926 return $this->
raiseError(
'No obj_id in xml found.',
'Client');
927 } elseif ((
int) $object_data[
"obj_id"] === -1 && count($object_data[
"references"]) > 0) {
930 foreach ($object_data[
"references"] as $refid) {
938 if (!$obj_id_from_refid) {
940 'No obj_id found for reference id ' . $object_data[
"references"][0],
941 'CLIENT_OBJECT_NOT_FOUND' 946 $object_data[
"obj_id"] = $obj_id_from_refid;
950 if ($tmp_obj ===
null) {
952 'No object for id ' . $object_data[
'obj_id'] .
'!',
953 'CLIENT_OBJECT_NOT_FOUND' 957 $object_data[
"instance"] = $tmp_obj;
959 if ($object_data[
'type'] ===
'role') {
960 $rolf_ids = $rbacreview->getFoldersAssignedToRole($object_data[
'obj_id'],
true);
961 $rolf_id = $rolf_ids[0];
963 if (!$rbacsystem->checkAccess(
'write', $rolf_id)) {
965 'No write permission for object with id ' . $object_data[
'obj_id'] .
'!',
970 $permission_ok =
false;
972 if ($ilAccess->checkAccess(
'write',
'', $ref_id)) {
973 $permission_ok =
true;
977 if (!$permission_ok) {
979 'No write permission for object with id ' . $object_data[
'obj_id'] .
'!',
988 if (count($object_datas) > 0) {
989 foreach ($object_datas as $object_data) {
994 $tmp_obj = $object_data[
"instance"];
995 $tmp_obj->setTitle($object_data[
'title']);
996 $tmp_obj->setDescription($object_data[
'description']);
998 if ($objDefinition->supportsOfflineHandling($tmp_obj->getType())) {
999 $tmp_obj->setOfflineStatus($object_data[
'offline']);
1003 if ($object_data[
'owner'] !=
'' && is_numeric($object_data[
'owner'])) {
1004 $tmp_obj->setOwner($object_data[
'owner']);
1005 $tmp_obj->updateOwner();
1027 $rbacreview = $DIC[
'rbacreview'];
1028 $rbacadmin = $DIC[
'rbacadmin'];
1029 $objDefinition = $DIC[
'objDefinition'];
1030 $rbacsystem = $DIC[
'rbacsystem'];
1032 $ilUser = $DIC[
'ilUser'];
1033 $tree = $DIC[
'tree'];
1037 return $this->
raiseError(
'No valid source given.',
'Client');
1042 return $this->
raiseError(
'No valid target given.',
'Client');
1047 return $this->
raiseError(
'Object is trashed.',
'Client');
1051 return $this->
raiseError(
'Object is trashed.',
'Client');
1054 $canAddType = $this->
canAddType($source_object_type, $target_object_type, $target_id);
1055 if ($this->
isFault($canAddType)) {
1060 $possibleChilds = $tree->getChildsByType($target_id, $ref_id);
1061 foreach ($possibleChilds as $child) {
1062 if ((
int) $child[
"obj_id"] === $ref_id) {
1063 return $this->
raiseError(
"Object already exists in target.",
"Client");
1068 if ($tree->isGrandChild($ref_id, $target_id)) {
1069 return $this->
raiseError(
"Cannot move object into itself.",
"Client");
1072 $old_parent = $tree->getParentId($ref_id);
1073 $tree->moveTree($ref_id, $target_id);
1074 $rbacadmin->adjustMovedObjectPermissions($ref_id, $old_parent);
1083 public function copyObject(
string $sid,
string $copy_settings_xml)
1094 $rbacreview = $DIC[
'rbacreview'];
1095 $objDefinition = $DIC[
'objDefinition'];
1096 $rbacsystem = $DIC[
'rbacsystem'];
1098 $ilUser = $DIC[
'ilUser'];
1102 $xml_parser->startParsing();
1104 return $this->
raiseError($se->getMessage(),
"Client");
1108 if (!$rbacsystem->checkAccess(
'copy', $xml_parser->getSourceId())) {
1110 "Missing copy permissions for object with reference id " . $xml_parser->getSourceId(),
1116 $source_id = $xml_parser->getSourceId();
1117 $target_id = $xml_parser->getTargetId();
1121 return $this->
raiseError(
'No valid source given.',
'Client');
1126 return $this->
raiseError(
'No valid target given.',
'Client');
1129 $canAddType = $this->
canAddType($source_object_type, $target_object_type, $target_id);
1130 if ($this->
isFault($canAddType)) {
1135 $options = $xml_parser->getOptions();
1140 $clientid = substr($sid, strpos($sid,
"::") + 2);
1141 $sessionid = str_replace(
"::" . $clientid,
"", $sid);
1143 $ret = $source_object->cloneAllObject(
1146 $source_object_type,
1153 return $ret[
'ref_id'];
1159 $wizard_options->saveOwner($ilUser->getId());
1160 $wizard_options->saveRoot($source_id);
1162 foreach ($options as $source_id => $option) {
1163 $wizard_options->addEntry($source_id, $option);
1165 $wizard_options->read();
1168 $newObject = $source_object->cloneObject($xml_parser->getTargetId(), $copy_id);
1169 return is_object($newObject) ? $newObject->getRefId() : -1;
1186 $ilAccess = $DIC[
'ilAccess'];
1187 $objDefinition = $DIC[
'objDefinition'];
1188 $rbacsystem = $DIC[
'rbacsystem'];
1190 $ilUser = $DIC[
'ilUser'];
1192 if (!$rbacsystem->checkAccess(
'read', $ref_id)) {
1193 return $this->
raiseError(
"Missing read permissions for object with reference id " . $ref_id,
'Client');
1197 return $this->
raiseError(
"Object is in Trash",
'Client');
1201 $tree = $DIC[
'tree'];
1203 $items = $tree->getPathFull($ref_id);
1206 $xmlResultSet->addColumn(
"ref_id");
1207 $xmlResultSet->addColumn(
"type");
1208 $xmlResultSet->addColumn(
"title");
1211 foreach ($items as $item) {
1212 if ((
int) $item[
"ref_id"] === $ref_id) {
1215 if ($item[
"title"] ===
"ILIAS" && $item[
"type"] ===
"root") {
1216 $item[
"title"] =
$lng->txt(
"repository");
1220 $xmlResultSet->addRow($row);
1221 $row->setValue(
"ref_id", $item[
"ref_id"]);
1222 $row->setValue(
"type", $item[
"type"]);
1223 $row->setValue(
"title", $item[
"title"]);
1226 return $writer->getXML();
1229 private function canAddType(
string $type,
string $target_type,
int $target_id)
1234 $objDefinition = $DIC[
'objDefinition'];
1235 $rbacsystem = $DIC[
'rbacsystem'];
1237 $allowed_types = array(
'root',
'cat',
'grp',
'crs',
'fold');
1238 if (!in_array($target_type, $allowed_types,
true)) {
1240 'No valid target type. Target must be reference id of "course, group, category or folder"',
1245 $allowed_subtypes = $objDefinition->getSubObjects($target_type);
1248 foreach ($allowed_subtypes as $row) {
1249 if ($row[
'name'] !==
'rolf') {
1250 $allowed[] = $row[
'name'];
1254 if (!in_array($type, $allowed,
true)) {
1256 'Objects of type: ' . $type .
' are not allowed to be subobjects of type ' . $target_type .
'!',
1260 if (!$rbacsystem->checkAccess(
'create', $target_id, $type)) {
1261 return $this->
raiseError(
'No permission to create objects of type ' . $type .
'!',
'Client');
1271 $ilAccess = $DIC[
'ilAccess'];
1273 if (!isset($a_object_data[
'references']) || !count($a_object_data[
'references'])) {
1276 if ($a_action ===
'create') {
1277 if (count($a_object_data[
'references']) > 1 && in_array(
1278 $a_object_data[
'type'],
1279 [
'cat',
'crs',
'grp',
'fold'],
1283 "Cannot create references for type " . $a_object_data[
'type'],
1287 if (count($a_object_data[
'references']) === 1 && $a_target_id != $a_object_data[
'references'][0][
'parent_id']) {
1289 "Cannot create references for type " . $a_object_data[
'type'],
1294 foreach ($a_object_data[
'references'] as $ref_data) {
1295 if (!$ref_data[
'parent_id']) {
1296 return $this->
raiseError(
'Element References: No parent Id given!',
'Client');
1300 $can_add_type = $this->
canAddType($a_object_data[
'type'], $target_type, $ref_data[
'parent_id']);
1301 if ($this->
isFault($can_add_type)) {
1302 return $can_add_type;
1308 if ($a_action ===
'update') {
1309 foreach ($a_object_data[
'references'] as $ref_data) {
1310 if (!$ref_data[
'ref_id']) {
1311 return $this->
raiseError(
'Element References: No reference id given!',
'Client');
1314 if (!$ilAccess->checkAccess(
'write',
'', $ref_data[
'ref_id'])) {
1316 'No write permission for object with reference id ' . $ref_data[
'ref_id'] .
'!',
1331 $tree = $DIC[
'tree'];
1332 $ilLog = $DIC[
'ilLog'];
1334 if (!isset($a_object_data[
'references']) || !count($a_object_data[
'references'])) {
1338 foreach ($a_object_data[
'references'] as $ref_data) {
1339 if (isset($ref_data[
'time_target'])) {
1343 $items->toggleChangeable($ref_data[
'time_target'][
'changeable'] ?? $old[
'changeable']);
1344 $items->setTimingStart($ref_data[
'time_target'][
'starting_time'] ?? $old[
'timing_start']);
1345 $items->setTimingEnd($ref_data[
'time_target'][
'ending_time'] ?? $old[
'timing_end']);
1346 $items->toggleVisible($ref_data[
'time_target'][
'timing_visibility'] ?? $old[
'visible']);
1347 $items->setSuggestionStart($ref_data[
'time_target'][
'suggestion_start'] ?? $old[
'suggestion_start']);
1348 $items->setSuggestionEnd($ref_data[
'time_target'][
'suggestion_end'] ?? $old[
'suggestion_end']);
1350 switch ($ref_data[
'time_target'][
'timing_type']) {
1366 $items->update($ref_data[
'ref_id']);
1375 $tree = $DIC->repositoryTree();
1376 $ilLog = $DIC[
'ilLog'];
1378 if (!isset($a_object_data[
'references']) || !count($a_object_data[
'references'])) {
1382 $original_id = $source->
getRefId();
1384 foreach ($a_object_data[
'references'] as $ref_data) {
1385 $new_ref_id = $original_id;
1386 if ($tree->getParentId($original_id) !== (
int) $ref_data[
'parent_id']) {
1389 $source->
putInTree($ref_data[
'parent_id']);
1392 if (isset($ref_data[
'time_target']) ) {
1393 if (!isset($ref_data[
'time_target'][
'starting_time'])) {
1394 $ref_data[
'time_target'][
'starting_time'] = time();
1396 if (!isset($ref_data[
'time_target'][
'ending_time'])) {
1397 $ref_data[
'time_target'][
'ending_time'] = time();
1401 $items->toggleChangeable($ref_data[
'time_target'][
'changeable']);
1402 $items->setTimingStart($ref_data[
'time_target'][
'starting_time']);
1403 $items->setTimingEnd($ref_data[
'time_target'][
'ending_time']);
1404 $items->toggleVisible($ref_data[
'time_target'][
'timing_visibility']);
1405 $items->setSuggestionStart($ref_data[
'time_target'][
'suggestion_start']);
1406 $items->setSuggestionEnd($ref_data[
'time_target'][
'suggestion_end']);
1408 switch ($ref_data[
'time_target'][
'timing_type']) {
1424 $items->update($new_ref_id);
static _lookupObjIdByImportId(string $import_id)
Get (latest) object id for an import id.
XML Writer for XMLResultSet.
Parses result XML from lucene search highlight.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static _getAllReferences(int $id)
get all reference ids for object ID
static getInstance(ilLuceneQueryParser $qp)
Get singleton instance.
getRefIdsByImportId(string $sid, string $import_id)
getObjIdByImportId(string $sid, string $import_id)
raiseError(string $a_message, $a_code)
const TIMINGS_DEACTIVATED
static _hasUntrashedReference(int $obj_id)
checks whether an object has at least one reference that is not in trash
Row Class for XMLResultSet.
static _lookupId($a_user_str)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getXMLTree(string $sid, int $ref_id, ?array $types=null, ?int $user_id=null)
setPermissions(int $parent_ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
updateReferences(array $a_object_data)
getPathForRefId(string $sid, int $ref_id)
static getTypeByRefId(int $ref_id, bool $stop_on_error=true)
get object type by reference id
searchObjects(string $sid, ?array $types, string $key, string $combination, ?int $user_id=null)
static _lookupObjId(int $ref_id)
getObjectsByTitle(string $sid, string $a_title, ?int $user_id=null)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
getObjIdsByRefIds(string $sid, array $ref_ids)
createReference()
creates reference for object
getObjectByReference(string $sid, int $a_ref_id, ?int $user_id=null)
deleteObject(string $sid, int $reference_id)
canAddType(string $type, string $target_type, int $target_id)
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
const TIMING_TEMPORARILY_AVAILABLE
getRefIdsByObjId(string $sid, int $obj_id)
static getInstance(int $a_user_id)
checkSession(string $sid)
static _isInTrash(int $ref_id)
static getInstanceByRefId(int $ref_id, bool $stop_on_error=true)
get an instance of an Ilias object by reference id
static _lookupObjectId(int $ref_id)
static _adjustMovedObjectConditions(int $a_ref_id)
In the moment it is not allowed to create preconditions on objects that are located outside of a cour...
static _allocateCopyId()
Allocate a copy for further entries.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
copyObject(string $sid, string $copy_settings_xml)
static getInstanceByObjId(?int $obj_id, bool $stop_on_error=true)
get an instance of an Ilias object by object id
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
putInTree(int $parent_ref_id)
maybe this method should be in tree object!?
static getItem(int $ref_id)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
moveObject(string $sid, int $ref_id, int $target_id)
static _getInstance(int $a_copy_id)
addReference(string $sid, int $a_source_id, int $a_target_id)
validateReferences(string $a_action, array $a_object_data, int $a_target_id=0)
static _lookupType(int $id, bool $reference=false)
Class ilObjectActivation.
getTreeChilds(string $sid, int $ref_id, ?array $types=null, ?int $user_id=null)
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
removeFromSystemByImportId(string $sid, string $import_id)
addReferences(ilObject $source, array $a_object_data)