You are here

function media_library_permission in Media Library 7

Implements hook_permission().

File

./media_library.module, line 17
Restricts the media library to only designated files.

Code

function media_library_permission() {
  return array(
    'media library add to library' => array(
      'title' => t('Add files to the Media Library'),
    ),
  );
}