- WordPress core y plugins - Tema Twenty Twenty-Four configurado - Plugin allow-unfiltered-html.php simplificado - .gitignore configurado para excluir wp-config.php y uploads 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude <noreply@anthropic.com>
30 lines
727 B
PHP
Executable File
30 lines
727 B
PHP
Executable File
<?php
|
|
|
|
#[AllowDynamicProperties]
|
|
final class BWFAN_Autonami_Integration extends BWFAN_Integration {
|
|
public static $integration_type = null;
|
|
public static $headers = null;
|
|
private static $ins = null;
|
|
|
|
private function __construct() {
|
|
$this->action_dir = __DIR__;
|
|
$this->nice_name = __( 'Contact', 'wp-marketing-automations-pro' );
|
|
$this->group_name = __( 'Automations', 'wp-marketing-automations-pro' );
|
|
$this->group_slug = 'autonami';
|
|
$this->priority = 15;
|
|
}
|
|
|
|
public static function get_instance() {
|
|
if ( null === self::$ins ) {
|
|
self::$ins = new self();
|
|
}
|
|
|
|
return self::$ins;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* Register this class as an integration.
|
|
*/
|
|
BWFAN_Load_Integrations::register( 'BWFAN_Autonami_Integration' );
|