You are here

function _privatemsg_user_add_defaults in Privatemsg 5.3

Same name and namespace in other branches
  1. 5 privatemsg.module \_privatemsg_user_add_defaults()
2 calls to _privatemsg_user_add_defaults()
privatemsg_menu in ./privatemsg.module
Implementation of hook_menu().
privatemsg_user in ./privatemsg.module
Implementation of hook_user().

File

./privatemsg.module, line 2475

Code

function _privatemsg_user_add_defaults(&$account) {
  if (!isset($account->privatemsg_allow)) {
    $account->privatemsg_allow = variable_get('privatemsg_default_allow', 1);
    $account->privatemsg_setmessage_notify = variable_get('privatemsg_default_setmessage_notify', 1);
  }
}