HTMLPurifier 4.4.0
/home/ezyang/Dev/htmlpurifier/library/HTMLPurifier/AttrTransform/Textarea.php
Go to the documentation of this file.
00001 <?php
00002 
00006 class HTMLPurifier_AttrTransform_Textarea extends HTMLPurifier_AttrTransform
00007 {
00008 
00009     public function transform($attr, $config, $context) {
00010         // Calculated from Firefox
00011         if (!isset($attr['cols'])) $attr['cols'] = '22';
00012         if (!isset($attr['rows'])) $attr['rows'] = '3';
00013         return $attr;
00014     }
00015 
00016 }
00017 
00018 // vim: et sw=4 sts=4