You are here

function video_embed_field_ctools_plugin_directory in Video Embed Field 7.2

Implements hook_ctools_plugin_directory().

File

./video_embed_field.module, line 31
Provides a simple field for easily embedding videos from youtube or vimeo

Code

function video_embed_field_ctools_plugin_directory($module, $type) {

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