403Webshell
Server IP : 38.190.208.107  /  Your IP : 216.73.217.46
Web Server : nginx/1.28.1
System : Linux ht2026040333114 6.1.0-10-amd64 #1 SMP PREEMPT_DYNAMIC Debian 6.1.37-1 (2023-07-03) x86_64
User : root ( 0)
PHP Version : 8.2.28
Disable Function : passthru,exec,system,putenv,chroot,chgrp,chown,shell_exec,popen,proc_open,pcntl_exec,ini_alter,ini_restore,dl,openlog,syslog,readlink,symlink,popepassthru,pcntl_alarm,pcntl_fork,pcntl_waitpid,pcntl_wait,pcntl_wifexited,pcntl_wifstopped,pcntl_wifsignaled,pcntl_wifcontinued,pcntl_wexitstatus,pcntl_wtermsig,pcntl_wstopsig,pcntl_signal,pcntl_signal_dispatch,pcntl_get_last_error,pcntl_strerror,pcntl_sigprocmask,pcntl_sigwaitinfo,pcntl_sigtimedwait,pcntl_exec,pcntl_getpriority,pcntl_setpriority,imap_open,apache_setenv,eval,assert,passthru,system,exec,shell_exec,popen,proc_open
MySQL : OFF  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /www/wwwroot/wp.3/wp-content/plugins/wp-statistics/src/Components/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /www/wwwroot/wp.3/wp-content/plugins/wp-statistics/src/Components/Ajax.php
<?php

namespace WP_Statistics\Components;

class Ajax
{
    /**
     * Registers an Ajax action with WordPress.
     *
     * @param string $action The name of the action to register.
     * @param callable $callback The function to call when the action is triggered.
     * @param bool $public Whether to register the action as public (i.e. accessible via non-logged-in users).
     *
     * @since 1.0.0
     */
    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);
        }
    }

    /**
     * Sends a JSON response back to an Ajax request.
     *
     * @param bool $success Whether the request was successful.
     * @param string $status The status of the request (e.g. "success", "error", "warning").
     * @param string $message Optional. The message to send back to the client.
     * @param mixed $data Optional. The data to send back to the client.
     * @param int $code Optional. The HTTP status code to output. Default null.
     */
    public static function send($success, $status, $message = null, $data = null, $code = null)
    {
        $response = [
            'success' => (bool) $success,
            'status'  => $status
        ];

        if ($message !== null) {
            $response['message'] = $message;
        }

        if ($data !== null) {
            $response['data'] = $data;
        }

        wp_send_json($response, $code);
    }

    /**
     * Sends a JSON response back to an Ajax request, indicating success.
     *
     * @param string|null $message Optional. The message to send back to the client.
     * @param mixed|null $data Optional. The data to send back to the client.
     * @param int|null $code Optional. The HTTP status code to output. Default 200.
     */
    public static function success($message = null, $data = null, $code = 200)
    {
        self::send(true, 'success', $message, $data, $code);
    }

    /**
     * Sends a JSON response back to an Ajax request, indicating failure.
     *
     * @param string $message The message to send back to the client.
     * @param mixed|null $data Optional. The data to send back to the client.
     * @param int|null $code Optional. The HTTP status code to output. Default 400.
     */
    public static function error($message, $data = null, $code = 400)
    {
        self::send(false, 'error', $message, $data, $code);
    }
}

Youez - 2016 - github.com/yon3zu
LinuXploit