Plugin Directory


Ignore:
Timestamp:
06/12/2021 10:12:15 AM (5 years ago)
Author:
codepeople
Message:

New version 1.0.39
Modifications in the changelogs.

Location:
codepeople-post-map
Files:
79 added
1 deleted
3 edited

Legend:

Unmodified
Added
Removed
  • codepeople-post-map/trunk/codepeople-post-map.php

    r2532347 r2546721  
    33Plugin Name: Google Maps CP
    44Text Domain: codepeople-post-map
    5 Version: 1.0.38
     5Version: 1.0.39
    66Author: CodePeople
    77Author URI: http://wordpress.dwbooster.com/content-tools/codepeople-post-map
  • codepeople-post-map/trunk/include/functions.php

    r2532348 r2546721  
    11061106                $point['post_id'] = $post_id;
    11071107                if(!in_array($point, $this->points)){
    1108                     $this->points[] = $point;
     1108                    $this->points[] = apply_filters('cpm-point', $point);
    11091109                }
    11101110            }
     
    14651465        $windowhtml = "";
    14661466        $windowhtml_frame = $this->get_configuration_option('windowhtml');
     1467        $windowhtml_frame = apply_filters('cpm-point-infowindow-template', $windowhtml_frame, $point);
    14671468
    14681469        $point_title = (!empty($point['name'])) ? $point['name'] : get_the_title($point['post_id']);
     
    15081509        $windowhtml = str_replace( $find, $replace, $windowhtml_frame);
    15091510
    1510         return $windowhtml;
     1511        return apply_filters('cpm-point-infowindow', $windowhtml, $point);
    15111512    } // End _get_windowhtml
    15121513
  • codepeople-post-map/trunk/readme.txt

    r2532347 r2546721  
    44Tags:google maps,maps,marker,gmap,places,shortcode,map,categories,post map,point,location,address,images,geocoder,google,shape,list,grouping,cluster,infowindow,route,pin,streetview,post,posts,pages,widget,image,exif tag,plugin,sidebar,stylize,admin
    55Requires at least: 3.0.5
    6 Tested up to: 5.7.1
     6Tested up to: 5.7.2
    77Stable tag: trunk
    88License: GPLv2 or later
     
    637637== Changelog ==
    638638
     639= 1.0.39 =
     640
     641* Includes three new filters, cmp-point, cpm-point-infowindow-template, and cpm-point-infowindow, to edit the attributes of the point, modify the infowindows template, and edit the generated infowindows, respectively.
     642
    639643= 1.0.38 =
    640644
Note: See TracChangeset for help on using the changeset viewer.