integrationId = $integrationId; $this->name = $name; $this->isAvailable = $isAvailable; } /** * {@inheritdoc} */ public static function getWordPressHookName(): string { return 'f12_cf7_doubleoptin_integration_registered'; } /** * Get the integration identifier. * * @return string */ public function getIntegrationId(): string { return $this->integrationId; } /** * Get the integration display name. * * @return string */ public function getName(): string { return $this->name; } /** * Check if the integration is available. * * @return bool True if available. */ public function isAvailable(): bool { return $this->isAvailable; } }