shapecode / twig-collector-extension
This package is abandoned and no longer maintained.
No replacement package was suggested.
Ability to collect html code.
Package info
github.com/shapecode/twig-collector-extension
Type:lib
pkg:composer/shapecode/twig-collector-extension
1.3.1
2018-08-22 12:47 UTC
Requires
- php: ~5.6|~7.0
- twig/twig: ~1.34|~2.0
This package is auto-updated.
Last update: 2023-12-03 12:19:44 UTC
README
Install instructions
Via Composer
$ composer require shapecode/twig-collector-extension
Add Extension to your Twig Environment
<?php use Twig\Environment; use Shapecode\Twig\Extensions\Extension\CollectorExtension; $twig = new Environment($loader); $twig->addExtension(new CollectorExtension());
Usage
collect stuff over all templates
{% collector stylesheets %}
<style>
.body {
margin-bottom: 10px;
}
</style>
{% endcollector %}
... and output it at a specific line
{% collection stylesheets %}