douduan5753 2012-03-22 01:45
浏览 33
已采纳

cakephp - 检查会话是否已设置

I'm new to cakephp and following this tutorial. http://book.cakephp.org/2.0/en/tutorials-and-examples/blog-auth-example/auth.html

I have created the blog and the user authentication system. I'm trying to display a link to sign in(if the user isn't signed in) or display a link to sign out (if the user is signed in).

So, essentially I'm checking to see if the session is set. If it is, display a link to log out. If the session isn't set, display a link to sign in.

This is in my file index.ctp located in View/Posts/index.ctp. The file containing the login and logout functions are located in Controller/UsersController.php.

<?php 
if($this->Auth->User('id')){ 
    echo $this->Html->link('Log Out', array('controller' => 'users','action' => 'logout'));
}

if(!($this->Auth->User('id'))){ 
    echo $this->Html->link('Log In', array('controller' => 'users','action' => 'login'));
}
?> 

I'm getting the following error: Fatal error: Call to a member function User() on a non-object. I know this means the object isn't defined, but I'm not sure how to reference it to another controller.

Thanks for any help.

  • 写回答

1条回答 默认 最新

  • dsh125986083 2012-03-22 01:49
    关注

    Auth is a component and thus is not available in your view, those are called helpers.

    To access Session var within a view you would do

    $this->Session->check('Auth.User');
    
    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥16 Qphython 用xlrd读取excel报错
  • ¥15 单片机学习顺序问题!!
  • ¥15 ikuai客户端多拨vpn,重启总是有个别重拨不上
  • ¥20 关于#anlogic#sdram#的问题,如何解决?(关键词-performance)
  • ¥15 相敏解调 matlab
  • ¥15 求lingo代码和思路
  • ¥15 公交车和无人机协同运输
  • ¥15 stm32代码移植没反应
  • ¥15 matlab基于pde算法图像修复,为什么只能对示例图像有效
  • ¥100 连续两帧图像高速减法