You are here

function account_sync_permission in Account Sync 7.2

Implements hook_permission().

File

./account_sync.module, line 59
Contains the base module code and hooks for the account sync module.

Code

function account_sync_permission() {
  return array(
    'administer account sync' => array(
      'title' => t('administer account sync'),
      'description' => t('Administer account sync settings'),
    ),
    'sync account' => array(
      'title' => t('sync account'),
      'description' => t('Sync accounts in this role between sites'),
    ),
  );
}