function pmpapi_push_permission in Public Media Platform API Integration 7
Implements hook_permisssion().
File
- pmpapi_push/
pmpapi_push.module, line 11 - Maps drupal entities to MPM profiles, and pushes them to the PMP API.
Code
function pmpapi_push_permission() {
return array(
'administer PMP push' => array(
'title' => t('Administer pushes to the PMP API'),
'description' => t('Perform administration tasks for pushes to the PMP API.'),
),
);
}