| 1 |
<?php |
| 2 |
|
| 3 |
/* |
| 4 |
* Google maps iframe - transforms code that looks like that: |
| 5 |
* <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="http://maps.google.com/maps?f=q&source=s_q&hl=bg&geocode=&q=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1,+%D0%A1%D0%BE%D1%84%D0%B8%D1%8F,+%D0%91%D1%8A%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F&sll=37.0625,-95.677068&sspn=40.545434,79.013672&ie=UTF8&hq=&hnear=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1&ll=42.654446,23.372061&spn=0.036864,0.077162&t=h&z=14&output=embed"></iframe><br /><small><a href="http://maps.google.com/maps?f=q&source=embed&hl=bg&geocode=&q=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1,+%D0%A1%D0%BE%D1%84%D0%B8%D1%8F,+%D0%91%D1%8A%D0%BB%D0%B3%D0%B0%D1%80%D0%B8%D1%8F&sll=37.0625,-95.677068&sspn=40.545434,79.013672&ie=UTF8&hq=&hnear=%D0%9C%D0%BB%D0%B0%D0%B4%D0%BE%D1%81%D1%82+1&ll=42.654446,23.372061&spn=0.036864,0.077162&t=h&z=14" style="color:#0000FF;text-align:left">Вижте по-голяма карта</a></small> |
| 6 |
* into the [googlemaps http://...] shortcode format |
| 7 |
*/ |
| 8 |
function jetpack_googlemaps_embed_to_short_code( $content ) { |
| 9 |
|
| 10 |
if ( false === strpos( $content, 'maps.google.' ) && 1 !== preg_match( '@google\.[^/]+/maps?@', $content ) ) |
| 11 |
return $content; |
| 12 |
|
| 13 |
// IE and TinyMCE format things differently |
| 14 |
// <iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="<a href="https://maps.google.co.uk/maps/ms?msa=0&amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;ll=50.91917,-1.398808&amp;spn=0.013225,0.011794&amp;output=embed"></iframe><br">https://maps.google.co.uk/maps/ms?msa=0&amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;ll=50.91917,-1.398808&amp;spn=0.013225,0.011794&amp;output=embed"></iframe><br</a> /><small>View <a href="<a href="https://maps.google.co.uk/maps/ms?msa=0&amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;ll=50.91917,-1.398808&amp;spn=0.013225,0.011794&amp;source=embed">https://maps.google.co.uk/maps/ms?msa=0&amp;msid=206216869547772496318.0004bf5f0ff25aea47bd9&amp;hl=en&amp;ie=UTF8&amp;t=m&amp;ll=50.91917,-1.398808&amp;spn=0.013225,0.011794&amp;source=embed</a>" style="color:#0000FF;text-align:left">OARA Membership Discount Map</a> in a larger map</small> |
| 15 |
if ( strpos( $content, 'src="<a href="' ) !== false ) { |
| 16 |
$content = preg_replace_callback( '#<iframe\s[^&]*?(?:&(?!gt;)[^&]*?)*?src="<a href="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^&]*?(?:&(?!gt;)[^&]*?)*?>\s*</iframe><br">[^"]*?">\s*</iframe>(?:<br</a>\s*/>\s*<small>.*?</small>)?#i', 'jetpack_googlemaps_embed_to_short_code_callback', $content ); |
| 17 |
return $content; |
| 18 |
} |
| 19 |
|
| 20 |
$content = preg_replace_callback( '!\<iframe\s[^>]*?src="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^>]*?\>\s*\</iframe\>(?:\s*(?:\<br\s*/?\>)?\s*\<small\>.*?\</small\>)?!i', 'jetpack_googlemaps_embed_to_short_code_callback', $content ); |
| 21 |
|
| 22 |
$content = preg_replace_callback( '#<iframe\s[^&]*?(?:&(?!gt;)[^&]*?)*?src="https?://(.*)?\.google\.(.*?)/(.*?)\?(.+?)"[^&]*?(?:&(?!gt;)[^&]*?)*?>\s*</iframe>(?:\s*(?:<br\s*/?>)?\s*<small>.*?</small>)?#i', 'jetpack_googlemaps_embed_to_short_code_callback', $content ); |
| 23 |
|
| 24 |
return $content; |
| 25 |
} |
| 26 |
|
| 27 |
function jetpack_googlemaps_embed_to_short_code_callback( $match ) { |
| 28 |
|
| 29 |
if ( preg_match( '/\bwidth=[\'"](\d+)(%)?/', $match[0], $width ) ) { |
| 30 |
$percent = ! empty( $width[2] ) ? '%' : ''; |
| 31 |
$width = absint( $width[1] ) . $percent; |
| 32 |
} else { |
| 33 |
$width = 425; |
| 34 |
} |
| 35 |
|
| 36 |
if ( preg_match( '/\bheight=[\'"](\d+)(%)?/', $match[0], $height ) ) { |
| 37 |
$percent = ! empty( $height[2] ) ? '%' : ''; |
| 38 |
$height = absint( $height[1] ) . $percent; |
| 39 |
} else { |
| 40 |
$height = 350; |
| 41 |
} |
| 42 |
|
| 43 |
$url = "https://{$match[1]}.google.{$match[2]}/{$match[3]}?{$match[4]}&w={$width}&h={$height}"; |
| 44 |
|
| 45 |
/** This action is documented in modules/shortcodes/youtube.php */ |
| 46 |
do_action( 'jetpack_embed_to_shortcode', 'googlemaps', $url ); |
| 47 |
|
| 48 |
return "[googlemaps $url]"; |
| 49 |
} |
| 50 |
|
| 51 |
add_filter( 'pre_kses', 'jetpack_googlemaps_embed_to_short_code' ); |
| 52 |
|
| 53 |
/** |
| 54 |
* [googlemaps] shortcode |
| 55 |
* |
| 56 |
* Example usage: |
| 57 |
* [googlemaps http://maps.google.com/maps?f=q&hl=en&geocode=&q=San+Francisco,+CA&sll=43.469466,-83.998504&sspn=0.01115,0.025942&g=San+Francisco,+CA&ie=UTF8&z=12&iwloc=addr&ll=37.808156,-122.402458&output=embed&s=AARTsJp56EajYksz3JXgNCwT3LJnGsqqAQ&w=425&h=350] |
| 58 |
* [googlemaps https://mapsengine.google.com/map/embed?mid=zbBhkou4wwtE.kUmp8K6QJ7SA&w=640&h=480] |
| 59 |
*/ |
| 60 |
function jetpack_googlemaps_shortcode( $atts ) { |
| 61 |
if ( !isset($atts[0]) ) |
| 62 |
return ''; |
| 63 |
|
| 64 |
$params = ltrim( $atts[0], '=' ); |
| 65 |
|
| 66 |
$width = 425; |
| 67 |
$height = 350; |
| 68 |
|
| 69 |
if ( preg_match( '!^https?://(www|maps|mapsengine)\.google(\.co|\.com)?(\.[a-z]+)?/.*?(\?.+)!i', $params, $match ) ) { |
| 70 |
$params = str_replace( '&amp;', '&', $params ); |
| 71 |
$params = str_replace( '&', '&', $params ); |
| 72 |
parse_str( $params, $arg ); |
| 73 |
|
| 74 |
if ( isset( $arg['hq'] ) ) |
| 75 |
unset( $arg['hq'] ); |
| 76 |
|
| 77 |
$url = ''; |
| 78 |
foreach ( (array) $arg as $key => $value ) { |
| 79 |
if ( 'w' == $key ) { |
| 80 |
$percent = ( '%' == substr( $value, -1 ) ) ? '%' : ''; |
| 81 |
$width = (int) $value . $percent; |
| 82 |
} elseif ( 'h' == $key ) { |
| 83 |
$height = (int) $value; |
| 84 |
} else { |
| 85 |
$key = str_replace( '_', '.', $key ); |
| 86 |
$url .= esc_attr( "$key=$value&" ); |
| 87 |
} |
| 88 |
} |
| 89 |
$url = substr( $url, 0, -5 ); |
| 90 |
|
| 91 |
if( is_ssl() ) |
| 92 |
$url = str_replace( 'http://', 'https://', $url ); |
| 93 |
|
| 94 |
$css_class = 'googlemaps'; |
| 95 |
|
| 96 |
if ( ! empty( $atts['align'] ) && in_array( strtolower( $atts['align'] ), array( 'left', 'center', 'right' ), true ) ) { |
| 97 |
$atts['align'] = strtolower( $atts['align'] ); |
| 98 |
|
| 99 |
if ( $atts['align'] === 'left' ) { |
| 100 |
$css_class .= ' alignleft'; |
| 101 |
} elseif ( $atts['align'] === 'center' ) { |
| 102 |
$css_class .= ' aligncenter'; |
| 103 |
} elseif ( $atts['align'] === 'right' ) { |
| 104 |
$css_class .= ' alignright'; |
| 105 |
} |
| 106 |
} |
| 107 |
|
| 108 |
return '<div class="' . esc_attr( $css_class ) . '"><iframe width="' . $width . '" height="' . $height . '" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="' . $url . '"></iframe></div>'; |
| 109 |
} |
| 110 |
} |
| 111 |
add_shortcode( 'googlemaps', 'jetpack_googlemaps_shortcode' ); |
| 112 |
|