TYPO3 CMS  TYPO3_6-2
TextareaJsonElement.php
Go to the documentation of this file.
1 <?php
3 
23 
29  public $xtype = 'typo3-form-wizard-elements-basic-textarea';
30 
36  public $configuration = array(
37  'attributes' => array(
38  'cols' => 40,
39  'rows' => 5
40  ),
41  'filters' => array(),
42  'label' => array(
43  'value' => ''
44  ),
45  'layout' => 'front',
46  'validation' => array()
47  );
48 
54  protected $allowedAttributes = array(
55  'accesskey',
56  'class',
57  'cols',
58  'dir',
59  'disabled',
60  'id',
61  'lang',
62  'name',
63  'readonly',
64  'rows',
65  'style',
66  'tabindex',
67  'title'
68  );
69 
70 }