TYPO3 CMS  TYPO3_6-2
TypeAttribute.php
Go to the documentation of this file.
1 <?php
3 
23 
27  protected $allowedValues = array(
28  'text',
29  'password',
30  'checkbox',
31  'radio',
32  'submit',
33  'reset',
34  'file',
35  'hidden',
36  'image',
37  'button'
38  );
39 
49  public function getValue() {
50  $attribute = strtolower((string) $this->value);
51  if (empty($attribute) || !in_array($attribute, $this->allowedValues)) {
52  $attribute = 'text';
53  }
54  return $attribute;
55  }
56 
57 }