JAR Assets 

Version

3.0

Language

en

Description

This extension provides a new content object ASSETS to include all css or js files from a folder into the page.

Authors

Julian Lichte, Maurice Möllmer

Email

info@invokable.gmbh

License

Creative Commons BY 4.0 <https://creativecommons.org/licenses/by/4.0/>`__

TYPO3

The content of this document is related to TYPO3 CMS, a GNU/GPL CMS/Framework available from typo3.org .

Extension Manual

This documentation is for the TYPO3 extension JAR Assets. If you find an error or something is missing, please: Report a Problem


Author 

This extension has been created by JAR Media, a brand of invokable.

JAR Media - be creative. and relax invokable GmbH

Installation 

Install the extension jar_assets via extension manager or via composer (recommended):

composer require jar/jar_assets
Copied!

You can find the current version (and older ones) at

TBA

Configuration 

Download the extension.

Variables 

path

path
Required

true

type

string

Path to the folder on the filesystem.

standalone

standalone
Required

false

type

boolean

Toggle concatenation of the asset files.

Example 

Simple example of including all assets from a folder.

Example:

page.31 = COA
page.31 {
	10 = ASSETS
	10.path = EXT:fileadmin/assets/javaScript/libraries
	10.standalone = 0
	
	20 = ASSETS
	20.path = EXT:fileadmin/assets/css
	20.standalone = 1
}
Copied!