maba/twig-template-modification-bundle
Composer 安装命令:
composer require maba/twig-template-modification-bundle
包简介
Bundle to Mass-Modify Twig Templates
README 文档
README
What does this bundle do?
This bundle does not do anything by itself - it helps you to modify your existing twig templates by replacing parsed nodes with some other twig code.
It could be used to mass-edit many templates at once.
For usage example see maba/webpack-migration-bundle.
Installation
composer require maba/twig-template-modification-bundle
Inside AppKernel:
new Maba\Bundle\WebpackBundle\MabaTwigTemplateModificationBundle(),
Usage
Make service which implements TwigNodeReplacerInterface.
use Maba\Bundle\TwigTemplateModificationBundle\Service\TwigNodeReplacerInterface; use Maba\Bundle\TwigTemplateModificationBundle\Entity\TemplateContext; use Twig_Node as Node; class MyNodeReplacer implements TwigNodeReplacerInterface { /** * @param Node $node * @param TemplateContext $context * * @return null|string string if this node should be replaced with given twig code */ public function replace(Node $node, TemplateContext $context) { if ($node instanceof NameExpression && $node->getAttribute('name') === 'my_var') { return '123'; } return null; } }
replace method will be called on each and every node in every twig template.
If string is returned (not null), node will be replaced with given string content.
TemplateContext holds template name. You can also add notices to it (for example unable to replace some node)
and hold attributes (and reuse them later - same context is passed for each node in same template).
Initiate template rewrites with this code:
$factory = $container->get('maba_twig_template_modification.factory.files_replacer'); $replacer = $factory->createFilesReplacer(new MyNodeReplacer()); // both arguments (closures) are optional $replacer->replace(function($filePath, $contents, $notices) { // log or write to output before replacing file in $filePath with $contents }, function (array $notices) use ($output) { // log or write to output notices });
You could also create replacer with dependency injection using factory service:
<service id="acme.files_replacer" class="Maba\Bundle\TwigTemplateModificationBundle\Service\FilesReplacer"> <factory service="maba_twig_template_modification.factory.files_replacer" method="createFilesReplacer"/> <argument type="collection"> <argument type="service" id="acme.my_node_replacer"/> </argument> </service>
Important! Code replaces content in templates in your bundles and app directory - be sure to run it only when using version control system with no changes uncommitted.
Running tests
composer install vendor/bin/phpunit
maba/twig-template-modification-bundle 适用场景与选型建议
maba/twig-template-modification-bundle 是一款 基于 PHP 开发的 Composer 扩展包,目前已累计 284 次下载、GitHub Stars 达 0, 最近一次更新时间为 2016 年 06 月 11 日, 在 PHP 生态内属于活跃度较高的组件。
它主要适用于以下技术方向: 「twig」 「templates」 「find-replace」 「mass-edit」 「mass-replace」 「mass-modify」 等业务场景。在实际项目中,围绕这些方向常见需要落地的问题包括:接口对接、性能调优、并发安全、与既有框架(Laravel / ThinkPHP / Yii / Webman 等)的兼容适配,以及生产环境的日志埋点与稳定性保障。
我们在过去多个企业项目中使用过 maba/twig-template-modification-bundle 或与其功能相近的方案,如果你在选型或落地过程中遇到问题,例如 版本兼容、二次改造、私有化封装、与内部系统对接、生产 BUG 排查,欢迎联系我们协助评估。
基于 maba/twig-template-modification-bundle 在你已有业务上做功能扩展、字段裁剪、UI 适配、与内部账号 / 权限 / 日志系统的深度对接。
线上偶发问题、内存泄漏、慢查询、并发异常等排查修复;针对高流量场景做缓存、队列、索引层面的调优。
承接完整的项目从需求 → 设计 → 开发 → 上线 → 长期运维;也可按月提供技术保姆服务。
与 maba/twig-template-modification-bundle 相关的其它包
同方向 / 同关键字的高下载量 PHP Composer 包推荐,方便对比选型:
Shoot aims to make providing data to your templates more manageable
CakePHP 4.x AdminLTE Theme.
This Symfony bundle integrates PhpSpreadsheet into Symfony using Twig.
A Twig extension to insert css as inline styles with a tag
Bookdown.io With Bootswatch Styles And Prism Syntax Highlighting
Caching and compression for Twig assets (JavaScript and CSS).
统计信息
- 总下载量: 284
- 月度下载量: 0
- 日度下载量: 0
- 收藏数: 0
- 点击次数: 0
- 依赖项目数: 2
- 推荐数: 0
其他信息
- 授权协议: MIT
- 更新时间: 2016-06-11