Kohana 3 - 构造函数

时间:2010-05-29 18:57:22

标签: php authentication constructor kohana-3

我尝试使用public function __construct() { },但收到了错误

  

ErrorException [严格]:正在创建   默认对象来自空值。

这背后的原因是我使用的控制器仅受登录用户保护,我不想从控制器中的每个操作调用$this->protect();

因此我尝试使用调用$this->protect();

的构造函数

1 个答案:

答案 0 :(得分:3)

使用before()方法中的登录安全措施...

public function before() {
    parent::before();
    $this->protect();

}