key; } /** * Integration name * @return string */ abstract public function getName(); /** * Detection notice */ abstract public function detectionNotice(); /** * Checks if plugin is activated. * * @return bool */ abstract public function isActive(); /** * If returns true, the user data will be collected anonymously * @return bool */ abstract public function trackAnonymously(); /** * Checks if the user has given consent. * @return bool */ abstract public function hasConsent(); /** * Get integration status * @return array */ abstract public function getStatus(); /** * Register integration hooks. * @return void */ abstract public function register(); }