扩展 Lithium 中的辅助函数
Extending helper functions in Lithium
我想使用 this code 扩展表单助手 class,谁能解释一下我需要在哪里保存代码以及如何确保在我创建表单时包含代码。
目前我已经将它保存到 extensions/helper/Forms.php
然后用
调用它
<?php
use app\extensions\helper\Form;
?>
在我的控制器中。
您已正确放置和命名文件。但是助手是在模板内部使用的。
<p>Here is a <?= $this->html->link('link', 'http://li3.me') ?> you'll all enjoy.</p>
我想使用 this code 扩展表单助手 class,谁能解释一下我需要在哪里保存代码以及如何确保在我创建表单时包含代码。
目前我已经将它保存到 extensions/helper/Forms.php
然后用
<?php
use app\extensions\helper\Form;
?>
在我的控制器中。
您已正确放置和命名文件。但是助手是在模板内部使用的。
<p>Here is a <?= $this->html->link('link', 'http://li3.me') ?> you'll all enjoy.</p>