0

我想将 codeigniter 助手添加到模板中。

例如:

{{ helper:redirect uri="/order/images/" method="refresh" }}

但它不起作用。可以这样调用标准助手吗?

4

1 回答 1

0

我不知道它是否正确,但它有效:

class Plugin_AvHelper extends Plugin_Helper
{
    public function redirect()
    {
            $uri        = $this->attribute('uri');
        $method     = $this->attribute('method');

        return $uri && $method ? redirect($uri, $method) : NULL;
    }
}

并致电:

{{ avhelper:redirect uri="/order/images/" method="refresh" }}
于 2012-04-11T20:52:58.103 回答