You are here

function _hybridauth_own_identities_access in HybridAuth Social Login 7

Menu item access callback - users should be allowed to 'manage own identities' and edit user data for the account.

1 string reference to '_hybridauth_own_identities_access'
hybridauth_menu in ./hybridauth.module
Implements hook_menu().

File

./hybridauth.module, line 134

Code

function _hybridauth_own_identities_access($account) {
  return user_access('manage own identities') && user_edit_access($account);
}