TYPO3 CMS  TYPO3_6-2
ImagebuttonElement.php
Go to the documentation of this file.
1 <?php
3 
23 
29  protected $allowedAttributes = array(
30  'accesskey' => '',
31  'alt' => '',
32  'class' => '',
33  'dir' => '',
34  'disabled' => '',
35  'id' => '',
36  'lang' => '',
37  'name' => '',
38  'src' => '',
39  'style' => '',
40  'tabindex' => '',
41  'title' => '',
42  'type' => 'image',
43  'value' => ''
44  );
45 
51  protected $mandatoryAttributes = array(
52  'name',
53  'id'
54  );
55 
56 }