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
- Host: GitHub
- URL: https://github.com/haehnchen/twig-inject-event
- Owner: Haehnchen
- Created: 2017-10-18T17:18:11.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2017-10-18T17:27:37.000Z (almost 8 years ago)
- Last Synced: 2025-01-12T16:32:42.658Z (9 months ago)
- Language: PHP
- Size: 46.9 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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),
]),
```