|
Server : Apache System : Linux server.mata-lashes.com 3.10.0-1160.90.1.el7.x86_64 #1 SMP Thu May 4 15:21:22 UTC 2023 x86_64 User : matalashes ( 1004) PHP Version : 8.1.29 Disable Function : NONE Directory : /home/matalashes/www/wp-content/plugins/security-malware-firewall/lib/CleantalkSP/Common/ |
Upload File : |
<?php
namespace CleantalkSP\Common;
class Escape
{
/**
* Simple method: escape html attribute
*
* @param $text
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escAttr($text)
{
// TODO
}
/**
* Simple method: escape html
*
* @param $text
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escHtml($text)
{
// TODO
}
/**
* Simple method: escape js
*
* @param $text
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escJs($text)
{
// TODO
}
/**
* Simple method: escape textarea
*
* @param $text
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escTextarea($text)
{
// TODO
}
/**
* Simple method: escape url
*
* @param $text
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escUrl($text)
{
// TODO
}
/**
* Simple method: escape url raw
*
* @param $text
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escUrlRaw($text)
{
// TODO
}
/**
* Simple method: escape kses
*
* @param $string
* @param $allowed_html
* @param array $allowed_protocols
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escKses($string, $allowed_html, $allowed_protocols = array())
{
// TODO
}
/**
* Simple method: escape kses post
*
* @param $data
*
* @psalm-suppress PossiblyUnusedMethod
*/
public static function escKsesPost($data)
{
// TODO
}
}