PK

ADDRLIN : /home/carfac/.trash/wp-statistics.1/src/Service/CustomEvent/
FLL :
Current File : /home/carfac/.trash/wp-statistics.1/src/Service/CustomEvent/CustomEventManager.php

<?php

namespace WP_Statistics\Service\CustomEvent;

class CustomEventManager
{
    public function __construct()
    {
        add_action('admin_init', [$this, 'registerAjaxCallbacks']);
    }

    public function registerAjaxCallbacks()
    {
        $customEventActions = new CustomEventActions();
        $customEventActions->register();
    }
}


PK 99