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.
ユーザーがサイトにログインした後、ユーザー名をセッション変数に保存して、ログインしているユーザーに応じて別の動的ページでその情報を使用できるようにします。
どうすればこれを達成できますか。
ユーザーがJoomlaにログインしていて、テンプレートファイルなどのJoomlaファイルにユーザー名が必要な場合は、次の操作を実行できます。
$user = $JFactory::getUser(); if (!$user->guest) { $username = $user->username; } if (!empty($username)) { echo $username; }