Compare commits
3 Commits
ba9eebe2fa
...
1db510e96d
Author | SHA1 | Date | |
---|---|---|---|
1db510e96d | |||
|
8326925eaf | ||
2e372d5239 |
@ -97,7 +97,7 @@
|
|||||||
layer.on('click', self.onMarkerClick);
|
layer.on('click', self.onMarkerClick);
|
||||||
}
|
}
|
||||||
}).addTo(this.map);
|
}).addTo(this.map);
|
||||||
this.map.fitBounds(this.markers.getBounds());
|
if (this.markers.getBounds()) this.map.fitBounds(this.markers.getBounds());
|
||||||
|
|
||||||
},
|
},
|
||||||
ajaxFail: function(){
|
ajaxFail: function(){
|
||||||
|
22
soundmap.php
22
soundmap.php
@ -91,16 +91,24 @@ if (!class_exists('Soundmap')){
|
|||||||
function metaboxes_register_callback(){
|
function metaboxes_register_callback(){
|
||||||
add_meta_box('soundmap-map', __("Place the Marker", 'soundmap'), array($this, 'map_meta_box'), 'marker', 'normal', 'high');
|
add_meta_box('soundmap-map', __("Place the Marker", 'soundmap'), array($this, 'map_meta_box'), 'marker', 'normal', 'high');
|
||||||
add_meta_box('soundmap-media-info', __("Info", 'soundmap'), array($this,'info_meta_box'), 'marker', 'side', 'high');
|
add_meta_box('soundmap-media-info', __("Info", 'soundmap'), array($this,'info_meta_box'), 'marker', 'side', 'high');
|
||||||
add_meta_box('soundmap-media-attachments', __("Media files attached.", 'soundmap'), array($this, 'attachments_meta_box'), 'marker', 'side', 'high');
|
add_meta_box('soundmap-media-attachments', __("Media files attached.", 'soundmap'), array($this, 'attachments_meta_box'), 'marker', 'side', 'high');
|
||||||
// Ya no es necesario
|
add_meta_box('soundmap-media-date', __("Media data registered.", 'soundmap'), array($this, 'date_meta_box'), 'marker', 'side', 'high');
|
||||||
//add_meta_box('soundmap-email', __("Uploader Mail", 'soundmap'), array($this, 'email_meta_box'), 'marker', 'side', 'low');
|
// Ya no es necesario
|
||||||
|
//add_meta_box('soundmap-email', __("Uploader Mail", 'soundmap'), array($this, 'email_meta_box'), 'marker', 'side', 'low');
|
||||||
} //metaboxes_register_callback
|
} //metaboxes_register_callback
|
||||||
|
|
||||||
|
function date_meta_box( $post ) {
|
||||||
|
$custom_date = get_post_meta( $post->ID, 'soundmap_marker_date', true );
|
||||||
|
?>
|
||||||
|
<input name="soundmap_marker_date" type="date" value="<?php echo $custom_date; ?>">
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
|
||||||
function email_meta_box(){
|
function email_meta_box(){
|
||||||
global $post;
|
global $post;
|
||||||
$mail = get_post_meta($post->ID, 'EMAIL', TRUE);
|
$mail = get_post_meta($post->ID, 'EMAIL', TRUE);
|
||||||
echo "<p>" . $mail . "</p>";
|
echo "<p>" . $mail . "</p>";
|
||||||
}
|
}
|
||||||
|
|
||||||
function info_meta_box(){
|
function info_meta_box(){
|
||||||
|
|
||||||
@ -124,9 +132,9 @@ if (!class_exists('Soundmap')){
|
|||||||
$data = wp_prepare_attachment_for_js( $file );
|
$data = wp_prepare_attachment_for_js( $file );
|
||||||
$out .= "<div class='soundmap-attach-item'>
|
$out .= "<div class='soundmap-attach-item'>
|
||||||
<!-- <div class='att-icon'><img src='{$data['icon']}'/></div> -->
|
<!-- <div class='att-icon'><img src='{$data['icon']}'/></div> -->
|
||||||
<div class='att-info'><a href='{$data['url']}'><strong>{$data['title']}</strong></a><br/>
|
<div class='att-info'><strong>{$data['title']}</strong><br/>
|
||||||
<audio controls>
|
<audio controls>
|
||||||
<source src='{$data['url']} type='{$data['mime']}'>
|
<source src='{$data['url']}' type='{$data['mime']}'>
|
||||||
</audio><br/>
|
</audio><br/>
|
||||||
<a href='#' class='delete-att-item'>Borrar</a></div><div class='clear'></div><input type='hidden' name='soundmap-att-ids[]' value='{$file}' /></div>";
|
<a href='#' class='delete-att-item'>Borrar</a></div><div class='clear'></div><input type='hidden' name='soundmap-att-ids[]' value='{$file}' /></div>";
|
||||||
}
|
}
|
||||||
@ -325,10 +333,12 @@ if (!class_exists('Soundmap')){
|
|||||||
$soundmark_lat = $_POST['soundmap_marker_lat'];
|
$soundmark_lat = $_POST['soundmap_marker_lat'];
|
||||||
$soundmark_lng = $_POST['soundmap_marker_lng'];
|
$soundmark_lng = $_POST['soundmap_marker_lng'];
|
||||||
$soundmark_author = $_POST['soundmap_marker_author'];
|
$soundmark_author = $_POST['soundmap_marker_author'];
|
||||||
|
$soundmark_date = $_POST['soundmap_marker_date'];
|
||||||
|
|
||||||
update_post_meta($post_id, 'soundmap_marker_lat', $soundmark_lat);
|
update_post_meta($post_id, 'soundmap_marker_lat', $soundmark_lat);
|
||||||
update_post_meta($post_id, 'soundmap_marker_lng', $soundmark_lng);
|
update_post_meta($post_id, 'soundmap_marker_lng', $soundmark_lng);
|
||||||
update_post_meta($post_id, 'soundmap_marker_author', $soundmark_author);
|
update_post_meta($post_id, 'soundmap_marker_author', $soundmark_author);
|
||||||
|
update_post_meta($post_id, 'soundmap_marker_date', $soundmark_date);
|
||||||
|
|
||||||
|
|
||||||
//before searching on all the $_POST array, let's take a look if there is any upload first!
|
//before searching on all the $_POST array, let's take a look if there is any upload first!
|
||||||
|
Loading…
Reference in New Issue
Block a user