TYPO3 CMS  TYPO3_6-2
ElementCounter.php
Go to the documentation of this file.
1 <?php
2 namespace TYPO3\CMS\Form;
3 
23 
29  protected $elementCounter = 1;
30 
36  public function getElementId() {
37  $elementId = $this->elementCounter;
38  $this->elementCounter++;
39  return $elementId;
40  }
41 
42 }