function video_filter in Video 7.2
advertisement_filter callbase from video_filter_info()
1 string reference to 'video_filter'
- video_filter_info in ./
video.filters.inc - Implements hook_filter_info().
File
- ./
video.filters.inc, line 42 - Video filter embedded code to add video as filter and using WYSIWYG
Code
function video_filter($text) {
$text = ' ' . $text . ' ';
$text = preg_replace_callback("/\\[.*?]/s", 'video_token_to_markup', $text);
return $text;
}