TYPO3 CMS  TYPO3_6-2
MultipleAttribute.php
Go to the documentation of this file.
1 <?php
3 
23 
34  public function getValue() {
35  if (((int)$this->value === 1 || (bool)$this->value === TRUE) || strtolower((string)$this->value) === 'multiple') {
36  $attribute = 'multiple';
37  }
38  return $attribute;
39  }
40 
41 }