You are here

function theme_eminline_url_wrapper in Embedded Media Field 5

Same name and namespace in other branches
  1. 6.3 contrib/eminline/eminline.module \theme_eminline_url_wrapper()
  2. 6 contrib/eminline/eminline.module \theme_eminline_url_wrapper()
  3. 6.2 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 let them embedd the video.

File

contrib/eminline/eminline.module, line 267

Code

function theme_eminline_url_wrapper($content) {
  $output = '';
  $output .= '<div class="eminline-wrapper">';
  $output .= $content;
  $output .= '</div>';
  return $output;
}