function salesforce_perm in Salesforce Suite 5
Implementation of hook_perm().
File
- ./
salesforce.module, line 18 - Original Creator, Maintainer & Developer: Steve McKenzie (http://drupal.org/user/45890) Drupal and Salesforce.com (mainly only working with contacts / leads but can be extended to do anything the salesforce API version 6 can do) Current…
Code
function salesforce_perm() {
return array(
'access salesforce',
'administer salesforce',
);
}