__ __ __ __ _____ _ _ _____ _ _ _ | \/ | \ \ / / | __ \ (_) | | / ____| | | | | | \ / |_ __\ V / | |__) | __ ___ ____ _| |_ ___ | (___ | |__ ___| | | | |\/| | '__|> < | ___/ '__| \ \ / / _` | __/ _ \ \___ \| '_ \ / _ \ | | | | | | |_ / . \ | | | | | |\ V / (_| | || __/ ____) | | | | __/ | | |_| |_|_(_)_/ \_\ |_| |_| |_| \_/ \__,_|\__\___| |_____/|_| |_|\___V 2.1 if you need WebShell for Seo everyday contact me on Telegram Telegram Address : @jackleetFor_More_Tools:
<?php
/**
* Performs miscellaneous cross attribute validation and filtering for
* input elements. This is meant to be a post-transform.
*/
class HTMLPurifier_AttrTransform_Input extends HTMLPurifier_AttrTransform
{
/**
* @type HTMLPurifier_AttrDef_HTML_Pixels
*/
protected $pixels;
public function __construct()
{
$this->pixels = new HTMLPurifier_AttrDef_HTML_Pixels();
}
/**
* @param array $attr
* @param HTMLPurifier_Config $config
* @param HTMLPurifier_Context $context
* @return array
*/
public function transform($attr, $config, $context)
{
if (!isset($attr['type'])) {
$t = 'text';
} else {
$t = strtolower($attr['type']);
}
if (isset($attr['checked']) && $t !== 'radio' && $t !== 'checkbox') {
unset($attr['checked']);
}
if (isset($attr['maxlength']) && $t !== 'text' && $t !== 'password') {
unset($attr['maxlength']);
}
if (isset($attr['size']) && $t !== 'text' && $t !== 'password') {
$result = $this->pixels->validate($attr['size'], $config, $context);
if ($result === false) {
unset($attr['size']);
} else {
$attr['size'] = $result;
}
}
if (isset($attr['src']) && $t !== 'image') {
unset($attr['src']);
}
if (!isset($attr['value']) && ($t === 'radio' || $t === 'checkbox')) {
$attr['value'] = '';
}
return $attr;
}
}
// vim: et sw=4 sts=4
| Name | Type | Size | Permission | Actions |
|---|---|---|---|---|
| Background.php | File | 696 B | 0777 |
|
| BdoDir.php | File | 639 B | 0777 |
|
| BgColor.php | File | 672 B | 0777 |
|
| BoolToCSS.php | File | 1.06 KB | 0777 |
|
| Border.php | File | 676 B | 0777 |
|
| EnumToCSS.php | File | 1.68 KB | 0777 |
|
| ImgRequired.php | File | 1.3 KB | 0777 |
|
| ImgSpace.php | File | 1.37 KB | 0777 |
|
| Input.php | File | 1.56 KB | 0777 |
|
| Lang.php | File | 856 B | 0777 |
|
| Length.php | File | 984 B | 0777 |
|
| Name.php | File | 808 B | 0777 |
|
| NameSync.php | File | 1.09 KB | 0777 |
|
| Nofollow.php | File | 1.28 KB | 0777 |
|
| SafeEmbed.php | File | 570 B | 0777 |
|
| SafeObject.php | File | 609 B | 0777 |
|
| SafeParam.php | File | 2.55 KB | 0777 |
|
| ScriptRequired.php | File | 516 B | 0777 |
|
| TargetBlank.php | File | 1.17 KB | 0777 |
|
| TargetNoopener.php | File | 1022 B | 0777 |
|
| TargetNoreferrer.php | File | 1.01 KB | 0777 |
|
| Textarea.php | File | 599 B | 0777 |
|