PATH:
home
/
niazsaze
/
public_html
/
wp-content
/
plugins
/
wp-statistics
/
src
/
Globals
<?php namespace WP_Statistics\Globals; use WP_Statistics\Components\Ajax; class AjaxManager { public function __construct() { add_action('init', [$this, 'register']); } /** * Register AJAX callbacks. * * @example Ajax::register('test', [$this, 'test']) */ public function register() { } }
[-] Context.php
[edit]
[-] AjaxManager.php
[edit]
[+]
..