TYPO3 CMS  TYPO3_6-2
AbstractWizardView.php
Go to the documentation of this file.
1 <?php
3 
22 abstract class AbstractWizardView {
23 
29  protected $recordIsAvailable = FALSE;
30 
34  protected $repository;
35 
41  public function __construct(\TYPO3\CMS\Form\Domain\Repository\ContentRepository $repository) {
42  $this->setRepository($repository);
43  }
44 
51  public function setRepository(\TYPO3\CMS\Form\Domain\Repository\ContentRepository $repository) {
52  $this->repository = $repository;
53  }
54 
60  abstract public function render();
61 
62 }
__construct(\TYPO3\CMS\Form\Domain\Repository\ContentRepository $repository)
setRepository(\TYPO3\CMS\Form\Domain\Repository\ContentRepository $repository)