aboutsummaryrefslogtreecommitdiffstats
path: root/library/HTMLPurifier/AttrDef/Text.php
blob: c6216cc531d4b351799ea7b9764d88f578c9c26a (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
<?php

/**
 * Validates arbitrary text according to the HTML spec.
 */
class HTMLPurifier_AttrDef_Text extends HTMLPurifier_AttrDef
{

    public function validate($string, $config, $context) {
        return $this->parseCDATA($string);
    }

}

// vim: et sw=4 sts=4