You are here

function theme_brightcove_media_playlist_browser_form in Brightcove Video Connect 7.7

Same name and namespace in other branches
  1. 7.4 brightcove_media/brightcove_media.module \theme_brightcove_media_playlist_browser_form()
  2. 7.6 brightcove_media/brightcove_media.module \theme_brightcove_media_playlist_browser_form()

The media browser playlist tab theme function.

Parameters

$variables:

Return value

string

File

brightcove_media/brightcove_media.module, line 515
This module provide the hook implementations for the integration with Media module.

Code

function theme_brightcove_media_playlist_browser_form(&$variables) {
  $form = $variables['form'];
  $actions = drupal_render($form['actions']);
  $children = drupal_render_children($form);
  return "\n    <div id=\"container\">\n      {$actions}\n      <div id=\"scrollbox\">\n         <ul id=\"media-browser-library-list\" class=\"media-list-thumbnails\"></ul>\n         <div id=\"status\"></div>\n      </div>\n    </div>\n    {$children}\n  ";
}