Roundcube Community Forum

 

Get Username

Started by person287, August 13, 2011, 10:05:24 AM

Previous topic - Next topic

person287

This might be my second stupid question in the forums but how would I get the username of the roundcube user. I've got a google calendar embed and I want the url to be




What would I put?

Thanks

JohnDoh

are you putting this in a template file or adding it with some plugin code?

if you are doing it in a plugin then you can get it from the session $_SESSION['username']

if you are putting the code straight into a template file then can do this:

<iframe src=&quot;https://www.google.com/calendar/embed?src=<roundcube:object name=&quot;username&quot; />&ct z=Europe/London&quot; style=&quot;border: 0&quot; width=&quot;100%&quot; height=&quot;90%&quot; frameborder=&quot;0&quot; scrolling=&quot;no&quot;></iframe>
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and more...

person287