我想重新声明并添加一些方法来帮助Tag。
class MyTags extends \Phalcon\Tag
{
public static function mytag($params)
{
<...>
}
}
在services.php中
$di->set('tag', function() {
return new MyTags();
};
但它仅适用于PHP引擎,不适用于Volt。
{{ mytag() }}
返回
Undefined function 'mytag'
答案 0 :(得分:11)
首先:不要使用tag
作为您的服务名称,因为它已经被Phalcon的Tag对象使用。其次,您可以使用类中的静态方法。
下面是myTag
的一个工作示例,它使用我的应用中的配置,并为您的示例更改了名称。
$di->set(
'view',
function () use ($config) {
$view = new View();
$view->setViewsDir($config->application->viewsDir);
$view->registerEngines(
array(
'.volt' => function ($view, $di) use ($config) {
$volt = new VoltEngine($view, $di);
$volt->setOptions(
array(
'compiledPath' => $config->application->cacheDir,
'compiledSeparator' => '_',
'compileAlways' => false
)
);
$compiler = $volt->getCompiler();
// add a function
$compiler->addFunction(
'myTag',
function ($resolvedArgs, $exprArgs) {
return 'MyTags::mytag(' . $resolvedArgs . ')';
}
);
// or filter
$compiler->addFilter(
'myFilter',
function ($resolvedArgs, $exprArgs) {
return 'MyTags::mytag(' . $resolvedArgs . ')';
}
);
return $volt;
}
)
);
return $view;
},
true
);
然后您可以在伏特视图中使用myTag()
功能。
但是如果你想使用object,那么不要使用静态方法:
class MyTags extends \Phalcon\Tag
{
/**
* Look no static keyword here
*/
public function mytag($params)
{
<...>
}
}
服务中的使用对象:
$di->set('mahTag', function() {
return new MyTags();
};
然后进入伏特:
{{ mahTag.mytag() }}