TYPO3 CMS  TYPO3_6-2
TabindexAttribute.php
Go to the documentation of this file.
1 <?php
3 
23 
61  public function getValue() {
62  $attribute = (int)$this->value;
63  if ($attribute < 0 || $attribute > 32767) {
64  $attribute = 0;
65  }
66  return $attribute;
67  }
68 
69 }