19 declare(strict_types=1);
79 $this->type_repository =
$dic[
'model.Type.ilStudyProgrammeTypeRepository'];
80 $this->auto_categories_repository =
$dic[
'model.AutoCategories.ilStudyProgrammeAutoCategoriesRepository'];
81 $this->auto_memberships_repository =
$dic[
'model.AutoMemberships.ilStudyProgrammeAutoMembershipsRepository'];
82 $this->membersourcereader_factory =
$dic[
'model.AutoMemberships.ilStudyProgrammeMembershipSourceReaderFactory'];
84 $this->settings_repository =
$dic[
'model.Settings.ilStudyProgrammeSettingsRepository'];
85 $this->assignment_repository =
$dic[
'repo.assignment'];
86 $this->events =
$dic[
'ilStudyProgrammeEvents'];
96 $ilUser = $DIC[
'ilUser'];
97 $this->webdir = $DIC->filesystem()->web();
100 $this->db = $DIC[
'ilDB'];
101 $this->
lng = $DIC[
'lng'];
106 $this->custom_icon_factory = $DIC[
'object.customicons.factory'];
108 self::initStudyProgrammeCache();
113 if (self::$study_programme_cache ===
null) {
124 $this->parent =
false;
132 $this->children =
null;
140 $this->lp_children =
null;
146 if (count($refs) < 1) {
147 throw new ilException(
"Could not find ref_id for programme with obj_id $obj_id");
149 return (
int) array_shift($refs);
164 if (self::$study_programme_cache ===
null) {
165 self::initStudyProgrammeCache();
167 return self::$study_programme_cache->getInstanceByRefId((
int)
$ref_id);
196 $obj->createReference();
197 self::$study_programme_cache->addInstance($obj);
213 throw new Exception(
"The given settings-object does not belong to this programme", 1);
232 $this->assignment_repository->deleteAllAssignmentsForProgrammeId($this->
getId());
240 $id = (
int) parent::create();
252 $type_settings = $this->
getSettings()->getTypeSettings();
254 if ($type_settings->getTypeId()) {
258 $this->type_repository->getAssignedAMDRecordIdsByType($type_settings->getTypeId())
272 public function delete():
bool 275 if (!parent::delete()) {
282 $this->auto_categories_repository->deleteFor($this->
getId());
290 $this->events->raise(
'delete', [
'object' => $this,
'obj_id' => $this->
getId()]);
296 $sub_type_id = $this->
getSettings()->getTypeSettings()->getTypeId();
299 $type = $this->type_repository->getType($sub_type_id);
302 return !is_null(
$type) && count($this->type_repository->getAssignedAMDRecordIdsByType(
$type->getId(),
true)) > 0;
307 $new_obj = parent::cloneObject($target_ref_id, $copy_id, $omit_tree);
308 $settings = $this->
getSettings()->withObjId($new_obj->getId());
309 $settings = $settings->withAssessmentSettings(
312 $new_obj->updateSettings($settings);
333 return $this->
getSettings()->getAssessmentSettings()->getPoints();
345 $settings->withAssessmentSettings($settings->getAssessmentSettings()->withPoints($points))
372 if ($this->tree->isInTree($this->getRefId())) {
374 $this->settings_repository->update(
378 $this->settings_repository->update(
382 $this->settings_repository->update(
391 return $this->
getSettings()->getAssessmentSettings()->getStatus();
403 $settings->withAssessmentSettings($settings->getAssessmentSettings()->withStatus($a_status))
419 $type_settings = $this->
getSettings()->getTypeSettings();
420 if (!in_array($type_settings->getTypeId(), array(
"-",
"0"))) {
421 $subtype_id = $type_settings->getTypeId();
422 return $this->type_repository->getType($subtype_id);
430 $global_settings =
new ilSetting(
'certificate');
431 $global_active = (bool) $global_settings->get(
'active',
'0');
432 if (!$global_active) {
437 return $certificate_template->isCurrentlyActive();
453 public static function getAllChildren(
int $a_ref_id,
bool $include_references =
false): array
456 $root = self::getInstanceByRefId($a_ref_id);
457 $root_id = $root->getId();
460 if ($prg->
getId() === $root_id) {
464 }, $include_references);
489 public function getChildren(
bool $include_references =
false): array
493 if ($this->children ===
null) {
494 $ref_ids = $this->tree->getChildsByType($this->
getRefId(),
"prg");
498 $ref_ids = $sorting->sortItems(array(
'prg' => $ref_ids));
499 $ref_ids = $ref_ids[
'prg'];
501 $this->children =
array_map(
static function ($node_data) {
506 if ($include_references && $this->reference_children ===
null) {
507 $this->reference_children = [];
508 $ref_child_ref_ids = $this->tree->getChildsByType($this->
getRefId(),
"prgr");
509 foreach ($this->children as $prg) {
512 $this->tree->getChildsByType($prg->getRefId(),
"prgr"),
519 static function (
$data) {
520 return (
int)
$data[
'child'];
522 array_filter($ref_child_ref_ids,
static function (
$data) {
528 $this->reference_children[] =
532 return $include_references ?
533 array_merge($this->children, $this->reference_children) :
545 if ($this->parent ===
false) {
547 $parent_data = $this->tree->getParentNodeData($this->
getRefId());
548 if ($parent_data[
"type"] !==
"prg") {
549 $this->parent =
null;
551 $this->parent = self::getInstanceByRefId($parent_data[
"ref_id"]);
562 static function (
$id) {
570 static function ($prg_ref) use (
$tree) {
586 public function getParents(
bool $include_references =
false): array
590 $queque = [$current];
591 while ($element = array_shift($queque)) {
592 $parent = $element->getParent();
595 if ($this->tree->isDeleted($reference->getRefId())) {
598 $r_parent = $reference->getParent();
599 if (is_null($r_parent)) {
602 $queque[] = $r_parent;
603 $parents[] = $r_parent;
610 return array_reverse($parents);
618 public function hasChildren(
bool $include_references =
false): bool
631 return count($this->
getChildren($include_references));
644 while ($cur = $cur->getParent()) {
657 if (count($parents) < 1) {
673 if ($this->lp_children ===
null) {
674 $this->lp_children = array();
676 $ref_ids = $this->tree->getChildsByType($this->
getRefId(),
"crsr");
680 $ref_ids = $sorting->sortItems(array(
'crs_ref' => $ref_ids));
681 $ref_ids = $ref_ids[
'crs_ref'];
683 $lp_children =
array_map(
function ($node_data) {
684 $lp_obj = $this->object_factory->getInstanceByRefId((
int) $node_data[
"child"]);
687 return ($lp_obj instanceof $this) ?
null : $lp_obj;
690 $this->lp_children = array_filter($lp_children);
703 return array_map(
static function ($child) {
704 return $child->getId();
727 if (!$this->tree->isInTree($this->getRefId())) {
747 if ($fun($this) !==
false) {
748 foreach ($this->
getChildren($include_references) as $child) {
749 $child->applyToSubTreeNodes($fun, $include_references);
759 $node_data = $this->tree->getNodeData($this->
getRefId());
760 $crsrs = $this->tree->getSubTree($node_data,
true, [
"crsr"]);
762 $completed_crss = array();
763 foreach ($crsrs as $ref) {
773 $containing_prg = self::getInstanceByRefId((
int) $ref[
"parent"]);
774 if ($containing_prg->isActive()) {
775 $completed_crss[] = [
777 ,
"prg_ref_id" => (
int) $ref[
"parent"]
778 ,
"prg_obj_id" => $containing_prg->getId()
779 ,
"crsr_ref_id" => (
int) $ref[
"child"]
780 ,
"crsr_id" => (
int) $ref[
"obj_id"]
781 ,
"crs_ref_id" => (
int) $crs_ref_id
782 ,
"crs_id" => (
int) $crs_id
789 return $completed_crss;
814 if ($this->tree->isInTree($a_prg->
getRefId())) {
845 $this->settings_repository->update(
863 parent::putInTree($parent_ref_id);
866 $par = self::getInstanceByRefId($parent_ref_id);
867 $par->nodeInserted($this);
891 $node_data = $this->tree->getNodeData($a_prg->
getRefId());
892 $this->tree->deleteTree($node_data);
920 $rbacadmin = $DIC[
'rbacadmin'];
927 $rbacadmin->adjustMovedObjectPermissions($this->
getRefId(),
$parent->getRefId());
935 $parent->clearLPChildrenCache();
960 $this->members_cache =
null;
964 "ilObjStudyProgramme::assignUser: Can't assign user to program '" 965 . $this->
getId() .
"', since it's not in active status." 969 if (is_null($acting_usr_id)) {
973 $ass = $this->assignment_repository->createFor($this->
getId(), $usr_id, $acting_usr_id);
975 ->initAssignmentDates();
977 $ass = $ass->resetProgresses(
982 $this->assignment_repository->store($ass);
985 $this->events->userAssigned($ass);
999 $this->members_cache =
null;
1002 "ilObjStudyProgramme::removeAssignment: Assignment '" 1003 . $assignment->
getId() .
"' does not belong to study " 1004 .
"program '" . $this->
getId() .
"'." 1008 $this->assignment_repository->delete($assignment);
1011 foreach ($affected_node_ids as $node_obj_id) {
1015 $this->events->userDeassigned($assignment);
1021 return $this->assignment_repository->get($assignment_id);
1026 $this->assignment_repository->storeExpiryInfoSentFor($ass);
1031 $this->assignment_repository->resetExpiryInfoSentFor($ass);
1036 $this->assignment_repository->storeRiskyToFailSentFor($ass);
1041 $this->assignment_repository->resetRiskyToFailSentFor($ass);
1070 $assignments = $this->assignment_repository->getAllForNodeIsContained(
1075 usort($assignments,
function ($a_one, $a_other) {
1077 $a_one->getLastChange()->format(
'Y-m-d'),
1078 $a_other->getLastChange()->format(
'Y-m-d')
1081 return $assignments;
1089 return $this->assignment_repository->getAllForNodeIsContained($this->
getId());
1100 $usr_ids[] = $assignment->getUserId();
1102 return array_unique($usr_ids);
1110 if (!$this->members_cache) {
1112 static function ($assignment) {
1113 return $assignment->getUserId();
1115 $this->assignment_repository->getByPrgId($this->
getId())
1127 $count = $this->assignment_repository->countAllForNodeIsContained(
1143 return $this->assignment_repository->getAllForSpecificNode($this->
getId(), [$usr_id]);
1167 foreach ($assignments as $ass) {
1168 $this->assignment_repository->store($ass);
1178 $filter = $filter->withValues([
1179 'prg_status_hide_irrelevant' =>
true 1181 $count = $this->assignment_repository->countAllForNodeIsContained(
1192 fn($ass) => $ass->getUserId(),
1208 return $this->auto_categories_repository->getFor($this->
getId());
1223 $ac = $this->auto_categories_repository->create(
1227 $this->auto_categories_repository->update($ac);
1236 $this->auto_categories_repository->delete($this->
getId(), $category_ids);
1244 $this->auto_categories_repository->deleteFor($this->
getId());
1252 foreach (self::getProgrammesMonitoringCategory($cat_ref_id) as $prg) {
1255 $course_ref->setTargetRefId($crs_ref_id);
1256 $course_ref->create();
1257 $course_ref->createReference();
1258 $course_ref->putInTree($prg->getRefId());
1259 $course_ref->setPermissions($crs_ref_id);
1261 $course_ref->update();
1264 $lp->setMode($lp::LP_MODE_COURSE_REFERENCE);
1276 foreach (self::getProgrammesMonitoringCategory($cat_ref_id) as $prg) {
1277 foreach ($prg->getLPChildren() as $child) {
1278 if ((
int) $child->getTargetRefId() === $crs_ref_id) {
1295 static function (array $rec) {
1296 $values = array_values($rec);
1297 $prg_obj_id = (
int) array_shift($values);
1300 $prg_ref_id = (
int) array_shift($references);
1302 $prg = self::getInstanceByRefId($prg_ref_id);
1303 if ($prg->isAutoContentApplicable()) {
1307 $db::getProgrammesFor($cat_ref_id)
1321 $valid_status = in_array(
1335 return $valid_status && $crslnk_allowed;
1349 return $this->auto_memberships_repository->getFor($this->
getId());
1357 $ams = $this->auto_memberships_repository->create(
1366 $this->auto_memberships_repository->update($ams);
1374 $this->auto_memberships_repository->delete($this->
getId(), $type, $src_id);
1382 $this->auto_memberships_repository->deleteFor($this->
getId());
1390 $ams = $this->auto_memberships_repository->create(
1399 $this->auto_memberships_repository->update($ams);
1411 foreach ($member_ids as $usr_id) {
1417 $ams = $this->auto_memberships_repository->create(
1426 $this->auto_memberships_repository->update($ams);
1436 $source_reader = $this->membersourcereader_factory->getReaderFor($ams, $exclude_id);
1437 return $source_reader->getMemberIds();
1448 static function ($rec) {
1449 $values = array_values($rec);
1450 $prg_obj_id = (
int) array_shift($values);
1453 $prg_ref_id = (
int) array_shift($references);
1455 $prg = self::getInstanceByRefId($prg_ref_id);
1458 $db::getProgrammesFor($src_type, $src_id)
1465 foreach (self::getProgrammesMonitoringMemberSource($src_type, $src_id) as $prg) {
1466 if ($prg->isActive() &&
1467 !$prg->hasAssignmentsOfSingleProgramForUser($usr_id)) {
1469 $prg->assignUser($usr_id, $assigned_by);
1478 foreach (self::getProgrammesMonitoringMemberSource($src_type, $src_id) as $prg) {
1479 $assignments = $prg->getAssignmentsOfSingleProgramForUser($usr_id);
1480 $next_membership_source = $prg->getApplicableMembershipSourceForUser($usr_id, $src_id);
1482 foreach ($assignments as $assignment) {
1483 if (!$assignment->getProgressTree()->isInProgress()) {
1487 if (!is_null($next_membership_source) && $next_membership_source->isEnabled()) {
1488 $new_src_type = $next_membership_source->getSourceType();
1490 $assignment = $assignment->withLastChange($assigned_by, $now);
1491 $assignment_repository->
store($assignment);
1494 $assignment_repository->
delete($assignment);
1505 if ($ams->isEnabled()) {
1507 if (in_array($usr_id, $source_members)) {
1546 if (
$type ===
"crsr") {
1548 self::setProgressesCompletedIfParentIsProgrammeInLPCompletedMode($ref_id, $obj_id, $user_id);
1562 $tree = $DIC[
'tree'];
1564 if (count($node_data) === 0 || !array_key_exists(
'type', $node_data) || $node_data[
"type"] !==
"prg") {
1567 self::initStudyProgrammeCache();
1568 $prg = self::getInstanceByRefId($node_data[
"child"]);
1572 $prg->succeed($user_id, $obj_id);
1577 $progress_node_id = $this->
getId();
1578 if (is_null($ass)) {
1579 $user_assignments = $this->assignment_repository
1580 ->getAllForNodeIsContained($progress_node_id, [$usr_id]);
1582 $user_assignments = [$ass];
1585 foreach ($user_assignments as $ass) {
1586 $ass = $ass->succeed(
1591 $this->assignment_repository->store($ass);
1597 $customIcon = $this->custom_icon_factory->getByObjId($this->
getId(), $this->
getType());
1600 if ($subtype && $subtype->getIconIdentifier()) {
1601 $src = $this->type_repository->getIconPathFS($subtype);
1604 $tmp =
'ico_' . $this->
getId();
1607 $customIcon->saveFromTempFileName($tmp);
1609 $customIcon->remove();
1634 throw new ilException(
"Ref-Id '$ref_id' does not belong to a study programme object.");
1643 $possible_subobjects = $subobjects;
1646 $possible_subobjects = [
1647 "prg" => $subobjects[
"prg"],
1648 "prgr" => $subobjects[
"prgr"]
1652 $possible_subobjects = [
'crsr' => $subobjects[
'crsr']];
1655 throw new ilException(
"Undefined mode for study programme: '$mode'");
1658 if (
$parent->hasAutomaticContentCategories()) {
1659 $possible_subobjects = array_filter(
1660 $possible_subobjects,
1661 static function ($subtype) {
1662 return $subtype ===
'crsr';
1664 ARRAY_FILTER_USE_KEY
1667 return $possible_subobjects;
1673 return $this->ilUser->getId();
1683 if (is_null($node_obj_id)) {
1684 $node_obj_id = $this->
getId();
1694 $progress_node_id = $this->
getId();
1695 $assignment = $this->assignment_repository->get($assignment_id)
1704 $this->assignment_repository->store($assignment);
1712 $progress_node_id = $this->
getId();
1713 $assignment = $this->assignment_repository->get($assignment_id)
1721 $this->assignment_repository->store($assignment);
1730 $progress_node_id = $this->
getId();
1731 $assignment = $this->assignment_repository->get($assignment_id)
1739 $this->assignment_repository->store($assignment);
1748 $progress_node_id = $this->
getId();
1749 $assignment = $this->assignment_repository->get($assignment_id)
1757 $this->assignment_repository->store($assignment);
1767 $progress_node_id = $this->
getId();
1768 $assignment = $this->assignment_repository->get($assignment_id)
1769 ->changeProgressDeadline(
1777 $this->assignment_repository->store($assignment);
1787 $progress_node_id = $this->
getId();
1788 $assignment = $this->assignment_repository->get($assignment_id)
1789 ->changeProgressValidityDate(
1797 $this->assignment_repository->store($assignment);
1807 $progress_node_id = $this->
getId();
1808 $assignment = $this->assignment_repository->get($assignment_id)
1809 ->changeAmountOfPoints(
1817 $this->assignment_repository->store($assignment);
1826 $assignment = $this->assignment_repository->get($assignment_id)
1827 ->updatePlanFromRepository(
1833 $this->assignment_repository->store($assignment);
1843 $assignment = $this->assignment_repository->get($assignment_id);
1844 foreach ($nodes as $nodeinfo) {
1845 [$node_obj_id, $course_obj_id] = $nodeinfo;
1847 $assignment = $assignment->succeed(
1848 $this->settings_repository,
1854 '%s, progress-id (%s/%s)',
1855 $assignment->getUserInformation()->getFullname(),
1856 $assignment->getId(),
1857 (string) $node_obj_id
1859 $err_collection->add(
true,
'acknowledged_course', $msg);
1861 $this->assignment_repository->store($assignment);
1885 return $lng->
txt(
"prg_status_in_progress");
1888 return $lng->
txt(
"prg_status_completed");
1891 return $lng->
txt(
"prg_status_accredited");
1894 return $lng->
txt(
"prg_status_not_relevant");
1897 return $lng->
txt(
"prg_status_failed");
1899 throw new ilException(
"Unknown status: '$status'");
1904 return \ilContainerPage::_exists(self::CP_TYPE, $this->
getId());
1909 throw new \LogicException(
'will not create content page - it already exists.');
1911 $new_page_object = new \ilContainerPage();
1912 $new_page_object->setId($this->
getId());
1913 $new_page_object->setParentId($this->
getId());
1914 $new_page_object->createFromXML();
getCompletedCourses(int $usr_id)
Get courses in this program that the given user already completed.
setStatus(int $a_status)
Set the status of the node.
static _hasUserCompleted(int $a_obj_id, int $a_user_id)
Lookup user object completion.
adjustLPMode()
Adjust the lp mode to match current state of tree:
addNode(ilObjStudyProgramme $a_prg)
Inserts another ilObjStudyProgramme in this object.
disableAutomaticMembershipSource(string $type, int $src_id, bool $search_recursive)
Disable a membership source.
clearLPChildrenCache()
Clear the cached lp children.
static addCrsToProgrammes(int $crs_ref_id, int $cat_ref_id)
Check, if a category is under surveilllance and automatically add the course.
getSubType()
Gets the SubType Object.
static _lookupTitle(int $obj_id)
markRelevant(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
storeAutomaticContentCategory(int $category_ref_id)
Store a Category with auto-content for this StudyProgramme; a category can only be referenced once (p...
static getLogger(string $a_component_id)
Get component logger.
getParent()
Get the parent ilObjStudyProgramme of this object.
txt(string $a_topic, string $a_default_lang_fallback_mod="")
gets the text for a given topic if the topic is not in the list, the topic itself with "-" will be re...
getApplicableMembershipSourceForUser(int $usr_id, ?int $exclude_id)
changeProgressValidityDate(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, ?DateTimeImmutable $validity)
isAutoContentApplicable()
AutoContent should only be available in active- or draft-mode, and only, if there is no sub-programme...
getMembers()
get usr_ids with any progress on this node
unmarkAccredited(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
getAssignmentRepository()
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
ilStudyProgrammeMembershipSourceReaderFactory $membersourcereader_factory
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getChildren(bool $include_references=false)
Get all ilObjStudyProgrammes that are direct children of this object.
static getProgrammesMonitoringMemberSource(string $src_type, int $src_id)
Get all StudyProgrammes monitoring this membership-source.
Class ilStudyProgrammeAutoCategoryDBRepository.
getLPChildren()
Get the leafs the study programme contains.
Cache for ilObjStudyProgrammes.
assignUser(int $usr_id, ?int $acting_usr_id=null, $raise_event=true)
Assign a user to this node at the study program.
static _getAllReferences(int $id)
get all reference ids for object ID
nodeInserted($prg)
Clears child cache and adds progress for new node.
isDeleted(int $a_node_id)
This is a wrapper for isSaved() with a more useful name.
__construct(int $id=0, bool $call_by_reference=true)
ATTENTION: After using the constructor the object won't be in the cache.
static getInstanceByRefId($ref_id)
getProgresses(array &$ret=[], ?ilPRGProgress $pgs=null)
applyToSubTreeNodes(Closure $fun, bool $include_references=false)
Apply the given Closure to every node in the subtree starting at this object.
static getCreatableSubObjects(array $subobjects, $ref_id)
Filter the list of possible subobjects for the objects that actually could be created on a concrete n...
static initStudyProgrammeCache()
loadLanguageModule(string $a_module)
Load language module.
deleteAssignmentsAndProgresses()
Delete all assignments from the DB.
markNotRelevant(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
delete(ilPRGAssignment $assignment)
hasAssignmentOf(int $user_id)
Check whether user is assigned to this program or any node above.
array $reference_children
storeRiskyToFailSentFor(ilPRGAssignment $ass)
storeExpiryInfoSentFor(ilPRGAssignment $ass)
getLocalMembers()
get usr_ids with assignment on this node
enableAutomaticMembershipSource(string $type, int $src_id, bool $search_recursive, $assign_now=false)
Enable a membership source.
getAssignmentsOf(int $user_id)
Get the assignments of user at this program or any node above.
changeProgressDeadline(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, ?DateTimeImmutable $deadline)
getAmountOfLPChildren()
Get the amount of leafs the study programme contains.
getRoot()
Get the ilObjStudyProgramme that is the root node of the tree this programme is in.
static getProgrammesMonitoringCategory(int $cat_ref_id)
Get all (not OUTDATED) StudyProgrammes monitoring this category.
static removeCrsFromProgrammes(int $crs_ref_id, int $cat_ref_id)
Check, if a category is under surveillance and automatically remove the deleted course.
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
resetRiskyToFailSentFor(ilPRGAssignment $ass)
createReference()
creates reference for object
removeNode(ilObjStudyProgramme $a_prg)
Remove a node from this object.
hasAssignments()
Are there any assignments on this node or any node above?
A Progress is the status of a user on a single node of an assignment; it is unique by assignment_id:u...
static _exists(int $id, bool $reference=false, ?string $type=null)
checks if an object exists in object_data
Covers the persistence of settings belonging to a study programme (SP).
refreshLPStatus(int $usr_id, ?int $node_obj_id=null)
Provides adapters to read member-ids from a specific source.
clearChildrenCache()
Clear the cached children.
getAutomaticContentCategories()
Get configuration of categories with auto-content for this StudyProgramme;.
getParentNodeData(int $a_node_id)
get data of parent node from tree and object_data
resetExpiryInfoSentFor(ilPRGAssignment $ass)
deleteAllAutomaticContentCategories()
Delete all configuration of categories with auto-content for this StudyProgramme;.
ilStudyProgrammeAutoMembershipsDBRepository $auto_memberships_repository
hasRelevantProgresses()
Are there any users that have a relevant progress on this programme?
removeAssignment(ilPRGAssignment $assignment)
Remove an assignment from this program.
acknowledgeCourses(int $assignment_id, array $nodes, ?ilPRGMessageCollection $err_collection=null)
getMembersOfMembershipSource(ilStudyProgrammeAutoMembershipSource $ams, ?int $exclude_id)
Get member-ids of a certain source.
static addMemberToProgrammes(string $src_type, int $src_id, int $usr_id)
store(ilPRGAssignment $assignment)
getParents(bool $include_references=false)
Get all parents of the node, where the root of the program comes first.
cloneObject(int $target_ref_id, int $copy_id=0, bool $omit_tree=false)
getAssignmentsOfSingleProgramForUser(int $usr_id)
Get assignments of user to this program-node only.
static ilObjStudyProgrammeCache $study_programme_cache
getSpecificAssignment(int $assignment_id)
Class ilStudyProgrammeAutoMembershipSource.
static _lookupObjectId(int $ref_id)
statusToRepr(int $status)
Get a user readable representation of a status.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
hasAssignmentsOfSingleProgramForUser(int $usr_id)
Get assignments of user to this program-node only.
markAccredited(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection)
changeAmountOfPoints(int $assignment_id, int $acting_usr_id, ilPRGMessageCollection $err_collection, int $points)
static getDataDir()
get data directory (outside webspace)
moveTo(ilObjStudyProgramme $new_parent)
Move this tree node to a new parent.
const STATUS_NOT_RELEVANT
static removeMemberFromProgrammes(string $src_type, int $src_id, int $usr_id)
Class ilObjectFactoryWrapper.
getIdsOfUsersWithRelevantProgress()
succeed(int $usr_id, int $triggering_obj_id, ?ilPRGAssignment $ass=null)
static setProgressesCompletedFor(int $obj_id, int $user_id)
Succeed all StudyProgramme(Nodes) where the object with the given id (a CRSR) is in a Programme with ...
static saveObjRecSelection(int $a_obj_id, string $a_sub_type="", ?array $a_records=null, bool $a_delete_before=true)
Save repository object record selection.
static _lookupSourceIds(int $a_target_id)
Get ids of all container references that target the object with the given id.
canBeCompleted(ilPRGProgress $progress)
setPoints(int $points)
Set the amount of points.
static getInstanceByObjId(int $obj_id)
getLastChange()
Get the timestamp of the last change on this program or sub program.
ilStudyProgrammeEvents $events
getObjId()
Get the id of the study program.
fetchCurrentlyUsedCertificate(int $objId)
hasAutomaticContentCategories()
static setProgressesCompletedIfParentIsProgrammeInLPCompletedMode(int $ref_id, int $obj_id, int $user_id)
ilPRGAssignmentDBRepository $assignment_repository
addMissingProgresses()
Add missing progress records for all assignments of this programm.
getReferencesTo(ilObjStudyProgramme $prg)
Class ilStudyProgrammeType.
storeAutomaticMembershipSource(string $type, int $src_id, bool $search_recursive)
Store a source to be monitored for automatic memberships.
static getAllChildren(int $a_ref_id, bool $include_references=false)
Get a list of all ilObjStudyProgrammes in the subtree starting at $a_ref_id.
canBeRemoved()
Check weather a node can be removed.
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
updatePlanFromRepository(int $assignment_id, int $acting_usr_id, ?ilPRGMessageCollection $err_collection=null)
getAutomaticMembershipSources()
Get sources for auto-memberships.
getDepth()
Get the depth of this StudyProgramme in the tree starting at the topmost StudyProgramme (not root nod...
$id
plugin.php for ilComponentBuildPluginInfoObjectiveTest::testAddPlugins
hasChildren(bool $include_references=false)
Does this StudyProgramme have other ilObjStudyProgrammes as children?
__construct(Container $dic, ilPlugin $plugin)
ilStudyProgrammeAutoCategoryDBRepository $auto_categories_repository
putInTree(int $parent_ref_id)
Overwritten from ilObject.
ilObjectFactoryWrapper $object_factory
static _getInstance(int $a_obj_id)
static _lookupTargetRefId(int $a_obj_id)
getLPChildrenIds()
Get the obj-ids of the leafs the program contains.
static _lookupTargetId(int $a_obj_id)
getPossiblePointsOfRelevantChildren()
static createInstance()
Create an instance of ilObjStudyProgramme, put in cache.
static getRefIdFor(int $obj_id)
deleteAutomaticContentCategories(array $category_ids=[])
Delete configuration of categories with auto-content for this StudyProgramme;.
getPoints()
Get the amount of points.
ilStudyProgrammeSettingsDBRepository $settings_repository
Assignments are relations of users to a PRG; They hold progress-information for (sub-)nodes of the PR...
static _lookupType(int $id, bool $reference=false)
Exception is thrown when invariants on the program tree would be violated by manipulation of tree...
getAmountOfChildren($include_references=false)
Get the amount of other StudyProgrammes this StudyProgramme has as children.
getAmountOfAssignmentsOf(int $user_id)
Get the amount of assignments a user has on this program node or any node above.
ilObjectCustomIconFactory $custom_icon_factory
static _lookupDeletedDate(int $ref_id)
deleteAllAutomaticMembershipSources()
Delete all membership sources of this StudyProgramme;.
updateLastChange()
Update last change timestamp on this node and its parents.
ilCertificateTemplateRepository $certificate_template_repository
clearParentCache()
Clear the cached parent to query it again at the tree.
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
deleteAutomaticMembershipSource(string $type, int $src_id)
Delete a membership source.
Holds information about multi-actions, mainly in context of member-assignemnts and status changes...
ilStudyProgrammeTypeDBRepository $type_repository
Class ilStudyProgrammeAutoMembershipsDBRepository.
updateSettings(ilStudyProgrammeSettings $settings)
getPrgInstanceByObjId(int $obj_id)