PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Service
/
CustomEvent
<?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(); } }
[-] CustomEventHelper.php
[edit]
[-] CustomEventDataParser.php
[edit]
[-] CustomEventActions.php
[edit]
[+]
..
[-] CustomEventManager.php
[edit]