You are here

function getlocations_plugin_style_map::options_form in Get Locations 7

Same name and namespace in other branches
  1. 6.2 getlocations_plugin_style_map.inc \getlocations_plugin_style_map::options_form()
  2. 6 getlocations_plugin_style_map.inc \getlocations_plugin_style_map::options_form()
  3. 7.2 views/getlocations_plugin_style_map.inc \getlocations_plugin_style_map::options_form()

Provide a form to edit options for this plugin.

Overrides views_plugin_style::options_form

File

views/getlocations_plugin_style_map.inc, line 296
getlocations_plugin_style_map.inc @author Bob Hutchinson http://drupal.org/user/52366 @copyright GNU GPL

Class

getlocations_plugin_style_map
Getlocations style plugin to render rows as icons on a map.

Code

function options_form(&$form, &$form_state) {
  parent::options_form($form, $form_state);
  $form['#theme'][] = 'getlocations_plugin_style_map_options_form';
  $getlocations_paths = getlocations_paths_get();
  $form['#attached']['js'] = array(
    $getlocations_paths['getlocations_views_path'],
  );
  $handlers = $this->display->handler
    ->get_handlers('field');
  $source_options = array(
    '' => t('None'),
  );
  foreach ($handlers as $handle) {
    $source_options[$handle->options['id']] = !empty($handle->options['label']) ? $handle->options['label'] : $handle->options['id'];
  }
  $labels = array(
    'width' => t('Width'),
    'height' => t('Height'),
    'styles' => t('Styles'),
    'latlong' => t('Map center'),
    'zoom' => t('Zoom'),
    'minzoom_map' => t('Minimum Zoom'),
    'maxzoom_map' => t('Maximum Zoom'),
  );
  $form += getlocations_map_display_basics_form($this->options, $labels);
  $form += getlocations_map_display_options_form($this->options, FALSE);

  // markers
  $markers = getlocations_get_marker_titles();

  // node markers
  $getlocations_node_marker = variable_get('getlocations_node_marker', array(
    'enable' => 0,
  ));
  if ($getlocations_node_marker['enable']) {
    if ($types = getlocations_get_types()) {
      foreach ($types as $type => $name) {
        $field_names = getlocations_get_fieldname2($type, 'node');
        foreach ($field_names as $field_name) {
          if (isset($getlocations_node_marker['content_type'][$type]['field_name'][$field_name]['map_marker'])) {
            $mkey = 'node_marker__' . drupal_strtolower($type) . '__' . $field_name;
            $form[$mkey] = getlocations_element_map_marker(t('%name Content Map Marker, field %field', array(
              '%name' => $name,
              '%field' => $field_name,
            )), $markers, isset($this->options[$mkey]) ? $this->options[$mkey] : $getlocations_node_marker['content_type'][$type]['field_name'][$field_name]['map_marker']);
          }
        }
      }
    }
  }
  else {
    $form['node_map_marker'] = getlocations_element_map_marker(t('Content Map marker'), $markers, $this->options['node_map_marker']);
  }

  // user markers
  if (getlocations_check_entity_type('user') || getlocations_check_entity_type('profile2')) {
    $form['user_map_marker'] = getlocations_element_map_marker(t('User Map Marker'), $markers, $this->options['user_map_marker']);
  }

  // vocabulary markers
  if (module_exists('taxonomy')) {
    if ($types = getlocations_get_machine_vocabularies()) {
      $types2 = getlocations_get_vocabularies();
      $getlocations_vocabulary_marker = variable_get('getlocations_vocabulary_marker', array(
        'enable' => 0,
      ));
      if ($getlocations_vocabulary_marker['enable']) {
        foreach ($types as $type => $name) {
          $field_name = getlocations_get_fieldname($name, 'taxonomy_term');
          $mkey = 'vocabulary_marker_' . $field_name;
          $form[$mkey] = getlocations_element_map_marker(t('%name Vocabulary Marker', array(
            '%name' => $types2[$type],
          )), $markers, isset($this->options[$mkey]) ? $this->options[$mkey] : $getlocations_vocabulary_marker['vocabulary'][$type]['map_marker']);
        }
      }
      else {
        $form['vocabulary_map_marker'] = getlocations_element_map_marker(t('Vocabulary Map Marker'), $markers, $this->options['vocabulary_map_marker']);
      }
    }

    // term markers
    $getlocations_term_marker = variable_get('getlocations_term_marker', array(
      'enable' => 0,
      'vids' => 0,
      'max_depth' => '',
    ));
    if ($getlocations_term_marker['enable'] && $getlocations_term_marker['vids']) {
      $depth = is_numeric($getlocations_term_marker['max_depth']) && $getlocations_term_marker['max_depth'] > 0 ? $getlocations_term_marker['max_depth'] : NULL;
      $vids = $getlocations_term_marker['vids'];
      foreach ($vids as $vid) {
        $terms = taxonomy_get_tree($vid, 0, $depth);
        $tct = 0;
        foreach ($terms as $term) {
          $name = $term->name;
          $tid = $term->tid;
          $mkey = 'term_marker_' . $tid;
          $form[$mkey] = getlocations_element_map_marker(t('%name Map Marker', array(
            '%name' => $name,
          )), $markers, $this->options[$mkey]);
          if (!$tct) {
            $v = taxonomy_vocabulary_load($vid);
            $vocab_name = $v->name;
            $form[$mkey]['#prefix'] = t('Terms for %name', array(
              '%name' => $vocab_name,
            ));
          }
          $tct++;
        }
      }
    }
    else {
      $form['term_map_marker'] = getlocations_element_map_marker(t('Term Map marker'), $markers, $this->options['term_map_marker']);
    }
  }

  // comments
  if (getlocations_check_entity_type('comment')) {

    // default comment marker
    $form['comment_map_marker'] = getlocations_element_map_marker(t('Comment Map marker'), $markers, $this->options['comment_map_marker']);
  }
  $form += getlocations_markeraction_form($this->options);
  if (module_exists('getdirections')) {
    $form['getdirections_link'] = getlocations_element_map_checkbox(t('Link to Getdirections in bubble'), $this->options['getdirections_link'], t('Include a link to the Getdirections page in InfoBubble/InfoWindow.'));
  }

  // views_search_marker etc
  if (module_exists('getlocations_fields') && module_exists('views')) {
    $form += getlocations_fields_views_search_form($this->options);
  }

  // categories
  $term_reference_fields = getlocations_get_term_reference_fields();
  $opts = array(
    0 => t('None'),
    1 => t('Content Type'),
  );
  if ($term_reference_fields) {
    $opts += array(
      2 => t('Term reference'),
    );
  }
  $form['category_method'] = getlocations_element_dd(t('Category method'), $this->options['category_method'], $opts, t('To ensure that this works you will need to add either a Content type or a Term reference field to the Field list in your View.'));
  $form['category_method']['#suffix'] = '<div id="wrap-category1">';
  if ($term_reference_fields) {
    $form['category_term_reference_field'] = getlocations_element_dd(t('Term reference field name'), $this->options['category_term_reference_field'], $term_reference_fields, t('Select the field on which you are categorising.'));
    $form['category_term_reference_field']['#prefix'] = '<div id="wrap-category2">';
    $form['category_term_reference_field']['#suffix'] = '</div>';
  }
  $form['category_showhide_buttons'] = getlocations_element_map_checkbox(t('Enable category show/hide buttons'), $this->options['category_showhide_buttons'], t('This option will place toggle buttons on the map.'));
  $form['category_showhide_buttons']['#suffix'] = '</div>';

  // custom content
  $form['custom_content_enable'] = getlocations_element_map_checkbox(t('Replace default content'), $this->options['custom_content_enable']);
  $form['custom_content_enable']['#prefix'] = '<div id="wrap-custom-content-enable">';
  $form['custom_content_enable']['#suffix'] = '</div>';
  $form['custom_content_source'] = getlocations_element_dd(t('Popup Data'), $this->options['custom_content_source'], $source_options, t('The field to use as a data source for the marker popup.'));
  $form['custom_content_source']['#prefix'] = '<div id="wrap-custom-content-source">';
  $form['custom_content_source']['#suffix'] = '</div>';

  // markermanager option
  if ($this->options['markermanagertype'] == 1) {
    $form['useclustermanager'] = array(
      '#type' => 'hidden',
      '#value' => 0,
    );

    // markermanager
    $form += getlocations_markermanager_form($this->options);
    $form['usemarkermanager']['#suffix'] = '<div id="wrap-usemarkermanager">';
    $form['maxzoom']['#suffix'] = '</div>';
  }
  elseif ($this->options['markermanagertype'] == 2) {
    $form['usemarkermanager'] = array(
      '#type' => 'hidden',
      '#value' => 0,
    );
    $form += getlocations_markercluster_form($this->options);
    $form['useclustermanager']['#suffix'] = '<div id="wrap-useclustermanager">';
    $form['markerclusterer_minsize']['#suffix'] = '</div>';
  }
  else {
    $form['useclustermanager'] = array(
      '#type' => 'hidden',
      '#value' => 0,
    );
    $form['usemarkermanager'] = array(
      '#type' => 'hidden',
      '#value' => 0,
    );
  }
  $form['nodezoom'] = getlocations_element_map_zoom(t('Default Zoom for Single location'), $this->options['nodezoom'], t('The Default zoom level for a single marker.'));
  $form['pansetting'] = getlocations_element_map_pansetting($this->options['pansetting']);
  $form['empty_result'] = getlocations_element_map_checkbox(t('Show map even if view has no results'), $this->options['empty_result']);
}