SILENT KILLERPanel

Current Path: > home > codekrsu > > escapematrixonline.com > wp-content > plugins > > wp-statistics > src > Components


Operation   : Linux premium131.web-hosting.com 4.18.0-553.44.1.lve.el8.x86_64 #1 SMP Thu Mar 13 14:29:12 UTC 2025 x86_64
Software     : Apache
Server IP    : 162.0.232.56 | Your IP: 216.73.216.111
Domains      : 1034 Domain(s)
Permission   : [ 0755 ]

Files and Folders in: /home/codekrsu//escapematrixonline.com/wp-content/plugins//wp-statistics/src/Components

NameTypeSizeLast ModifiedActions
Ajax.php File 321 bytes February 23 2025 17:00:50.
AssetNameObfuscator.php File 10397 bytes April 29 2025 10:10:58.
Assets.php File 6935 bytes April 01 2025 13:53:58.
DateRange.php File 18008 bytes April 20 2025 13:16:10.
DateTime.php File 6224 bytes April 20 2025 13:16:10.
Event.php File 2494 bytes November 04 2024 16:10:34.
RemoteRequest.php File 5764 bytes January 05 2025 12:14:56.
Singleton.php File 602 bytes May 21 2024 00:56:32.
View.php File 1571 bytes April 01 2025 13:53:58.

Reading File: /home/codekrsu//escapematrixonline.com/wp-content/plugins//wp-statistics/src/Components/Assets.php

<?php

namespace WP_Statistics\Components;

use WP_STATISTICS\Helper;

class Assets
{
    /**
     * Assets folder name
     *
     * @var string
     */
    public static $asset_dir = 'assets';

    /**
     * Plugin Url in WordPress
     *
     * @var string
     * @example http://site.com/wp-content/plugins/my-plugin/
     */
    public static $plugin_url = WP_STATISTICS_URL;

    /**
     * Plugin DIR in WordPress
     *
     * @var     string
     * @example http://srv/www/wp.site/wp-content/plugins/my-plugin/
     */
    public static $plugin_dir = WP_STATISTICS_DIR;


    /**
     * Check if a script has been enqueued or not
     *
     * @param string $handle The script handle.
     *
     * @return bool
     */
    public static function isScriptEnqueued($handle)
    {
        $handle = self::getHandle($handle);
        return wp_script_is($handle, 'enqueued');
    }

    /**
     * Enqueue a script.
     *
     * @param string $handle The script handle.
     * @param string $src The source URL of the script.
     * @param array $deps An array of script dependencies.
     * @param array $localize An array of data to be localized.
     * @param bool $inFooter Whether to enqueue the script in the footer.
     * @param bool $obfuscate Ofuscate/Randomize asset's file name.
     * @param string $pluginUrl The plugin URL.
     * @param string $version Script version number.
     * @param string $strategy Loading strategy.
     *
     * @return  void
     * @example Assets::script('admin', 'dist/admin.js', ['jquery'], ['foo' => 'bar'], true, false, WP_STATISTICS_URL, '1.0.0');
     */
    public static function script($handle, $src, $deps = [], $localize = [], $inFooter = false, $obfuscate = false, $pluginUrl = null, $version = '', $strategy = '')
    {
        $strategy = apply_filters("wp_statistics_{$handle}_loading_strategy", $strategy);
        $object   = self::getObject($handle);
        $handle   = self::getHandle($handle);
        $version  = empty($version) ? WP_STATISTICS_VERSION : trim($version);
        $args     = $inFooter;

        global $wp_version;
        $supportStrategy = version_compare($wp_version, '6.3', '>=');

        if ($supportStrategy && !empty($strategy)) {
            $args = [
                'in_footer' => $inFooter,
                'strategy'  => $strategy,
            ];
        }

        wp_enqueue_script($handle, self::getSrc($src, $obfuscate, $pluginUrl), $deps, $version, $args);

        if ($localize) {
            $localize = apply_filters("wp_statistics_localize_{$handle}", $localize);

            wp_localize_script($handle, $object, $localize);
        }
    }


