X-Git-Url: http://www.aleph1.co.uk/gitweb/?a=blobdiff_plain;f=web%2Fmodules%2Fcontrib%2Fentity_browser%2Fsrc%2FEvents%2FEventBase.php;fp=web%2Fmodules%2Fcontrib%2Fentity_browser%2Fsrc%2FEvents%2FEventBase.php;h=9346731c627d0ee342bfc523593ebe087eecbdba;hb=a2bd1bf0c2c1f1a17d188f4dc0726a45494cefae;hp=0000000000000000000000000000000000000000;hpb=57c063afa3f66b07c4bbddc2d6129a96d90f0aad;p=yaffs-website diff --git a/web/modules/contrib/entity_browser/src/Events/EventBase.php b/web/modules/contrib/entity_browser/src/Events/EventBase.php new file mode 100644 index 000000000..9346731c6 --- /dev/null +++ b/web/modules/contrib/entity_browser/src/Events/EventBase.php @@ -0,0 +1,59 @@ +entityBrowserID = $entity_browser_id; + $this->instanceUUID = $instance_uuid; + } + + /** + * Gets the entity browser ID:. + * + * @return string + * Entity browser ID. + */ + public function getBrowserID() { + return $this->entityBrowserID; + } + + /** + * Gets the entity browser instance UUID:. + * + * @return string + * Entity browser instance UUID. + */ + public function getBrowserInstanceUUID() { + return $this->instanceUUID; + } + +}