TYPO3 CMS  TYPO3_6-2
HiddenJsonElement.php
Go to the documentation of this file.
1 <?php
3 
23 
29  public $xtype = 'typo3-form-wizard-elements-basic-hidden';
30 
36  public $configuration = array(
37  'attributes' => array(
38  'type' => 'hidden'
39  ),
40  'filters' => array(),
41  'label' => array(
42  'value' => ''
43  ),
44  'layout' => 'front',
45  'validation' => array()
46  );
47 
53  protected $allowedAttributes = array(
54  'class',
55  'id',
56  'lang',
57  'name',
58  'style',
59  'type',
60  'value'
61  );
62 
63 }