ILIAS
Release_4_1_x_branch Revision 61804
◀ ilDoc Overview
Main Page
Related Pages
Modules
Namespaces
Data Structures
Files
Examples
File List
Globals
All
Data Structures
Namespaces
Files
Functions
Variables
Groups
Pages
Textarea.php
Go to the documentation of this file.
1
<?php
2
6
class
HTMLPurifier_AttrTransform_Textarea
extends
HTMLPurifier_AttrTransform
7
{
8
9
public
function
transform
($attr,
$config
, $context) {
10
// Calculated from Firefox
11
if
(!isset($attr[
'cols'
])) $attr[
'cols'
] =
'22'
;
12
if
(!isset($attr[
'rows'
])) $attr[
'rows'
] =
'3'
;
13
return
$attr;
14
}
15
16
}
17
18
// vim: et sw=4 sts=4
Services
Html
HtmlPurifier
library
HTMLPurifier
AttrTransform
Textarea.php
Generated on Thu Apr 21 2016 19:02:51 for ILIAS by
1.8.1.2 (using
Doxyfile
)