|
|
|
@ -5,10 +5,10 @@ |
|
|
|
|
* Class aiccItem |
|
|
|
|
* This class handles the elements from an AICC Descriptor file. |
|
|
|
|
* Container for the aiccItem class that deals with AICC Assignable Units (AUs) |
|
|
|
|
* @package chamilo.learnpath |
|
|
|
|
* @author Yannick Warnier <ywarnier@beeznest.org> |
|
|
|
|
* @license GNU/GPL |
|
|
|
|
* @package chamilo.learnpath |
|
|
|
|
* @package chamilo.learnpath |
|
|
|
|
* @author Yannick Warnier <ywarnier@beeznest.org> |
|
|
|
|
* @license GNU/GPL |
|
|
|
|
* @package chamilo.learnpath |
|
|
|
|
*/ |
|
|
|
|
class aiccItem extends learnpathItem |
|
|
|
|
{ |
|
|
|
@ -35,7 +35,7 @@ class aiccItem extends learnpathItem |
|
|
|
|
* @param string Type of construction needed ('db' or 'config', default = 'config') |
|
|
|
|
* @param mixed Depending on the type given, DB id for the lp_item or parameters array |
|
|
|
|
*/ |
|
|
|
|
public function aiccItem($type = 'config', $params = array(), $course_id = null) |
|
|
|
|
public function __construct($type = 'config', $params = array(), $course_id = null) |
|
|
|
|
{ |
|
|
|
|
if (isset($params)) { |
|
|
|
|
switch ($type) { |
|
|
|
@ -43,53 +43,62 @@ class aiccItem extends learnpathItem |
|
|
|
|
parent::__construct($params, api_get_user_id(), $course_id); |
|
|
|
|
$this->aicc_contact = false; |
|
|
|
|
//TODO: Implement this way of metadata object creation. |
|
|
|
|
return false; |
|
|
|
|
case 'config': // Do the same as the default. |
|
|
|
|
default: |
|
|
|
|
//if($first_item->type == XML_ELEMENT_NODE) this is already check prior to the call to this function |
|
|
|
|
foreach ($params as $a => $value) { |
|
|
|
|
switch ($a) { |
|
|
|
|
//if($first_item->type == XML_ELEMENT_NODE) this is already check prior to the call to this function |
|
|
|
|
foreach ($params as $a => $value) { |
|
|
|
|
switch ($a) { |
|
|
|
|
case 'system_id': |
|
|
|
|
$this->identifier = Database::escape_string(strtolower($value)); |
|
|
|
|
$this->identifier = Database::escape_string( |
|
|
|
|
strtolower($value) |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'type': |
|
|
|
|
$this->au_type = Database::escape_string($value); |
|
|
|
|
break; |
|
|
|
|
case 'command_line': |
|
|
|
|
$this->command_line = Database::escape_string($value); |
|
|
|
|
$this->command_line = Database::escape_string( |
|
|
|
|
$value |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'max_time_allowed': |
|
|
|
|
$this->maxtimeallowed = Database::escape_string($value); |
|
|
|
|
$this->maxtimeallowed = Database::escape_string( |
|
|
|
|
$value |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'time_limit_action': |
|
|
|
|
$this->timelimitaction = Database::escape_string($value); |
|
|
|
|
$this->timelimitaction = Database::escape_string( |
|
|
|
|
$value |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'max_score': |
|
|
|
|
$this->max_score = Database::escape_string($value); |
|
|
|
|
break; |
|
|
|
|
case 'core_vendor': |
|
|
|
|
$this->core_vendor = Database::escape_string($value); |
|
|
|
|
$this->core_vendor = Database::escape_string( |
|
|
|
|
$value |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'system_vendor': |
|
|
|
|
$this->system_vendor = Database::escape_string($value); |
|
|
|
|
$this->system_vendor = Database::escape_string( |
|
|
|
|
$value |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'file_name': |
|
|
|
|
$this->path = Database::escape_string($value); |
|
|
|
|
break; |
|
|
|
|
case 'mastery_score': |
|
|
|
|
$this->masteryscore = Database::escape_string($value); |
|
|
|
|
$this->masteryscore = Database::escape_string( |
|
|
|
|
$value |
|
|
|
|
); |
|
|
|
|
break; |
|
|
|
|
case 'web_launch': |
|
|
|
|
$this->parameters = Database::escape_string($value); |
|
|
|
|
break; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return true; |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
return false; |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
/** |
|
|
|
@ -132,8 +141,5 @@ class aiccItem extends learnpathItem |
|
|
|
|
parent::save($from_outside, $prereqs_complete = false); |
|
|
|
|
// Under certain conditions, the scorm_contact should not be set, because no scorm signal was sent. |
|
|
|
|
$this->aicc_contact = true; |
|
|
|
|
if (!$this->aicc_contact) { |
|
|
|
|
//error_log('New LP - was expecting SCORM message but none received', 0); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|