PATH:
home
/
carfac
/
.trash
/
wp-statistics.1
/
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() { } }
[-] AjaxManager.php
[edit]
[-] Context.php
[edit]
[+]
..