liquidlight / media-gallery
Advanced multi-engine front-end gallery component
Installs: 392
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 2
Type:typo3-cms-extension
Requires
- typo3/cms-core: ^10.4 || ^11.5
This package is auto-updated.
Last update: 2024-11-16 15:08:50 UTC
README
A plugin to show images with a list of different engines to display.
Installation
composer req liquidlight/media-gallery
- Include the TypoScript, either by using static includes or including the files yourself
- Constants:
@import 'EXT:media_gallery/Configuration/TypoScript/constants'
- Setup:
@import 'EXT:media_gallery/Configuration/TypoScript/setup'
- Constants:
- Add a new gallery to a page & select images
- Pick your engine (library) or add your own
- Allow the following permissions (if required)
- Tables (listing): File collection
- Tables (modify): File collection
- Page Content: File collections
- Page Content: Type: [Allow] Media Gallery
Engines
Throughout this extension you will see and interact with the word "engine". This describes the library/package used to render the images. Examples of engines are Fancybox and Swiper. There is also an Ajax and Basic engine included which, by default, adds no extra CSS or JavaScript.
Configuration
Media Gallery comes bundled with several libraries included, which can all be configured via the $GLOBALS
array to alter their behaviour. You also have the option of adding your own media gallery engine if desired.
Remove assets of an existing engine
If an existing or added engine includes assets which you, yourself, are bundling in your site package or FE assets, you can remove assets in various ways.
You can add the following to your ext_localconf.php
:
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['fancybox']['excludeAllAssets'] = true
- This removes all assets added by the engine$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['fancybox']['excludeAssets'] = true
- This removesstylesheet
andjavascript
assets added to the document$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['fancybox']['excludeInlineAssets'] = true
- This removes any inline assets
Alternatively, you can unset()
a specific item - e.g.:
unset($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['fancybox']['styleSheet']);
Remove an engine
It might be that you don't want some (or any) of the default engines to be available. In which case, you can unset the entire engine.
For example, to remove the base & carousel engines:
unset($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['basic']); unset($GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['carousel']);
Add an engine
Engines are set via $GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']
and appended to the array.
The key should be a simple/slugified version of the engine/plugin. This allows unsetting and overriding should that be required.
The array can have several keys to add assets & define settings - all of them optional. See below for an explanation of the assets.
Adding a new engine
$GLOBALS['TYPO3_CONF_VARS']['EXTCONF']['media_gallery']['engines']['engine_key'] = [ 'title' => 'Nice title - shown in the drop down', 'template' => 'Engine', // The name of the partial used (can be omitted to use the "Basic" one) 'styleSheet' => '', // CSS to load 'javaScript' => '', // Load JS 'inlineStyleSheet' => '', // Any inline CSS 'inlineJavaScript' => '', // Any inline JS ];
Assets
The 4 asset keys (styleSheet
, javaScript
, inlineStyleSheet
, inlineJavaScript
) allow you to load assets when the particular engine is loaded. Each one can take a string or a (multi-dimensional) array and is passed to the TYPO3 AssetCollector
(docs).
Most of the time, the string will be enough, however there may be times where you need to set the priority or add data attributes.
This applies to all 4 assets, but as an example, the CSS can be formatted in 3 different ways:
As a string
'styleSheet' => 'https://www.site.com/path/to/css.css'
As an array
'styleSheet' => [ 'https://www.site.com/path/to/css.css', 'https://www.differentsite.com/path/to/css.css', ]
As a multidimensional array
This allows you to set attributes and options as you would if using the AssetCollector
directly
'styleSheet' => [ [ 'https://www.site.com/path/to/css.css', ['data-foo' => 'bar'], // $attributes ['priority' => true], // $options ] ]
Templates
If you wish to override any templates or partials, add the following to your constants.typoscript
.
site {
fluidtemplate {
media_gallery {
partialRootPath = EXT:###YOUR EXT###/Resources/Private/Partials/MediaGallery/
templateRootPath = EXT:###YOUR EXT###/Resources/Private/Templates/MediaGallery/
}
}
}
Alternatively, you can add them directly to the setup.typoscript
Note: The custom <gallery:assets engine="{engine}" />
view helper is how the assets are injected into the template - ensure your template contains this if overriding the Gallery.html
Upgrading
When upgrading from v3 (our internal, private package) to v4, please do the following:
- Install the new gallery
- Run
typo3cms upgrade:prepare
andtypo3cms upgrade:run mediagallery_galleryUpgradeWizard
- Include the TypoScript, either via a static include or including it in your application:
- Constants:
@import 'EXT:media_gallery/Configuration/TypoScript/constants'
- Setup:
@import 'EXT:media_gallery/Configuration/TypoScript/setup'
- Constants:
- Add template overrides to match the existing gallery
- You may need to unset some assets if libraries are already loaded (e.g. Fancybox)
- Look at unsetting any engines not used
- Deploy (if required, run conversion script on live after backing up the database)
- Enable the following for Role - Editor
- Tables (listing): File collection
- Tables (modify): File collection
- Page Content: File collections
- Page Content: Type: [Allow] Media Gallery
- Create a folder called "File Collections" inside Resources
- Move any File Collections to that PID (
UPDATE sys_file_collection SET pid = ''
) - Set
TSconfig
on the page to be:
- Move any File Collections to that PID (
### Restrict content types ###
mod.web_list {
allowedNewTables = sys_file_collection
hideTables = tt_content
}
Once deployed and upgraded on live:
- Uninstall the old gallery
- Remove old templates
- Remove any TypoScript configuration