You are here

function video_embed_field_filter_info in Video Embed Field 7

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

Implements hook_filter_info().

File

./video_embed_field.module, line 292

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] tags with embedded videos.'),
    'process callback' => 'video_embed_field_filter_process',
  );
  return $filters;
}