Hi,
I am writing a download plugin and want to be able to track downloads by FrontEndUsers - username.
I know the username is in the page template and in the gCms object but unsure how to access them.
Any ideas?
Mike
- how to get frontend username inside plugin code
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: - how to get frontend username inside plugin code
Code: Select all
global $gCms;
$feu =& $gCms->modules['FrontEndUsers']['object'];
echo $feu->LoggedInName();
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: - how to get frontend username inside plugin code
Calguy thanks 
I had just found another thread which had something similiar...
but you where too fast!
Thanks.. your posts on the forum are very helpful.
Cheers
Mike

I had just found another thread which had something similiar...
but you where too fast!
Thanks.. your posts on the forum are very helpful.
Cheers
Mike
Re: - how to get frontend username inside plugin code
Any chance of helpng me out to get the username - email - name etc?
I had a quicl look in the api but maybe I will have to qury the db myself to the get info.
Mike
I had a quicl look in the api but maybe I will have to qury the db myself to the get info.
Mike
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
- Location: Fernie British Columbia, Canada
Re: - how to get frontend username inside plugin code
print_r( $feu->GetUserProperties( $feu->LoggedInId() ) );
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.