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,
"Modules/ScormAicc");
132 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_pres_frameset_js.html",
false,
false,
"Modules/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,
"Modules/ScormAicc");
142 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_pres_frameset_js_one_page.html",
false,
false,
"Modules/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());
150 $this->tpl->setVariable(
"API_LINK", $api_link);
151 $this->tpl->printToStdout(
"DEFAULT",
false,
true);
171 $ilDB = $DIC->database();
173 $val_set =
$ilDB->queryF(
174 'SELECT package_attempts FROM sahs_user WHERE obj_id = %s AND user_id = %s',
175 array(
'integer',
'integer'),
176 array($this->slm->getId(),
$ilUser->getId())
178 $val_rec =
$ilDB->fetchAssoc($val_set);
179 $attempts = $val_rec[
"package_attempts"];
180 if ($attempts == null) {
274 $ilDB = $DIC->database();
277 'SELECT package_attempts,count(*) cnt FROM sahs_user WHERE obj_id = %s AND user_id = %s GROUP BY package_attempts',
278 array(
'integer',
'integer'),
279 array($this->slm->getId(),
$ilUser->getId())
282 if (!is_array($val_rec)) {
285 'INSERT INTO sahs_user (obj_id,user_id,package_attempts,module_version,last_access) VALUES(%s,%s,%s,%s,%s)',
286 array(
'integer',
'integer',
'integer',
'integer',
'timestamp'),
287 array($this->slm->getId(),
$ilUser->getId(), $attempts, $this->slm->getModuleVersion(), date(
'Y-m-d H:i:s'))
290 $attempts = $val_rec[
"package_attempts"];
291 if ($attempts == null) {
296 'UPDATE sahs_user SET package_attempts = %s, module_version = %s, last_access=%s WHERE obj_id = %s AND user_id = %s ',
297 array(
'integer',
'integer',
'timestamp',
'integer',
'integer'),
298 array($attempts, $this->slm->getModuleVersion(), date(
'Y-m-d H:i:s'), $this->slm->getId(),
$ilUser->getId())
360 public function explorer(
string $a_target =
"sahs_content"): void
363 $ilBench = $DIC[
'ilBench'];
366 $ilBench->start(
"SCORMExplorer",
"initExplorer");
368 $this->tpl =
new ilGlobalTemplate(
"tpl.sahs_exp_main.html",
true,
true,
"Modules/ScormAicc");
372 $exp->setFrameTarget($a_target);
378 if ($DIC->http()->wrapper()->query()->has(
'scexpand')) {
379 $expanded = $DIC->http()->wrapper()->query()->retrieve(
'scexpand', $DIC->refinery()->kindlyTo()->string());
381 if ($expanded ==
"") {
385 $exp->setExpand($expanded);
387 $exp->forceExpandAll(
true,
false);
388 $ilBench->stop(
"SCORMExplorer",
"initExplorer");
391 $ilBench->start(
"SCORMExplorer",
"setOutput");
393 $ilBench->stop(
"SCORMExplorer",
"setOutput");
395 $ilBench->start(
"SCORMExplorer",
"getOutput");
396 $output = $exp->getOutput($jsApi);
397 $ilBench->stop(
"SCORMExplorer",
"getOutput");
400 $this->tpl->addBlockFile(
"CONTENT",
"content",
"tpl.sahs_explorer.html",
"Modules/ScormAicc");
402 $this->tpl->setVariable(
"EXP_REFRESH", $this->
lng->txt(
"refresh"));
403 $this->tpl->setVariable(
"EXPLORER", $output);
406 if ($DIC->http()->wrapper()->query()->has(
'cmd')) {
407 $cmd = $DIC->http()->wrapper()->query()->retrieve(
'cmd', $DIC->refinery()->kindlyTo()->string());
410 if ($DIC->http()->wrapper()->query()->has(
'frame')) {
411 $frame = $DIC->http()->wrapper()->query()->retrieve(
'frame', $DIC->refinery()->kindlyTo()->string());
413 $this->tpl->setVariable(
"ACTION",
"ilias.php?baseClass=ilSAHSPresentationGUI&cmd=" . $cmd .
"&frame=" . $frame .
414 "&ref_id=" . $this->slm->getRefId() .
"&scexpand=" . $expanded);
415 $this->tpl->parseCurrentBlock();
418 $this->tpl->printToStdout(
"DEFAULT",
false);
428 $objId = $DIC->http()->wrapper()->query()->retrieve(
'obj_id', $DIC->refinery()->kindlyTo()->int());
431 if (is_object($sc_gui_object)) {
432 $sc_gui_object->view();
436 $this->tpl->printToStdout(
'DEFAULT',
false);
442 $lng = $DIC->language();
443 $this->tpl =
new ilGlobalTemplate(
"tpl.scorm_content_select.html",
true,
true,
"Modules/ScormAicc");
445 $this->tpl->setVariable(
'TXT_SPECIALPAGE', $lng->
txt(
"seq_toc"));
446 $this->tpl->printToStdout(
"DEFAULT",
false);
456 if (!($DIC->http()->wrapper()->query()->has(
'ref_id'))) {
457 print(
'alert("no start without ref_id");');
461 header(
'Content-Type: text/javascript; charset=UTF-8');
462 print(
"function iliasApi() {\r\n");
463 $js_data = file_get_contents(
"./Modules/ScormAicc/scripts/basisAPI.js");
465 $js_data = file_get_contents(
"./Modules/ScormAicc/scripts/SCORM1_2standard.js");
481 if ($this->slm->getAPIAdapterName() !==
"API") {
482 print(
'var ' . $this->slm->getAPIAdapterName() .
'=new iliasApi();');
484 print(
'var API=new iliasApi();');
503 $tree = $DIC[
'tree'];
504 $ilCtrl = $DIC->ctrl();
505 $refId = $DIC->http()->wrapper()->query()->retrieve(
'ref_id', $DIC->refinery()->kindlyTo()->int());
509 $allowed = $certValidator->isCertificateDownloadable(
$ilUser->getId(), $obj_id);
511 $certificateLogger = $DIC->logger()->root();
514 $pdfGenerator =
new ilPdfGenerator($ilUserCertificateRepository, $certificateLogger);
520 $this->
lng->txt(
'error_creating_certificate_pdf')
527 $parent = $tree->getParentId($refId);
528 $ilCtrl->setParameterByClass(
"ilrepositorygui",
"ref_id", $parent);
529 $ilCtrl->redirectByClass(
"ilrepositorygui",
"");
Class ilPdfGeneratorConstantsTest.
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 getImagePath(string $img, string $module_path="", string $mode="output", bool $offline=false)
get image path (for images located in a template directory)
static getIliasScormVars(ilObjSCORMLearningModule $slm_obj)
explorer(string $a_target="sahs_content")
save the active module version to scorm_tracking
executeCommand()
execute command
static getStyleSheetLocation(string $mode="output", string $a_css_name="", string $a_css_location="")
get full style sheet file name (path inclusive) of current user
static _lookupObjId(int $ref_id)
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.
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...
ilObjSCORMLearningModule $slm
Just a wrapper class to create Unit Test for other classes.
Class ilSCORMPresentationGUI.
static getIliasScormResources(int $a_packageId)
static getIliasScormTree(int $a_packageId)
downloadCertificate()
Download the certificate for the active user.
frameset()
Output main frameset.
get_actual_attempts()
Get max.
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...
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)