Exemplo n.º 1
0
 /**
  * Output for End Location column.
  * @param array $item Route Row.
  */
 public function column_route_end_location($item)
 {
     $modelFactory = new FactoryModelWPGMP();
     $location_obj = $modelFactory->create_object('location');
     $location = $location_obj->fetch(array(array('location_id', '=', intval(wp_unslash($item->route_end_location)))));
     echo $location[0]->location_title;
 }
Exemplo n.º 2
0
 /**
  * Clone of the map.
  * @param  integer $item Map ID.
  */
 public function copy()
 {
     $map_id = intval($_GET['map_id']);
     $modelFactory = new FactoryModelWPGMP();
     $map_obj = $modelFactory->create_object('map');
     $map = $map_obj->copy($map_id);
     $this->prepare_items();
     $this->listing();
 }
 /**
  * Intialize controller properties
  * @param String $objectType Pass type of the Object.
  */
 function __construct($objectType)
 {
     $this->entity = $objectType;
     if (file_exists(WPGMP_MODEL . $this->entity . '/model.' . $this->entity . '.php')) {
         $factoryObject = new FactoryModelWPGMP();
         $this->entityObj = $factoryObject->create_object($this->entity);
         if (is_object($this->entityObj)) {
             $this->entityObjProperties = get_object_vars($this->entityObj);
         }
     }
 }
 /**
  * Intialize controller properties
  * @param String $objectType Pass type of the Object.
  */
 function __construct($objectType)
 {
     $this->entity = $objectType;
     $class_name = 'WPGMP_Model_' . ucwords($objectType);
     if (class_exists($class_name)) {
         $this->entityObj = new $class_name();
         if (is_object($this->entityObj)) {
             $this->entityObjProperties = get_object_vars($this->entityObj);
         }
     } else {
         if (file_exists(WPGMP_MODEL . $this->entity . '/model.' . $this->entity . '.php')) {
             $factoryObject = new FactoryModelWPGMP();
             $this->entityObj = $factoryObject->create_object($this->entity);
             if (is_object($this->entityObj)) {
                 $this->entityObjProperties = get_object_vars($this->entityObj);
             }
         }
     }
 }
