File: /var/www/agighana.org_backup/OptinMonster.php
<?php
/**
* Class Google\Site_Kit\Core\Conversion_Tracking\Conversion_Event_Providers\OptinMonster
*
* @package Google\Site_Kit\Core\Conversion_Tracking\Conversion_Event_Providers
* @copyright 2024 Google LLC
* @license https://www.apache.org/licenses/LICENSE-2.0 Apache License 2.0
* @link https://sitekit.withgoogle.com
*/
namespace Google\Site_Kit\Core\Conversion_Tracking\Conversion_Event_Providers;
use Google\Site_Kit\Core\Assets\Script;
use Google\Site_Kit\Core\Conversion_Tracking\Conversion_Events_Provider;
/**
* Class for handling OptinMonster conversion events.
*
* @since 1.127.0
* @access private
* @ignore
*/
class OptinMonster extends Conversion_Events_Provider {
const CONVERSION_EVENT_PROVIDER_SLUG = 'optin-monster';
/**
* Checks if the OptinMonster plugin is active.
*
* @since 1.127.0
*
* @return bool True if OptinMonster is active, false otherwise.
*/
public function is_active() {
return defined( 'OMAPI_FILE' );
}
/**
* Gets the conversion event names that are tracked by this provider.
*
* @since 1.127.0
*
* @return array List of event names.
*/
public function get_event_names() {
return array( 'submit_lead_form' );
}
/**
* Registers the script for the provider.
*
* @since 1.127.0
*
* @return Script Script instance.
*/
public function register_script() {
$script = new Script(
'googlesitekit-events-provider-' . self::CONVERSION_EVENT_PROVIDER_SLUG,
array(
'src' => $this->context->url( 'dist/assets/js/googlesitekit-events-provider-optin-monster.js' ),
'execution' => 'defer',
)
);
$script->register( $this->context );
return $script;
}
}