ILIAS  release_8 Revision v8.24
ilLPCollectionOfMediaObjects Class Reference

LP collection of media objects. More...

+ Inheritance diagram for ilLPCollectionOfMediaObjects:
+ Collaboration diagram for ilLPCollectionOfMediaObjects:

Public Member Functions

 getPossibleItems ()
 
 getTableGUIData (int $a_parent_ref_id)
 
 cloneCollection (int $a_target_id, int $a_copy_id)
 Scorm items are not copied, they are newly created by reading the manifest. More...
 
- Public Member Functions inherited from ilLPCollection
 __construct (int $a_obj_id, int $a_mode)
 
 hasSelectableItems ()
 
 cloneCollection (int $a_target_id, int $a_copy_id)
 
 getItems ()
 
 delete ()
 
 isAssignedEntry (int $a_item_id)
 
 deactivateEntries (array $a_item_ids)
 
 activateEntries (array $a_item_ids)
 

Static Protected Attributes

static array $possible_items = array()
 

Additional Inherited Members

- Static Public Member Functions inherited from ilLPCollection
static getInstanceByMode (int $a_obj_id, int $a_mode)
 
static getCollectionModes ()
 
- Protected Member Functions inherited from ilLPCollection
 read (int $a_obj_id)
 
 validateEntry (int $a_item_id)
 
 addEntry (int $a_item_id)
 
 deleteEntry (int $a_item_id)
 
- Protected Attributes inherited from ilLPCollection
int $obj_id
 
int $mode
 
array $items = []
 
ilDBInterface $db
 
ilLogger $logger
 

Detailed Description

LP collection of media objects.

Author
Jörg Lützenkirchen luetz.nosp@m.enki.nosp@m.rchen.nosp@m.@lei.nosp@m.fos.c.nosp@m.om

Definition at line 11 of file class.ilLPCollectionOfMediaObjects.php.

Member Function Documentation

◆ cloneCollection()

ilLPCollectionOfMediaObjects::cloneCollection ( int  $a_target_id,
int  $a_copy_id 
)

Scorm items are not copied, they are newly created by reading the manifest.

Therefore, they do not have a mapping. So we need to map them via the import_id/identifierref

Parameters
int$a_target_id
int$a_copy_id

Reimplemented from ilLPCollection.

Definition at line 54 of file class.ilLPCollectionOfMediaObjects.php.

54 : void
55 {
56 $target_obj_id = ilObject::_lookupObjId($a_target_id);
57 $new_collection = new static($target_obj_id, $this->mode);
58 $possible_items = $new_collection->getPossibleItems();
59 foreach ($this->items as $item_id) {
60 if (isset($mob_mapping[$item_id]) && isset($possible_items[$mob_mapping[$item_id]])) {
61 $new_collection->addEntry($mob_mapping[$item_id]);
62 }
63 }
64 }
static _lookupObjId(int $ref_id)

References ilLPCollection\$mode, $possible_items, and ilObject\_lookupObjId().

+ Here is the call graph for this function:

◆ getPossibleItems()

ilLPCollectionOfMediaObjects::getPossibleItems ( )

Definition at line 15 of file class.ilLPCollectionOfMediaObjects.php.

15 : array
16 {
17 if (!isset(self::$possible_items[$this->obj_id])) {
18 $items = array();
19
20 $cast = new ilObjMediaCast($this->obj_id, false);
21
22 foreach ($cast->getSortedItemsArray() as $item) {
23 $items[$item["mob_id"]] = array("title" => $item["title"]);
24 }
25 self::$possible_items[$this->obj_id] = $items;
26 }
27 return self::$possible_items[$this->obj_id];
28 }
This file is part of ILIAS, a powerful learning management system published by ILIAS open source e-Le...

References ilLPCollection\$items, and ilLPCollection\$obj_id.

Referenced by getTableGUIData().

+ Here is the caller graph for this function:

◆ getTableGUIData()

ilLPCollectionOfMediaObjects::getTableGUIData ( int  $a_parent_ref_id)

Definition at line 30 of file class.ilLPCollectionOfMediaObjects.php.

30 : array
31 {
32 $data = array();
33
34 foreach ($this->getPossibleItems() as $mob_id => $item) {
35 $tmp = array();
36 $tmp['id'] = $mob_id;
37 $tmp['ref_id'] = 0;
38 $tmp['type'] = 'mob';
39 $tmp['title'] = $item['title'];
40 $tmp['status'] = $this->isAssignedEntry($mob_id);
41
42 $data[] = $tmp;
43 }
44
45 return $data;
46 }
isAssignedEntry(int $a_item_id)

References $data, getPossibleItems(), and ilLPCollection\isAssignedEntry().

+ Here is the call graph for this function:

Field Documentation

◆ $possible_items

array ilLPCollectionOfMediaObjects::$possible_items = array()
staticprotected

Definition at line 13 of file class.ilLPCollectionOfMediaObjects.php.

Referenced by cloneCollection().


The documentation for this class was generated from the following file: