You are here

function easy_social_permission in Easy Social 7

Same name and namespace in other branches
  1. 7.2 easy_social.module \easy_social_permission()

Implements hook_permission().

File

./easy_social.module, line 11
This is the file description for Easy Social module.

Code

function easy_social_permission() {
  return array(
    'administer easy social' => array(
      'title' => t('Administer Easy Social'),
      'description' => t('Manage Easy Social permissions.'),
    ),
  );
}