function theme_emwave_wave_embed in Embedded Media Field 6.3
Same name and namespace in other branches
- 6 contrib/emwave/emwave.theme.inc \theme_emwave_wave_embed()
- 6.2 contrib/emwave/emwave.theme.inc \theme_emwave_wave_embed()
File
- contrib/
emwave/ emwave.theme.inc, line 155
Code
function theme_emwave_wave_embed($field, $item, $formatter, $node) {
if ($item['value'] && $item['provider']) {
$output = drupal_get_form('emwave_embed_form', $field, $item, $formatter, $node);
}
return $output;
}