Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
Cakephp 2の本では -> Authorization example -> (誰が何にアクセスできるのか)。
実際のリンク
関数isAuthorized($user)は宣言されていますが、呼び出されていません。それはどのように機能しますか?
isAuthorized($user)
ありがとう。
も追加する必要がありますpublic $components
public $components
public $components = array( 'Auth' => array( 'authorize' => array('Controller') // Added this line ) );
そしてisAuthorized()、ユーザーがログインした後にのみ呼び出されます。
isAuthorized()