shapecode/twig-collector-extension

This package is abandoned and no longer maintained. No replacement package was suggested.

Ability to collect html code.

Installs: 1 278

Dependents: 1

Suggesters: 0

Security: 0

Stars: 2

Watchers: 2

Forks: 0

Open Issues: 0

Type:lib

pkg:composer/shapecode/twig-collector-extension

1.3.1 2018-08-22 12:47 UTC

This package is auto-updated.

Last update: 2023-12-03 12:19:44 UTC


README

SensioLabsInsight Latest Stable Version Total Downloads Latest Unstable Version License

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 %}