File: D:/HostingSpaces/ERijn/knijft.eu/wwwroot/wp-content/themes/cheope/core/widgets/google_map.php
<?php
/**
* Your Inspiration Themes
*
* @package WordPress
* @subpackage Your Inspiration Themes
* @author Your Inspiration Themes Team <info@yithemes.com>
*
* This source file is subject to the GNU GENERAL PUBLIC LICENSE (GPL 3.0)
* that is bundled with this package in the file LICENSE.txt.
* It is also available through the world-wide-web at this URL:
* http://www.gnu.org/licenses/gpl-3.0.txt
*/
if( !class_exists( 'google_map' ) ) :
class google_map extends WP_Widget
{
function google_map() {
$widget_ops = array(
'classname' => 'google-map',
'description' => __('Box with google map.', 'yit')
);
$control_ops = array( 'id_base' => 'google-map' );
$this->WP_Widget( 'google-map', __('Google Map', 'yit'), $widget_ops, $control_ops );
}
function widget( $args, $instance ) {
extract( $args );
/* User-selected settings. */
$title = apply_filters('widget_title', $instance['title'] );
$src = isset( $instance['src'] ) ? $instance['src'] : false;
$width = isset( $instance['width'] ) ? $instance['width'] : 274;
$height = isset( $instance['height'] ) ? $instance['height'] : 200;
echo $before_widget;
if ( $title ) echo $before_title . $title . $after_title;
if( $src ) echo do_shortcode( "[googlemap src=\"$src\" width=\"$width\" height=\"$height\" ]" );
echo $after_widget;
}
function update( $new_instance, $old_instance ) {
$instance = $old_instance;
$instance['title'] = strip_tags( $new_instance['title'] );
$instance['src'] = $new_instance['src'];
$instance['width'] = $new_instance['width'];
$instance['height'] = $new_instance['height'];
return $instance;
}
function form( $instance ) {
global $icons_name, $yit_fxs, $yit_easings;
/* Impostazioni di default del widget */
$defaults = array(
'title' => __('Google Map', 'yit'),
'src' => '',
"width" => '274',
"height" => '200',
);
$instance = wp_parse_args( (array) $instance, $defaults ); ?>
<p>
<label for="<?php echo $this->get_field_id( 'title' ); ?>"><?php _e('Title', 'yit'); ?>:
<input type="text" id="<?php echo $this->get_field_id( 'title' ); ?>" name="<?php echo $this->get_field_name( 'title' ); ?>" value="<?php echo $instance['title']; ?>" class="widefat" />
</label>
</p>
<p>
<label for="<?php echo $this->get_field_id( 'src' ); ?>"><?php _e('Url', 'yit'); ?>:
<input type="text" id="<?php echo $this->get_field_id( 'src' ); ?>" name="<?php echo $this->get_field_name( 'src' ); ?>" value="<?php echo $instance['src']; ?>" class="widefat" />
</label>
</p>
<p>
<label for="<?php echo $this->get_field_id( 'width' ); ?>"><?php _e('Width', 'yit'); ?>:
<input type="text" id="<?php echo $this->get_field_id( 'width' ); ?>" name="<?php echo $this->get_field_name( 'width' ); ?>" value="<?php echo $instance['width']; ?>" class="widefat" />
</label>
</p>
<p>
<label for="<?php echo $this->get_field_id( 'height' ); ?>"><?php _e('Height', 'yit'); ?>:
<input type="text" id="<?php echo $this->get_field_id( 'height' ); ?>" name="<?php echo $this->get_field_name( 'height' ); ?>" value="<?php echo $instance['height']; ?>" class="widefat" />
</label>
</p>
<?php
}
}
endif;