監査証跡プラグインを実装しようとしています - https://github.com/robwilkerson/CakePHP-Audit-Log-Plugin
それはすべてうまくいきますが、指示に従ってユーザー認証を機能させることができません。次のエラーが表示されます-
Fatal error: Call to undefined method CakeErrorController::currentUser()
追加して指示に従いました
protected function currentUser() {
$user = $this->Auth->user();
return $user[$this->Auth->userModel]; # Return the complete user array
}
と追加
public function beforeFilter() {
...
if( !empty( $this->data ) && empty( $this->data[$this->Auth->userModel] ) ) {
$this->data[$this->Auth->userModel] = $this->currentUser();
}
}
私のappControllerに、誰かがこれを前に実装したか、エラーを認識しましたか?