Exemplo n.º 5
0
function wpgmp_generate_map($map)
{
    // Fetch map information.
    $modelFactory = new FactoryModelWPGMP();
    $category_obj = $modelFactory->create_object('group_map');
    $categories = $category_obj->fetch();
    $all_categories = array();
    $all_categories_name = array();
    $route_obj = $modelFactory->create_object('route');
    $all_routes = $route_obj->fetch();
    if (!empty($categories)) {
        foreach ($categories as $category) {
            $all_categories[$category->group_map_id] = $category;
            $all_categories_name[$category->group_map_title] = $category;
        }
    }
    if (!empty($map->map_locations)) {
        $location_obj = $modelFactory->create_object('location');
        $map_locations = $location_obj->fetch(array(array('location_id', 'IN', implode(',', $map->map_locations))));
    }
    // Routes data
    if (!empty($all_routes)) {
        $routes_data = array();
        foreach ($all_routes as $route) {
            $routes_data[$route->route_id] = $route;
        }
    }
    $map_id = $map->map_id;
    $map_data = array();
    // Set map options.
    $map_data['places'] = array();
    $map_data['map_options'] = array('center_lat' => sanitize_text_field($map->map_all_control['map_center_latitude']), 'center_lng' => sanitize_text_field($map->map_all_control['map_center_longitude']), 'zoom' => intval($map->map_zoom_level), 'map_type_id' => sanitize_text_field($map->map_type), 'center_by_nearest' => sanitize_text_field($map->map_all_control['nearest_location']), 'center_circle_fillcolor' => sanitize_text_field($map->map_all_control['center_circle_fillcolor']), 'center_circle_fillopacity' => sanitize_text_field($map->map_all_control['center_circle_fillopacity']), 'center_circle_strokecolor' => sanitize_text_field($map->map_all_control['center_circle_strokecolor']), 'center_circle_strokeopacity' => sanitize_text_field($map->map_all_control['center_circle_strokeopacity']), 'show_center_circle' => sanitize_text_field($map->map_all_control['show_center_circle']) == 'true', 'center_circle_strokeweight' => sanitize_text_field($map->map_all_control['center_circle_strokeweight']), 'draggable' => sanitize_text_field($map->map_all_control['map_draggable']) != 'false', 'scroll_wheel' => sanitize_text_field($map->map_scrolling_wheel), 'display_45_imagery' => sanitize_text_field($map->map_45imagery), 'marker_default_icon' => esc_url($map->map_all_control['marker_default_icon']), 'infowindow_setting' => wp_unslash($map->map_all_control['infowindow_setting']), 'default_infowindow_open' => $map->map_all_control['infowindow_open'], 'infowindow_open_event' => $map->map_all_control['infowindow_openoption'], 'pan_control' => $map->map_all_control['pan_control'] != 'false', 'zoom_control' => $map->map_all_control['zoom_control'] != 'false', 'map_type_control' => $map->map_all_control['map_type_control'] != 'false', 'scale_control' => $map->map_all_control['scale_control'] != 'false', 'street_view_control' => $map->map_all_control['street_view_control'] != 'false', 'overview_map_control' => $map->map_all_control['overview_map_control'] != 'false', 'pan_control_position' => $map->map_all_control['pan_control_position'], 'zoom_control_position' => $map->map_all_control['zoom_control_position'], 'zoom_control_style' => $map->map_all_control['zoom_control_style'], 'map_type_control_position' => $map->map_all_control['map_type_control_position'], 'map_type_control_style' => $map->map_all_control['map_type_control_style'], 'street_view_control_position' => $map->map_all_control['street_view_control_position']);
    $map_data['map_options']['width'] = sanitize_text_field($map->map_width);
    $map_data['map_options']['height'] = sanitize_text_field($map->map_height);
    $map_data['map_options'] = apply_filters('wpgmp_map_options', $map_data['map_options']);
    if (isset($map_data['map_options']['width'])) {
        $width = $map_data['map_options']['width'];
    } else {
        $width = '100%';
    }
    if (isset($map_data['map_options']['height'])) {
        $height = $map_data['map_options']['height'];
    } else {
        $height = '300px';
    }
    if (strstr($width, '%') === false) {
        $width = str_replace('px', '', $width) . 'px';
    }
    if (strstr($height, '%') === false) {
        $height = str_replace('px', '', $height) . 'px';
    }
    $width = '100%';
    $height = '500px';
    $wpgmp_local = array();
    if ($map->map_all_control['wpgmp_language']) {
        $wpgmp_local['language'] = $map->map_all_control['wpgmp_language'];
    } else {
        $wpgmp_local['language'] = '';
    }
    $wpgmp_local['wpgmp_not_working'] = __('not working...', WPGMP_TEXT_DOMAIN);
    $wpgmp_local['place_icon_url'] = WPGMP_ICONS;
    $wpgmp_local['wpgmp_location_no_results'] = __('No results found.', WPGMP_TEXT_DOMAIN);
    $wpgmp_local['wpgmp_route_not_avilable'] = __('Route is not available for your requested route.', WPGMP_TEXT_DOMAIN);
    $wpgmp_local['img_grid'] = "<span class='span_grid'><a class='wpgmp_grid'><img src='" . WPGMP_IMAGES . "grid.png'></a></span>";
    $wpgmp_local['img_list'] = "<span class='span_list'><a class='wpgmp_list'><img src='" . WPGMP_IMAGES . "list.png'></a></span>";
    $wpgmp_local['img_print'] = "<span class='span_print'><a class='wpgmp_print' onclick=jQuery('.wpgmp_print_listing').print()><img src='" . WPGMP_IMAGES . "print.png'></a></span>";
    wp_localize_script('wpgmp-google-map-main', 'wpgmp_local', $wpgmp_local);
    if (is_array($map_locations)) {
        $loc_count = 0;
        foreach ($map_locations as $location) {
            $location_categories = array();
            if (empty($location->location_group_map)) {
                $map_data['places'][$loc_count]['categories'][] = array('id' => '', 'name' => '', 'type' => 'category', 'icon' => '');
            } else {
                foreach ($location->location_group_map as $key => $loc_category_id) {
                    $loc_category = $all_categories[$loc_category_id];
                    $location_categories[] = array('id' => $loc_category->group_map_id, 'name' => $loc_category->group_map_title, 'type' => 'category', 'icon' => $loc_category->group_marker);
                }
            }
            // Extra Fields in location
            $extra_fields = array();
            if (isset($location->location_extrafields['key'])) {
                foreach ($location->location_extrafields['key'] as $i => $label) {
                    $extra_fields[sanitize_title($label)] = $location->location_extrafields['value'][$i];
                }
            }
            $map_data['places'][$loc_count] = array('id' => $location->location_id, 'title' => $location->location_title, 'address' => $location->location_address, 'content' => $location->location_messages, 'location' => array('icon' => $location_categories[0]['icon'], 'lat' => $location->location_latitude, 'lng' => $location->location_longitude, 'city' => $location->location_city, 'state' => $location->location_state, 'country' => $location->location_country, 'onclick_action' => 'marker', 'postal_code' => $location->location_postal_code, 'draggable' => 'true' == $location->location_draggable, 'infowindow_default_open' => $location->location_infowindow_default_open, 'animation' => $location->location_animation, 'infowindow_disable' => @$infowindow_disable['hide_infowindow'] !== 'false', 'zoom' => 5, 'extra_fields' => $extra_fields), 'categories' => $location_categories);
            $loc_count++;
        }
    }
    // KML Layer.
    if (!empty($map->map_layer_setting['choose_layer']['kml_layer']) && $map->map_layer_setting['choose_layer']['kml_layer'] == 'KmlLayer') {
        if (strpos($map->map_layer_setting['map_links'], ',') !== false) {
            $kml_layers_links = explode(',', $map->map_layer_setting['map_links']);
        } else {
            $kml_layers_links = array($map->map_layer_setting['map_links']);
        }
        $map_data['kml_layer'] = array('kml_layers_links' => $kml_layers_links);
    }
    // Fusion Layer.
    if (!empty($map->map_layer_setting['choose_layer']['fusion_layer']) && $map->map_layer_setting['choose_layer']['fusion_layer'] == 'FusionTablesLayer') {
        $map_data['fusion_layer'] = array('fusion_table_select' => $map->map_layer_setting['fusion_select'], 'fusion_table_from' => $map->map_layer_setting['fusion_from'], 'fusion_icon_name' => $map->map_layer_setting['fusion_icon_name'], 'fusion_heat_map' => $map->map_layer_setting['heat_map'] === 'true' ? true : false);
    }
    if (!empty($map->map_layer_setting['choose_layer']['bicycling_layer']) && $map->map_layer_setting['choose_layer']['bicycling_layer'] == 'BicyclingLayer') {
        $map_data['bicyle_layer'] = array('display_layer' => true);
    }
    if (!empty($map->map_layer_setting['choose_layer']['traffic_layer']) && $map->map_layer_setting['choose_layer']['traffic_layer'] == 'TrafficLayer') {
        $map_data['traffic_layer'] = array('display_layer' => true);
    }
    if (!empty($map->map_layer_setting['choose_layer']['transit_layer']) && $map->map_layer_setting['choose_layer']['transit_layer'] == 'TransitLayer') {
        $map_data['transit_layer'] = array('display_layer' => true);
    }
    // Geo tags for google maps pro
    if (!empty($map->map_all_control['geo_tags']) && $map->map_all_control['geo_tags'] == 'true') {
        $filter_array = array_filter($map->map_geotags);
        foreach ($filter_array as $key => $value) {
            if ($key != 'geo_tags') {
                $custom_meta_keys = array();
                if (!empty($value['latitude'])) {
                    $custom_meta_keys[] = array('key' => $value['latitude'], 'value' => '', 'compare' => '!=');
                }
                if (!empty($value['longitude'])) {
                    $custom_meta_keys[] = array('key' => $value['longitude'], 'value' => '', 'compare' => '!=');
                }
                $args = array('post_type' => $key, 'meta_query' => array($custom_meta_keys));
                $wpgmp_the_query = new WP_Query($args);
                if ($wpgmp_the_query->have_posts()) {
                    while ($wpgmp_the_query->have_posts()) {
                        $wpgmp_the_query->the_post();
                        global $post;
                        $places = array();
                        $content = $map->map_all_control['infowindow_geotags_setting'];
                        $category_names = '';
                        if (empty($value['latitude']) or empty($value['longitude'])) {
                            continue;
                        }
                        $replace_data['post_title'] = get_the_title($post->ID);
                        $replace_data['post_excerpt'] = get_the_excerpt($post->ID);
                        $replace_data['post_content'] = get_the_content($post->ID);
                        $replace_data['post_link'] = get_permalink($post->ID);
                        $categories = get_the_category($post->ID);
                        if (!empty($categories)) {
                            foreach ($categories as $category) {
                                $category_names .= $category->name . ',';
                            }
                        }
                        $replace_data['post_categories'] = trim($category_names, ',');
                        $posttags = get_the_tags($post->ID);
                        if ($posttags) {
                            foreach ($posttags as $tag) {
                                $tag_names .= $tag->name . ',';
                            }
                        }
                        $replace_data['post_tags'] = trim($tag_names, ',');
                        $featured_image = wp_get_attachment_image_src(get_post_thumbnail_id($post->ID), 'thumbnail');
                        if (isset($featured_image[0])) {
                            $post_featured_image = '<img width="' . $featured_image[1] . '" height="' . $featured_image[2] . '" src="' . $featured_image[0] . '" class="wp-post-image alignleft wpgmp_featured_image" >';
                        }
                        $replace_data['post_featured_image'] = $post_featured_image;
                        $replace_data = apply_filters('wpgmp_geotags_placeholder', $replace_data, $post->ID, $map->map_id);
                        // Here parse infowindow setting and create infowindow message.
                        $places['title'] = $replace_data['post_title'];
                        foreach ($replace_data as $placeholder => $holder_value) {
                            $content = str_replace('{' . $placeholder . '}', $holder_value, $content);
                        }
                        $places['content'] = apply_filters('wpgmp_geotags_content', $content, $post->ID, $map->map_id);
                        if (!empty($value['address'])) {
                            $places['address'] = get_post_meta($post->ID, $value['address'], true);
                        } else {
                            $places['address'] = '';
                        }
                        if (empty($value['latitude'])) {
                            $places['location']['lat'] = '';
                        } else {
                            $places['location']['lat'] = get_post_meta($post->ID, $value['latitude'], true);
                        }
                        if (empty($value['longitude'])) {
                            $places['location']['lng'] = '';
                        } else {
                            $places['location']['lng'] = get_post_meta($post->ID, $value['longitude'], true);
                        }
                        if (!empty($value['category'])) {
                            $category_name = get_post_meta($post->ID, $value['category'], true);
                        }
                        if (!empty($category_name)) {
                            $loc_category = $all_categories_name[sanitize_text_field($category_name)];
                            $places['location']['icon'] = $loc_category->group_marker;
                            $places['categories'][0]['icon'] = $loc_category->group_marker;
                            $places['categories'][0]['name'] = $loc_category->group_map_title;
                            $places['categories'][0]['id'] = $loc_category->group_map_id;
                        }
                        $map_data['places'][] = $places;
                    }
                }
                wp_reset_postdata();
            }
        }
    }
    if ($map_data['map_options']['center_lat'] == '') {
        $map_data['map_options']['center_lat'] = $map_data['places'][0]['location']['lat'];
    }
    if ($map_data['map_options']['center_lng'] == '') {
        $map_data['map_options']['center_lng'] = $map_data['places'][0]['location']['lng'];
    }
    // Styles
    $map_stylers = array();
    if (isset($map->style_google_map['mapfeaturetype'])) {
        unset($map_stylers);
        $total_rows = count($map->style_google_map['mapfeaturetype']);
        for ($i = 0; $i < $total_rows; $i++) {
            if (empty($map->style_google_map['mapfeaturetype'][$i]) or empty($map->style_google_map['mapelementtype'][$i])) {
                continue;
            }
            if ($map->style_google_map['mapfeaturetype'][$i] == __('Select', WPGMP_TEXT_DOMAIN)) {
                continue;
            }
            $map_stylers[] = array(featureType => $map->style_google_map['mapfeaturetype'][$i], elementType => $map->style_google_map['mapelementtype'][$i], stylers => array(array(color => $map->style_google_map['color'][$i], visibility => $map->style_google_map['visibility'][$i])));
        }
    }
    if (isset($map_stylers)) {
        if (is_array($map_stylers)) {
            $map_data['styles'] = $map_stylers;
        }
    } elseif ($map->map_all_control['custom_style'] != '') {
        $map_data['styles'] = stripslashes($map->map_all_control['custom_style']);
    }
    // Street view.
    if ($map->map_street_view_setting['street_control'] == 'true') {
        $map_data['street_view'] = array('street_control' => @$map->map_street_view_setting['street_control'], 'street_view_close_button' => @$map->map_street_view_setting['street_view_close_button'] === 'true' ? true : false, 'links_control' => @$map->map_street_view_setting['links_control'] === 'true' ? true : false, 'street_view_pan_control' => @$map->map_street_view_setting['street_view_pan_control'] === 'true' ? true : false, 'pov_heading' => $map->map_street_view_setting['pov_heading'], 'pov_pitch' => $map->map_street_view_setting['pov_pitch']);
    }
    // routes
    if (!empty($map->map_route_direction_setting['route_direction']) && $map->map_route_direction_setting['route_direction'] == 'true') {
        $wpgmp_routes = $map->map_route_direction_setting['specific_routes'];
        if (!empty($wpgmp_routes)) {
            $all_routes = array();
            foreach ($wpgmp_routes as $route_key => $wpgmp_route) {
                $wpgmp_route_data[$route_key] = $routes_data[$wpgmp_route];
                $wpgmp_route_way_points = $wpgmp_route_data[$route_key]->route_way_points;
                $location_data[$route_key]['route_id'] = $wpgmp_route_data[$route_key]->route_id;
                $location_data[$route_key]['route_title'] = $wpgmp_route_data[$route_key]->route_title;
                $location_data[$route_key]['route_stroke_color'] = $wpgmp_route_data[$route_key]->route_stroke_color;
                $location_data[$route_key]['route_stroke_opacity'] = $wpgmp_route_data[$route_key]->route_stroke_opacity;
                $location_data[$route_key]['route_stroke_weight'] = $wpgmp_route_data[$route_key]->route_stroke_weight;
                $location_data[$route_key]['route_travel_mode'] = $wpgmp_route_data[$route_key]->route_travel_mode;
                $location_data[$route_key]['route_unit_system'] = $wpgmp_route_data[$route_key]->route_unit_system;
                $location_data[$route_key]['route_marker_draggable'] = $wpgmp_route_data[$route_key]->route_marker_draggable === 'true';
                $location_data[$route_key]['route_custom_marker'] = $wpgmp_route_data[$route_key]->route_custom_marker === 'true';
                $location_data[$route_key]['route_optimize_waypoints'] = $wpgmp_route_data[$route_key]->route_optimize_waypoints === 'true';
                $location_data[$route_key]['route_direction_panel'] = $wpgmp_route_data[$route_key]->route_direction_panel === 'true';
                if (is_array($wpgmp_route_way_points) and !empty($wpgmp_route_way_points)) {
                    $wpgmp_route_way_point_data = $location_obj->fetch(array(array('location_id', 'IN', implode(',', $wpgmp_route_way_points))));
                    if ($wpgmp_route_way_point_data) {
                        foreach ($wpgmp_route_way_point_data as $wpgmp_route_way_point_key => $row) {
                            $location_data[$route_key]['way_points'][] = $row->location_latitude . ',' . $row->location_longitude;
                        }
                    }
                }
                if ($wpgmp_route_data[$route_key]->route_start_location && !empty($wpgmp_route_data[$route_key]->route_start_location)) {
                    $route_start_obj = $location_obj->fetch(array(array('location_id', 'IN', $wpgmp_route_data[$route_key]->route_start_location)));
                    $location_data[$route_key]['start_location_data'] = $route_start_obj[0]->location_latitude . ',' . $route_start_obj[0]->location_longitude;
                }
                if ($wpgmp_route_data[$route_key]->route_end_location && !empty($wpgmp_route_data[$route_key]->route_end_location)) {
                    $route_end_obj = $location_obj->fetch(array(array('location_id', 'IN', $wpgmp_route_data[$route_key]->route_end_location)));
                    $location_data[$route_key]['end_location_data'] = $route_end_obj[0]->location_latitude . ',' . $route_end_obj[0]->location_longitude;
                }
            }
        }
        $map_data['routes'] = $location_data;
    }
    $map_data['map_property'] = array('map_id' => $map->map_id);
    // drawing
    $drawing_editable_true = true;
    $objects = array('circle', 'polygon', 'polyline', 'rectangle');
    for ($i = 0; $i < count($objects); $i++) {
        $object_name = $objects[$i];
        $drawingModes[] = 'google.maps.drawing.OverlayType.' . strtoupper($object_name);
        $drawing_options[$object_name][] = "fillColor: '#003dce'";
        $drawing_options[$object_name][] = "strokeColor: '#003dce'";
        $drawing_options[$object_name][] = 'strokeWeight: 1';
        $drawing_options[$object_name][] = 'strokeOpacity: 1';
        $drawing_options[$object_name][] = 'zindex: 1';
        $drawing_options[$object_name][] = 'fillOpacity: 1';
        $drawing_options[$object_name][] = 'editable: true';
        $drawing_options[$object_name][] = 'draggable: true';
        $drawing_options[$object_name][] = 'clickable: false';
    }
    if (is_array($drawingModes)) {
        $display_modes = implode(',', $drawingModes);
    }
    if (is_array($drawing_options['circle'])) {
        $display_circle_options = implode(',', $drawing_options['circle']);
    }
    if (is_array($drawing_options['polygon'])) {
        $display_polygon_options = implode(',', $drawing_options['polygon']);
    }
    if (is_array($drawing_options['polyline'])) {
        $display_polyline_options = implode(',', $drawing_options['polyline']);
    }
    if (is_array($drawing_options['rectangle'])) {
        $display_rectangle_options = implode(',', $drawing_options['rectangle']);
    }
    if ($map->map_polyline_setting['polylines'] != '') {
        $map_shapes = array();
        $all_saved_shape = $map->map_polyline_setting['polylines'];
        $all_shapes = explode('|', $all_saved_shape[0]);
        if (is_array($all_shapes)) {
            foreach ($all_shapes as $key => $shapes) {
                $find_shape = explode('=', $shapes);
                if ($find_shape[0] == 'polylines') {
                    $polylines_shape[0] = $find_shape[1];
                } else {
                    if ($find_shape[0] == 'polygons') {
                        $polygons_shape[0] = $find_shape[1];
                    } else {
                        if ($find_shape[0] == 'circles') {
                            $circles_shape[0] = $find_shape[1];
                        } else {
                            if ($find_shape[0] == 'rectangles') {
                                $rectangles_shape[0] = $find_shape[1];
                            }
                        }
                    }
                }
            }
        }
        if ($polygons_shape[0] && !empty($polygons_shape[0])) {
            $all_polylines = explode('::', $polygons_shape[0]);
            for ($p = 0; $p < count($all_polylines); $p++) {
                unset($settings);
                $all_settings = explode('...', $all_polylines[$p]);
                $cordinates = explode('----', $all_settings[0]);
                $all_events = $all_settings[2];
                $all_events = explode('***', $all_events);
                $all_settings_val = explode(',', $all_settings[1]);
                if (empty($all_settings_val[3])) {
                    $all_settings_val[3] = '#003dce';
                }
                if (empty($all_settings_val[4])) {
                    $all_settings_val[4] = 1;
                }
                if (empty($all_settings_val[2])) {
                    $all_settings_val[2] = '#003dce';
                }
                if (empty($all_settings_val[1])) {
                    $all_settings_val[1] = 1;
                }
                if (empty($all_settings_val[0])) {
                    $all_settings_val[0] = 5;
                }
                $settings['stroke_color'] = '#' . str_replace('#', '', $all_settings_val[2]);
                $settings['stroke_opacity'] = $all_settings_val[1];
                $settings['stroke_weight'] = $all_settings_val[0];
                $settings['fill_color'] = '#' . str_replace('#', '', $all_settings_val[3]);
                $settings['fill_opacity'] = $all_settings_val[4];
                $events = array();
                $events['url'] = $all_events[0];
                $events['message'] = stripcslashes($all_events[1]);
                $map_shapes['polygons'][] = array('cordinates' => $cordinates, 'settings' => $settings, 'events' => $events);
            }
        }
        if ($polylines_shape[0] && !empty($polylines_shape[0])) {
            $all_polylines = explode('::', $polylines_shape[0]);
            for ($p = 0; $p < count($all_polylines); $p++) {
                $all_settings = explode('...', $all_polylines[$p]);
                $cordinates = explode('----', $all_settings[0]);
                $all_events = $all_settings[2];
                $all_events = explode('***', $all_events);
                $all_settings_val = explode(',', $all_settings[1]);
                if (empty($all_settings_val[2])) {
                    $all_settings_val[2] = '#003dce';
                }
                if (empty($all_settings_val[1])) {
                    $all_settings_val[1] = 1;
                }
                if (empty($all_settings_val[0])) {
                    $all_settings_val[0] = 5;
                }
                $settings['stroke_color'] = '#' . str_replace('#', '', $all_settings_val[2]);
                $settings['stroke_opacity'] = $all_settings_val[1];
                $settings['stroke_weight'] = $all_settings_val[0];
                $events = array();
                $events['url'] = $all_events[0];
                $events['message'] = stripcslashes($all_events[1]);
                $map_shapes['polylines'][] = array('cordinates' => $cordinates, 'settings' => $settings, 'events' => $events);
            }
        }
        if ($circles_shape && !empty($circles_shape[0])) {
            $all_circles = explode('::', $circles_shape[0]);
            for ($p = 0; $p < count($all_circles); $p++) {
                $all_settings = explode('...', $all_circles[$p]);
                $cordinates = explode('----', $all_settings[0]);
                $all_events = $all_settings[2];
                $all_events = explode('***', $all_events);
                $all_settings_val = explode(',', $all_settings[1]);
                if (empty($all_settings_val[5])) {
                    $all_settings_val[5] = 1;
                }
                if (empty($all_settings_val[3])) {
                    $all_settings_val[3] = '#003dce';
                }
                if (empty($all_settings_val[4])) {
                    $all_settings_val[4] = 1;
                }
                if (empty($all_settings_val[2])) {
                    $all_settings_val[2] = '#003dce';
                }
                if (empty($all_settings_val[1])) {
                    $all_settings_val[1] = 1;
                }
                if (empty($all_settings_val[0])) {
                    $all_settings_val[0] = 5;
                }
                $settings['stroke_color'] = '#' . str_replace('#', '', $all_settings_val[2]);
                $settings['stroke_opacity'] = $all_settings_val[1];
                $settings['stroke_weight'] = $all_settings_val[0];
                $settings['fill_color'] = '#' . str_replace('#', '', $all_settings_val[3]);
                $settings['fill_opacity'] = $all_settings_val[4];
                $settings['radius'] = $all_settings_val[5];
                $events = array();
                $events['url'] = $all_events[0];
                $events['message'] = stripcslashes($all_events[1]);
                $map_shapes['circles'][] = array('cordinates' => $cordinates, 'settings' => $settings, 'events' => $events);
            }
        }
        if ($rectangles_shape[0] && !empty($rectangles_shape[0])) {
            $all_polylines = explode('::', $rectangles_shape[0]);
            for ($p = 0; $p < count($all_polylines); $p++) {
                $all_settings = explode('...', $all_polylines[$p]);
                $cordinates = explode('----', $all_settings[0]);
                $all_settings_val = explode(',', $all_settings[1]);
                $all_events = $all_settings[2];
                $all_events = explode('***', $all_events);
                if (empty($all_settings_val[3])) {
                    $all_settings_val[3] = '#003dce';
                }
                if (empty($all_settings_val[4])) {
                    $all_settings_val[4] = 1;
                }
                if (empty($all_settings_val[2])) {
                    $all_settings_val[2] = '#003dce';
                }
                if (empty($all_settings_val[1])) {
                    $all_settings_val[1] = 1;
                }
                if (empty($all_settings_val[0])) {
                    $all_settings_val[0] = 5;
                }
                $settings['stroke_color'] = '#' . str_replace('#', '', $all_settings_val[2]);
                $settings['stroke_opacity'] = $all_settings_val[1];
                $settings['stroke_weight'] = $all_settings_val[0];
                $settings['fill_color'] = '#' . str_replace('#', '', $all_settings_val[3]);
                $settings['fill_opacity'] = $all_settings_val[4];
                $events = array();
                $events['url'] = $all_events[0];
                $events['message'] = stripcslashes($all_events[1]);
                $map_shapes['rectangles'][] = array('cordinates' => $cordinates, 'settings' => $settings, 'events' => $events);
            }
        }
    }
    $map_data['shapes'] = array('drawing_editable' => $drawing_editable_true);
    $map_shapes = apply_filters('wpgmp_shapes', @$map_shapes, $map_data, $map->map_id);
    if (!empty($map_shapes) && is_array($map_shapes)) {
        $map_data['shapes']['shape'] = $map_shapes;
    }
    echo '<div class="wpgmp_map_container" rel="map' . $map->map_id . '">';
    echo '<div class="wpgmp_map" style="width:' . $width . '; height:' . $height . ';" id="map' . $map->map_id . '" ></div>';
    echo '</div>';
    $map_data_obj = json_encode($map_data);
    ?>
<script>
jQuery(document).ready(function($) {

var map = $("#<?php 
    echo 'map' . $map_id;
    ?>
").maps(<?php 
    echo $map_data_obj;
    ?>
).data('wpgmp_maps');

});
</script>

	<?php 
}
Exemplo n.º 6
0
/**
 * Template for Add & Edit Category
 * @author  Flipper Code <*****@*****.**>
 * @package Maps
 */
