Project

General

Profile

Actions

Bug #79737

open

Registered pageTSconfig file won't allow relative paths for include

Added by Christian Müller about 7 years ago. Updated over 2 years ago.

Status:
Under Review
Priority:
Must have
Assignee:
-
Category:
TypoScript
Target version:
-
Start date:
2017-02-10
Due date:
% Done:

0%

Estimated time:
TYPO3 Version:
8
PHP Version:
7.0
Tags:
Complexity:
Is Regression:
No
Sprint Focus:

Description

As described in the documentation ([[https://docs.typo3.org/typo3cms/TyposcriptSyntaxReference/Syntax/Includes/]]) you can use relative paths to include a file or a bunch of files inside a folder.
This works as expected as long as you include your TSconfig as default TSconfig by calling \ExtensionManagementUtility::addPageTSConfig() in your ext_localconf.php.

If you register your TSconfig for possible includes by calling ExtensionManagementUtility::registerPageTSConfigFile() in your /Configuration/TCA/Overrides/pages.php, relative paths for file/directory include do not work.

Example code:

# FILE: /Configuration/TSconfig/Page.ts
<INCLUDE_TYPOSCRIPT: source="FILE:./RTE.ts">
# FILE: /Configuration/TSconfig/RTE.ts
RTE >

Include of RTE.ts with relative path works:

// FILE: ext_localconf.php
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::addPageTSConfig(
    '<INCLUDE_TYPOSCRIPT: source="FILE:EXT:foo/Configuration/TSconfig/Page.ts">'
);

Include of RTE.ts with relative path doesn't work:

// FILE: /Configuration/TCA/Overrides/pages.php
\TYPO3\CMS\Core\Utility\ExtensionManagementUtility::registerPageTSConfigFile(
    'foo',
    'Configuration/TSconfig/Page.ts',
    'foo - PageTS'
);

To make the include work for registered TSconfig you have to use one of these:

# FILE: /Configuration/TSconfig/Page.ts
<INCLUDE_TYPOSCRIPT: source="FILE:EXT:foo/Configuration/TSconfig/RTE.ts">

# OR:

<INCLUDE_TYPOSCRIPT: source="FILE:typo3conf/ext/foo/Configuration/TSconfig/RTE.ts">

All these examples also apply for relative paths to directories (DIR:./BackendLayouts/ extension="ts").


Related issues 1 (0 open1 closed)

Has duplicate TYPO3 Core - Bug #85825: Page TSconfig is not loaded when registering record and using relative pathsClosed2018-08-13

Actions
Actions

Also available in: Atom PDF