You are here

function theme_geofield_ymap in Geofield Yandex Maps 7

Return map markup.

4 theme calls to theme_geofield_ymap()
geofield_ymap_element_info in ./geofield_ymap.element.inc
Implements hook_element_info().
geofield_ymap_field_formatter_view in ./geofield_ymap.formatter.inc
Implements hook_field_formatter_view().
geofield_ymap_filter_process in ./geofield_ymap.filter.inc
Filter process callback.
geofield_ymap_plugin_style_geofield_ymap::render in ./geofield_ymap_plugin_style_geofield_ymap.inc
Render the display in this style.

File

./geofield_ymap.theme.inc, line 70

Code

function theme_geofield_ymap($variables) {
  return '<div' . drupal_attributes($variables['#attributes']) . '></div>' . drupal_render_children($variables['element']);
}