You are here

function drupagram_permission in Drupagram 7

Implements hook_permission().

File

./drupagram.module, line 68
Provides API integration with the Instagram microblogging service.

Code

function drupagram_permission() {
  return array(
    'add drupagram accounts' => array(
      'title' => t('Add Instagram accounts'),
    ),
    'use global drupagram account' => array(
      'title' => t('Use the site global Instagram account'),
    ),
    'make drupagram accounts global' => array(
      'title' => t('Assign a Instagram account as the site global account.'),
    ),
    'import own media' => array(
      'title' => t('Import own media to the site.'),
    ),
  );
}