| 1 | <?php |
||
| 14 | class aiccObjective extends learnpathItem |
||
| 15 | { |
||
| 16 | public $identifier = ''; |
||
| 17 | public $members = array(); |
||
| 18 | |||
| 19 | /** |
||
| 20 | * Class constructor. Depending of the type of construction called ('db' or 'manifest'), will create a scormResource |
||
| 21 | * object from database records or from the array given as second param |
||
| 22 | * @param string Type of construction needed ('db' or 'config', default = 'config') |
||
| 23 | * @param mixed Depending on the type given, DB id for the lp_item or parameters array |
||
| 24 | */ |
||
| 25 | public function __construct($type = 'config', $params) |
||
| 54 | } |
||
| 55 |