Add: Date Soundmaker Metabox
This commit is contained in:
parent
0d18486fc7
commit
8326925eaf
22
soundmap.php
22
soundmap.php
@ -91,16 +91,24 @@ if (!class_exists('Soundmap')){
|
||||
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-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');
|
||||
// Ya no es necesario
|
||||
//add_meta_box('soundmap-email', __("Uploader Mail", 'soundmap'), array($this, 'email_meta_box'), 'marker', 'side', 'low');
|
||||
add_meta_box('soundmap-media-attachments', __("Media files attached.", 'soundmap'), array($this, 'attachments_meta_box'), 'marker', 'side', 'high');
|
||||
add_meta_box('soundmap-media-date', __("Media data registered.", 'soundmap'), array($this, 'date_meta_box'), 'marker', 'side', 'high');
|
||||
// Ya no es necesario
|
||||
//add_meta_box('soundmap-email', __("Uploader Mail", 'soundmap'), array($this, 'email_meta_box'), 'marker', 'side', 'low');
|
||||
} //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(){
|
||||
global $post;
|
||||
$mail = get_post_meta($post->ID, 'EMAIL', TRUE);
|
||||
echo "<p>" . $mail . "</p>";
|
||||
}
|
||||
}
|
||||
|
||||
function info_meta_box(){
|
||||
|
||||
@ -124,9 +132,9 @@ if (!class_exists('Soundmap')){
|
||||
$data = wp_prepare_attachment_for_js( $file );
|
||||
$out .= "<div class='soundmap-attach-item'>
|
||||
<!-- <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>
|
||||
<source src='{$data['url']} type='{$data['mime']}'>
|
||||
<source src='{$data['url']}' type='{$data['mime']}'>
|
||||
</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>";
|
||||
}
|
||||
@ -325,10 +333,12 @@ if (!class_exists('Soundmap')){
|
||||
$soundmark_lat = $_POST['soundmap_marker_lat'];
|
||||
$soundmark_lng = $_POST['soundmap_marker_lng'];
|
||||
$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_lng', $soundmark_lng);
|
||||
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!
|
||||
|
Loading…
Reference in New Issue
Block a user