You are here

function theme_brightcove_field_browse_item in Brightcove Video Connect 7.6

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.3 brightcove_field/theme.inc \theme_brightcove_field_browse_item()
  4. 7.4 brightcove_field/theme.inc \theme_brightcove_field_browse_item()
  5. 7.5 brightcove_field/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 ./theme.inc
Theme callback for Brightcove browse table.

File

./theme.inc, line 32
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'], $variables['entity_type'], $variables['field_name'], $variables['entity_id_or_bundle'], $variables['bcid']);
  return drupal_render($form);
}