File "Ajax.php"
Full path: /var/www/html/cemeau/wp-content/plugins/wp-statistics/src/Components/Ajax.php
File size: 321 bytes
MIME-type: text/x-php
Charset: utf-8
Download Open Edit Advanced Editor Back
<?php
namespace Wp_Statistics\Components;
class Ajax
{
public static function register($action, $callback, $public = true)
{
add_action('wp_ajax_wp_statistics_' . $action, $callback);
if ($public) {
add_action('wp_ajax_nopriv_wp_statistics_' . $action, $callback);
}
}
}