You are here

function youtubechannel_permission in YoutubeChannel 7

Same name and namespace in other branches
  1. 7.2 youtubechannel.module \youtubechannel_permission()

Implements hook_permission().

File

./youtubechannel.module, line 22
module file for youtubechannel.

Code

function youtubechannel_permission() {
  return array(
    'administer youtubechannel' => array(
      'title' => t('Administer Youtube Channel'),
    ),
  );
}