简体   繁体   中英

Joomla! Username Greeting

How can I take advantage of the Joomla! 1.6 login variable that displays the greeting of an authenticated user? In other words. Let's say I wanted to greet the user somewhere else how can I do so? What files do i have to include into my extension and what variable or what exactly produces this greeting?

You will need to access the User object. I haven't tested this, but it should work -

$user = JFactory::getUser();
$name = $user->get('name');

Substitute username for name if you need the login name instead of the real name.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM