You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
57 lines
1.6 KiB
57 lines
1.6 KiB
<?php //$id:$
|
|
/**
|
|
* Container for the aiccResource class that deals with elemens from AICC Descriptor file
|
|
* @package dokeos.learnpath
|
|
* @author Yannick Warnier <ywarnier@beeznest.org>
|
|
* @license GNU/GPL - See Dokeos license directory for details
|
|
*/
|
|
/**
|
|
* Class defining the elements from an AICC Descriptor file
|
|
*/
|
|
class aiccResource {
|
|
var $identifier = '';
|
|
var $title = '';
|
|
var $description = '';
|
|
var $developer_id = '';
|
|
|
|
/**
|
|
* 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
|
|
* @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
|
|
*/
|
|
function aiccResource($type='config',$params) {
|
|
|
|
if(isset($params))
|
|
{
|
|
switch($type){
|
|
case 'db':
|
|
//TODO implement this way of object creation
|
|
return false;
|
|
case 'config': //do the same as the default
|
|
default:
|
|
foreach($params as $a => $value)
|
|
{
|
|
switch($a)
|
|
{
|
|
case 'system_id':
|
|
$this->identifier = strtolower($value);
|
|
break;
|
|
case 'title':
|
|
$this->title = $value;
|
|
case 'description':
|
|
$this->description = $value;
|
|
break;
|
|
case 'developer_id':
|
|
$this->developer_id = $value;
|
|
break;
|
|
}
|
|
}
|
|
return true;
|
|
|
|
}
|
|
}
|
|
return false;
|
|
}
|
|
}
|
|
?>
|