function theme_eminline_url_wrapper in Embedded Media Field 6.2
Same name and namespace in other branches
- 5 contrib/eminline/eminline.module \theme_eminline_url_wrapper()
- 6.3 contrib/eminline/eminline.module \theme_eminline_url_wrapper()
- 6 contrib/eminline/eminline.module \theme_eminline_url_wrapper()
Create additional theme layer.
Parameters
string $content:
Return value
string
1 theme call to theme_eminline_url_wrapper()
- _eminline_url_parse_full_links in contrib/
eminline/ eminline.module - If one of our allowed providers knows what to do with the url, then let it embed the video.
File
- contrib/
eminline/ eminline.module, line 328
Code
function theme_eminline_url_wrapper($content) {
$output = '';
$output .= '<div class="eminline-wrapper">';
$output .= $content;
$output .= '</div>';
return $output;
}