You are here

function video_embed_field_filter_info in Video Embed Field 7.2

Same name and namespace in other branches
  1. 7 video_embed_field.module \video_embed_field_filter_info()

Implements hook_filter_info().

File

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

Code

function video_embed_field_filter_info() {
  $filters['video_embed_field'] = array(
    'title' => t('Video Embedding'),
    'description' => t('Replaces [VIDEO::http://www.youtube.com/watch?v=someVideoID::aVideoStyle] tags with embedded videos.'),
    'process callback' => 'video_embed_field_filter_process',
    'tips callback' => '_filter_video_embed_tips',
  );
  return $filters;
}