You are here

function mb_content_permission in More Buttons 7

Implements hook_permission().

File

mb_content/mb_content.module, line 22
Provides additional buttons for nodes.

Code

function mb_content_permission() {
  return array(
    'access mb content' => array(
      'title' => t('Use More Content Buttons'),
      'description' => t('Use the buttons defined by More Buttons Content.'),
    ),
  );
}