49 $ilias = $DIC[
'ilias'];
50 $this->
ilias = $ilias;
51 $this->
id =
$_GET[
'ref_id'];
53 include_once
"./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php";
55 $this->cmd_url =
'./ilias.php?baseClass=ilSAHSPresentationGUI&cmd=';
56 $this->lm_cmd_url =
'./ilias.php?baseClass=ilSAHSPresentationGUI&ref_id=' . $this->
id .
'&cmd=';
57 $this->lm_info_url = $this->lm_cmd_url .
'infoScreen';
58 $this->player12_url = $this->cmd_url .
'offlineMode_player12';
59 $this->player2004_url = $this->cmd_url .
'offlineMode_player2004';
60 $this->som_url = $this->cmd_url .
'offlineMode_som';
61 $this->offlineMode =
'online';
62 $this->sop_index =
'./Modules/ScormAicc/sop/sop_index.html';
63 $this->sop_appcache =
'./Modules/ScormAicc/sop/sop.appcache';
64 $this->sop_dir =
'./Modules/ScormAicc/templates/sop/';
65 $this->som_dir =
'./Modules/ScormAicc/templates/som/';
66 $this->scripts_dir =
'./Modules/ScormAicc/scripts/';
67 $this->images_dir =
'./templates/default/images/scorm/';
68 $this->pouchdb_js =
'./libs/bower/bower_components/pouchdb/dist/pouchdb.min.js';
69 $this->jquery_js =
'./libs/bower/bower_components/jquery/dist/jquery.min.js';
70 $this->bootstrap_js =
'./node_modules/bootstrap/dist/js/bootstrap.min.js';
71 $this->bootstrap_css =
'./node_modules/bootstrap/dist/css/bootstrap.min.css';
79 $log->write(
"getSopManifestEntries ");
80 $manifest_string =
"";
83 $BASE_DIR =
'./Modules/Scorm2004/';
93 $manifest_string .= $BASE_DIR .
'templates/default/player.css' .
"\n";
94 $manifest_string .= $BASE_DIR .
'scripts/buildrte/rte.js' .
"\n";
95 $manifest_string .= $BASE_DIR .
'scripts/ilNestedList.js' .
"\n";
97 $manifest_string .= $this->player2004_url .
"\n";
99 $manifest_string .= $this->player12_url .
"\n";
101 $manifest_string .= $this->som_url .
"\n";
104 foreach ($objects as
$name => $object) {
105 if (preg_match(
'/\/\.+/',
$name)) {
109 $manifest_string .= self::encodeuri(
$name) .
"\n";
112 foreach ($objects as
$name => $object) {
113 if (preg_match(
'/\/\.+/',
$name)) {
117 $manifest_string .= self::encodeuri(
$name) .
"\n";
121 foreach ($objects as
$name => $object) {
122 if (preg_match(
'/\/\.+/',
$name)) {
126 $manifest_string .= self::encodeuri(
$name) .
"\n";
129 foreach ($objects as
$name => $object) {
130 if (preg_match(
'/\/\.+/',
$name)) {
134 $manifest_string .= self::encodeuri(
$name) .
"\n";
137 $manifest_string .= $this->pouchdb_js .
"\n";
138 $manifest_string .= $this->jquery_js .
"\n";
139 $manifest_string .= $this->bootstrap_js .
"\n";
140 $manifest_string .= $this->bootstrap_css .
"\n";
143 return $manifest_string;
150 $log->write(
"getLmManifestEntries");
152 $manifest_string =
"";
154 foreach ($objects as
$name => $object) {
155 if (preg_match(
'/\/\.+/',
$name)) {
158 if (preg_match(
'/\.zip$/',
$name)) {
162 $manifest_string .= self::encodeuri(
$name) .
"\n";
165 return $manifest_string;
173 $ilias = $DIC[
'ilias'];
175 header(
'Content-Type: text/javascript; charset=UTF-8');
177 include_once
"./Modules/ScormAicc/classes/class.ilObjSAHSLearningModule.php";
179 $module_version = $ob->getModuleVersion();
182 $scorm_version =
"1.2";
183 if ($this->type ==
"scorm2004") {
184 $scorm_version =
"2004";
188 $learning_progress_enabled = 1;
189 include_once
'./Services/Object/classes/class.ilObjectLP.php';
191 if ($olp->getCurrentMode() == 0) {
192 $learning_progress_enabled = 0;
195 $certificate_enabled = 0;
198 $ilias_version = $ilias->getSetting(
"ilias_version");
200 if ($this->type ==
'scorm2004') {
202 $init_data = json_encode($ob2004->getConfigForPlayer());
203 $resources = json_decode($ob2004->getCPDataInit());
205 $max_attempt = $ob2004->get_max_attempts();
206 $adlact_data = json_decode($ob2004->getADLActDataInit());
209 include_once
"./Modules/ScormAicc/classes/SCORM/class.ilObjSCORMInitData.php";
220 'client_data' => array(
234 $learning_progress_enabled,
235 $certificate_enabled,
240 'sahs_user' => $sahs_user,
249 $iliasDomain = substr(ILIAS_HTTP_PATH, 7);
250 if (substr($iliasDomain, 0, 1) ==
"\/") {
251 $iliasDomain = substr($iliasDomain, 1);
253 if (substr($iliasDomain, 0, 4) ==
"www.") {
254 $iliasDomain = substr($iliasDomain, 4);
276 $ilDB = $DIC[
'ilDB'];
278 $package_attempts = 0;
281 $first_access = null;
283 $last_status_change = null;
284 $total_time_sec = null;
285 $sco_total_time_sec = 0;
287 $percentage_completed = 0;
291 $ilDB = $DIC[
'ilDB'];
294 'SELECT * FROM sahs_user WHERE obj_id=%s AND user_id=%s',
295 array(
'integer',
'integer'),
296 array($this->obj_id,
$ilUser->getID())
299 $package_attempts = $row[
'package_attempts'];
300 $module_version = $row[
'module_version'];
301 $last_visited = $row[
'last_visited'];
302 if ($row[
'first_access'] != null) {
303 $first_access = strtotime($row[
'first_access']) * 1000;
305 if ($row[
'last_access'] != null) {
306 $last_access = strtotime($row[
'last_access']) * 1000;
308 $total_time_sec = $row[
'total_time_sec'];
309 $sco_total_time_sec = $row[
'sco_total_time_sec'];
310 $status = $row[
'status'];
311 $percentage_completed = $row[
'percentage_completed'];
313 if ($first_access == null) {
314 include_once
'./Services/Tracking/classes/class.ilChangeEvent.php';
316 foreach ($all as $event) {
317 $first_access = strtotime($event[
'first_access']) * 1000;
320 return array($package_attempts, $module_version, $last_visited, $first_access, $last_access, $last_status_change, $total_time_sec, $sco_total_time_sec, $status, $percentage_completed, $user_data);
327 $ilDB = $DIC[
'ilDB'];
329 $in = file_get_contents(
"php://input");
331 $ret = array(
'msg' => array(),
'err' => array());
334 $ret[
'err'][] =
"no post data recieved";
335 print(json_encode(
$ret));
341 if ($this->type ==
'scorm2004') {
342 $lm_set =
$ilDB->queryF(
'SELECT default_lesson_mode, interactions, objectives, comments, time_from_lms FROM sahs_lm WHERE id = %s', array(
'integer'), array($this->obj_id));
344 $defaultLessonMode = ($lm_rec[
"default_lesson_mode"]);
350 include_once
'./Modules/Scorm2004/classes/class.ilSCORM2004StoreData.php';
352 $GLOBALS[
'DIC'][
'ilLog']->write(
'cmi_count=' . count(
$data->cmi));
365 if (!is_array($a_r)) {
374 include_once
"./Modules/ScormAicc/classes/SCORM/class.ilObjSCORMTracking.php";
386 $ret[
'err'][] =
"invalid post data recieved";
388 $ret[
'msg'][] =
"post data recieved";
390 header(
'Content-Type: text/plain; charset=UTF-8');
391 print json_encode(
$ret);
397 $ilDB = $DIC[
'ilDB'];
399 $first_access = null;
400 if (
$data->first_access != null) {
401 $first_access = date(
'Y-m-d H:i:s', round(
$data->first_access / 1000));
404 $i_last_access = null;
405 if (
$data->last_access != null) {
406 $i_last_access = round(
$data->last_access / 1000);
407 $last_access = date(
'Y-m-d H:i:s', $i_last_access);
408 include_once(
"./Services/Tracking/classes/class.ilChangeEvent.php");
411 $last_status_change = null;
412 if (
$data->last_status_change != null) {
413 $last_status_change = date(
'Y-m-d H:i:s', round(
$data->last_status_change / 1000));
415 $GLOBALS[
'DIC'][
'ilLog']->write(
'first_access=' . $first_access);
417 'UPDATE sahs_user SET first_access=%s, last_access=%s, last_status_change=%s, last_visited=%s, module_version=%s WHERE obj_id=%s AND user_id=%s',
418 array(
'timestamp',
'timestamp',
'timestamp',
'text',
'integer',
'integer',
'integer'),
419 array($first_access,$last_access,$last_status_change,
$data->last_visited,
$data->module_version, $this->obj_id,
$ilUser->getId())
430 $ilDB = $DIC[
'ilDB'];
433 'UPDATE sahs_user SET offline_mode=%s WHERE obj_id=%s AND user_id=%s',
434 array(
'text',
'integer',
'integer'),
435 array($a_mode, $this->obj_id,
$ilUser->getId())
437 $this->offlineMode = $a_mode;
447 $ilDB = $DIC[
'ilDB'];
450 'SELECT offline_mode FROM sahs_user WHERE obj_id=%s AND user_id=%s',
451 array(
'integer',
'integer'),
452 array($this->obj_id,
$ilUser->getId())
455 if ($row[
'offline_mode'] != null && $row[
'offline_mode'] !=
'') {
456 $this->offlineMode = $row[
'offline_mode'];
458 $this->offlineMode =
"online";
466 $ilDB = $DIC[
'ilDB'];
468 "SELECT count(*) cnt FROM sahs_user WHERE obj_id=%s AND offline_mode = 'offline'",
473 if ($val_rec[
"cnt"] == 0) {
482 $ilDB = $DIC[
'ilDB'];
485 "SELECT user_id, lastname, firstname FROM sahs_user, usr_data " 486 .
"WHERE sahs_user.obj_id=%s AND sahs_user.offline_mode = 'offline' AND sahs_user.user_id=usr_data.usr_id",
499 $ilDB = $DIC[
'ilDB'];
501 "UPDATE sahs_user SET offline_mode='online' WHERE obj_id=%s AND user_id=%s",
502 array(
'integer',
'integer'),
509 return implode(
'/', array_map(
'rawurlencode', explode(
'/', $path)));
static getIliasScormData($a_packageId)
static syncGlobalStatus($userId, $packageId, $data, $new_global_status, $time_from_lms)
static storeJsApiCmi($user_id, $obj_id, $data)
static getIliasScormResources($a_packageId)
static stopOfflineModeForUser($obj_id, $user_id)
static getStyleSheetLocation($mode="output", $a_css_name="", $a_css_location="")
get full style sheet file name (path inclusive) of current user
__construct()
Constructor.
static usersInOfflineMode($obj_id)
static _lookupTitle($a_id)
lookup object title
static checkIfAnyoneIsInOfflineMode($obj_id)
static _lookupSubType($a_obj_id)
lookup subtype id (scorm, )
static _lookupObjectId($a_ref_id)
lookup object id
static getIliasScormVars($slm_obj)
static _updateAccessForScormOfflinePlayer($obj_id, $usr_id, $i_last_access, $t_first_access)
_updateAccessForScormOfflinePlayer needed to synchronize last_access and first_access when learning m...
foreach($_POST as $key=> $value) $res
static get_max_attempts($a_packageId)
Get max.
static getImagePath($img, $module_path="", $mode="output", $offline=false)
get image path (for images located in a template directory)
static _lookupDescription($a_id)
lookup object description
if(!defined('PATH_SEPARATOR')) $GLOBALS['_PEAR_default_error_mode']
redirection script todo: (a better solution should control the processing via a xml file) ...
static _lookupReadEvents($obj_id, $usr_id=null)
Reads all read events which occured on the object which happened after the last time the user caught ...
scormPlayerUnloadForSop2il($data)
if(php_sapi_name() !='cli') $in
static setCMIData($userId, $packageId, $data, $getComments, $getInteractions, $getObjectives)
static syncGlobalStatus($userId, $packageId, $data, $new_global_status)
Class ilSCORMOfflineMode.
static yn2tf($a_yn)
convert "y"/"n" to true/false
static getLocaljQueryPath()
static getInstance($a_obj_id)
static getWebspaceDir($mode="filesystem")
get webspace directory
Class ilObjSCORMLearningModule.
Class ilObjSCORMLearningModule.
static getIliasScormTree($a_packageId)