Skip to content

Instantly share code, notes, and snippets.

@hanamizuki
Created December 18, 2012 14:03
Show Gist options
  • Save hanamizuki/4328235 to your computer and use it in GitHub Desktop.
Save hanamizuki/4328235 to your computer and use it in GitHub Desktop.
<?php
/**
* Implements hook_user_presave().
*/
function yourmodule_user_presave(&$edit, $account, $category) {
// 'n' should equal the role id.
if ($account->is_new && isset($edit['fboauth']) && $edit['fboauth']) {
$edit['roles'][n] = TRUE;
}
}
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment