You are here

function wysiwyg_map_theme in WYSIWYG Map 7

Implements hook_theme().

File

./wysiwyg_map.module, line 186
wysiwyg_map.module

Code

function wysiwyg_map_theme($existing, $type, $theme, $path) {
  if ($type == 'module') {
    return array(
      'wysiwyg_map_selector' => array(
        'render_element' => 'element',
      ),
      'wysiwyg_map_picker' => array(
        'render_element' => 'element',
      ),
      'wysiwyg_map_token' => array(
        'render_element' => 'element',
        'variables' => array(
          'delta' => NULL,
          'width' => NULL,
          'height' => NULL,
          'css_class' => NULL,
          'map_caption' => NULL,
          'marker_title' => NULL,
          'marker_popup_default' => NULL,
          'marker_popup_title' => NULL,
          'marker_popup_text' => NULL,
        ),
      ),
    );
  }
  return array();
}