19 declare(strict_types=1);
42 $ilCtrl = $DIC->ctrl();
44 $this->
lng = $DIC->language();
45 $this->
ctrl = $ilCtrl;
47 $this->
lng->loadLanguageModule(
'cert');
50 $this->refId = $DIC->http()->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int());
61 $ilAccess = $DIC->access();
63 $lng = $DIC->language();
66 $next_class = $this->
ctrl->getNextClass($this);
67 $cmd = $this->
ctrl->getCmd(
"frameset");
69 if (!$ilAccess->checkAccess(
"write",
"", $this->refId) &&
70 (!$ilAccess->checkAccess(
"read",
"", $this->refId) ||
71 $this->slm->getOfflineStatus())) {
88 if (!is_array($a_attributes)) {
91 foreach ($a_attributes as $attribute) {
92 $attr[$attribute->name()] = $attribute->value();
106 $lng = $DIC->language();
107 $javascriptAPI =
true;
122 $debug = $this->slm->getDebug();
123 if (count($items) > 1) {
124 $this->
ctrl->setParameter($this,
"expand",
"1");
125 $this->
ctrl->setParameter($this,
"jsApi",
"1");
126 $exp_link = $this->
ctrl->getLinkTarget($this,
"explorer");
130 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_pres_frameset_js_debug.html",
false,
false,
"components/ILIAS/ScormAicc");
132 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_pres_frameset_js.html",
false,
false,
"components/ILIAS/ScormAicc");
135 $this->tpl->setVariable(
"EXPLORER_LINK", $exp_link);
136 $pres_link = $this->
ctrl->getLinkTarget($this,
"contentSelect");
137 $this->tpl->setVariable(
"PRESENTATION_LINK", $pres_link);
140 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_pres_frameset_js_debug_one_page.html",
false,
false,
"components/ILIAS/ScormAicc");
142 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_pres_frameset_js_one_page.html",
false,
false,
"components/ILIAS/ScormAicc");
145 $this->
ctrl->setParameter($this,
"autolaunch", $items[0] ??
"");
147 $api_link = $this->
ctrl->getLinkTarget($this,
"apiInitData");
148 $this->tpl->setVariable(
"TITLE", $this->slm->getTitle());
149 $this->tpl->setVariable(
"API_LINK", $api_link);
150 $this->tpl->printToStdout(
"DEFAULT",
false,
true);
170 $ilDB = $DIC->database();
171 $ilUser = $DIC->user();
172 $val_set =
$ilDB->queryF(
173 'SELECT package_attempts FROM sahs_user WHERE obj_id = %s AND user_id = %s',
174 array(
'integer',
'integer'),
175 array($this->slm->getId(),$ilUser->getId())
177 $val_rec =
$ilDB->fetchAssoc($val_set);
178 $attempts = $val_rec[
"package_attempts"];
179 if ($attempts ==
null) {
273 $ilDB = $DIC->database();
274 $ilUser = $DIC->user();
276 'SELECT package_attempts,count(*) cnt FROM sahs_user WHERE obj_id = %s AND user_id = %s GROUP BY package_attempts',
277 array(
'integer',
'integer'),
278 array($this->slm->getId(),$ilUser->getId())
281 if (!is_array($val_rec)) {
284 'INSERT INTO sahs_user (obj_id,user_id,package_attempts,module_version,last_access) VALUES(%s,%s,%s,%s,%s)',
285 array(
'integer',
'integer',
'integer',
'integer',
'timestamp'),
286 array($this->slm->getId(), $ilUser->getId(), $attempts, $this->slm->getModuleVersion(), date(
'Y-m-d H:i:s'))
289 $attempts = $val_rec[
"package_attempts"];
290 if ($attempts ==
null) {
295 'UPDATE sahs_user SET package_attempts = %s, module_version = %s, last_access=%s WHERE obj_id = %s AND user_id = %s ',
296 array(
'integer',
'integer',
'timestamp',
'integer',
'integer'),
297 array($attempts, $this->slm->getModuleVersion(), date(
'Y-m-d H:i:s'), $this->slm->getId(), $ilUser->getId())
359 public function explorer(
string $a_target =
"sahs_content"): void
362 $ilBench = $DIC[
'ilBench'];
365 $ilBench->start(
"SCORMExplorer",
"initExplorer");
367 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_exp_main.html",
true,
true,
"components/ILIAS/ScormAicc");
371 $exp->setFrameTarget($a_target);
377 if ($DIC->http()->wrapper()->query()->has(
'scexpand')) {
378 $expanded = $DIC->http()->wrapper()->query()->retrieve(
'scexpand', $DIC->refinery()->kindlyTo()->string());
380 if ($expanded ==
"") {
384 $exp->setExpand($expanded);
386 $exp->forceExpandAll(
true,
false);
387 $ilBench->stop(
"SCORMExplorer",
"initExplorer");
390 $ilBench->start(
"SCORMExplorer",
"setOutput");
392 $ilBench->stop(
"SCORMExplorer",
"setOutput");
394 $ilBench->start(
"SCORMExplorer",
"getOutput");
395 $output = $exp->getOutput($jsApi);
396 $ilBench->stop(
"SCORMExplorer",
"getOutput");
399 $this->tpl->addBlockFile(
"CONTENT",
"content",
"tpl.sahs_explorer.html",
"components/ILIAS/ScormAicc");
401 $this->tpl->setVariable(
"EXP_REFRESH", $this->
lng->txt(
"refresh"));
402 $this->tpl->setVariable(
"EXPLORER", $output);
405 if ($DIC->http()->wrapper()->query()->has(
'cmd')) {
406 $cmd = $DIC->http()->wrapper()->query()->retrieve(
'cmd', $DIC->refinery()->kindlyTo()->string());
409 if ($DIC->http()->wrapper()->query()->has(
'frame')) {
410 $frame = $DIC->http()->wrapper()->query()->retrieve(
'frame', $DIC->refinery()->kindlyTo()->string());
412 $this->tpl->setVariable(
"ACTION",
"ilias.php?baseClass=ilSAHSPresentationGUI&cmd=" . $cmd .
"&frame=" . $frame .
413 "&ref_id=" . $this->slm->getRefId() .
"&scexpand=" . $expanded);
414 $this->tpl->parseCurrentBlock();
417 $this->tpl->printToStdout(
"DEFAULT",
false);
427 $objId = $DIC->http()->wrapper()->query()->retrieve(
'obj_id', $DIC->refinery()->kindlyTo()->int());
430 if (is_object($sc_gui_object)) {
431 $sc_gui_object->view();
435 $this->tpl->printToStdout(
'DEFAULT',
false);
441 $lng = $DIC->language();
442 $this->tpl =
new ilGlobalTemplate(
"tpl.scorm_content_select.html",
true,
true,
"components/ILIAS/ScormAicc");
444 $this->tpl->setVariable(
'TXT_SPECIALPAGE', $lng->
txt(
"seq_toc"));
445 $this->tpl->printToStdout(
"DEFAULT",
false);
455 if (!($DIC->http()->wrapper()->query()->has(
'ref_id'))) {
456 print(
'alert("no start without ref_id");');
460 header(
'Content-Type: text/javascript; charset=UTF-8');
461 print(
"function iliasApi() {\r\n");
462 $js_data = file_get_contents(
"../components/ILIAS/ScormAicc/scripts/basisAPI.js");
464 $js_data = file_get_contents(
"../components/ILIAS/ScormAicc/scripts/SCORM1_2standard.js");
480 if ($this->slm->getAPIAdapterName() !==
"API") {
481 print(
'var ' . $this->slm->getAPIAdapterName() .
'=new iliasApi();');
483 print(
'var API=new iliasApi();');
501 $ilUser = $DIC->user();
502 $tree = $DIC[
'tree'];
503 $ilCtrl = $DIC->ctrl();
504 $refId = $DIC->http()->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int());
508 $allowed = $certValidator->isCertificateDownloadable($ilUser->getId(), $obj_id);
510 $certificateLogger = $DIC->logger()->root();
517 $this->
lng->txt(
'error_creating_certificate_pdf')
520 $pdfAction->
downloadPdf($ilUser->getId(), $obj_id);
524 $parent = $tree->getParentId($refId);
525 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $parent);
526 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
static getStyleSheetLocation(string $mode="output", string $a_css_name="")
get full style sheet file name (path inclusive) of current user
static getIliasScormData(int $a_packageId)
apiInitData()
SCORM Data for Javascript-API.
attrib2arr(?array $a_attributes)
static getLogger(string $a_component_id)
Get component logger.
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...
static _lookupPresentableItems(int $a_slm_id)
Count number of presentable SCOs/Assets of SCORM learning module.
special template class to simplify handling of ITX/PEAR
static getIliasScormVars(ilObjSCORMLearningModule $slm_obj)
explorer(string $a_target="sahs_content")
save the active module version to scorm_tracking
executeCommand()
execute command
static _lookupObjId(int $ref_id)
while($session_entry=$r->fetchRow(ilDBConstants::FETCHMODE_ASSOC)) return null
static signFolderOfStartFile(string $start_file_path)
Validates if an active certificate is stored in the database and can be downloaded by the user...
increase_attemptAndsave_module_version()
Increases attempts by one for this package.
ilObjSCORMLearningModule $slm
Class ilSCORMPresentationGUI.
static getIliasScormResources(int $a_packageId)
static getIliasScormTree(int $a_packageId)
downloadCertificate()
Download the certificate for the active user.
frameset()
Output main frameset.
exit
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
get_actual_attempts()
Get max.
Class ilObjSCORMLearningModule.
setTargetGet(string $a_target_get)
static _updateStatus(int $a_obj_id, int $a_usr_id, ?object $a_obj=null, bool $a_percentage=false, bool $a_force_raise=false)
view()
SCORM content screen.
downloadPdf(int $userId, int $objectId)