Allows to create online presentations in Pimcore using reveal-js.
Require via Composer
composer require teamneusta/pimcore-presentation-bundle
As this is a Pimcore bundle, enable and install it
console pimcore:bundle:enable NeustaPimcorePresentationBundle
console pimcore:bundle:install NeustaPimcorePresentationBundle
After the Bundle is installed it is required to manually install reveal-js
cd vendor/teamneusta/pimcore-presentation-bundle/public
curl -OL https://github.com/hakimel/reveal.js/archive/master.zip
unzip master.zip
rm master.zip
Create new Pimcore document pages using the Document Types offered by this bundle. See documentation for more details
The bundle provides a handful of simple areabricks for creating presentations. When the bundle is used together with other bundles, there may be collisions of areabrick names or you may simply not be interested in using the default bricks. It is possible to disable the included areabricks with the following configuration
neusta_pimcore_presentation:
bricks: false
Feel free to open issues for any bug, feature request, or other ideas.
Please remember to create an issue before creating large pull requests.
docker run -it --rm -v $(pwd):/app -w /app pimcore/pimcore:PHP8.1-cli composer install --ignore-platform-reqs
docker run -it --rm -v $(pwd):/app -w /app pimcore/pimcore:PHP8.1-cli composer test
Pipelines will tell you, when code does not meet our standards. To use the same tools in local development, take the Docker command from above with other scripts from the composer.json
. For example:
- cs:check
- phpstan
docker run -it --rm -v $(pwd):/app -w /app pimcore/pimcore:PHP8.1-cli composer <composer-script>