Public
Public assets
Public assets used in extensions (files that should be delivered by the web
server) must be located in the Resources/
folder of the extension.
Changed in version 12.0
Having public assets in any but the folder Resources/Public is not possible anymore.
Note
This folder should only be used for static assets.
If you need to create assets during runtime, they should be stored in
typo3temp/
.
Prevent access to non public files
No extension file outside the folder Resources/
may be accessed
from outside the web server.
This can be achieved by applying proper access restrictions on the web server. See: Restrict access to files on a server-level.
By using the Composer package
helhum/
all
files except those that should be publicly available can be stored outside
the servers web root.
Resources/Public/Icons/Extension.svg
Alternatives: Resources/
,
Resources/
These file names are reserved for the extension icon, which will be displayed in the extension manager.
It must be in format SVG (preferred), PNG or GIF and should have at least 16x16 pixels.
Common subfolders
- Resources/Public/Css
- Any CSS file used by the extension.
- Resources/Public/Images
- Any image used by the extension.
- Resources/Public/JavaScript
- Any JS file used by the extension.