freo freoTips サイト管理系TIPS ユーザーのログイン履歴をログ一覧に記録する方法
ユーザーがログイン後の画面に遷移した履歴をログに記録します。 [freo/libs/freo/internals/login/default.php]の33行目 に、 //ログイン後の画面へ移動 if ($freo->user['id']) { if ($freo->user['authority'] == 'guest') { ...
> 記事検索 > タグ「ログイン」の検索結果
ユーザーがログイン後の画面に遷移した履歴をログに記録します。 [freo/libs/freo/internals/login/default.php]の33行目 に、 //ログイン後の画面へ移動 if ($freo->user['id']) { if ($freo->user['authority'] == 'guest') { ...
freoにログインできるユーザーは「管理者」「投稿者」「ゲスト」の三種類。(freo公式の ユーザー管理と閲覧制限について 参照) それぞれのログイン状況によって表示を変える方法は以下の通り。 <!--{if $freo.user.authority == 'root'}--> 管理者用の表示 <!--{elseif $freo.use...