You are here

function sf_entity_permission in Salesforce Suite 7

Implements hook_permission().

File

sf_entity/sf_entity.module, line 60
Integrates fieldable entities with the Salesforce API.

Code

function sf_entity_permission() {
  return array(
    'sync user with salesforce' => array(
      'title' => t('Sync users with salesforce'),
      'description' => t('Sync users with salesforce'),
    ),
    'sync node with salesforce' => array(
      'title' => t('Sync nodes with salesforce'),
      'description' => t('Sync nodes with salesforce'),
    ),
    'sync taxonomy_term with salesforce' => array(
      'title' => t('Sync terms with salesforce'),
      'description' => t('Sync terms with salesforce'),
    ),
    'sync taxonomy_vocabulary with salesforce' => array(
      'title' => t('Sync vocabularies with salesforce'),
      'description' => t('Sync vocabularies with salesforce'),
    ),
  );
}