-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathViewHelperContext.php
More file actions
69 lines (57 loc) · 1.97 KB
/
ViewHelperContext.php
File metadata and controls
69 lines (57 loc) · 1.97 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?php
declare(strict_types=1);
namespace Helhum\TyposcriptRendering\Uri;
/*
* This file is part of the TypoScript Rendering TYPO3 extension.
*
* It is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License, either version 2
* of the License, or any later version.
*
* For the full copyright and license information, please read
* LICENSE file that was distributed with this source code.
*
*/
use TYPO3\CMS\Core\Utility\GeneralUtility;
use TYPO3\CMS\Extbase\Configuration\ConfigurationManager;
use TYPO3\CMS\Extbase\Mvc\Controller\ControllerContext;
use TYPO3\CMS\Extbase\Object\ObjectManager;
use TYPO3\CMS\Frontend\ContentObject\ContentObjectRenderer;
use TYPO3Fluid\Fluid\Core\Rendering\RenderingContextInterface;
class ViewHelperContext
{
/**
* @var RenderingContextInterface
*/
private $renderingContext;
/**
* @var array
*/
private $arguments;
/**
* @var ConfigurationManager
*/
private $configurationManager;
public function __construct(RenderingContextInterface $renderingContext, array $arguments, ConfigurationManager $configurationManager = null)
{
$this->renderingContext = $renderingContext;
$this->arguments = $arguments;
$this->configurationManager = $configurationManager;
}
public function getRequest()
{
if ($this->renderingContext instanceof \TYPO3\CMS\Fluid\Core\Rendering\RenderingContext) {
return $this->renderingContext->getRequest();
}
}
public function getArguments(): array
{
return $this->arguments;
}
public function getContentObject(): ContentObjectRenderer
{
$configurationManager = $this->configurationManager ?? GeneralUtility::makeInstance(ConfigurationManager::class);
$contentObject = $configurationManager->getContentObject();
return $contentObject ?? GeneralUtility::makeInstance(ContentObjectRenderer::class);
}
}