1: 2: 3: 4: 5: 6: 7: 8: 9: 10: 11: 12: 13: 14: 15: 16: 17: 18: 19: 20: 21: 22: 23: 24: 25: 26: 27: 28: 29: 30: 31: 32: 33: 34: 35: 36: 37: 38: 39: 40: 41: 42: 43: 44: 45: 46: 47: 48: 49: 50: 51: 52: 53: 54: 55: 56: 57: 58: 59: 60: 61: 62: 63: 64: 65: 66: 67: 68: 69: 70: 71: 72: 73: 74: 75: 76: 77: 78: 79: 80: 81: 82: 83: 84: 85: 86: 87: 88: 89: 90: 91: 92: 93: 94: 95: 96: 97: 98: 99: 100: 101: 102: 103: 104: 105: 106: 107: 108: 109: 110: 111: 112: 113: 114: 115: 116: 117: 118: 119: 120: 121: 122: 123: 124: 125: 126: 127: 128: 129: 130: 131: 132: 133: 134: 135: 136: 137: 138: 139: 140: 141: 142: 143: 144: 145: 146: 147: 148: 149: 150: 151: 152: 153: 154: 155: 156: 157: 158: 159: 160: 161: 162: 163: 164: 165: 166: 167: 168: 169: 170: 171: 172: 173: 174: 175: 176: 177: 178: 179: 180: 181: 182: 183: 184: 185: 186: 187: 188: 189: 190: 191: 192: 193: 194:
<?php
class EventPost_List extends WP_Widget {
var $defaults;
function __construct() {
parent::__construct(false, __( 'Events', 'event-post' ),array('description'=>__( 'List of future events posts', 'event-post' )));
$this->defaults = array(
'numberposts' => '',
'widgettitle' => '',
'cat' => '',
'tag' => '',
'future' => 0,
'past' => 0,
'thumbnail' => 0,
'thumbnail_size' => '',
'excerpt' => 0,
'feed' => 0,
'order' => 'ASC',
);
}
function EventPost_List(){
$this->__construct();
}
function widget($args, $local_instance) {
if(!defined('ALLOW_DEPRECATED') || !ALLOW_DEPRECATED){
_deprecated_function(__FUNCTION__, '5.9.0', __('Legacy widgets have been deprecated. Consider using blocks instead.', 'event-post'));
}
extract( $args );
$instance = wp_parse_args( (array) $local_instance, $this->defaults );
global $EventPost;
$numberposts = intval($instance['numberposts']);
$future = intval($instance['future']);
$past = intval($instance['past']);
$cat = sanitize_text_field($instance['cat']);
$tag = sanitize_text_field($instance['tag']);
$order = sanitize_text_field($instance['order']);
$events = $EventPost->get_events(
array(
'nb'=>$numberposts,
'future'=>$future,
'past'=>$past,
'geo'=>0,
'cat'=>$cat,
'tag'=>$tag,
'order'=>$order
)
);
if(count($events)==0){
return;
}
echo $args['before_widget'];
if(!empty($instance['widgettitle'])){
echo $args['before_title'];
echo $instance['widgettitle'];
if(!empty($instance['cat']) && $instance['feed']){
$feed_url = esc_url(admin_url('admin-ajax.php') . '?action=EventPostFeed&cat=' . $instance['cat']);
echo' <a href="'.$feed_url .'" title="'.sprintf(__('feed of %s', 'event-post'), $instance['cat']).'"><span class="dashicons dashicons-rss"></span></a>';
}
echo $args['after_title'];
}
$atts=array(
'events' => $events,
'class' => 'eventpost_widget',
'thumbnail' => esc_attr($instance['thumbnail']),
'thumbnail_size' => esc_attr($instance['thumbnail_size']),
'excerpt' => esc_attr($instance['excerpt']),
'order' => $order
);
echo $EventPost->list_events($atts, 'event_list', 'widget');
echo $args['after_widget'];
}
function update($new_instance, $old_instance) {
return $new_instance;
}
function form($local_instance) {
global $EventPost;
$instance = wp_parse_args( (array) $local_instance, $this->defaults );
$cats = get_categories();
$tags = get_tags();
$thumbnail_sizes = $EventPost->get_thumbnail_sizes();
?>
<input type="hidden" id="<?php echo $this->get_field_id('widgettitle'); ?>-title" value="<?php echo $instance['widgettitle']; ?>">
<p>
<label for="<?php echo $this->get_field_id('widgettitle'); ?>"><?php _e('Title','event-post'); ?>
<input class="widefat" id="<?php echo $this->get_field_id('widgettitle'); ?>" name="<?php echo $this->get_field_name('widgettitle'); ?>" type="text" value="<?php echo $instance['widgettitle']; ?>" />
</label>
</p>
<p style="margin-top:10px;">
<label for="<?php echo $this->get_field_id('numberposts'); ?>"><?php _e('Number of posts','event-post'); ?>
<input id="<?php echo $this->get_field_id('numberposts'); ?>" name="<?php echo $this->get_field_name('numberposts'); ?>" type="number" value="<?php echo $instance['numberposts']; ?>" />
</label> <?php _e('(-1 is no limit)','event-post'); ?>
</p>
<p style="margin-top:10px;">
<label for="<?php echo $this->get_field_id('future'); ?>">
<input id="<?php echo $this->get_field_id('future'); ?>" name="<?php echo $this->get_field_name('future'); ?>" type="checkbox" value="1" <?php checked($instance['future'], true, true); ?> />
<?php _e('Display future events','event-post'); ?>
</label>
</p>
<p style="margin-top:10px;">
<label for="<?php echo $this->get_field_id('past'); ?>">
<input id="<?php echo $this->get_field_id('past'); ?>" name="<?php echo $this->get_field_name('past'); ?>" type="checkbox" value="1" <?php checked($instance['past'], true, true); ?> />
<?php _e('Display past events','event-post'); ?>
</label>
</p>
<p>
<label for="<?php echo $this->get_field_id('cat'); ?>">
<span class="dashicons dashicons-category"></span>
<?php _e('Only in:','event-post'); ?>
<select class="widefat" id="<?php echo $this->get_field_id('cat'); ?>" name="<?php echo $this->get_field_name('cat'); ?>">
<option value=''><?php _e('All categories','event-post') ?></option>
<?php foreach($cats as $_cat){ ?>
<option value="<?php echo $_cat->slug; ?>" <?php selected($_cat->slug, $instance['cat'], true); ?>><?php echo $_cat->cat_name; ?></option>
<?php } ?>
</select>
</label>
</p>
<p style="margin-top:10px;">
<label for="<?php echo $this->get_field_id('feed'); ?>">
<input id="<?php echo $this->get_field_id('feed'); ?>" name="<?php echo $this->get_field_name('feed'); ?>" type="checkbox" value="1" <?php checked($instance['feed'], true, true); ?> />
<?php _e('Show category ICS link','event-post'); ?>
</label>
</p>
<hr>
<p>
<label for="<?php echo $this->get_field_id('tag'); ?>">
<span class="dashicons dashicons-tag"></span>
<?php _e('Only in:','event-post'); ?>
<select class="widefat" id="<?php echo $this->get_field_id('tag'); ?>" name="<?php echo $this->get_field_name('tag'); ?>">
<option value=''><?php _e('All tags','event-post') ?></option>
<?php foreach($tags as $_tag){?>
<option value="<?php echo $_tag->slug; ?>" <?php selected($_tag->slug, $instance['tag'], true); ?>><?php echo $_tag->name; ?></option>
<?php } ?>
</select>
</label>
</p>
<hr>
<p style="margin-top:10px;">
<label for="<?php echo $this->get_field_id('thumbnail'); ?>">
<input id="<?php echo $this->get_field_id('thumbnail'); ?>" name="<?php echo $this->get_field_name('thumbnail'); ?>" type="checkbox" value="1" <?php checked($instance['thumbnail'], true, true); ?> />
<?php _e('Show thumbnails','event-post'); ?>
</label>
</p>
<p>
<label for="<?php echo $this->get_field_id('thumbnail_size'); ?>">
<?php _e('Thumbnail size:','event-post'); ?>
<select class="widefat" id="<?php echo $this->get_field_id('thumbnail_size'); ?>" name="<?php echo $this->get_field_name('thumbnail_size'); ?>">
<option value=''></option>
<?php foreach($thumbnail_sizes as $size){?>
<option value="<?php echo $size; ?>" <?php selected($size, $instance['thumbnail_size'], true); ?>><?php echo $size; ?></option>
<?php } ?>
</select>
</label>
</p>
<p style="margin-top:10px;">
<label for="<?php echo $this->get_field_id('excerpt'); ?>">
<input id="<?php echo $this->get_field_id('excerpt'); ?>" name="<?php echo $this->get_field_name('excerpt'); ?>" type="checkbox" value="1" <?php checked($instance['excerpt'], true, true); ?> />
<?php _e('Show excerpt','event-post'); ?>
</label>
</p>
<p>
<label for="<?php echo $this->get_field_id('order'); ?>">
<?php _e('Order:','event-post'); ?>
<select class="widefat" id="<?php echo $this->get_field_id('order'); ?>" name="<?php echo $this->get_field_name('order'); ?>">
<option value='DESC' <?php selected('DESC', $instance['order'], true); ?>><?php _e('Reverse chronological','event-post') ?></option>
<option value='ASC' <?php selected('ASC', $instance['order'], true); ?>><?php _e('Chronological','event-post') ?></option>
</select>
</label>
</p>
<?php
}
}