You are here

function pmpapi_permission in Public Media Platform API Integration 7

Implements hook_permisssion().

File

./pmpapi.module, line 11
Creates basic calls to the PMP API.

Code

function pmpapi_permission() {
  return array(
    'administer PMP API' => array(
      'title' => t('Administer the PMP API'),
      'description' => t('Perform administration tasks for the PMP API.'),
    ),
  );
}