* @package Combodo\iTop\Application * @since 3.1.0 */ class ApplicationEvents implements iEventServiceSetup { // Startup events const APPLICATION_EVENT_METAMODEL_STARTED = 'APPLICATION_EVENT_METAMODEL_STARTED'; /** * @inheritDoc */ public function RegisterEventsAndListeners() { EventService::RegisterEvent(new EventDescription( self::APPLICATION_EVENT_METAMODEL_STARTED, null, 'The MetaModel is fully started', '', [], 'application')); } }