You are here

function theme_brightcove_field_browse_item in Brightcove Video Connect 7.3

Same name and namespace in other branches
  1. 7.7 theme.inc \theme_brightcove_field_browse_item()
  2. 7.2 brightcove_field/theme.inc \theme_brightcove_field_browse_item()
  3. 7.4 brightcove_field/theme.inc \theme_brightcove_field_browse_item()
  4. 7.5 brightcove_field/theme.inc \theme_brightcove_field_browse_item()
  5. 7.6 theme.inc \theme_brightcove_field_browse_item()

Theme callback for Brightcove browse table item.

Parameters

item: Video item.

Return value

Themed item form.

1 theme call to theme_brightcove_field_browse_item()
theme_brightcove_field_browse_items in brightcove_field/theme.inc
Theme callback for Brightcove browse table.

File

brightcove_field/theme.inc, line 33
Theme funciton for the module.

Code

function theme_brightcove_field_browse_item($variables) {
  $form = drupal_get_form('brightcove_field_browser_form' . $variables['item']['brightcove_id'], $variables['item']);
  return drupal_render($form);
}