You are here

function easy_social_permission in Easy Social 7.2

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

Implements hook_permission().

File

./easy_social.module, line 23
Easy social module.

Code

function easy_social_permission() {
  return array(
    'administer easy social' => array(
      'title' => t('Administer Easy Social'),
      'description' => t('Configure Easy Social module'),
    ),
    'use easy social wizard' => array(
      'title' => t('Use Easy Social Wizard'),
      'description' => t('Access the Easy Social Wizard'),
    ),
  );
}