1 | <?php |
||
24 | class UserRegistrationController extends \TYPO3\CMS\Extbase\Mvc\Controller\ActionController |
||
25 | { |
||
26 | /** |
||
27 | * RegistrationService |
||
28 | * |
||
29 | * @var \DERHANSEN\SfEventMgt\Service\RegistrationService |
||
30 | * @inject |
||
31 | */ |
||
32 | protected $registrationService; |
||
33 | |||
34 | /** |
||
35 | * @var \DERHANSEN\SfEventMgt\Domain\Repository\RegistrationRepository |
||
36 | * @inject |
||
37 | */ |
||
38 | protected $registrationRepository; |
||
39 | |||
40 | /** |
||
41 | * Creates an user registration demand object with the given settings |
||
42 | * |
||
43 | * @param array $settings The settings |
||
44 | * |
||
45 | * @return \DERHANSEN\SfEventMgt\Domain\Model\Dto\UserRegistrationDemand |
||
46 | */ |
||
47 | 1 | public function createUserRegistrationDemandObjectFromSettings(array $settings) |
|
60 | |||
61 | /** |
||
62 | * Shows a list of all registration of the current frontend user |
||
63 | * |
||
64 | * @return void |
||
65 | */ |
||
66 | 1 | public function listAction() |
|
73 | } |
||
74 |