63 lines
2.3 KiB
PHP
63 lines
2.3 KiB
PHP
<?php
|
|
/*
|
|
Widget Name: Scheduled Posts
|
|
Widget URI: http://comicpress.org/
|
|
Description: Display a list of posts that are due to be scheduled.
|
|
Author: Philip M. Hofer (Frumph)
|
|
Version: 1.01
|
|
Author URI: http://frumph.net/
|
|
|
|
*/
|
|
|
|
class widget_comicpress_show_scheduled_posts extends WP_Widget {
|
|
|
|
function widget_comicpress_show_scheduled_posts() {
|
|
$widget_ops = array('classname' => 'widget_comicpress_show_scheduled_posts', 'description' => __('Display a list of posts that are scheduled to be published.','comicpress') );
|
|
$this->WP_Widget('show_scheduled_posts', __('Scheduled Posts','comicpress'), $widget_ops);
|
|
}
|
|
|
|
function widget($args, $instance) {
|
|
extract($args, EXTR_SKIP);
|
|
|
|
echo '<div class="scheduled-post-wrap">';
|
|
echo $before_widget;
|
|
$title = empty($instance['title']) ? __('Scheduled Posts','comicpress') : apply_filters('widget_title', $instance['title']);
|
|
if ( !empty( $title ) ) { echo $before_title . $title . $after_title; };
|
|
$scheduled_posts = get_posts('post_status=future&numberposts=-1');
|
|
if (empty($scheduled_posts)) {
|
|
echo '<ul><li>None.</li></ul>';
|
|
} else { ?>
|
|
<ul>
|
|
<?php foreach($scheduled_posts as $post) : ?>
|
|
<li><span class="scheduled-post-date"><?php echo date('m/d/Y',strtotime($post->post_date)); ?></span> <span class="scheduled-post-title"><?php echo $post->post_title; ?></span></li>
|
|
<?php endforeach; ?>
|
|
</ul>
|
|
<?php }
|
|
echo $after_widget;
|
|
echo '</div>';
|
|
}
|
|
|
|
function update($new_instance, $old_instance) {
|
|
$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:','comicpress'); ?> <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>
|
|
<?php
|
|
}
|
|
}
|
|
register_widget('widget_comicpress_show_scheduled_posts');
|
|
|
|
|
|
function widget_comicpress_show_scheduled_posts_init() {
|
|
new widget_comicpress_show_scheduled_posts();
|
|
}
|
|
|
|
add_action('widgets_init', 'widget_comicpress_show_scheduled_posts_init');
|
|
|
|
?>
|