| 1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- <?php
- namespace Opentalent\OtTemplating\ViewHelpers\Request;
- use Closure;
- use Opentalent\OtCore\ViewHelpers\OtAbstractViewHelper;
- use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
- /**
- * Return the URI of the requested page
- *
- * {namespace ot=Opentalent\OtTemplating\ViewHelpers}
- *
- * {ot:request.uri()}
- *
- * @package Opentalent\OtTemplating\ViewHelpers
- */
- class UriViewHelper extends OtAbstractViewHelper {
- /**
- * -- This method is expected by Fluid --
- * Declares the viewhelper's parameters
- */
- public function initializeArguments()
- {
- }
- /**
- * -- This method is expected by Fluid --
- * Renders the content as html
- *
- * @param array $arguments
- * @param Closure $renderChildrenClosure
- * @param RenderingContextInterface $renderingContext
- * @return string|null
- */
- public static function renderStatic(
- array $arguments,
- Closure $renderChildrenClosure,
- RenderingContextInterface $renderingContext
- ) {
- return (string)$GLOBALS['TYPO3_REQUEST']->getUri();
- }
- }
|