3 declare(strict_types=1);
45 $this->il_access_handler = $DIC[
"ilAccess"];
65 $id = parent::create();
77 $this->settings_storage->createSettings($this->
settings);
84 public function read(): void
96 $this->
settings = $this->settings_storage->loadSettings($this);
113 if (!$this->info_settings) {
114 $this->info_settings = $this->settings_storage->loadInfoSettings($this);
124 $this->info_settings = $info;
132 return $this->members_storage->loadMembers($this);
142 return $this->members_storage->loadMembersAsSingleObjects($this, $filter, $sort);
150 return $this->members_storage->loadMembers($this)
165 public function delete():
bool 168 $this->settings_storage->deleteSettings($this);
169 $this->members_storage->deleteMembers($this);
170 return parent::delete();
181 $this->settings_storage->updateSettings($this->
settings);
203 $this->access_handler->initDefaultRolesForObject($this);
219 $new_obj = parent::cloneObject($target_id, $copy_id, $omit_tree);
224 $new_obj->getTitle(),
225 $new_obj->getDescription(),
231 $new_obj->settings = $new_settings;
241 $new_obj->settings = $new_settings;
242 $new_obj->info_settings = $new_info_settings;
243 $new_obj->settings_storage->updateSettings($new_settings);
244 $new_obj->settings_storage->updateInfoSettings($new_info_settings);
247 if (count($fstorage->readDir()) > 0) {
248 $n_fstorage = $new_obj->getFileStorage();
249 $n_fstorage->create();
250 $fstorage->_copyDirectory($fstorage->getAbsolutePath(), $n_fstorage->getAbsolutePath());
260 if ($this->file_storage === null) {
271 if ($this->lp_active === null) {
292 $tree = $DIC[
'tree'];
295 while ($node[
'type'] !==
"root") {
296 if (in_array($node[
'type'], $types)) {
297 return (
int) $node[
'ref_id'];
304 protected function getDic(): Pimple\Container
306 if (is_null($this->dic)) {
308 $this->dic = $this->getObjectDIC(
318 return $this->
getDic()[
'ilIndividualAssessmentMembersGUI'];
323 return $this->
getDic()[
'ilIndividualAssessmentSettingsGUI'];
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
loadInfoSettings(ilObjIndividualAssessment $obj)
Load info-screen settings corresponding to obj.
ilIndividualAssessmentMembersStorageDB $members_storage
cloneObject(int $target_id, int $copy_id=0, bool $omit_tree=false)
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...
ilIndividualAssessmentSettings $settings
isEventTimePlaceRequired()
Get the value of the checkbox event_time_place_require.
An object carrying settings of an Individual Assessment obj beyond the standard information.
static getInstance(int $container_id=0)
membersStorage()
Get the member storage object used by this.
__construct(int $id=0, bool $call_by_reference=true)
getTitle()
Get the content of this assessment, e.g.
ilIndividualAssessmentAccessHandler $access_handler
setInfoSettings(ilIndividualAssessmentInfoSettings $info)
Set info settings.
static isActiveLP(int $object_id)
getContent()
Get the content of this assessment, e.g.
loadVisibleMembers()
Get the members object associated with this and visible by the current user.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getFileStorage()
Get the file storage system.
setDescription(string $desc)
getDescription()
Get the content of this assessment, e.g.
isActiveLP()
Check whether the LP is activated for current object.
ilIndividualAssessmentInfoSettings $info_settings
getParentNodeData(int $a_node_id)
get data of parent node from tree and object_data
setSettings(ilIndividualAssessmentSettings $settings)
Set the settings.
loadSettings(ilObjIndividualAssessment $obj)
Load settings corresponding to obj.
ilIndividualAssessmentFileStorage $file_storage
loadMembersAsSingleObjects(string $filter=null, string $sort=null)
Get the members as single object associated with this.
withAccessHandling(ilOrgUnitPositionAndRBACAccessHandler $access_handler)
Get a collection like this, but only including users that are visible according to the supplied acces...
loadMembers()
Get the members object associated with this.
updateStorageAndRBAC(ilIndividualAssessmentMembersStorage $storage, IndividualAssessmentAccessHandler $access_handler)
Store the data to a persistent medium.
__construct(Container $dic, ilPlugin $plugin)
isFileRequired()
Get the value of the checkbox file_required.
Handles the file upload and folder creation for files uploaded in grading form.
getRecordTemplate()
Get the record template to be used as default record with corresponding object.
ilIndividualAssessmentSettingsGUI: ilIndividualAssessmentCommonSettingsGUI
ilAccessHandler $il_access_handler
accessHandler()
Get the access handler of this.
For the purpose of streamlining the grading and learning-process status definition outside of tests...
updateMembers(ilIndividualAssessmentMembers $members)
Update the members object associated with this.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
getParentContainerIdByType(int $id, array $types)
Bubbles up the tree.
ilIndividualAssessmentSettingsStorageDB $settings_storage