'This widget has been replaced by the [eventlist] shortcode, read the documentation for details!'); parent::WP_Widget(false, __('AEC Upcoming Events', AEC_NAME), $widget_ops); } function widget($args, $instance) { echo $before_widget; echo $before_title . $title . $after_title; echo '

IMPORTANT:

As of version 1.0.1, this widget has been removed from the Ajax Event Calendar plugin. Instead, use the [eventlist] shortcode explained here:

http://wordpress.org/extend/plugins/ajax-event-calendar/installation

The shortcode offers more customization and placement options than the old widget, explained here:

http://code.google.com/p/wp-aec/wiki/ShortcodeOptions

'; echo $after_widget; } /** @see WP_Widget::form */ function form ($instance) { $instance = wp_parse_args((array) $instance, array('eventlimit' => 4, 'title' => __('Upcoming Events', AEC_NAME), 'category' => 0, 'whitelabel' => false, 'callink' => '')); $whitelabel = $instance['whitelabel']; $eventlimit = $instance['eventlimit']; $title = $instance['title']; $category = $instance['category']; $callink = $instance['callink']; ?>

IMPORTANT:

As of version 1.0.1, this widget has been removed from the Ajax Event Calendar plugin. Instead, use the [eventlist] shortcode explained here:

The shortcode offers more customization and placement options than the old widget, explained here.