You are here

function brightcove_ctools_plugin_directory in Brightcove Video Connect 7.4

Same name and namespace in other branches
  1. 7.3 brightcove.module \brightcove_ctools_plugin_directory()
  2. 7.5 brightcove.module \brightcove_ctools_plugin_directory()

Implementation of hook_ctools_plugin_directory().

File

./brightcove.module, line 156
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_ctools_plugin_directory($module, $type) {

  // Load the export_ui plugin.
  if ($type == 'export_ui') {
    return 'plugins/export_ui';
  }
}