ILIAS  trunk Revision v11.0_alpha-1689-g66c127b4ae8
All Data Structures Namespaces Files Functions Variables Enumerations Enumerator Modules Pages
CollectionData.php
Go to the documentation of this file.
1 <?php
2 
19 declare(strict_types=1);
20 
22 
27 class CollectionData extends Data
28 {
29  public function __construct(array $data = [])
30  {
31  // check fopr array to have two keys: rcid and rid
32  if (!array_key_exists('rcid', $data) || !array_key_exists('rid', $data)) {
33  throw new \InvalidArgumentException('CollectionData must contain rcid and rid');
34  }
35 
36  parent::__construct($data, \ArrayObject::ARRAY_AS_PROPS);
37  }
38 
39  public function getRcid(): string
40  {
41  return $this['rcid'];
42  }
43 
44  public function getRid(): string
45  {
46  return $this['rid'];
47  }
48 }
__construct(Container $dic, ilPlugin $plugin)