SILENT KILLERPanel

Current Path: > home > codekrsu > > ameliagraphics.com > wp-content > plugins > extendify > app > Shared > > Services


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//ameliagraphics.com/wp-content/plugins/extendify/app/Shared//Services

NameTypeSizeLast ModifiedActions
ApexDomain Directory - -
Import Directory - -
PluginDependencies Directory - -
Escaper.php File 753 bytes May 22 2025 22:26:12.
HttpClient.php File 4846 bytes July 16 2025 19:39:24.
Sanitizer.php File 3343 bytes May 22 2025 22:26:12.
VersionMigrator.php File 5120 bytes May 22 2025 22:26:12.

Reading File: /home/codekrsu//ameliagraphics.com/wp-content/plugins/extendify/app/Shared//Services/Escaper.php

<?php

/**
 * The Sanitizer class
 */

namespace Extendify\Shared\Services;

defined('ABSPATH') || die('No direct access.');

/**
 * Class for escaping various data attributes.
 */

class Escaper
{
    /**
     * This function will escape the attribute of a multidimensional array.
     *
     * @param array $array - The array we need to escape.
     * @return array
     */
    public static function recursiveEscAttr($array): array
    {
        if (!is_array($array)) {
            return (array) esc_attr($array);
        }

        return array_map(static function ($value) {
            if (is_array($value)) {
                return self::recursiveEscAttr($value);
            }

            return esc_attr($value);
        }, $array);
    }
}

SILENT KILLER Tool