You are here

function brightcove_field_create in Brightcove Video Connect 7.4

Same name and namespace in other branches
  1. 7.3 brightcove_field/brightcove_field.browse.inc \brightcove_field_create()
  2. 7.5 brightcove_field/brightcove_field.browse.inc \brightcove_field_create()
1 string reference to 'brightcove_field_create'
brightcove_field_menu in brightcove_field/brightcove_field.module
Implementation of hook_menu().

File

brightcove_field/brightcove_field.browse.inc, line 85
Holds a method to list all BC videos that are attachable to a field.

Code

function brightcove_field_create() {
  drupal_add_css(drupal_get_path('module', 'brightcove_field') . '/brightcove_field.upload.css');
  $form = drupal_get_form('brightcove_field_create_form');
  return drupal_render($form);
}