| 123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- <?php
- namespace Opentalent\OtTemplating\ViewHelpers\Request;
- use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
- use TYPO3Fluid\Fluid\Core\ViewHelper\AbstractViewHelper;
- /**
- * Check if a parameter with this name was passed trough the GET request.
- * If this is the case, returns this parameter; if not returns null.
- *
- * {namespace ot=Opentalent\OtTemplating\ViewHelpers}
- *
- * {ot:request.getParameter('name')}
- *
- * @package Opentalent\OtTemplating\ViewHelpers
- */
- class GetParameterViewHelper extends AbstractViewHelper {
- public function initializeArguments()
- {
- $this->registerArgument('param',
- 'string',
- "The parameter's name",
- true);
- }
- /**
- * @param array $arguments
- * @param \Closure $renderChildrenClosure
- * @param RenderingContextInterface $renderingContext
- * @return int|null
- */
- public static function renderStatic(
- array $arguments,
- \Closure $renderChildrenClosure,
- RenderingContextInterface $renderingContext
- ) {
- $param = $arguments['param'];
- if (isset($_REQUEST[$param])) {
- return $_REQUEST[$param];
- }
- return null;
- }
- }
|