Download the PHP package philip-hartmann/typo3fluid-api without Composer
On this page you can find all versions of the php package philip-hartmann/typo3fluid-api. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Download philip-hartmann/typo3fluid-api
More information about philip-hartmann/typo3fluid-api
Files in philip-hartmann/typo3fluid-api
Package typo3fluid-api
Short Description API to render TYPO3 Fluid templates or partials.
License GPL-2.0-or-later
Homepage https://github.com/philip-hartmann/typo3fluid-api
Informations about the package typo3fluid-api
TYPO3 Fluid API
TYPO3 extension that adds an API to render TYPO3 Fluid templates and partials through HTTP/HTTPS requests.
Requirements
The extension only works with an installed and configured TYPO3 instance.
Installation
Install the extension with composer
Once installed edit the extension settings to enhance security.
Usage
The API accepts JSON requests and returns the response as JSON as well. The API endpoint can be configured in the extension settings and is available by default under /api/typo3fluid
of your TYPO3 installation.
Request
field | description |
---|---|
extension |
snake case formatted extension name |
template |
relative template path name within a template root path, e.g. Pages/Default |
partial |
relative partial path name within a partial root path, e.g. Atomics/Button |
section |
(optional) partial section name |
arguments |
(optional) arguments that will be made available for the template or partial |
password |
password which is set in the extension settings |
Either use template
or partial
.
Response
field | description |
---|---|
data |
rendered fluid template html code |
error |
error message if available |