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