Roundcube Community Forum

 

Notice when first login

Started by inboxdesign, February 05, 2007, 09:02:24 PM

Previous topic - Next topic

inboxdesign

Hi, Does any one no how i can display a notice when the user logs in for the first time, or even more advanced, when they log in untill they have edited their identity in their prefrences pane?

//for instance
if($first_login || empty($identity)){
  show_message("firstlogin");
}


//then in the messages inc ...
/locals/language/messages.inc

$messages['firstlogin'] = 'Please update your profile in the identities preference pane';


Thanks

bugler

Hi,

you can read the user last access and if there is none show the message. The same with the identities: if there is no identity show the message.

Hope this helps.