You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -51,6 +49,8 @@ public function initializeArguments()
51
49
$this->registerArgument('extensionName', 'string', 'Target Extension Name (without "tx_" prefix and no underscores). If NULL the current extension name is used');
52
50
$this->registerArgument('pluginName', 'string', 'Target plugin. If empty, the current plugin name is used');
53
51
$this->registerArgument('pageUid', 'int', 'Target page. See TypoLink destination');
52
+
$this->registerArgument('pageType', 'int', 'Type of the target page. See typolink.parameter', false, 0);
53
+
$this->registerArgument('noCache', 'bool', 'Set this to disable caching for the target page. You should not need this.', false, false);
54
54
$this->registerArgument('section', 'string', 'The anchor to be added to the URI', false, '');
55
55
$this->registerArgument('format', 'string', 'The requested format, e.g. ".html', false, '');
56
56
$this->registerArgument('linkAccessRestrictedPages', 'bool', 'If set, links pointing to access restricted pages will still link to the page even though the page cannot be accessed.', false, false);
@@ -62,65 +62,15 @@ public function initializeArguments()
62
62
$this->registerArgument('contextRecord', 'string', 'The record that the rendering should depend upon. e.g. current (default: record is fetched from current Extbase plugin), tt_content:12 (tt_content record with uid 12), pages:15 (pages record with uid 15), \'currentPage\' record of current page', false, 'current');
0 commit comments