An open API service indexing awesome lists of open source software.

https://github.com/haehnchen/twig-inject-event

poc include / extends as event for before after feature
https://github.com/haehnchen/twig-inject-event

Last synced: 7 months ago
JSON representation

poc include / extends as event for before after feature

Awesome Lists containing this project

README

          

[POC] Twig include / extends events

```php
new IncludeNodeVisitor([
new IncludeInjector('default/index.html.twig', 'foo2', 'before.html.twig', IncludeInjector::POSITION_PREPEND),
new IncludeInjector('default/index.html.twig', 'foo2', 'after.html.twig', IncludeInjector::POSITION_APPEND),
new IncludeInjector('default/index.html.twig', 'foo', 'after.html.twig', IncludeInjector::POSITION_APPEND),
]),
```