You are here

function openlayers_ui_theme in Openlayers 6.2

Same name and namespace in other branches
  1. 7.2 modules/openlayers_ui/openlayers_ui.module \openlayers_ui_theme()

Implementation of hook_theme().

File

modules/openlayers_ui/openlayers_ui.module, line 340

Code

function openlayers_ui_theme($existing, $type, $theme, $path) {
  return array(
    'openlayers_ui_form_layer_description' => array(
      'arguments' => array(
        'layer_title' => '',
        'layer_description' => '',
      ),
      'file' => 'includes/openlayers_ui.theme.inc',
    ),
    'openlayers_ui_form_projection_description' => array(
      'arguments' => array(
        'projection_title' => '',
        'available_layers' => array(),
        'layers' => array(),
      ),
      'file' => 'includes/openlayers_ui.theme.inc',
    ),
    'openlayers_ui_presets_form' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'includes/openlayers_ui.theme.inc',
    ),
    'openlayers_ui_presets_form_layers' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'includes/openlayers_ui.theme.inc',
    ),
    'openlayers_ui_presets_form_behaviors' => array(
      'arguments' => array(
        'form' => array(),
      ),
      'file' => 'includes/openlayers_ui.theme.inc',
    ),
  );
}