ILIAS  Release_5_0_x_branch Revision 61816
 All Data Structures Namespaces Files Functions Variables Groups Pages
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