You are here

function vkxp_permission in VK CrossPoster 7

Same name and namespace in other branches
  1. 7.2 vkxp.module \vkxp_permission()

Implements hook_permission().

File

./vkxp.module, line 98

Code

function vkxp_permission() {
  return array(
    'administer vkontakte crossposter' => array(
      'title' => t('Administer vkontakte crossposter'),
      'description' => t('Change settings of vkxp module behavior.'),
    ),
    'post to vkontakte' => array(
      'title' => t('Post nodes to vk.com'),
      'description' => t('Allows user to post nodes automatically to vk.com.'),
    ),
  );
}