if (isset($_REQUEST['_wpnonce'])) {
    $nonce = sanitize_text_field(wp_unslash($_REQUEST['_wpnonce']));
    if (!wp_verify_nonce($nonce, 'wpgmp-nonce')) {
        die('Cheating...');
    } else {
        $data = $_POST;
    }
}
global $wpdb;
$modelFactory = new FactoryModelWPGMP();
$category = $modelFactory->create_object('group_map');
$categories = (array) $category->fetch();
if (isset($_GET['doaction']) and 'edit' == $_GET['doaction'] and isset($_GET['group_map_id'])) {
    $category_obj = $category->fetch(array(array('group_map_id', '=', intval(wp_unslash($_GET['group_map_id'])))));
    $_POST = (array) $category_obj[0];
} elseif (!isset($_GET['doaction']) and isset($response['success'])) {
    // Reset $_POST object for antoher entry.
    unset($_POST);
}
$form = new Responsive_Markup();
$form->set_header(__('Marker Category', WPGMP_TEXT_DOMAIN), $response, __('Manage Marker Categories', WPGMP_TEXT_DOMAIN), 'wpgmp_manage_group_map');
if (is_array($categories)) {
    $markers = array(' ' => 'Please Select');
    foreach ($categories as $i => $single_category) {
        if ($single_category->group_parent == 0 or $single_category->group_parent == '') {
Exemplo n.º 7
0
/**
 * Template for Add & Edit Map
 * @author  Flipper Code <*****@*****.**>
 * @package Maps
 */
if (isset($_REQUEST['_wpnonce'])) {
    $nonce = sanitize_text_field(wp_unslash($_REQUEST['_wpnonce']));
    if (!wp_verify_nonce($nonce, 'wpgmp-nonce')) {
        die('Cheating...');
    } else {
        $data = $_POST;
    }
}
global $wpdb;
$modelFactory = new FactoryModelWPGMP();
$map_obj = $modelFactory->create_object('map');
if (isset($_GET['doaction']) and 'edit' == $_GET['doaction'] and isset($_GET['map_id'])) {
    $map_obj = $map_obj->fetch(array(array('map_id', '=', intval(wp_unslash($_GET['map_id'])))));
    $data = (array) $map_obj[0];
} elseif (!isset($_GET['doaction']) and isset($response['success'])) {
    // Reset $_POST object for antoher entry.
    unset($data);
}
$form = new Responsive_Markup();
$form->set_header(__('Map Information', WPGMP_TEXT_DOMAIN), $response, __('Manage Maps', WPGMP_TEXT_DOMAIN), 'wpgmp_manage_map');
include 'map-forms/general-setting-form.php';
include 'map-forms/map-center-settings.php';
include 'map-forms/locations-form.php';
include 'map-forms/control-setting-form.php';
include 'map-forms/control-position-style-form.php';
Exemplo n.º 8
0
<?php

/**
 * Parse Shortcode and display maps.
 * @package Maps
 * @author Flipper Code <*****@*****.**>
 */
if (isset($options['id'])) {
    $map_id = $options['id'];
} else {
    return '';
}
// Fetch map information.
$modelFactory = new FactoryModelWPGMP();
$map_obj = $modelFactory->create_object('map');
$map_record = $map_obj->fetch(array(array('map_id', '=', $map_id)));
$map = $map_record[0];
$category_obj = $modelFactory->create_object('group_map');
$categories = $category_obj->fetch();
$all_categories = array();
$all_categories_name = array();
if (!empty($categories)) {
    foreach ($categories as $category) {
        $all_categories[$category->group_map_id] = $category;
        $all_categories_name[$category->group_map_title] = $category;
    }
}
if (!empty($map->map_locations)) {
    $location_obj = $modelFactory->create_object('location');
    $map_locations = $location_obj->fetch(array(array('location_id', 'IN', implode(',', $map->map_locations))));
}
<?php

/**
 * Location listings for maps.
 * @package Maps
 */
global $wpdb;
$modelFactory = new FactoryModelWPGMP();
$category = $modelFactory->create_object('group_map');
$location = $modelFactory->create_object('location');
$locations = $location->fetch();
$categories = $category->fetch();
if (!empty($categories)) {
    $categories_data = array();
    foreach ($categories as $cat) {
        $categories_data[$cat->group_map_id] = $cat->group_map_title;
    }
}
if (!empty($locations)) {
    $all_locations = array();
    foreach ($locations as $loc) {
        $assigned_categories = array();
        if (isset($loc->location_group_map) and is_array($loc->location_group_map)) {
            foreach ($loc->location_group_map as $c => $cat) {
                $assigned_categories[] = $categories_data[$cat];
            }
        }
        $assigned_categories = implode(',', $assigned_categories);
        $loc_checkbox = $form->field_checkbox('map_locations[]', array('value' => $loc->location_id, 'current' => in_array($loc->location_id, (array) $data['map_locations']) ? $loc->location_id : '', 'class' => 'chkbox_class', 'before' => '<div class="col-md-1">', 'after' => '</div>'));
        $all_locations[] = array($loc_checkbox, $loc->location_title, $loc->location_address, $assigned_categories);
    }
Exemplo n.º 10
0
 /**
  * Import Location via CSV,JSON,XML and Excel.
  * @return array Success or Failure error message.
  */
 public function import_location()
 {
     $result = false;
     if (isset($_REQUEST['_wpnonce'])) {
         $nonce = sanitize_text_field(wp_unslash($_REQUEST['_wpnonce']));
     }
     if (!wp_verify_nonce($nonce, 'wpgmp-nonce')) {
         die('Cheating...');
     }
     if (isset($_POST['import_loc'])) {
         if (isset($_FILES['import_file']['tmp_name']) and '' == sanitize_file_name(wp_unslash($_FILES['import_file']['tmp_name']))) {
             $response['error'] = __('Please select file to be imported.', WPGMP_TEXT_DOMAIN);
         } elseif (isset($_FILES['import_file']['name']) and !$this->wpgmp_validate_extension(sanitize_file_name(wp_unslash($_FILES['import_file']['name'])))) {
             $response['error'] = __('Please upload a valid file', WPGMP_TEXT_DOMAIN);
         } else {
             if (isset($_POST['wpgmp_import_mode']) and 'wpgmp_delete' == sanitize_text_field(wp_unslash($_POST['wpgmp_import_mode']))) {
                 global $wpdb;
                 $wpdb->query('TRUNCATE TABLE ' . TBL_LOCATION . '');
                 // DB call ok; no-cache ok.
             }
             $file_extension = explode('.', sanitize_file_name(wp_unslash($_FILES['import_file']['name'])));
             $importer = new WP_Export_Import();
             $file_data = $importer->import($file_extension[1], 'import_file');
             $datas = array();
             if (!empty($file_data)) {
                 $modelFactory = new FactoryModelWPGMP();
                 $category = $modelFactory->create_object('group_map');
                 $categories = $category->fetch();
                 if (!empty($categories)) {
                     $categories_data = array();
                     foreach ($categories as $cat) {
                         $categories_data[$cat->group_map_id] = strtolower(sanitize_text_field($cat->group_map_title));
                     }
                 }
                 foreach ($file_data as $data) {
                     $category_ids = array();
                     if (isset($data['title'])) {
                         $datas['location_title'] = $data['title'];
                     } else {
                         if (isset($data['location_title'])) {
                             $datas['location_title'] = $data['location_title'];
                         }
                     }
                     if (isset($data['address'])) {
                         $datas['location_address'] = $data['address'];
                     } else {
                         if (isset($data['location_title'])) {
                             $datas['location_address'] = $data['location_address'];
                         }
                     }
                     if (isset($data['latitude'])) {
                         $datas['location_latitude'] = $data['latitude'];
                     } else {
                         if (isset($data['location_latitude'])) {
                             $datas['location_latitude'] = $data['location_latitude'];
                         }
                     }
                     if (isset($data['longitude'])) {
                         $datas['location_longitude'] = $data['longitude'];
                     } else {
                         if (isset($data['location_longitude'])) {
                             $datas['location_longitude'] = $data['location_longitude'];
                         }
                     }
                     if (isset($data['city'])) {
                         $datas['location_city'] = $data['city'];
                     } else {
                         if (isset($data['location_city'])) {
                             $datas['location_city'] = $data['location_city'];
                         }
                     }
                     if (isset($data['country'])) {
                         $datas['location_country'] = $data['country'];
                     } else {
                         if (isset($data['location_city'])) {
                             $datas['location_country'] = $data['location_country'];
                         }
                     }
                     if (isset($data['postal-code'])) {
                         $datas['location_postal_code'] = $data['postal-code'];
                     } else {
                         if (isset($data['location_city'])) {
                             $datas['location_postal_code'] = $data['location_postal_code'];
                         }
                     }
                     if (isset($data['message'])) {
                         $datas['location_messages'] = $data['message'];
                     } else {
                         if (isset($data['location_messages'])) {
                             $datas['location_messages'] = $data['location_messages'];
                         }
                     }
                     if (isset($data['location_group_map'])) {
                         $data['categories'] = $data['location_group_map'];
                     }
                     $datas['location_messages'] = $data['message'];
                     // Find out categories id or insert new category.
                     if (isset($data['categories']) and !empty($data['categories'])) {
                         $all_cat = explode(',', strtolower($data['categories']));
                         if (is_array($all_cat)) {
                             foreach ($all_cat as $cat) {
                                 $cat_id = array_search(sanitize_text_field($cat), (array) $categories_data);
                                 if (false == $cat_id) {
                                     // Create a new category.
                                     $new_cat_id = WPGMP_Database::insert_or_update(TBL_GROUPMAP, array('group_map_title' => sanitize_text_field($cat), 'group_marker' => WPGMP_IMAGES . 'default_marker.png'));
                                     $category_ids[] = $new_cat_id;
                                     $categories_data[$new_cat_id] = sanitize_text_field($cat);
                                 } else {
                                     $category_ids[] = $cat_id;
                                 }
                             }
                         }
                     }
                     $datas['location_group_map'] = serialize((array) $category_ids);
                     $result = WPGMP_Database::insert_or_update($this->table, $datas);
                 }
             }
             if (false === $result) {
                 $response['error'] = __('Something went wrong. Please try again.', WPGMP_TEXT_DOMAIN);
             } elseif ($entityID > 0) {
                 $response['success'] = __('Location updated successfully', WPGMP_TEXT_DOMAIN);
             } else {
                 $response['success'] = __('Location added successfully.', WPGMP_TEXT_DOMAIN);
             }
             return $response;
         }
         return $response;
     }
 }
Exemplo n.º 11
0
        /**
         * Callback to display  wp google map pro meta box.
         * @param  string $post Post Type.
         */
        function wpgmp_add_meta_box($post)
        {
            global $wpdb;
            $modelFactory = new FactoryModelWPGMP();
            $category_obj = $modelFactory->create_object('group_map');
            $categories = $category_obj->fetch();
            $map_obj = $modelFactory->create_object('map');
            $all_maps = $map_obj->fetch();
            $wpgmp_location_address = get_post_meta($post->ID, '_wpgmp_location_address', true);
            $wpgmp_map_ids = get_post_meta($post->ID, '_wpgmp_map_id', true);
            $wpgmp_map_id = unserialize($wpgmp_map_ids);
            if (!is_array($wpgmp_map_id)) {
                $wpgmp_map_id = array($wpgmp_map_ids);
            }
            $wpgmp_metabox_marker_id = get_post_meta($post->ID, '_wpgmp_metabox_marker_id', true);
            $wpgmp_metabox_latitude = get_post_meta($post->ID, '_wpgmp_metabox_latitude', true);
            $wpgmp_metabox_longitude = get_post_meta($post->ID, '_wpgmp_metabox_longitude', true);
            $wpgmp_metabox_location_redirect = get_post_meta($post->ID, '_wpgmp_metabox_location_redirect', true);
            $wpgmp_metabox_custom_link = get_post_meta($post->ID, '_wpgmp_metabox_custom_link', true);
            ?>
		<script src="https://maps.googleapis.com/maps/api/js?v=3.exp&libraries=places"></script>
		<script>
		jQuery(document).ready(function($) {

		var wpgmp_input = $("#wpgmp_metabox_location").val();
		var wpgmp_metabox_autocomplete = new google.maps.places.Autocomplete(wpgmp_metabox_location);

		google.maps.event.addListener(wpgmp_metabox_autocomplete, 'place_changed', function() {

		var metabox_place = wpgmp_metabox_autocomplete.getPlace();
		$(".wpgmp_metabox_latitude").val(metabox_place.geometry.location.lat());
		$(".wpgmp_metabox_longitude").val(metabox_place.geometry.location.lng());
		});

		$("select[name='wpgmp_metabox_location_redirect']").change(function() {
		var rval = $(this).val();
		if(rval=="custom_link")
		{
		$("#wpgmp_toggle_custom_link").show("slow");
		}
		else
		{
		$("#wpgmp_toggle_custom_link").hide("slow");
		}
		});
		});
		</script>

		<div class="wpgmp_metabox_container">
		<div class="row_metabox">
		<div class="wpgmp_metabox_left">
		<label for="wpgmp_metabox_location"><?php 
            _e('Enter Location :', WPGMP_TEXT_DOMAIN);
            ?>
</label>
	</div>
	<div class="wpgmp_metabox_right">
	<input type="text" id="wpgmp_metabox_location" class="wpgmp_metabox_location wpgmp_auto_suggest" name="wpgmp_metabox_location" value="<?php 
            echo $wpgmp_location_address;
            ?>
" size="25" />
	</div>
	</div>
	<div class="row_metabox">
	<div class="wpgmp_metabox_left">
	<label for="wpgmp_enter_location"><?php 
            _e('Latitude', WPGMP_TEXT_DOMAIN);
            ?>
&nbsp;/&nbsp;<?php 
            _e('Longitude', WPGMP_TEXT_DOMAIN);
            ?>
&nbsp;:</label>
	</div>
	<div class="wpgmp_metabox_right">
	<input type="text" class="wpgmp_metabox_latitude" id="wpgmp_metabox_latitude" name="wpgmp_metabox_latitude" value="<?php 
            echo $wpgmp_metabox_latitude;
            ?>
" placeholder="Latitude" />
	<input type="text" class="wpgmp_metabox_longitude" id="wpgmp_metabox_longitude" name="wpgmp_metabox_longitude" value="<?php 
            echo $wpgmp_metabox_longitude;
            ?>
" placeholder="Longitude" />
	</div>
	</div>
	<div class="row_metabox">
	<div class="wpgmp_metabox_left">
	<label><?php 
            _e('Choose Marker Categories :', WPGMP_TEXT_DOMAIN);
            ?>
</label>
	</div>
	<div class="wpgmp_metabox_right">
	<?php 
            $selected_categories = unserialize($wpgmp_metabox_marker_id);
            if (!is_array($selected_categories)) {
                $selected_categories = array($wpgmp_metabox_marker_id);
            }
            if ($categories) {
                foreach ($categories as $category) {
                    if (in_array($category->group_map_id, $selected_categories)) {
                        $s = "checked='checked'";
                    } else {
                        $s = '';
                    }
                    ?>
		<p class="description">
		<input type="checkbox" id="wpgmp_location_group_map<?php 
                    echo $category->group_map_id;
                    ?>
" <?php 
                    echo $s;
                    ?>
 name="wpgmp_metabox_marker_id[]" value="<?php 
                    echo $category->group_map_id;
                    ?>
">
	<?php 
                    echo $category->group_map_title;
                    ?>
	</p>
	<?php 
                }
            } else {
                echo '<p class="description">';
                _e("Do you want to assign a category? Please create category <a href='" . admin_url('admin.php?page=wpgmp_add_group_map') . "'>here</a>.", WPGMP_TEXT_DOMAIN);
                echo '</p>';
            }
            ?>
		</div>
		</div>
		<div class="row_metabox">
		</div>
		<div class="row_metabox">
		<div class="wpgmp_metabox_left">
		<label for="wpgmp_enter_location"><?php 
            _e('Location Redirect :', WPGMP_TEXT_DOMAIN);
            ?>
</label>
	</div>
	<div class="wpgmp_metabox_right">
	<select name="wpgmp_metabox_location_redirect" id="wpgmp_metabox_location_redirect">
	<option value="marker"<?php 
            selected($wpgmp_metabox_location_redirect, 'marker');
            ?>
>Marker</option>
	<option value="post"<?php 
            selected($wpgmp_metabox_location_redirect, 'post');
            ?>
>Post</option>
	<option value="custom_link"<?php 
            selected($wpgmp_metabox_location_redirect, 'custom_link');
            ?>
>Custom Link</option>
	</select>
	</div>
	</div>

	<?php 
            if (!empty($wpgmp_metabox_custom_link) && 'custom_link' == $wpgmp_metabox_location_redirect) {
                $display_custom_link = 'display:block';
            } else {
                $display_custom_link = 'display:none';
            }
            ?>

		<div class="row_metabox" style="<?php 
            echo $display_custom_link;
            ?>
" id="wpgmp_toggle_custom_link">
	<div class="wpgmp_metabox_left">
	<label for="wpgmp_metabox_custom_link">&nbsp;</label>
	</div>
	<div class="wpgmp_metabox_right">
	<input type="textbox" value="<?php 
            echo $wpgmp_metabox_custom_link;
            ?>
" name="wpgmp_metabox_custom_link" class="wpgmp_metabox_location" />
	<p class="description"><?php 
            _e('Please enter link.', WPGMP_TEXT_DOMAIN);
            ?>
</p>
	</div>
	</div>
	<?php 
            do_action('wpgmp_meta_box_fields');
            ?>
	<div class="row_metabox">
	<div class="wpgmp_metabox_left">
	<label><?php 
            _e('Select Map :', WPGMP_TEXT_DOMAIN);
            ?>
</label>
	</div>
	<div class="wpgmp_metabox_right">
	<p>
   <table>
	<?php 
            if (count($all_maps) > 0) {
                foreach ($all_maps as $map) {
                    if (is_array($wpgmp_map_id) and in_array($map->map_id, $wpgmp_map_id)) {
                        $c = 'checked=checked';
                    } else {
                        $c = '';
                    }
                    ?>
	   <tr>
		 <td><input <?php 
                    echo $c;
                    ?>
 type="checkbox" name="wpgmp_metabox_mapid[]" value="<?php 
                    echo $map->map_id;
                    ?>
">&nbsp; <?php 
                    echo $map->map_title;
                    ?>
</td>
    </tr>
    <?php 
                }
            } else {
                _e('Please <a href="' . admin_url('admin.php?page=wpgmp_create_map') . '">create a map</a> first.', 'wpgmp_google_map');
            }
            ?>
   </table>
   <input type="hidden" name="wpgmp_hidden_flag" value="true" />
</p>

	</div>
	</div>
	</div>
	<?php 
        }