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