You are here

function fb_opengraph_permission in Drupal for Facebook 7.4

Implements hook_permission().

File

./fb_opengraph.module, line 30
Open Graph Helpers

Code

function fb_opengraph_permission() {
  return array(
    FB_OPENGRAPH_PERM_PUBLISH => array(
      'title' => t('Publish own actions to facebook timeline'),
    ),
    FB_OPENGRAPH_PERM_DELETE_OWN => array(
      'title' => t('Delete own actions from facebook timeline'),
    ),
  );
}