You are here

function video_embed_field_permission in Video Embed Field 7.2

Implements hook_permission().

File

./video_embed_field.module, line 122
Provides a simple field for easily embedding videos from youtube or vimeo

Code

function video_embed_field_permission() {
  return array(
    'administer video styles' => array(
      'title' => t('Administer video styles'),
      'description' => t('Create and modify styles for embedded videos.'),
    ),
  );
}