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