c4879e91c2e8a0429627fdcbb46db46d96cd9d2a
[yaffs-website] / vendor / chi-teck / drupal-code-generator / templates / d7 / hook / user_login.twig
1 /**
2  * Implements hook_user_login().
3  */
4 function {{ machine_name }}_user_login(&$edit, $account) {
5   // If the user has a NULL time zone, notify them to set a time zone.
6   if (!$account->timezone && variable_get('configurable_timezones', 1) && variable_get('empty_timezone_message', 0)) {
7     drupal_set_message(t('Configure your <a href="@user-edit">account time zone setting</a>.', array('@user-edit' => url("user/$account->uid/edit", array('query' => drupal_get_destination(), 'fragment' => 'edit-timezone')))));
8   }
9 }