1 | <?php |
||
24 | class PageViewHelper extends \TYPO3\CMS\Fluid\Core\ViewHelper\AbstractViewHelper |
||
25 | { |
||
26 | |||
27 | /** |
||
28 | * Creates a TSFE object which can be used in Backend |
||
29 | * |
||
30 | * @return void |
||
31 | */ |
||
32 | protected function buildTsfe() |
||
45 | |||
46 | /** |
||
47 | * Returns a new instance of the TypoScriptFrontendController |
||
48 | * |
||
49 | * @return object |
||
50 | */ |
||
51 | protected function getTsfeInstance() |
||
57 | |||
58 | /** |
||
59 | * Returns a new instance of TimeTracker |
||
60 | * |
||
61 | * @return object |
||
62 | */ |
||
63 | protected function getTimeTrackerInstance() |
||
67 | |||
68 | /** |
||
69 | * @param integer|NULL $pageUid target PID |
||
70 | * @param array $additionalParams query parameters to be attached to the resulting URI |
||
71 | * @param integer $pageType type of the target page. See typolink.parameter |
||
72 | * @param boolean $noCache set this to disable caching for the target page. You should not need this. |
||
73 | * @param boolean $noCacheHash set this to supress the cHash query parameter created by TypoLink. You should not need this. |
||
74 | * @param string $section the anchor to be added to the URI |
||
75 | * @param boolean $linkAccessRestrictedPages If set, links pointing to access restricted pages will still link to the page even though the page cannot be accessed. |
||
76 | * @param boolean $absolute If set, the URI of the rendered link is absolute |
||
77 | * @param boolean $addQueryString If set, the current query parameters will be kept in the URI |
||
78 | * @param array $argumentsToBeExcludedFromQueryString arguments to be removed from the URI. Only active if $addQueryString = TRUE |
||
79 | * @param string $addQueryStringMethod Set which parameters will be kept. Only active if $addQueryString = TRUE |
||
80 | * @return string Rendered page URI |
||
81 | */ |
||
82 | public function render( |
||
100 | } |