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.
Community Builder Pro プラグイン内で現在ログインしているユーザー ID を取得したい このコードを使用しましたが、うまくいきませんでした
$user=&JFactory::getUser(); $user->id;
以下のコードを試してください。代替方法です。
$user =& JFactory::getUser(); $userId = $user->get( 'id' );
続きを読む。