function brightcove_element_info in Brightcove Video Connect 7.6
Same name and namespace in other branches
- 7.7 brightcove.module \brightcove_element_info()
Implements hook_element_info().
File
- ./
brightcove.module, line 746 - 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_element_info() {
$elements = [
'brightcove_field_browser' => [
'#input' => TRUE,
'#columns' => [
'brightcove_id',
],
'#delta' => 0,
'#process' => [
'brightcove_field_browser_process',
],
'#autocomplete_path' => FALSE,
],
'brightcove_field_browse_button' => [
'#input' => FALSE,
],
];
return $elements;
}