Drupal, check login


/ Published in: PHP
Save to your folder(s)



Copy this code and paste it in your HTML
  1. if (user_is_logged_in()) {
  2. $output = t('User is logged in.');
  3. else {
  4. $output = t('User is an anonymous user.');
  5. }

Report this snippet


Comments


You need to login to view comments.