1 | <?php |
||
24 | class HmacViewHelper extends AbstractViewHelper |
||
25 | { |
||
26 | /** |
||
27 | * Hash Service |
||
28 | * |
||
29 | * @var \TYPO3\CMS\Extbase\Security\Cryptography\HashService |
||
30 | * @inject |
||
31 | */ |
||
32 | protected $hashService; |
||
33 | |||
34 | /** |
||
35 | * Returns the hmac for the given registration in order to cancel the registration |
||
36 | * |
||
37 | * @param \DERHANSEN\SfEventMgt\Domain\Model\Registration $registration Registration |
||
38 | * |
||
39 | * @return array |
||
40 | */ |
||
41 | public function render($registration) |
||
49 | } |
||
50 |