You are here

function entity_share_server_permission in Entity Share 7

Implements hook_permission().

File

modules/entity_share_server/entity_share_server.module, line 30
Entity Share Server .module file.

Code

function entity_share_server_permission() {
  return array(
    'access entityshare server' => array(
      'title' => t('Access EntityShare Server'),
      'description' => t('Allows a user to send data to the EntityShare server.'),
    ),
  );
}