Author Topic: Get Username  (Read 4925 times)

person287

  • Guest
Get Username
« on: August 13, 2011, 10:05:24 AM »
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

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,855
Get Username
« Reply #1 on: August 13, 2011, 12:01:26 PM »
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:

Code: [Select]
<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

  • Guest
Get Username
« Reply #2 on: August 13, 2011, 01:24:59 PM »
Thanks again