Task #1765 - LP tool, cleaning files (1).
parent
f4adb7c366
commit
643a575db9
File diff suppressed because it is too large
Load Diff
@ -1,60 +1,55 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* Container for the aiccResource class that deals with elemens from AICC Course Structure file |
* Container for the aiccResource class that deals with elemens from AICC Course Structure file |
||||||
* @package chamilo.learnpath |
* @package chamilo.learnpath |
||||||
* @author Yannick Warnier <ywarnier@beeznest.org> |
* @author Yannick Warnier <ywarnier@beeznest.org> |
||||||
* @license GNU/GPL |
* @license GNU/GPL |
||||||
*/ |
*/ |
||||||
|
|
||||||
/** |
/** |
||||||
* Class defining the Block elements in an AICC Course Structure file |
* Class defining the Block elements in an AICC Course Structure file. |
||||||
* |
|
||||||
*/ |
*/ |
||||||
require_once 'learnpathItem.class.php'; |
require_once 'learnpathItem.class.php'; |
||||||
class aiccBlock extends learnpathItem{ |
class aiccBlock extends learnpathItem { |
||||||
public $identifier = ''; |
public $identifier = ''; |
||||||
public $members = array(); |
public $members = array(); |
||||||
|
|
||||||
/** |
/** |
||||||
* Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormResource |
* Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormResource |
||||||
* object from database records or from the array given as second param |
* object from database records or from the array given as second param |
||||||
* @param string Type of construction needed ('db' or 'config', default = 'config') |
* @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 |
* @param mixed Depending on the type given, DB id for the lp_item or parameters array |
||||||
*/ |
*/ |
||||||
function aiccBlock($type='config',$params) { |
function aiccBlock($type = 'config', $params) { |
||||||
|
if (isset($params)) { |
||||||
if(isset($params)) |
switch ($type) { |
||||||
{ |
case 'db': |
||||||
switch($type){ |
//TODO: Implement this way of object creation. |
||||||
case 'db': |
return false; |
||||||
//TODO implement this way of object creation |
case 'config': // Do the same as the default. |
||||||
return false; |
default: |
||||||
case 'config': //do the same as the default |
foreach ($params as $a => $value) { |
||||||
default: |
switch ($a) { |
||||||
foreach($params as $a => $value) |
case 'system_id': |
||||||
{ |
$this->identifier = strtolower($value); |
||||||
switch($a) |
break; |
||||||
{ |
case 'member': |
||||||
case 'system_id': |
if (strstr($value, ',') !== false) { |
||||||
$this->identifier = strtolower($value); |
$temp = split(',', $value); |
||||||
break; |
foreach ($temp as $val) { |
||||||
case 'member': |
if (!empty($val)) { |
||||||
if(strstr($value,',')!==false){ |
$this->members[] = $val; |
||||||
$temp = split(',',$value); |
} |
||||||
foreach($temp as $val){ |
} |
||||||
if(!empty($val)){ |
} |
||||||
$this->members[] = $val; |
break; |
||||||
} |
} |
||||||
} |
} |
||||||
} |
|
||||||
break; |
|
||||||
} |
|
||||||
} |
|
||||||
return true; |
return true; |
||||||
|
} |
||||||
} |
} |
||||||
} |
return false; |
||||||
return false; |
} |
||||||
} |
|
||||||
} |
} |
||||||
?> |
|
@ -1,138 +1,135 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* Container for the aiccItem class that deals with AICC Assignable Units (AUs) |
* Container for the aiccItem class that deals with AICC Assignable Units (AUs) |
||||||
* @package chamilo.learnpath |
* @package chamilo.learnpath |
||||||
* @author Yannick Warnier <ywarnier@beeznest.org> |
* @author Yannick Warnier <ywarnier@beeznest.org> |
||||||
* @license GNU/GPL |
* @license GNU/GPL |
||||||
*/ |
*/ |
||||||
|
|
||||||
/** |
/** |
||||||
* This class handles the elements from an AICC Descriptor file. |
* This class handles the elements from an AICC Descriptor file. |
||||||
*/ |
*/ |
||||||
require_once 'learnpathItem.class.php'; |
require_once 'learnpathItem.class.php'; |
||||||
class aiccItem extends learnpathItem{ |
class aiccItem extends learnpathItem { |
||||||
public $identifier = '';//AICC AU's system_id |
public $identifier = ''; // AICC AU's system_id |
||||||
public $identifierref = ''; |
public $identifierref = ''; |
||||||
public $parameters = ''; //AICC AU's web_launch |
public $parameters = ''; // AICC AU's web_launch |
||||||
public $title = ''; //no AICC equivalent |
public $title = ''; // no AICC equivalent |
||||||
public $sub_items = array(); //AICC elements (des) |
public $sub_items = array(); // AICC elements (des) |
||||||
//public $prerequisites = ''; - defined in learnpathItem.class.php |
//public $prerequisites = ''; // defined in learnpathItem.class.php |
||||||
//public $max_score = ''; //defined in learnpathItem |
//public $max_score = ''; // defined in learnpathItem |
||||||
//public $path = ''; //defined in learnpathItem |
//public $path = ''; // defined in learnpathItem |
||||||
public $maxtimeallowed = '00:00:00'; //AICC AU's max_time_allowed |
public $maxtimeallowed = '00:00:00'; // AICC AU's max_time_allowed |
||||||
public $timelimitaction = ''; //AICC AU's time_limit_action |
public $timelimitaction = ''; // AICC AU's time_limit_action |
||||||
public $masteryscore = ''; //AICC AU's mastery_score |
public $masteryscore = ''; // AICC AU's mastery_score |
||||||
public $core_vendor = ''; //AICC AU's core_vendor |
public $core_vendor = ''; // AICC AU's core_vendor |
||||||
public $system_vendor = ''; //AICC AU's system_vendor |
public $system_vendor = ''; // AICC AU's system_vendor |
||||||
public $au_type = ''; //AICC AU's type |
public $au_type = ''; // AICC AU's type |
||||||
public $command_line = ''; //AICC AU's command_line |
public $command_line = ''; // AICC AU's command_line |
||||||
public $debug=0; |
public $debug = 0; |
||||||
|
|
||||||
/** |
/** |
||||||
* Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormItem |
* Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormItem |
||||||
* object from database records or from the array given as second parameter |
* object from database records or from the array given as second parameter |
||||||
* @param string Type of construction needed ('db' or 'config', default = 'config') |
* @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 |
* @param mixed Depending on the type given, DB id for the lp_item or parameters array |
||||||
*/ |
*/ |
||||||
public function aiccItem($type='config',$params) { |
public function aiccItem($type = 'config', $params) { |
||||||
if(isset($params)) |
if (isset($params)) { |
||||||
{ |
switch ($type) { |
||||||
switch($type){ |
case 'db': |
||||||
case 'db': |
parent::__construct($params,api_get_user_id()); |
||||||
parent::__construct($params,api_get_user_id()); |
$this->aicc_contact = false; |
||||||
$this->aicc_contact = false; |
//TODO: Implement this way of metadata object creation. |
||||||
//TODO implement this way of metadata object creation |
return false; |
||||||
return false; |
case 'config': // Do the same as the default. |
||||||
case 'config': //do the same as the default |
default: |
||||||
default: |
//if($first_item->type == XML_ELEMENT_NODE) this is already check prior to the call to this function |
||||||
//if($first_item->type == XML_ELEMENT_NODE) this is already check prior to the call to this function |
foreach ($params as $a => $value) { |
||||||
foreach($params as $a => $value) |
switch ($a) { |
||||||
{ |
case 'system_id': |
||||||
switch($a) |
$this->identifier = Database::escape_string(strtolower($value)); |
||||||
{ |
break; |
||||||
case 'system_id': |
case 'type': |
||||||
$this->identifier = Database::escape_string(strtolower($value)); |
$this->au_type = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'type': |
case 'command_line': |
||||||
$this->au_type = Database::escape_string($value); |
$this->command_line = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'command_line': |
case 'max_time_allowed': |
||||||
$this->command_line = Database::escape_string($value); |
$this->maxtimeallowed = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'max_time_allowed': |
case 'time_limit_action': |
||||||
$this->maxtimeallowed = Database::escape_string($value); |
$this->timelimitaction = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'time_limit_action': |
case 'max_score': |
||||||
$this->timelimitaction = Database::escape_string($value); |
$this->max_score = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'max_score': |
case 'core_vendor': |
||||||
$this->max_score = Database::escape_string($value); |
$this->core_vendor = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'core_vendor': |
case 'system_vendor': |
||||||
$this->core_vendor = Database::escape_string($value); |
$this->system_vendor = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'system_vendor': |
case 'file_name': |
||||||
$this->system_vendor = Database::escape_string($value); |
$this->path = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'file_name': |
case 'mastery_score': |
||||||
$this->path = Database::escape_string($value); |
$this->masteryscore = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'mastery_score': |
case 'web_launch': |
||||||
$this->masteryscore = Database::escape_string($value); |
$this->parameters = Database::escape_string($value); |
||||||
break; |
break; |
||||||
case 'web_launch': |
} |
||||||
$this->parameters = Database::escape_string($value); |
} |
||||||
break; |
|
||||||
} |
|
||||||
} |
|
||||||
return true; |
return true; |
||||||
} |
} |
||||||
} |
} |
||||||
return false; |
return false; |
||||||
} |
} |
||||||
/** |
|
||||||
* Builds a flat list with the current item and calls itself recursively on all children |
/** |
||||||
* @param array Reference to the array to complete with the current item |
* Builds a flat list with the current item and calls itself recursively on all children |
||||||
* @param integer Optional absolute order (pointer) of the item in this learning path |
* @param array Reference to the array to complete with the current item |
||||||
* @param integer Optional relative order of the item at this level |
* @param integer Optional absolute order (pointer) of the item in this learning path |
||||||
* @param integer Optional level. If not given, assumes it's level 0 |
* @param integer Optional relative order of the item at this level |
||||||
*/ |
* @param integer Optional level. If not given, assumes it's level 0 |
||||||
function get_flat_list(&$list,&$abs_order,$rel_order=1,$level=0) |
*/ |
||||||
{ |
function get_flat_list(&$list, &$abs_order, $rel_order = 1, $level = 0) { |
||||||
$list[] = array( |
$list[] = array( |
||||||
'au_type' => $this->au_type, |
'au_type' => $this->au_type, |
||||||
'command_line' => $this->command_line, |
'command_line' => $this->command_line, |
||||||
'core_vendor' => $this->core_vendor, |
'core_vendor' => $this->core_vendor, |
||||||
'identifier' => $this->identifier, |
'identifier' => $this->identifier, |
||||||
'identifierref' => $this->identifierref, |
'identifierref' => $this->identifierref, |
||||||
'masteryscore' => $this->masteryscore, |
'masteryscore' => $this->masteryscore, |
||||||
'maxtimeallowed' => $this->maxtimeallowed, |
'maxtimeallowed' => $this->maxtimeallowed, |
||||||
'level' => $level, |
'level' => $level, |
||||||
'parameters' => $this->parameters, |
'parameters' => $this->parameters, |
||||||
'prerequisites' => (!empty($this->prereq_string)?$this->prereq_string:''), |
'prerequisites' => (!empty($this->prereq_string) ? $this->prereq_string : ''), |
||||||
'timelimitaction' => $this->timelimitaction, |
'timelimitaction' => $this->timelimitaction, |
||||||
); |
); |
||||||
$abs_order++; |
$abs_order++; |
||||||
$i = 1; |
$i = 1; |
||||||
foreach($this->sub_items as $id => $dummy) |
foreach ($this->sub_items as $id => $dummy) { |
||||||
{ |
|
||||||
$oSubitem =& $this->sub_items[$id]; |
$oSubitem =& $this->sub_items[$id]; |
||||||
$oSubitem->get_flat_list($list,$abs_order,$i,$level+1); |
$oSubitem->get_flat_list($list, $abs_order, $i, $level + 1); |
||||||
$i++; |
$i++; |
||||||
} |
} |
||||||
} |
} |
||||||
/** |
|
||||||
* Save function. Uses the parent save function and adds a layer for AICC. |
/** |
||||||
* @param boolean Save from URL params (1) or from object attributes (0) |
* Save function. Uses the parent save function and adds a layer for AICC. |
||||||
*/ |
* @param boolean Save from URL params (1) or from object attributes (0) |
||||||
function save($from_outside=true, $prereqs_complete=false) |
*/ |
||||||
{ |
function save($from_outside = true, $prereqs_complete = false) { |
||||||
parent::save($from_outside, $prereqs_complete=false); |
parent::save($from_outside, $prereqs_complete = false); |
||||||
//under certain conditions, the scorm_contact should not be set, because no scorm signal was sent |
// Under certain conditions, the scorm_contact should not be set, because no scorm signal was sent. |
||||||
$this->aicc_contact = true; |
$this->aicc_contact = true; |
||||||
if(!$this->aicc_contact){ |
if (!$this->aicc_contact) { |
||||||
//error_log('New LP - was expecting SCORM message but none received',0); |
//error_log('New LP - was expecting SCORM message but none received', 0); |
||||||
} |
} |
||||||
} |
} |
||||||
} |
} |
||||||
?> |
|
@ -1,60 +1,56 @@ |
|||||||
<?php |
<?php |
||||||
/* For licensing terms, see /license.txt */ |
/* For licensing terms, see /license.txt */ |
||||||
|
|
||||||
/** |
/** |
||||||
* Container for the aiccResource class that deals with elemens from AICC Objectives file |
* Container for the aiccResource class that deals with elemens from AICC Objectives file |
||||||
* @package chamilo.learnpath |
* @package chamilo.learnpath |
||||||
* @author Yannick Warnier <ywarnier@beeznest.org> |
* @author Yannick Warnier <ywarnier@beeznest.org> |
||||||
* @license GNU/GPL |
* @license GNU/GPL |
||||||
*/ |
*/ |
||||||
|
|
||||||
/** |
/** |
||||||
* Class defining the Block elements in an AICC Course Structure file |
* Class defining the Block elements in an AICC Course Structure file. |
||||||
* |
|
||||||
*/ |
*/ |
||||||
require_once 'learnpathItem.class.php'; |
require_once 'learnpathItem.class.php'; |
||||||
class aiccObjective extends learnpathItem{ |
class aiccObjective extends learnpathItem { |
||||||
public $identifier = ''; |
public $identifier = ''; |
||||||
public $members = array(); |
public $members = array(); |
||||||
|
|
||||||
/** |
/** |
||||||
* Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormResource |
* Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormResource |
||||||
* object from database records or from the array given as second param |
* object from database records or from the array given as second param |
||||||
* @param string Type of construction needed ('db' or 'config', default = 'config') |
* @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 |
* @param mixed Depending on the type given, DB id for the lp_item or parameters array |
||||||
*/ |
*/ |
||||||
function aiccObjective($type='config',$params) { |
function aiccObjective($type = 'config', $params) { |
||||||
|
|
||||||
if(isset($params)) |
if (isset($params)) { |
||||||
{ |
switch ($type) { |
||||||
switch($type){ |
case 'db': |
||||||
case 'db': |
// TODO: Implement this way of object creation. |
||||||
//TODO implement this way of object creation |
return false; |
||||||
return false; |
case 'config': // Do the same as the default. |
||||||
case 'config': //do the same as the default |
default: |
||||||
default: |
foreach ($params as $a => $value) { |
||||||
foreach($params as $a => $value) |
switch ($a) { |
||||||
{ |
case 'system_id': |
||||||
switch($a) |
$this->identifier = strtolower($value); |
||||||
{ |
break; |
||||||
case 'system_id': |
case 'member': |
||||||
$this->identifier = strtolower($value); |
if (strstr($value, ',') !== false) { |
||||||
break; |
$temp = split(',', $value); |
||||||
case 'member': |
foreach ($temp as $val) { |
||||||
if(strstr($value,',')!==false){ |
if (!empty($val)) { |
||||||
$temp = split(',',$value); |
$this->members[] = $val; |
||||||
foreach($temp as $val){ |
} |
||||||
if(!empty($val)){ |
} |
||||||
$this->members[] = $val; |
} |
||||||
} |
break; |
||||||
} |
} |
||||||
} |
} |
||||||
break; |
|
||||||
} |
|
||||||
} |
|
||||||
return true; |
return true; |
||||||
|
} |
||||||
} |
} |
||||||
} |
return false; |
||||||
return false; |
} |
||||||
} |
|
||||||
} |
} |
||||||
?> |
|
Loading…
Reference in new issue