1 | <?php |
||
10 | class EventBase extends Event { |
||
11 | |||
12 | /** |
||
13 | * Entity browser id. |
||
14 | * |
||
15 | * @var string |
||
16 | */ |
||
17 | protected $entityBrowserID; |
||
18 | |||
19 | /** |
||
20 | * Entity browser instance UUID. |
||
21 | * |
||
22 | * @var string |
||
23 | */ |
||
24 | protected $instanceUUID; |
||
25 | |||
26 | /** |
||
27 | * Constructs a EntitySelectionEvent object. |
||
28 | * |
||
29 | * @param string $entity_browser_id |
||
30 | * Entity browser ID. |
||
31 | * @param string $instance_uuid |
||
32 | * Entity browser instance UUID. |
||
33 | */ |
||
34 | public function __construct($entity_browser_id, $instance_uuid) { |
||
38 | |||
39 | /** |
||
40 | * Gets the entity browser ID:. |
||
41 | * |
||
42 | * @return string |
||
43 | * Entity browser ID. |
||
44 | */ |
||
45 | public function getBrowserID() { |
||
48 | |||
49 | /** |
||
50 | * Gets the entity browser instance UUID:. |
||
51 | * |
||
52 | * @return string |
||
53 | * Entity browser instance UUID. |
||
54 | */ |
||
55 | public function getBrowserInstanceUUID() { |
||
58 | |||
59 | } |
||
60 |