Posted by Oscar
2016-05-25

But where I have to put this code

$this->sys->AuthSession->GetV( "username" );

to get the Picture for every User is login, I can get name but I wan to add the picture with name, if I used other name work but not with username.
Posted by Tom
2016-05-26

>But where I have to put this code

Use it when you need to get the username of the user currently logging in.
For example, the following code will display the username in a template file.
<?php echo $this->sys->AuthSession->GetV( "username" ); ?>