2011-12-14 10:35:25 +00:00
< ? php
/*
Plugin Name : WP - GPX - Maps
Plugin URI : http :// www . darwinner . it /
2011-12-15 16:03:29 +00:00
Description : Add a gpx trak with altitude graph
2011-12-15 17:33:14 +00:00
Version : 1.0 . 2
2011-12-14 10:35:25 +00:00
Author : Bastianon Massimo
Author URI : http :// www . pedemontanadelgrappa . it /
License : GPL
*/
include 'wp-gpx-maps_Utils.php' ;
add_action ( 'wp_print_scripts' , 'enqueue_WP_GPX_Maps_scripts' );
function enqueue_WP_GPX_Maps_scripts ()
{
?>
< script type = 'text/javascript' src = 'https://www.google.com/jsapi?ver=3.2.1' ></ script >
2011-12-14 13:05:57 +00:00
< script type = 'text/javascript' >
google . load ( 'maps' , '3' , { other_params : 'sensor=false' });
2011-12-14 10:35:25 +00:00
google . load ( 'visualization' , '1' , { 'packages' : [ 'corechart' ]});
</ script >
< script type = 'text/javascript' src = '<?php echo plugins_url(' / wp - gpx - maps . js ', __FILE__) ?>' ></ script >
< ? php
}
2011-12-15 17:10:41 +00:00
add_shortcode ( 'sgpx' , 'handle_WP_GPX_Maps_Shortcodes' );
2011-12-14 10:35:25 +00:00
2011-12-15 17:10:41 +00:00
function handle_WP_GPX_Maps_Shortcodes ( $attr , $content = '' )
{
2011-12-14 10:35:25 +00:00
$gpx = $attr [ " gpx " ];
$key = get_option ( " wpgpxmaps_bing_license " );
$w = get_option ( " wpgpxmaps_width " );
$h = get_option ( " wpgpxmaps_height " );
$t = get_option ( " wpgpxmaps_map_type " );
$r = rand ( 1 , 5000000 );
$points = getPoints ( $gpx );
$points_maps = '' ;
$points_graph = '' ;
foreach ( $points as $p ) {
$points_maps .= " [ " . ( float ) $p [ 0 ] . " , " . ( float ) $p [ 1 ] . " ], " ;
$points_graph .= " [ " . ( float ) $p [ 3 ] . " , " . ( float ) $p [ 2 ] . " ], " ;
}
$p = " /, $ / " ;
$points_maps = preg_replace ( $p , " " , $points_maps );
$points_graph = preg_replace ( $p , " " , $points_graph );
echo
'
< div id = " wpgpxmaps_'. $r .' " style = " clear:both; " >
< div id = " map_'. $r .' " style = " width:'. $w .'; height:'. $h .' " ></ div >
< div id = " chart_'. $r .' " class = " plot " style = " width:'. $w .'; height:'.(preg_replace( " ([ pxPX % emEM ]) " , " " , $h ) / 2).'px " ></ div >
</ div >
< script type = " text/javascript " >
jQuery ( document ) . ready ( function () {
var m_ '.$r.' = [ '.$points_maps.' ];
var c_ '.$r.' = [ '.$points_graph.' ];
wpgpxmaps ( " wpgpxmaps_'. $r .' " , \ '' . $t . '\',m_' . $r . ',c_' . $r . ' );
});
</ script > ' ;
2011-12-15 16:03:29 +00:00
}
2011-12-14 10:35:25 +00:00
register_activation_hook ( __FILE__ , 'WP_GPX_Maps_install' );
register_deactivation_hook ( __FILE__ , 'WP_GPX_Maps_remove' );
function WP_GPX_Maps_install () {
add_option ( " wpgpxmaps_width " , '100%' , '' , 'yes' );
add_option ( " wpgpxmaps_height " , '450px' , '' , 'yes' );
add_option ( 'wpgpxmaps_map_type' , 'HYBRID' , '' , 'yes' );
}
function WP_GPX_Maps_remove () {
delete_option ( 'wpgpxmaps_width' );
delete_option ( 'wpgpxmaps_height' );
delete_option ( 'wpgpxmaps_map_type' );
}
if ( is_admin () ){
add_action ( 'admin_menu' , 'wpgpxmaps_admin_menu' );
function wpgpxmaps_admin_menu () {
add_options_page ( 'WP GPX Maps' , 'WP GPX Maps' , 'administrator' , 'WP-GPX-Maps' , 'WP_GPX_Maps_html_page' );
}
}
function WP_GPX_Maps_html_page () {
2011-12-15 16:03:29 +00:00
$realGpxPath = substr ( __FILE__ , 0 , strrpos ( __FILE__ , '/wp-content/' )) . " /wp-content/uploads/gpx " ;
$gpxRegEx = '/.gpx$/' ;
2011-12-14 10:35:25 +00:00
?>
2011-12-15 16:03:29 +00:00
2011-12-14 10:35:25 +00:00
< div >
2011-12-15 16:03:29 +00:00
< h2 > WP GPX Settings </ h2 >
< ? php
if ( file_exists ( $realGpxPath ) && is_dir ( $realGpxPath ))
{
//dir exsist!
}
else
{
if ( !@ mkdir ( $dir )) {
echo ' < div class = " error " style = " padding:10px " >
Can\ 't create <b>' . $realGpxPath . ' </ b > folder . Please create it and make it writable !< br />
If not , you will must update the file manually !
</ div > ' ;
}
}
?>
< div style = " padding:10px 10px 30px 10px; " >
2011-12-15 17:10:41 +00:00
< b > The fastest way to use this plugin :</ b > upload the file using the uploader below , than put this
2011-12-15 16:03:29 +00:00
shotcode : < b > [ sgpx gpx = " /wp-content/uploads/gpx/< gpx file name > " ] </ b > in the pages / posts .
</ div >
2011-12-14 10:35:25 +00:00
< form method = " post " action = " options.php " >
2011-12-15 17:10:41 +00:00
< ? php wp_nonce_field ( 'update-options' ) ?>
2011-12-15 16:03:29 +00:00
< table width = " 100% " >
< tr valign = " top " >
< th width = " 200 " scope = " row " > Maps Width :</ th >
< td >
< input name = " wpgpxmaps_width " type = " text " id = " wpgpxmaps_width " value = " <?php echo get_option('wpgpxmaps_width'); ?> " style = " width:50px; " />
</ td >
</ tr >
< tr valign = " top " >
< th width = " 200 " scope = " row " > Maps Height :</ th >
< td >
< input name = " wpgpxmaps_height " type = " text " id = " wpgpxmaps_height " value = " <?php echo get_option('wpgpxmaps_height'); ?> " style = " width:50px; " />
</ td >
</ tr >
< tr >
< th width = " 200 " scope = " row " > Default Map Type :</ th >
< td >
< ? php
$t = get_option ( 'wpgpxmaps_map_type' );
if ( ! ( $t ))
$t = 'HYBRID' ;
?>
< input type = " radio " name = " wpgpxmaps_map_type " value = " HYBRID " < ? php if ( $t == 'HYBRID' ) echo 'checked' ; ?> > This map type displays a transparent layer of major streets on satellite images.<br />
< input type = " radio " name = " wpgpxmaps_map_type " value = " ROADMAP " < ? php if ( $t == 'ROADMAP' ) echo 'checked' ; ?> > This map type displays a normal street map.<br />
< input type = " radio " name = " wpgpxmaps_map_type " value = " SATELLITE " < ? php if ( $t == 'SATELLITE' ) echo 'checked' ; ?> > This map type displays satellite images.<br />
< input type = " radio " name = " wpgpxmaps_map_type " value = " TERRAIN " < ? php if ( $t == 'TERRAIN' ) echo 'checked' ; ?> > This map type displays maps with physical features such as terrain and vegetation.<br />
</ td >
</ tr >
</ table >
2011-12-14 10:35:25 +00:00
2011-12-15 16:03:29 +00:00
< input type = " hidden " name = " action " value = " update " />
2011-12-15 17:10:41 +00:00
< input name = " page_options " type = " hidden " value = " wpgpxmaps_map_type,wpgpxmaps_height,wpgpxmaps_width " />
2011-12-14 10:35:25 +00:00
2011-12-15 16:03:29 +00:00
< p >
< input type = " submit " value = " <?php _e('Save Changes') ?> " />
</ p >
2011-12-14 10:35:25 +00:00
</ form >
2011-12-15 16:03:29 +00:00
< ? php
if ( isset ( $_POST [ 'delete' ]) )
{
$del = $_POST [ 'delete' ];
if ( preg_match ( $gpxRegEx , $del ) && file_exists ( $realGpxPath . " / " . $del ))
{
unlink ( $realGpxPath . " / " . $del );
}
}
if ( is_readable ( $realGpxPath ) && $handle = opendir ( $realGpxPath )) { ?>
< div class = " tablenav top " >
< form enctype = " multipart/form-data " method = " POST " >
< input type = " hidden " name = " MAX_FILE_SIZE " value = " 100000 " />
Choose a file to upload : < input name = " uploadedfile " type = " file " onchange = " this.parentNode.submit() " />
< ? php
if ( isset ( $_FILES [ 'uploadedfile' ]) )
{
$target_path = $realGpxPath . " / " . basename ( $_FILES [ 'uploadedfile' ][ 'name' ]);
if ( preg_match ( $gpxRegEx , $target_path ))
{
if ( move_uploaded_file ( $_FILES [ 'uploadedfile' ][ 'tmp_name' ], $target_path )) {
echo " The file " . basename ( $_FILES [ 'uploadedfile' ][ 'name' ]) . " has been uploaded " ;
} else {
echo " There was an error uploading the file, please try again! " ;
}
}
else
{
echo " file not supported! " ;
}
}
?>
</ form >
</ div >
< table cellspacing = " 0 " class = " wp-list-table widefat plugins " >
< thead >
< tr >
< th style = " " class = " manage-column " id = " name " scope = " col " > File </ th >
< th style = " " class = " manage-column " id = " name " scope = " col " > Last modified </ th >
< th style = " " class = " manage-column " id = " name " scope = " col " > File size ( Byte ) </ th >
</ tr >
</ thead >
< tfoot >
< tr >
< th style = " " class = " manage-column " id = " name " scope = " col " > File </ th >
< th style = " " class = " manage-column " id = " name " scope = " col " > Last modified </ th >
< th style = " " class = " manage-column " id = " name " scope = " col " > File size ( Byte ) </ th >
</ tr >
</ tfoot >
< tbody id = " the-list " >
< ? php
while ( false !== ( $entry = readdir ( $handle ))) {
if ( preg_match ( $gpxRegEx , $entry ))
{
$file = $realGpxPath . " / " . $entry ;
?>
< tr class = " active " id = " akismet " >
< td class = " plugin-title " >
< strong >< ? php echo $entry ; ?> </strong>
< div class = " row-actions-visible " >
< a href = " # " onclick = " delgpx('<?php echo $entry ?>'); return false; " > Delete </ a >
|
< a href = " ../wp-content/uploads/gpx/<?php echo $entry ?> " > Download </ a >
</ div >
</ td >
< td class = " column-description desc " >
< div class = " plugin-description " >
< p >< ? php echo date ( " F d Y H:i:s. " , filemtime ( $file ) ) ?> </p>
</ div >
</ td >
< td class = " column-description desc " >
< div class = " plugin-description " >
2011-12-15 17:10:41 +00:00
< p >< ? php echo number_format ( filesize ( $file ) , 0 , '.' , ',' ) ?> </p>
2011-12-15 16:03:29 +00:00
</ div >
</ td >
</ tr >
< ? php
}
}
?>
</ tbody >
</ table >
< ? php
closedir ( $handle );
} ?>
2011-12-14 10:35:25 +00:00
</ div >
2011-12-15 16:03:29 +00:00
< script type = " text/javascript " >
function delgpx ( file )
{
if ( confirm ( 'Delte this file: ' + file + '?' ))
{
document . formdelgpx . delete . value = file ;
document . formdelgpx . submit ();
}
}
</ script >
< form method = " post " name = " formdelgpx " style = " display:none; " >
< input type = " hidden " name = " delete " />
</ form >
2011-12-14 10:35:25 +00:00
< ? php
}
2011-12-14 12:08:18 +00:00
?>