function googtube_filter_info in Googtube 7
Same name and namespace in other branches
- 7.2 googtube.module \googtube_filter_info()
Implement hook_filter_info().
File
- ./
googtube.module, line 23
Code
function googtube_filter_info() {
$filters['googtube'] = array(
'title' => t('Googtube filter'),
'description' => t('Googtube is a filter module that automatically converts youtube and google video urls into embedded code. Useful if users want to post videos easily.'),
'process callback' => '_googtube_process',
'tips callback' => '_googtube_tips',
);
return $filters;
}