function __construct() { $this->_defaults = apply_filters('eab-widgets-upcoming-default_fields', array('title' => __('Upcoming', $this->translation_domain), 'excerpt' => false, 'excerpt_words_limit' => false, 'thumbnail' => false, 'limit' => 5, 'dates' => false)); $widget_ops = array('description' => __('Display List of Upcoming Events', $this->translation_domain)); $control_ops = array('title' => __('Upcoming', $this->translation_domain)); parent::__construct('incsub_event_upcoming', __('Upcoming Events', $this->translation_domain), $widget_ops, $control_ops); }
function __construct() { $this->_defaults = apply_filters('eab-widgets-popular-default_fields', array('title' => __('Most Popular', $this->translation_domain), 'excerpt' => false, 'excerpt_words_limit' => false, 'thumbnail' => false, 'limit' => 5)); $widget_ops = array('description' => __('Display List of Popular events', $this->translation_domain)); $control_ops = array('title' => __('Most Popular', $this->translation_domain)); parent::__construct('incsub_event_popular', __('Most Popular Events', $this->translation_domain), $widget_ops, $control_ops); }
function __construct() { $widget_ops = array('classname' => __CLASS__, 'description' => __('Displays List of Upcoming Events from your entire network', $this->translation_domain)); add_action('wp_enqueue_scripts', array($this, 'css_load_styles')); add_action('wp_enqueue_scripts', array($this, 'js_load_scripts')); add_action('wp_ajax_eab_cuw_get_calendar', array($this, 'handle_calendar_request')); add_action('wp_ajax_nopriv_eab_cuw_get_calendar', array($this, 'handle_calendar_request')); parent::__construct(__CLASS__, __('Calendar Upcoming', $this->translation_domain), $widget_ops); }
function __construct() { $widget_ops = array('classname' => __CLASS__, 'description' => __('Displays List of Upcoming Events from your entire network', $this->translation_domain)); parent::__construct(__CLASS__, __('Network Upcoming', $this->translation_domain), $widget_ops); }
function __construct() { $widget_ops = array('description' => __('Display Attendees of an event', $this->translation_domain)); $control_ops = array('title' => __('Attendees', $this->translation_domain)); parent::__construct('incsub_event_attendees', __('Event Attendees', $this->translation_domain), $widget_ops, $control_ops); }