- 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
705 B
PHP
Executable File
30 lines
705 B
PHP
Executable File
<?php
|
|
|
|
final class BWFAN_Autonami_Source extends BWFAN_Source {
|
|
private static $instance = null;
|
|
|
|
public function __construct() {
|
|
$this->event_dir = __DIR__;
|
|
$this->nice_name = __( 'Automations', 'wp-marketing-automations-pro' );
|
|
$this->group_name = __( 'Automations', 'wp-marketing-automations-pro' );
|
|
$this->group_slug = 'autonami';
|
|
$this->priority = 5;
|
|
}
|
|
|
|
/**
|
|
* Ensures only one instance of the class is loaded or can be loaded.
|
|
*
|
|
* @return BWFAN_Autonami_Source|null
|
|
*/
|
|
public static function get_instance() {
|
|
if ( null === self::$instance ) {
|
|
self::$instance = new self();
|
|
}
|
|
|
|
return self::$instance;
|
|
}
|
|
|
|
}
|
|
|
|
BWFAN_Load_Sources::register( 'BWFAN_Autonami_Source' );
|