You are here

function brightcove_field_storage_info in Brightcove Video Connect 7.7

Same name and namespace in other branches
  1. 7.6 brightcove.module \brightcove_field_storage_info()

Implements hook_field_storage_info().

File

./brightcove.module, line 2089
Brightcove module is an integration layer between any modules using Brightcove API. It makes all necessary checks for the API and makes settings available to the user.

Code

function brightcove_field_storage_info() {
  return [
    'brightcove_playlist_video_storage' => [
      'label' => t('Storage of playlist videos'),
      'description' => t('Loads and saves the list of videos on a playlist.'),
    ],
  ];
}