.. include:: ../../../Includes.txt .. _typoscript-syntax-includes: Includes ^^^^^^^^ You can also add include-instructions in TypoScript code. Availability depends on the context, but it works with TypoScript templates, Page TSconfig and User TSconfig. Since TYPO3 version 9 a new syntax for importing external TypoScript files has been introduced, which acts as a preprocessor before the actual parsing (condition evaluation) takes place. Its main purpose is ease the use of TypoScript includes and making it easier for integrators and frontend developers to work with distributed TypoScript files. The syntax is inspired by SASS imports and works as follows: .. code-block:: typoscript # Import a single file @import 'EXT:myproject/Configuration/TypoScript/randomfile.typoscript' # Import multiple files of a single directory in file name order @import 'EXT:myproject/Configuration/TypoScript/*.typoscript' # Import all files of a directory @import 'EXT:myproject/Configuration/TypoScript/' # The filename extension can be omitted and defaults to .typoscript @import 'EXT:myproject/Configuration/TypoScript/' The main benefits of :ts:`@import` compared to :ts:`` are: - is less error-prone - @import is expressive and self-explanatory - better clarifies whether files or folders are imported (in comparison to the old `FILE:` and `DIR:` syntax) The following rules apply: - Multiple files are imported in alphabetical order. - Recursion is allowed. Imported files can have :ts:`@import` statements. - The :ts:`@import` statement does not take a condition clause as the old :ts:`` statement did. That kind of condition should be considered a conceptual mistake. It should not be used. - Both the old syntax :ts:`` and the new one :ts:`@import` can be used at the same time. - Directory imports are not recursive, meaning that a directory import does not automatically travel down its subdirectories. - Quoting the filename is necessary with the new syntax. Either double quotes (") or single quotes (') can be used. *Internals:* Under the hood, Symfony Finder is use to find the file and provides the "globbing" feature (\* syntax). *Outlook:* The syntax is designed to stay and there are absolutely no plans to extend the :ts:`@import` statement in the future. However, the :ts:`@...` syntax for annotations may be used to add more preparsing logic to TypoScript in future. Alternative, traditional Syntax """"""""""""""""""""""""""""""" A traditional include-instruction will work as well and for example looks like this: .. code-block:: typoscript - It must have its own line in the TypoScript template, otherwise it is not recognized. - It is processed BEFORE any parsing of TypoScript (contrary to conditions) and therefore does not care about the nesting of confinements within the TypoScript code. The "source" parameter points to the source of the included content. The string before the first ":" (in the example it is the word "FILE") will determine which source the content is coming from. These options are available: ======= ========================================================================== Option Description ======= ========================================================================== FILE A reference to a file relative to :php:`\TYPO3\CMS\Core\Core\Environment::getPublicPath()`. Also paths *relative to the including file* can be passed to INCLUDE_TYPOSCRIPT, if the inclusion is called from inside a file. These paths start with :file:`./` or :file:`../`. The :file:`./` is needed to distinguish them from paths relative to :php:`\TYPO3\CMS\Core\Core\Environment::getPublicPath()`. This mechanism allows simple, nested TypoScript templates that can be moved or copied without the need to adapt all includes. If you use a syntax like :file:`EXT:myext/directory/file.txt` the file included will be searched for in the extension directory of extension "myext", subdirectory :file:`directory/file.txt`. DIR This includes all files from a directory relative to :php:`\TYPO3\CMS\Core\Core\Environment::getPublicPath()`, including subdirectories. If the optional property :file:`extensions="..."` is provided, only files with these file extensions are included; multiple extensions are separated by comma. This allows e.g. to include both setup and constants from the same directory tree, using different file extensions for both. Files are included in alphabetical. Also files are included first, then directories. Example: .. code-block:: typoscript This includes all those files from the directory :file:`fileadmin/templates/` and from subdirectories, which have the file extension :file:`.typoscript`. ======= ========================================================================== .. _typoscript-syntax-includes-conditions: Conditions """""""""" Since TYPO3 CMS 7, it is possible to use conditions on include directives. The conditions are the same as was presented in the :ref:`previous chapter `. The files or directories will be included only if the condition is met. Example: .. code-block:: text .. important:: Please note that since TYPO3 9.4, the syntax of condition has switched to the `symfony expression language `__ which :ref:`is covered in this section of TSref `. If the condition requires double quotes, they must be converted to single quotes or escaped, e.g.: .. code-block:: text .. _typoscript-syntax-includes-best-practices: Best practices """""""""""""" The option to filter by extension has been included exactly for the purpose of covering as many use cases as possible. In TYPO3 CMS we often have many different ways of configuring something, with pros and cons and the extended inclusion command serves this purpose of letting you organize your files with different directories using whichever extension fits your needs better (e.g., :file:`.typoscript`) and/or filter by extension (e.g., because you may have :file:`.typoscript` and :file:`.txt` in the directory or because you prefer having :file:`.typoscript` as extension). It is recommended to separate files with different directories: * For TSconfig code use a directory called TSconfig/, possibly with subdirectories named Page/ for Page TSconfig and User/ for User TSconfig. * For TypoScript template code, use a directory named TypoScript/. However, we understand that filtering by extension could make sense in some situations and this is why there is this additional option.