ILIAS  release_5-1 Revision 5.0.0-5477-g43f3e3fab5f
Textarea.php
Go to the documentation of this file.
1<?php
2
7{
14 public function transform($attr, $config, $context)
15 {
16 // Calculated from Firefox
17 if (!isset($attr['cols'])) {
18 $attr['cols'] = '22';
19 }
20 if (!isset($attr['rows'])) {
21 $attr['rows'] = '3';
22 }
23 return $attr;
24 }
25}
26
27// vim: et sw=4 sts=4
Sets height/width defaults for <textarea>
Definition: Textarea.php:7
transform($attr, $config, $context)
Definition: Textarea.php:14
Processes an entire attribute array for corrections needing multiple values.