phalcon-framwork/extensions

phalcon extensions for phalcon-framwork

v1.0.0 2018-12-01 18:50 UTC

This package is auto-updated.

Last update: 2024-09-29 05:28:06 UTC


README

volt扩展在服务中使用

use use PhalconExtensions\Volt as VoltExtension;
...

$di->setShared('viewEngineVolt', function (View $view, DI $di) {
    ...
    // 获取编译器对象
    $compiler = $viewEngineVolt->getCompiler();
    // 添加扩展
    $compiler->addExtension(new VoltExtension());
    return $viewEngineVolt;
});