    /**
     * Localize a script.
     *
     * @param string $handle The script handle.
     * @param string $name The name of the object to be passed to the script.
     * @param array $data An array of data to be localized.
     *
     * @return  void
     * @example Assets::localize('admin', 'foo', ['bar' => 'baz']);
     */
    public static function localize($handle, $name, $data)
    {
        $handle = self::getHandle($handle);
        $object = self::getObject($name);
        $data   = apply_filters("wp_statistics_localize_{$handle}", $data);

        wp_localize_script($handle, $object, $data);
    }

    /**
     * Register a script.
     *
     * @param string $handle The script handle.
     * @param string $src The source URL of the script.
     * @param array $deps An array of script dependencies.
     * @param string|null $version Optional. The version of the script. Defaults to plugin version.
     * @param bool $inFooter Whether to enqueue the script in the footer.
     * @param bool $obfuscate Ofuscate/Randomize asset's file name.
     * @param string $plugin_url The plugin URL.
     *
     * @return  void
     * @example Assets::registerScript('chartjs', 'js/chart.min.js', [], '3.7.1', false, false, WP_STATISTICS_URL);
     */
    public static function registerScript($handle, $src, $deps = [], $version = null, $inFooter = false, $obfuscate = false, $plugin_url = null)
    {
        // Get the handle for the script
        $handle = self::getHandle($handle);

        // Get the version of the script, if not provided, use the default version
        if ($version === null) {
            $version = WP_STATISTICS_VERSION;
        }

        // Register the script with WordPress
        wp_register_script($handle, self::getSrc($src, $obfuscate, $plugin_url), $deps, $version, $inFooter);
    }

    /**
     * Enqueue a style.
     *
     * @param string $handle The style handle.
     * @param string $src The source URL of the style.
     * @param array $deps An array of style dependencies.
     * @param string $media The context which style needs to be loaded: all, print, or screen
     * @param bool $obfuscate Ofuscate/Randomize asset's file name.
     * @param string $plugin_url The plugin URL.
     * @param string $version The version of the plugin.
     *
     * @return  void
     * @example Assets::style('admin', 'dist/admin.css', ['jquery'], 'all', false, WP_STATISTICS_URL);
     */
    public static function style($handle, $src, $deps = [], $media = 'all', $obfuscate = false, $plugin_url = null, $version = '')
    {
        $version = empty($version) ? WP_STATISTICS_VERSION : trim($version);

        wp_enqueue_style(self::getHandle($handle), self::getSrc($src, $obfuscate, $plugin_url), $deps, $version, $media);
    }

    /**
     * Get the handle for the script/style.
     *
     * @param string $handle The script/style handle.
     * @return string
     */
    private static function getHandle($handle)
    {
        $handle = sprintf('wp-statistics-%s', strtolower($handle));
        return apply_filters('wp_statistics_assets_handle', $handle);
    }

    /**
     * Get the source URL for the script/style.
     *
     * @param string $src The source URL.
     * @param bool $obfuscate Ofuscate/Randomize asset's file name.
     * @param string $plugin_url The plugin URL.
     *
     * @return  string
     */
    public static function getSrc($src, $obfuscate = false, $plugin_url = null)
    {
        if ($obfuscate) {
            $file = $plugin_url ? Helper::urlToDir($plugin_url) : self::$plugin_dir;
            $file = new AssetNameObfuscator(path_join($file, self::$asset_dir . '/' . $src));
            return $file->getUrlThroughProxy();
        }

        $url = $plugin_url ? untrailingslashit($plugin_url) . '/' : self::$plugin_url;

        return $url . self::$asset_dir . '/' . $src;
    }

    /**
     * Get the object name for script localization.
     *
     * @param string $handle The script handle.
     * @return string
     */
    private static function getObject($handle)
    {
        $parts          = explode('-', $handle);
        $camelCaseParts = array_map('ucfirst', $parts);

        return 'WP_Statistics_' . implode('_', $camelCaseParts) . '_Object';
    }
}

SILENT KILLER Tool