Move calendar widget to WP_Widget. see #8441
git-svn-id: https://develop.svn.wordpress.org/trunk@10799 602fd350-edb4-49c9-b593-d223f7449a82
This commit is contained in:
parent
b05ffb1229
commit
a9414a120c
|
@ -335,6 +335,48 @@ function wp_widget_calendar_control() {
|
||||||
<?php
|
<?php
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Calendar widget class
|
||||||
|
*
|
||||||
|
* @since 2.8.0
|
||||||
|
*/
|
||||||
|
class WP_Widget_Calendar extends WP_Widget {
|
||||||
|
|
||||||
|
function WP_Widget_Calendar() {
|
||||||
|
$widget_ops = array('classname' => 'widget_calendar', 'description' => __( "A calendar of your blog's posts") );
|
||||||
|
$this->WP_Widget('calendar', __('Calendar'), $widget_ops);
|
||||||
|
}
|
||||||
|
|
||||||
|
function widget( $args, $instance ) {
|
||||||
|
extract($args);
|
||||||
|
$title = empty($instance['title']) ? ' ' : apply_filters('widget_title', $instance['title']);
|
||||||
|
echo $before_widget . $before_title . $title . $after_title;
|
||||||
|
echo '<div id="calendar_wrap">';
|
||||||
|
get_calendar();
|
||||||
|
echo '</div>';
|
||||||
|
echo $after_widget;
|
||||||
|
}
|
||||||
|
|
||||||
|
function update( $new_instance, $old_instance ) {
|
||||||
|
if ( !isset($new_instance['submit']) ) // user clicked cancel?
|
||||||
|
return false;
|
||||||
|
|
||||||
|
$instance = $old_instance;
|
||||||
|
$instance['title'] = strip_tags($new_instance['title']);
|
||||||
|
|
||||||
|
return $instance;
|
||||||
|
}
|
||||||
|
|
||||||
|
function form( $instance ) {
|
||||||
|
$instance = wp_parse_args( (array) $instance, array( 'title' => '' ) );
|
||||||
|
$title = strip_tags($instance['title']);
|
||||||
|
?>
|
||||||
|
<p><label for="<?php echo $this->get_field_id('title'); ?>"><?php _e('Title:'); ?> <input class="widefat" id="<?php echo $this->get_field_id('title'); ?>" name="<?php echo $this->get_field_name('title'); ?>" type="text" value="<?php echo attribute_escape($title); ?>" /></label></p>
|
||||||
|
<input type="hidden" id="<?php echo $this->get_field_id('submit'); ?>" name="<?php echo $this->get_field_name('submit'); ?>" value="1" />
|
||||||
|
<?php
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Display the Text widget, depending on the widget number.
|
* Display the Text widget, depending on the widget number.
|
||||||
*
|
*
|
||||||
|
@ -1329,9 +1371,7 @@ function wp_widgets_init() {
|
||||||
|
|
||||||
new WP_Widget_Pages();
|
new WP_Widget_Pages();
|
||||||
|
|
||||||
$widget_ops = array('classname' => 'widget_calendar', 'description' => __( "A calendar of your blog's posts") );
|
new WP_Widget_Calendar();
|
||||||
wp_register_sidebar_widget('calendar', __('Calendar'), 'wp_widget_calendar', $widget_ops);
|
|
||||||
wp_register_widget_control('calendar', __('Calendar'), 'wp_widget_calendar_control' );
|
|
||||||
|
|
||||||
new WP_Widget_Archives();
|
new WP_Widget_Archives();
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue