19 declare(strict_types=1);
42 public const TAB_LP =
'learning_progress';
58 $this->tpl = $DIC[
'tpl'];
59 $this->
ctrl = $DIC[
'ilCtrl'];
60 $this->usr = $DIC[
'ilUser'];
61 $this->error_object = $DIC[
'ilErr'];
62 $this->
lng = $DIC[
'lng'];
63 $this->
lng->loadLanguageModule(
'iass');
64 $this->tpl->loadStandardTemplate();
66 $this->request_wrapper = $DIC->http()->wrapper()->query();
73 if (is_object($this->
object)) {
76 $this->
ctrl->getLinkTarget($this,
"view"),
78 $this->
object->getRefId()
87 $this->
object->getRefId(),
88 $this->
object->getId(),
95 $next_class = $this->
ctrl->getNextClass($this);
96 $cmd = $this->
ctrl->getCmd();
100 switch ($next_class) {
101 case 'ilpermissiongui':
102 $this->tabs_gui->activateTab(self::TAB_PERMISSION);
104 $this->
ctrl->forwardCommand($ilPermissionGUI);
106 case 'ilindividualassessmentsettingsgui':
107 $this->tabs_gui->activateTab(self::TAB_SETTINGS);
108 $gui = $this->
object->getSettingsGUI();
109 $this->
ctrl->forwardCommand($gui);
111 case 'ilindividualassessmentmembersgui':
114 case 'ilinfoscreengui':
115 $this->tabs_gui->activateTab(self::TAB_INFO);
117 $this->
ctrl->forwardCommand($info);
119 case 'illearningprogressgui':
120 if (!$this->
object->accessHandler()->mayReadObject()) {
123 $this->tabs_gui->activateTab(self::TAB_LP);
126 $this->
object->getRefId(),
131 case "ilcommonactiondispatchergui":
133 $this->
ctrl->forwardCommand($gui);
136 $this->tabs_gui->activateTab(self::TAB_EXPORT);
138 $exp_gui->addFormat(
"xml");
139 $this->
ctrl->forwardCommand($exp_gui);
141 case 'ilobjectmetadatagui':
143 $this->tabs_gui->activateTab(self::TAB_META_DATA);
145 $this->
ctrl->forwardCommand($md_gui);
147 case 'ilobjectcopygui':
150 $this->
ctrl->forwardCommand($cp);
155 if ($this->
object->accessHandler()->mayEditMembers()) {
156 $this->
ctrl->setCmdClass(
'ilIndividualassessmentmembersgui');
169 $this->tabs_gui->activateTab(self::TAB_INFO);
170 $this->
ctrl->setCmd(
'showSummary');
171 $this->
ctrl->setCmdClass(
'ilinfoscreengui');
173 $this->
ctrl->forwardCommand($info);
179 $this->tabs_gui->activateTab(self::TAB_MEMBERS);
180 $gui = $this->
object->getMembersGUI();
181 $this->
ctrl->forwardCommand($gui);
190 $record_gui->parse();
192 $info->addMetaDataSections($this->
object->getId(), 0, $this->
object->getType());
195 if ($this->
object->loadMembers()->userAllreadyMember($this->usr)) {
205 $member = $this->
object->membersStorage()->loadMember($this->
object, $this->usr);
207 if ($member->finalized()) {
210 if ($member->notify() && $member->finalized()) {
211 $info->
addProperty($this->
txt(
'grading_record'), nl2br($member->record()));
212 if (($member->viewFile()) && $member->fileName() && $member->fileName() !=
"") {
213 $tpl =
new ilTemplate(
"tpl.iass_user_file_download.html",
true,
true,
"Modules/IndividualAssessment");
225 $member = $this->
object->membersStorage()->loadMember($this->
object, $this->usr);
226 $file_storage = $this->
object->getFileStorage();
227 $file_storage->setUserId($this->usr->getId());
228 $filepath = $file_storage->getAbsolutePath();
235 $content = $this->
object->getSettings()->getContent();
236 if ($content !== null && $content !==
'') {
245 $info_settings = $this->
object->getInfoSettings();
248 $info->
addProperty($this->
txt(
'iass_contact'), $info_settings->getContact());
249 $info->
addProperty($this->
txt(
'iass_responsibility'), $info_settings->getResponsibility());
250 $info->
addProperty($this->
txt(
'iass_phone'), $info_settings->getPhone());
251 $info->
addProperty($this->
txt(
'iass_mails'), $info_settings->getMails());
252 $info->
addProperty($this->
txt(
'iass_consultation_hours'), $info_settings->getConsultationHours());
260 if ($val !== null && $val !==
'') {
264 if ($val !== null && $val !==
'') {
268 if ($val !== null && $val !==
'') {
272 if ($val !== null && $val !==
'') {
276 if ($val !== null && $val !==
'') {
284 if ($this->
object->accessHandler()->mayEditMembers()
285 || $this->
object->accessHandler()->mayGradeAnyUser()
286 || $this->
object->accessHandler()->mayAmendAllUsers()
287 || $this->
object->accessHandler()->mayViewAnyUser()) {
288 $this->tabs_gui->addTab(
290 $this->
txt(
'il_iass_members'),
295 if ($this->
object->accessHandler()->mayReadObject()) {
296 $this->tabs_gui->addTab(
298 $this->
txt(
'info_short'),
303 if ($this->
object->accessHandler()->mayEditObject()) {
304 $this->tabs_gui->addTab(
306 $this->
txt(
'settings'),
311 if (($this->
object->accessHandler()->mayViewAllUsers()
312 || $this->
object->accessHandler()->mayGradeAllUsers()
313 || ($this->
object->loadMembers()->userAllreadyMember($this->usr)
314 && $this->
object->isActiveLP()))
316 $this->tabs_gui->addTab(
318 $this->
txt(
'learning_progress'),
319 $this->
ctrl->getLinkTargetByClass(
'illearningprogressgui')
323 if ($this->
object->accessHandler()->mayEditObject()) {
325 $mdtab = $mdgui->getTab();
327 $this->tabs_gui->addTab(
329 $this->
txt(
"meta_data"),
335 if ($this->
object->accessHandler()->mayEditObject()) {
336 $this->tabs_gui->addTarget(
338 $this->
ctrl->getLinkTargetByClass(
'ilexportgui',
''),
344 if ($this->
object->accessHandler()->mayEditPermissions()) {
345 $this->tabs_gui->addTarget(
346 self::TAB_PERMISSION,
347 $this->
ctrl->getLinkTargetByClass(
'ilpermissiongui',
'perm'),
357 if ($cmd ==
'settings') {
358 return $this->
ctrl->getLinkTargetByClass(
'ilindividualassessmentsettingsgui',
'edit');
360 if ($cmd ==
'info') {
361 return $this->
ctrl->getLinkTarget($this,
'view');
363 if ($cmd ==
'members') {
364 return $this->
ctrl->getLinkTargetByClass(
'ilindividualassessmentmembersgui',
'view');
366 return $this->
ctrl->getLinkTarget($this, $cmd);
372 $this->
ctrl->redirectToURL($link);
382 $this->error_object->raiseError($this->
txt(
"msg_no_perm_read"), $this->error_object->WARNING);
385 public static function _goto(
int $a_target,
string $a_add =
''): void
388 if ($DIC[
'ilAccess']->checkAccess(
'write',
'', $a_target)) {
391 if ($DIC[
'ilAccess']->checkAccess(
'read',
'', $a_target)) {
400 return $this->
txt(
'iass_status_pending');
402 return $this->
txt(
'iass_status_completed');
404 return $this->
txt(
'iass_status_failed');
412 $this->tpl->setOnScreenMessage(
"success", $this->
txt(
"iass_added"),
true);
413 $this->
ctrl->setParameter($this,
"ref_id", $new_object->
getRefId());
414 $this->
ctrl->redirectToUrl($this->
ctrl->getLinkTargetByClass(
415 'ilIndividualassessmentsettingsgui',
426 if ($this->
object->accessHandler()->mayReadObject()) {
427 $ref_id = $this->request_wrapper->retrieve(
"ref_id", $this->
refinery->kindlyTo()->int());
434 protected function txt(
string $code): string
436 return $this->
lng->txt($code);
getLinkTarget(string $cmd)
GUI class for the workflow of copying objects.
prepareOutput(bool $show_sub_objects=true)
addProperty(string $a_name, string $a_value, string $a_link="")
add a property to current section
get(string $part=self::DEFAULT_BLOCK)
Renders the given block and returns the html string.
static _gotoRepositoryNode(int $ref_id, string $cmd="")
For the purpose of streamlining the grading and learning-process status definition outside of tests...
shouldShowContactInfo(ilIndividualAssessmentInfoSettings $info_settings)
addMemberDataToInfo(ilInfoScreenGUI $info)
ILIAS Refinery Factory $refinery
setVariable(string $variable, $value='')
Sets the given variable to the given value.
recordIndividualAssessmentRead()
ilAccessHandler $ilAccess
static deliverFileLegacy(string $a_file, ?string $a_filename=null, ?string $a_mime=null, ?bool $isInline=false, ?bool $removeAfterDelivery=false, ?bool $a_exit_after=true)
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...
afterSave(ilObject $new_object)
static _enabledLearningProgress()
addContactDataToInfo(ilInfoScreenGUI $info)
ilGlobalTemplateInterface $tpl
ilErrorHandling $error_object
addGeneralDataToInfo(ilInfoScreenGUI $info)
Class ilObjectGUI Basic methods of all Output classes.
static _recordReadEvent(string $a_type, int $a_ref_id, int $obj_id, int $usr_id, bool $isCatchupWriteEvents=true, $a_ext_rc=null, $a_ext_time=null)
static _goto(int $a_target, string $a_add='')
getEntryForStatus(int $status)
addSection(string $a_title)
static _getLink(?int $a_ref_id, string $a_type='', array $a_params=array(), string $append="")
Navigation History of Repository Items.
checkPermissionBool(string $perm, string $cmd="", string $type="", ?int $ref_id=null)
Error Handling & global info handling uses PEAR error class.
__construct($data, int $id=0, bool $call_by_reference=true, bool $prepare_output=true)
__construct(Container $dic, ilPlugin $plugin)
const LP_CONTEXT_REPOSITORY
setInfoObject(ilInfoScreenGUI $info)
get info sections
New PermissionGUI (extends from old ilPermission2GUI) RBAC related output.
ilNavigationHistory $ilNavigationHistory
ILIAS HTTP Wrapper RequestWrapper $request_wrapper
addHeaderAction()
Add header action menu.
addItem(int $a_ref_id, string $a_link, string $a_type, string $a_title="", ?int $a_sub_obj_id=null, string $a_goto_link="")
Add an item to the stack.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
static getInstanceFromAjaxCall()
(Re-)Build instance from ajax call