You are here

function social_content_permission in Social Content 7.2

Same name and namespace in other branches
  1. 7 social_content.module \social_content_permission()

Implements hook_permission().

File

./social_content.module, line 88
Social Content module.

Code

function social_content_permission() {
  return array(
    'administer social content' => array(
      'title' => t('Administer social content'),
      'description' => t('Administer social content.'),
    ),
  );
}