@@ -11,55 +11,55 @@ |
||
11 | 11 | class EES_Espresso_Cancelled extends EES_Shortcode |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * @deprecated 4.9.27 |
|
16 | - * @return void |
|
17 | - */ |
|
18 | - public static function set_hooks() |
|
19 | - { |
|
20 | - } |
|
14 | + /** |
|
15 | + * @deprecated 4.9.27 |
|
16 | + * @return void |
|
17 | + */ |
|
18 | + public static function set_hooks() |
|
19 | + { |
|
20 | + } |
|
21 | 21 | |
22 | 22 | |
23 | 23 | |
24 | - /** |
|
25 | - * @deprecated 4.9.27 |
|
26 | - * @return void |
|
27 | - */ |
|
28 | - public static function set_hooks_admin() |
|
29 | - { |
|
30 | - } |
|
24 | + /** |
|
25 | + * @deprecated 4.9.27 |
|
26 | + * @return void |
|
27 | + */ |
|
28 | + public static function set_hooks_admin() |
|
29 | + { |
|
30 | + } |
|
31 | 31 | |
32 | 32 | |
33 | 33 | |
34 | - /** |
|
35 | - * @deprecated 4.9.27 |
|
36 | - * @param WP $WP |
|
37 | - * @return void |
|
38 | - */ |
|
39 | - public function run(WP $WP) |
|
40 | - { |
|
41 | - } |
|
34 | + /** |
|
35 | + * @deprecated 4.9.27 |
|
36 | + * @param WP $WP |
|
37 | + * @return void |
|
38 | + */ |
|
39 | + public function run(WP $WP) |
|
40 | + { |
|
41 | + } |
|
42 | 42 | |
43 | 43 | |
44 | 44 | |
45 | - /** |
|
46 | - * process_shortcode - ESPRESSO_CANCELLED |
|
47 | - * |
|
48 | - * @deprecated 4.9.27 |
|
49 | - * @param array $attributes |
|
50 | - * @return string |
|
51 | - * @throws \EE_Error |
|
52 | - */ |
|
53 | - public function process_shortcode($attributes = array()) |
|
54 | - { |
|
55 | - \EE_Error::doing_it_wrong( |
|
56 | - __METHOD__, |
|
57 | - __( |
|
58 | - 'Usage is deprecated. Please use \EventEspresso\core\domain\entities\shortcodes\EspressoCancelled instead.', |
|
59 | - 'event_espresso' |
|
60 | - ), |
|
61 | - '4.9.27' |
|
62 | - ); |
|
63 | - return ''; |
|
64 | - } |
|
45 | + /** |
|
46 | + * process_shortcode - ESPRESSO_CANCELLED |
|
47 | + * |
|
48 | + * @deprecated 4.9.27 |
|
49 | + * @param array $attributes |
|
50 | + * @return string |
|
51 | + * @throws \EE_Error |
|
52 | + */ |
|
53 | + public function process_shortcode($attributes = array()) |
|
54 | + { |
|
55 | + \EE_Error::doing_it_wrong( |
|
56 | + __METHOD__, |
|
57 | + __( |
|
58 | + 'Usage is deprecated. Please use \EventEspresso\core\domain\entities\shortcodes\EspressoCancelled instead.', |
|
59 | + 'event_espresso' |
|
60 | + ), |
|
61 | + '4.9.27' |
|
62 | + ); |
|
63 | + return ''; |
|
64 | + } |
|
65 | 65 | } |
@@ -28,58 +28,58 @@ discard block |
||
28 | 28 | { |
29 | 29 | |
30 | 30 | |
31 | - /** |
|
32 | - * Register widget with WordPress. |
|
33 | - */ |
|
34 | - public function __construct() |
|
35 | - { |
|
36 | - parent::__construct( |
|
37 | - __('Event Espresso Upcoming Events', 'event_espresso'), |
|
38 | - array( 'description' => __('A widget to display your upcoming events.', 'event_espresso')) |
|
39 | - ); |
|
40 | - } |
|
31 | + /** |
|
32 | + * Register widget with WordPress. |
|
33 | + */ |
|
34 | + public function __construct() |
|
35 | + { |
|
36 | + parent::__construct( |
|
37 | + __('Event Espresso Upcoming Events', 'event_espresso'), |
|
38 | + array( 'description' => __('A widget to display your upcoming events.', 'event_espresso')) |
|
39 | + ); |
|
40 | + } |
|
41 | 41 | |
42 | 42 | |
43 | 43 | |
44 | - /** |
|
45 | - * Back-end widget form. |
|
46 | - * |
|
47 | - * @see WP_Widget::form() |
|
48 | - * @param array $instance Previously saved values from database. |
|
49 | - * @return string|void |
|
50 | - */ |
|
51 | - public function form($instance) |
|
52 | - { |
|
44 | + /** |
|
45 | + * Back-end widget form. |
|
46 | + * |
|
47 | + * @see WP_Widget::form() |
|
48 | + * @param array $instance Previously saved values from database. |
|
49 | + * @return string|void |
|
50 | + */ |
|
51 | + public function form($instance) |
|
52 | + { |
|
53 | 53 | |
54 | - EE_Registry::instance()->load_class('Question_Option', array(), false, false, true); |
|
55 | - // Set up some default widget settings. |
|
56 | - $defaults = array( |
|
57 | - 'title' => __('Upcoming Events', 'event_espresso'), |
|
58 | - 'category_name' => '', |
|
59 | - 'show_expired' => 0, |
|
60 | - 'show_desc' => true, |
|
61 | - 'show_dates' => true, |
|
62 | - 'show_everywhere' => false, |
|
63 | - 'date_limit' => 2, |
|
64 | - 'limit' => 10, |
|
65 | - 'sort' => 'ASC', |
|
66 | - 'date_range' => false, |
|
67 | - 'image_size' => 'medium' |
|
68 | - ); |
|
54 | + EE_Registry::instance()->load_class('Question_Option', array(), false, false, true); |
|
55 | + // Set up some default widget settings. |
|
56 | + $defaults = array( |
|
57 | + 'title' => __('Upcoming Events', 'event_espresso'), |
|
58 | + 'category_name' => '', |
|
59 | + 'show_expired' => 0, |
|
60 | + 'show_desc' => true, |
|
61 | + 'show_dates' => true, |
|
62 | + 'show_everywhere' => false, |
|
63 | + 'date_limit' => 2, |
|
64 | + 'limit' => 10, |
|
65 | + 'sort' => 'ASC', |
|
66 | + 'date_range' => false, |
|
67 | + 'image_size' => 'medium' |
|
68 | + ); |
|
69 | 69 | |
70 | - $instance = wp_parse_args((array) $instance, $defaults); |
|
71 | - // don't add HTML labels for EE_Form_Fields generated inputs |
|
72 | - add_filter('FHEE__EEH_Form_Fields__label_html', '__return_empty_string'); |
|
73 | - $yes_no_values = array( |
|
74 | - EE_Question_Option::new_instance(array( 'QSO_value' => false, 'QSO_desc' => __('No', 'event_espresso'))), |
|
75 | - EE_Question_Option::new_instance(array( 'QSO_value' => true, 'QSO_desc' => __('Yes', 'event_espresso'))) |
|
76 | - ); |
|
77 | - $sort_values = array( |
|
78 | - EE_Question_Option::new_instance(array( 'QSO_value' => 'ASC', 'QSO_desc' => __('ASC', 'event_espresso'))), |
|
79 | - EE_Question_Option::new_instance(array( 'QSO_value' => 'DESC', 'QSO_desc' => __('DESC', 'event_espresso'))) |
|
80 | - ); |
|
70 | + $instance = wp_parse_args((array) $instance, $defaults); |
|
71 | + // don't add HTML labels for EE_Form_Fields generated inputs |
|
72 | + add_filter('FHEE__EEH_Form_Fields__label_html', '__return_empty_string'); |
|
73 | + $yes_no_values = array( |
|
74 | + EE_Question_Option::new_instance(array( 'QSO_value' => false, 'QSO_desc' => __('No', 'event_espresso'))), |
|
75 | + EE_Question_Option::new_instance(array( 'QSO_value' => true, 'QSO_desc' => __('Yes', 'event_espresso'))) |
|
76 | + ); |
|
77 | + $sort_values = array( |
|
78 | + EE_Question_Option::new_instance(array( 'QSO_value' => 'ASC', 'QSO_desc' => __('ASC', 'event_espresso'))), |
|
79 | + EE_Question_Option::new_instance(array( 'QSO_value' => 'DESC', 'QSO_desc' => __('DESC', 'event_espresso'))) |
|
80 | + ); |
|
81 | 81 | |
82 | - ?> |
|
82 | + ?> |
|
83 | 83 | |
84 | 84 | <!-- Widget Title: Text Input --> |
85 | 85 | |
@@ -94,26 +94,26 @@ discard block |
||
94 | 94 | <?php _e('Event Category:', 'event_espresso'); ?> |
95 | 95 | </label> |
96 | 96 | <?php |
97 | - $event_categories = array(); |
|
98 | - /** @type EEM_Term $EEM_Term */ |
|
99 | - $EEM_Term = EE_Registry::instance()->load_model('Term'); |
|
100 | - $categories = $EEM_Term->get_all_ee_categories(true); |
|
101 | - if ($categories) { |
|
102 | - foreach ($categories as $category) { |
|
103 | - if ($category instanceof EE_Term) { |
|
104 | - $event_categories[] = EE_Question_Option::new_instance(array( 'QSO_value' => $category->get('slug'), 'QSO_desc' => $category->get('name'))); |
|
105 | - } |
|
106 | - } |
|
107 | - } |
|
108 | - array_unshift($event_categories, EE_Question_Option::new_instance(array( 'QSO_value' => '', 'QSO_desc' => __(' - display all - ', 'event_espresso')))); |
|
109 | - echo EEH_Form_Fields::select( |
|
110 | - __('Event Category:', 'event_espresso'), |
|
111 | - $instance['category_name'], |
|
112 | - $event_categories, |
|
113 | - $this->get_field_name('category_name'), |
|
114 | - $this->get_field_id('category_name') |
|
115 | - ); |
|
116 | - ?> |
|
97 | + $event_categories = array(); |
|
98 | + /** @type EEM_Term $EEM_Term */ |
|
99 | + $EEM_Term = EE_Registry::instance()->load_model('Term'); |
|
100 | + $categories = $EEM_Term->get_all_ee_categories(true); |
|
101 | + if ($categories) { |
|
102 | + foreach ($categories as $category) { |
|
103 | + if ($category instanceof EE_Term) { |
|
104 | + $event_categories[] = EE_Question_Option::new_instance(array( 'QSO_value' => $category->get('slug'), 'QSO_desc' => $category->get('name'))); |
|
105 | + } |
|
106 | + } |
|
107 | + } |
|
108 | + array_unshift($event_categories, EE_Question_Option::new_instance(array( 'QSO_value' => '', 'QSO_desc' => __(' - display all - ', 'event_espresso')))); |
|
109 | + echo EEH_Form_Fields::select( |
|
110 | + __('Event Category:', 'event_espresso'), |
|
111 | + $instance['category_name'], |
|
112 | + $event_categories, |
|
113 | + $this->get_field_name('category_name'), |
|
114 | + $this->get_field_id('category_name') |
|
115 | + ); |
|
116 | + ?> |
|
117 | 117 | </p> |
118 | 118 | <p> |
119 | 119 | <label for="<?php echo $this->get_field_id('limit'); ?>"> |
@@ -126,59 +126,59 @@ discard block |
||
126 | 126 | <?php _e('Show Expired Events:', 'event_espresso'); ?> |
127 | 127 | </label> |
128 | 128 | <?php |
129 | - echo EEH_Form_Fields::select( |
|
130 | - __('Show Expired Events:', 'event_espresso'), |
|
131 | - $instance['show_expired'], |
|
132 | - array( |
|
133 | - EE_Question_Option::new_instance(array( 'QSO_value' => 0, 'QSO_desc' => __('No', 'event_espresso'))), |
|
134 | - EE_Question_Option::new_instance(array( 'QSO_value' => 1, 'QSO_desc' => __('Yes', 'event_espresso'))), |
|
135 | - EE_Question_Option::new_instance(array( 'QSO_value' => 2, 'QSO_desc' => __('Show Only Expired', 'event_espresso'))), |
|
136 | - ), |
|
137 | - $this->get_field_name('show_expired'), |
|
138 | - $this->get_field_id('show_expired') |
|
139 | - ); |
|
140 | - ?> |
|
129 | + echo EEH_Form_Fields::select( |
|
130 | + __('Show Expired Events:', 'event_espresso'), |
|
131 | + $instance['show_expired'], |
|
132 | + array( |
|
133 | + EE_Question_Option::new_instance(array( 'QSO_value' => 0, 'QSO_desc' => __('No', 'event_espresso'))), |
|
134 | + EE_Question_Option::new_instance(array( 'QSO_value' => 1, 'QSO_desc' => __('Yes', 'event_espresso'))), |
|
135 | + EE_Question_Option::new_instance(array( 'QSO_value' => 2, 'QSO_desc' => __('Show Only Expired', 'event_espresso'))), |
|
136 | + ), |
|
137 | + $this->get_field_name('show_expired'), |
|
138 | + $this->get_field_id('show_expired') |
|
139 | + ); |
|
140 | + ?> |
|
141 | 141 | </p> |
142 | 142 | <p> |
143 | 143 | <label for="<?php echo $this->get_field_id('sort'); ?>"> |
144 | 144 | <?php _e('Sort Events:', 'event_espresso'); ?> |
145 | 145 | </label> |
146 | 146 | <?php |
147 | - echo EEH_Form_Fields::select( |
|
148 | - __('Sort Events:', 'event_espresso'), |
|
149 | - $instance['sort'], |
|
150 | - $sort_values, |
|
151 | - $this->get_field_name('sort'), |
|
152 | - $this->get_field_id('sort') |
|
153 | - ); |
|
154 | - ?> |
|
147 | + echo EEH_Form_Fields::select( |
|
148 | + __('Sort Events:', 'event_espresso'), |
|
149 | + $instance['sort'], |
|
150 | + $sort_values, |
|
151 | + $this->get_field_name('sort'), |
|
152 | + $this->get_field_id('sort') |
|
153 | + ); |
|
154 | + ?> |
|
155 | 155 | </p> |
156 | 156 | <p> |
157 | 157 | <label for="<?php echo $this->get_field_id('image_size'); ?>"> |
158 | 158 | <?php _e('Image Size:', 'event_espresso'); ?> |
159 | 159 | </label> |
160 | 160 | <?php |
161 | - $image_sizes = array(); |
|
162 | - $sizes = get_intermediate_image_sizes(); |
|
163 | - if ($sizes) { |
|
164 | - // loop thru images and create option objects out of them |
|
165 | - foreach ($sizes as $image_size) { |
|
166 | - $image_size = trim($image_size); |
|
167 | - // no big images plz |
|
168 | - if (! in_array($image_size, array( 'large', 'post-thumbnail' ))) { |
|
169 | - $image_sizes[] = EE_Question_Option::new_instance(array( 'QSO_value' => $image_size, 'QSO_desc' => $image_size )); |
|
170 | - } |
|
171 | - } |
|
172 | - $image_sizes[] = EE_Question_Option::new_instance(array( 'QSO_value' => 'none', 'QSO_desc' => __('don\'t show images', 'event_espresso') )); |
|
173 | - } |
|
174 | - echo EEH_Form_Fields::select( |
|
175 | - __('Image Size:', 'event_espresso'), |
|
176 | - $instance['image_size'], |
|
177 | - $image_sizes, |
|
178 | - $this->get_field_name('image_size'), |
|
179 | - $this->get_field_id('image_size') |
|
180 | - ); |
|
181 | - ?> |
|
161 | + $image_sizes = array(); |
|
162 | + $sizes = get_intermediate_image_sizes(); |
|
163 | + if ($sizes) { |
|
164 | + // loop thru images and create option objects out of them |
|
165 | + foreach ($sizes as $image_size) { |
|
166 | + $image_size = trim($image_size); |
|
167 | + // no big images plz |
|
168 | + if (! in_array($image_size, array( 'large', 'post-thumbnail' ))) { |
|
169 | + $image_sizes[] = EE_Question_Option::new_instance(array( 'QSO_value' => $image_size, 'QSO_desc' => $image_size )); |
|
170 | + } |
|
171 | + } |
|
172 | + $image_sizes[] = EE_Question_Option::new_instance(array( 'QSO_value' => 'none', 'QSO_desc' => __('don\'t show images', 'event_espresso') )); |
|
173 | + } |
|
174 | + echo EEH_Form_Fields::select( |
|
175 | + __('Image Size:', 'event_espresso'), |
|
176 | + $instance['image_size'], |
|
177 | + $image_sizes, |
|
178 | + $this->get_field_name('image_size'), |
|
179 | + $this->get_field_id('image_size') |
|
180 | + ); |
|
181 | + ?> |
|
182 | 182 | |
183 | 183 | </p> |
184 | 184 | <p> |
@@ -186,42 +186,42 @@ discard block |
||
186 | 186 | <?php _e('Show Description:', 'event_espresso'); ?> |
187 | 187 | </label> |
188 | 188 | <?php |
189 | - echo EEH_Form_Fields::select( |
|
190 | - __('Show Description:', 'event_espresso'), |
|
191 | - $instance['show_desc'], |
|
192 | - $yes_no_values, |
|
193 | - $this->get_field_name('show_desc'), |
|
194 | - $this->get_field_id('show_desc') |
|
195 | - ); |
|
196 | - ?> |
|
189 | + echo EEH_Form_Fields::select( |
|
190 | + __('Show Description:', 'event_espresso'), |
|
191 | + $instance['show_desc'], |
|
192 | + $yes_no_values, |
|
193 | + $this->get_field_name('show_desc'), |
|
194 | + $this->get_field_id('show_desc') |
|
195 | + ); |
|
196 | + ?> |
|
197 | 197 | </p> |
198 | 198 | <p> |
199 | 199 | <label for="<?php echo $this->get_field_id('show_dates'); ?>"> |
200 | 200 | <?php _e('Show Dates:', 'event_espresso'); ?> |
201 | 201 | </label> |
202 | 202 | <?php |
203 | - echo EEH_Form_Fields::select( |
|
204 | - __('Show Dates:', 'event_espresso'), |
|
205 | - $instance['show_dates'], |
|
206 | - $yes_no_values, |
|
207 | - $this->get_field_name('show_dates'), |
|
208 | - $this->get_field_id('show_dates') |
|
209 | - ); |
|
210 | - ?> |
|
203 | + echo EEH_Form_Fields::select( |
|
204 | + __('Show Dates:', 'event_espresso'), |
|
205 | + $instance['show_dates'], |
|
206 | + $yes_no_values, |
|
207 | + $this->get_field_name('show_dates'), |
|
208 | + $this->get_field_id('show_dates') |
|
209 | + ); |
|
210 | + ?> |
|
211 | 211 | </p> |
212 | 212 | <p> |
213 | 213 | <label for="<?php echo $this->get_field_id('show_everywhere'); ?>"> |
214 | 214 | <?php _e('Show on all Pages:', 'event_espresso'); ?> |
215 | 215 | </label> |
216 | 216 | <?php |
217 | - echo EEH_Form_Fields::select( |
|
218 | - __('Show on all Pages:', 'event_espresso'), |
|
219 | - $instance['show_everywhere'], |
|
220 | - $yes_no_values, |
|
221 | - $this->get_field_name('show_everywhere'), |
|
222 | - $this->get_field_id('show_everywhere') |
|
223 | - ); |
|
224 | - ?> |
|
217 | + echo EEH_Form_Fields::select( |
|
218 | + __('Show on all Pages:', 'event_espresso'), |
|
219 | + $instance['show_everywhere'], |
|
220 | + $yes_no_values, |
|
221 | + $this->get_field_name('show_everywhere'), |
|
222 | + $this->get_field_id('show_everywhere') |
|
223 | + ); |
|
224 | + ?> |
|
225 | 225 | </p> |
226 | 226 | <p> |
227 | 227 | <label for="<?php echo $this->get_field_id('date_limit'); ?>"> |
@@ -234,198 +234,198 @@ discard block |
||
234 | 234 | <?php _e('Show Date Range:', 'event_espresso'); ?> |
235 | 235 | </label> |
236 | 236 | <?php |
237 | - echo EEH_Form_Fields::select( |
|
238 | - __('Show Date Range:', 'event_espresso'), |
|
239 | - $instance['date_range'], |
|
240 | - $yes_no_values, |
|
241 | - $this->get_field_name('date_range'), |
|
242 | - $this->get_field_id('date_range') |
|
243 | - ); |
|
244 | - ?><span class="description"><br /><?php _e('This setting will replace the list of dates in the widget.', 'event_espresso'); ?></span> |
|
237 | + echo EEH_Form_Fields::select( |
|
238 | + __('Show Date Range:', 'event_espresso'), |
|
239 | + $instance['date_range'], |
|
240 | + $yes_no_values, |
|
241 | + $this->get_field_name('date_range'), |
|
242 | + $this->get_field_id('date_range') |
|
243 | + ); |
|
244 | + ?><span class="description"><br /><?php _e('This setting will replace the list of dates in the widget.', 'event_espresso'); ?></span> |
|
245 | 245 | </p> |
246 | 246 | |
247 | 247 | <?php |
248 | - } |
|
248 | + } |
|
249 | 249 | |
250 | 250 | |
251 | 251 | |
252 | - /** |
|
253 | - * Sanitize widget form values as they are saved. |
|
254 | - * |
|
255 | - * @see WP_Widget::update() |
|
256 | - * |
|
257 | - * @param array $new_instance Values just sent to be saved. |
|
258 | - * @param array $old_instance Previously saved values from database. |
|
259 | - * |
|
260 | - * @return array Updated safe values to be saved. |
|
261 | - */ |
|
262 | - public function update($new_instance, $old_instance) |
|
263 | - { |
|
264 | - $instance = $old_instance; |
|
265 | - $instance['title'] = ! empty($new_instance['title']) ? strip_tags($new_instance['title']) : ''; |
|
266 | - $instance['category_name'] = $new_instance['category_name']; |
|
267 | - $instance['show_expired'] = $new_instance['show_expired']; |
|
268 | - $instance['limit'] = $new_instance['limit']; |
|
269 | - $instance['sort'] = $new_instance['sort']; |
|
270 | - $instance['image_size'] = $new_instance['image_size']; |
|
271 | - $instance['show_desc'] = $new_instance['show_desc']; |
|
272 | - $instance['show_dates'] = $new_instance['show_dates']; |
|
273 | - $instance['show_everywhere'] = $new_instance['show_everywhere']; |
|
274 | - $instance['date_limit'] = $new_instance['date_limit']; |
|
275 | - $instance['date_range'] = $new_instance['date_range']; |
|
276 | - return $instance; |
|
277 | - } |
|
252 | + /** |
|
253 | + * Sanitize widget form values as they are saved. |
|
254 | + * |
|
255 | + * @see WP_Widget::update() |
|
256 | + * |
|
257 | + * @param array $new_instance Values just sent to be saved. |
|
258 | + * @param array $old_instance Previously saved values from database. |
|
259 | + * |
|
260 | + * @return array Updated safe values to be saved. |
|
261 | + */ |
|
262 | + public function update($new_instance, $old_instance) |
|
263 | + { |
|
264 | + $instance = $old_instance; |
|
265 | + $instance['title'] = ! empty($new_instance['title']) ? strip_tags($new_instance['title']) : ''; |
|
266 | + $instance['category_name'] = $new_instance['category_name']; |
|
267 | + $instance['show_expired'] = $new_instance['show_expired']; |
|
268 | + $instance['limit'] = $new_instance['limit']; |
|
269 | + $instance['sort'] = $new_instance['sort']; |
|
270 | + $instance['image_size'] = $new_instance['image_size']; |
|
271 | + $instance['show_desc'] = $new_instance['show_desc']; |
|
272 | + $instance['show_dates'] = $new_instance['show_dates']; |
|
273 | + $instance['show_everywhere'] = $new_instance['show_everywhere']; |
|
274 | + $instance['date_limit'] = $new_instance['date_limit']; |
|
275 | + $instance['date_range'] = $new_instance['date_range']; |
|
276 | + return $instance; |
|
277 | + } |
|
278 | 278 | |
279 | 279 | |
280 | 280 | |
281 | - /** |
|
282 | - * Front-end display of widget. |
|
283 | - * |
|
284 | - * @see WP_Widget::widget() |
|
285 | - * |
|
286 | - * @param array $args Widget arguments. |
|
287 | - * @param array $instance Saved values from database. |
|
288 | - */ |
|
289 | - public function widget($args, $instance) |
|
290 | - { |
|
281 | + /** |
|
282 | + * Front-end display of widget. |
|
283 | + * |
|
284 | + * @see WP_Widget::widget() |
|
285 | + * |
|
286 | + * @param array $args Widget arguments. |
|
287 | + * @param array $instance Saved values from database. |
|
288 | + */ |
|
289 | + public function widget($args, $instance) |
|
290 | + { |
|
291 | 291 | |
292 | - global $post; |
|
293 | - // make sure there is some kinda post object |
|
294 | - if ($post instanceof WP_Post) { |
|
295 | - $before_widget = ''; |
|
296 | - $before_title = ''; |
|
297 | - $after_title = ''; |
|
298 | - $after_widget = ''; |
|
299 | - // but NOT an events archives page, cuz that would be like two event lists on the same page |
|
300 | - $show_everywhere = isset($instance['show_everywhere']) ? (bool) absint($instance['show_everywhere']) : true; |
|
301 | - if ($show_everywhere || ! ( $post->post_type == 'espresso_events' && is_archive() )) { |
|
302 | - // let's use some of the event helper functions' |
|
303 | - // make separate vars out of attributes |
|
292 | + global $post; |
|
293 | + // make sure there is some kinda post object |
|
294 | + if ($post instanceof WP_Post) { |
|
295 | + $before_widget = ''; |
|
296 | + $before_title = ''; |
|
297 | + $after_title = ''; |
|
298 | + $after_widget = ''; |
|
299 | + // but NOT an events archives page, cuz that would be like two event lists on the same page |
|
300 | + $show_everywhere = isset($instance['show_everywhere']) ? (bool) absint($instance['show_everywhere']) : true; |
|
301 | + if ($show_everywhere || ! ( $post->post_type == 'espresso_events' && is_archive() )) { |
|
302 | + // let's use some of the event helper functions' |
|
303 | + // make separate vars out of attributes |
|
304 | 304 | |
305 | 305 | |
306 | - extract($args); |
|
306 | + extract($args); |
|
307 | 307 | |
308 | - // add function to make the title a link |
|
309 | - add_filter('widget_title', array($this, 'make_the_title_a_link'), 15); |
|
308 | + // add function to make the title a link |
|
309 | + add_filter('widget_title', array($this, 'make_the_title_a_link'), 15); |
|
310 | 310 | |
311 | - $title = isset($instance['title']) && ! empty($instance['title']) ? $instance['title'] : ''; |
|
312 | - // filter the title |
|
313 | - $title = apply_filters('widget_title', $title); |
|
311 | + $title = isset($instance['title']) && ! empty($instance['title']) ? $instance['title'] : ''; |
|
312 | + // filter the title |
|
313 | + $title = apply_filters('widget_title', $title); |
|
314 | 314 | |
315 | - // remove the function from the filter, so it does not affect other widgets |
|
316 | - remove_filter('widget_title', array($this, 'make_the_title_a_link'), 15); |
|
315 | + // remove the function from the filter, so it does not affect other widgets |
|
316 | + remove_filter('widget_title', array($this, 'make_the_title_a_link'), 15); |
|
317 | 317 | |
318 | - // Before widget (defined by themes). |
|
319 | - echo $before_widget; |
|
320 | - // Display the widget title if one was input (before and after defined by themes). |
|
321 | - if (! empty($title)) { |
|
322 | - echo $before_title . $title . $after_title; |
|
323 | - } |
|
324 | - // grab widget settings |
|
325 | - $category = isset($instance['category_name']) && ! empty($instance['category_name']) ? $instance['category_name'] : false; |
|
326 | - $show_expired = isset($instance['show_expired']) ? absint($instance['show_expired']) : 0; |
|
327 | - $image_size = isset($instance['image_size']) && ! empty($instance['image_size']) ? $instance['image_size'] : 'medium'; |
|
328 | - $show_desc = isset($instance['show_desc']) ? (bool) absint($instance['show_desc']) : true; |
|
329 | - $show_dates = isset($instance['show_dates']) ? (bool) absint($instance['show_dates']) : true; |
|
330 | - $date_limit = isset($instance['date_limit']) && ! empty($instance['date_limit']) ? $instance['date_limit'] : null; |
|
331 | - $date_range = isset($instance['date_range']) && ! empty($instance['date_range']) ? $instance['date_range'] : false; |
|
332 | - // start to build our where clause |
|
333 | - $where = array( |
|
318 | + // Before widget (defined by themes). |
|
319 | + echo $before_widget; |
|
320 | + // Display the widget title if one was input (before and after defined by themes). |
|
321 | + if (! empty($title)) { |
|
322 | + echo $before_title . $title . $after_title; |
|
323 | + } |
|
324 | + // grab widget settings |
|
325 | + $category = isset($instance['category_name']) && ! empty($instance['category_name']) ? $instance['category_name'] : false; |
|
326 | + $show_expired = isset($instance['show_expired']) ? absint($instance['show_expired']) : 0; |
|
327 | + $image_size = isset($instance['image_size']) && ! empty($instance['image_size']) ? $instance['image_size'] : 'medium'; |
|
328 | + $show_desc = isset($instance['show_desc']) ? (bool) absint($instance['show_desc']) : true; |
|
329 | + $show_dates = isset($instance['show_dates']) ? (bool) absint($instance['show_dates']) : true; |
|
330 | + $date_limit = isset($instance['date_limit']) && ! empty($instance['date_limit']) ? $instance['date_limit'] : null; |
|
331 | + $date_range = isset($instance['date_range']) && ! empty($instance['date_range']) ? $instance['date_range'] : false; |
|
332 | + // start to build our where clause |
|
333 | + $where = array( |
|
334 | 334 | // 'Datetime.DTT_is_primary' => 1, |
335 | - 'status' => array( 'IN', array( 'publish', 'sold_out' ) ) |
|
336 | - ); |
|
337 | - // add category |
|
338 | - if ($category) { |
|
339 | - $where['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
340 | - $where['Term_Taxonomy.Term.slug'] = $category; |
|
341 | - } |
|
342 | - // if NOT expired then we want events that start today or in the future |
|
343 | - // if NOT show expired then we want events that start today or in the future |
|
344 | - if ($show_expired == 0) { |
|
345 | - $where['Datetime.DTT_EVT_end'] = array( '>=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end') ); |
|
346 | - } |
|
347 | - // if show ONLY expired we want events that ended prior to today |
|
348 | - if ($show_expired == 2) { |
|
349 | - $where['Datetime.DTT_EVT_end'] = array( '<=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start') ); |
|
350 | - } |
|
351 | - // allow $where to be filtered |
|
352 | - $where = apply_filters('FHEE__EEW_Upcoming_Events__widget__where', $where, $category, $show_expired); |
|
353 | - // run the query |
|
354 | - $events = EE_Registry::instance()->load_model('Event')->get_all(array( |
|
355 | - $where, |
|
356 | - 'limit' => isset($instance['limit']) && $instance['limit'] > 0 |
|
357 | - ? '0,' . $instance['limit'] |
|
358 | - : '0,10', |
|
359 | - 'order_by' => 'Datetime.DTT_EVT_start', |
|
360 | - 'order' => isset($instance['sort']) ? $instance['sort'] : 'ASC', |
|
361 | - 'group_by' => 'EVT_ID' |
|
362 | - )); |
|
335 | + 'status' => array( 'IN', array( 'publish', 'sold_out' ) ) |
|
336 | + ); |
|
337 | + // add category |
|
338 | + if ($category) { |
|
339 | + $where['Term_Taxonomy.taxonomy'] = 'espresso_event_categories'; |
|
340 | + $where['Term_Taxonomy.Term.slug'] = $category; |
|
341 | + } |
|
342 | + // if NOT expired then we want events that start today or in the future |
|
343 | + // if NOT show expired then we want events that start today or in the future |
|
344 | + if ($show_expired == 0) { |
|
345 | + $where['Datetime.DTT_EVT_end'] = array( '>=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end') ); |
|
346 | + } |
|
347 | + // if show ONLY expired we want events that ended prior to today |
|
348 | + if ($show_expired == 2) { |
|
349 | + $where['Datetime.DTT_EVT_end'] = array( '<=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start') ); |
|
350 | + } |
|
351 | + // allow $where to be filtered |
|
352 | + $where = apply_filters('FHEE__EEW_Upcoming_Events__widget__where', $where, $category, $show_expired); |
|
353 | + // run the query |
|
354 | + $events = EE_Registry::instance()->load_model('Event')->get_all(array( |
|
355 | + $where, |
|
356 | + 'limit' => isset($instance['limit']) && $instance['limit'] > 0 |
|
357 | + ? '0,' . $instance['limit'] |
|
358 | + : '0,10', |
|
359 | + 'order_by' => 'Datetime.DTT_EVT_start', |
|
360 | + 'order' => isset($instance['sort']) ? $instance['sort'] : 'ASC', |
|
361 | + 'group_by' => 'EVT_ID' |
|
362 | + )); |
|
363 | 363 | |
364 | - if (! empty($events)) { |
|
365 | - echo '<ul class="ee-upcoming-events-widget-ul">'; |
|
366 | - foreach ($events as $event) { |
|
367 | - if ($event instanceof EE_Event && ( !is_single() || $post->ID != $event->ID() )) { |
|
368 | - // printr( $event, '$event <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
|
369 | - echo '<li id="ee-upcoming-events-widget-li-' . $event->ID() . '" class="ee-upcoming-events-widget-li">'; |
|
370 | - // how big is the event name ? |
|
371 | - $name_length = strlen($event->name()); |
|
372 | - switch ($name_length) { |
|
373 | - case $name_length > 70: |
|
374 | - $len_class = ' three-line'; |
|
375 | - break; |
|
376 | - case $name_length > 35: |
|
377 | - $len_class = ' two-line'; |
|
378 | - break; |
|
379 | - default: |
|
380 | - $len_class = ' one-line'; |
|
381 | - } |
|
382 | - $event_url = apply_filters('FHEE_EEW_Upcoming_Events__widget__event_url', $event->get_permalink(), $event); |
|
383 | - echo '<h5 class="ee-upcoming-events-widget-title-h5"><a class="ee-widget-event-name-a' . $len_class . '" href="' . $event_url . '">' . $event->name() . '</a></h5>'; |
|
384 | - if (post_password_required($event->ID())) { |
|
385 | - $pswd_form = apply_filters('FHEE_EEW_Upcoming_Events__widget__password_form', get_the_password_form($event->ID()), $event); |
|
386 | - echo $pswd_form; |
|
387 | - } else { |
|
388 | - if (has_post_thumbnail($event->ID()) && $image_size != 'none') { |
|
389 | - echo '<div class="ee-upcoming-events-widget-img-dv"><a class="ee-upcoming-events-widget-img" href="' . $event_url . '">' . get_the_post_thumbnail($event->ID(), $image_size) . '</a></div>'; |
|
390 | - } |
|
391 | - $desc = $event->short_description(25); |
|
392 | - if ($show_dates) { |
|
393 | - $date_format = apply_filters('FHEE__espresso_event_date_range__date_format', get_option('date_format')); |
|
394 | - $time_format = apply_filters('FHEE__espresso_event_date_range__time_format', get_option('time_format')); |
|
395 | - $single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', get_option('date_format')); |
|
396 | - $single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', get_option('time_format')); |
|
397 | - if ($date_range == true) { |
|
398 | - echo espresso_event_date_range($date_format, $time_format, $single_date_format, $single_time_format, $event->ID()); |
|
399 | - } else { |
|
400 | - echo espresso_list_of_event_dates($event->ID(), $date_format, $time_format, false, null, true, true, $date_limit); |
|
401 | - } |
|
402 | - } |
|
403 | - if ($show_desc && $desc) { |
|
404 | - echo '<p style="margin-top: .5em">' . $desc . '</p>'; |
|
405 | - } |
|
406 | - } |
|
407 | - echo '</li>'; |
|
408 | - } |
|
409 | - } |
|
410 | - echo '</ul>'; |
|
411 | - } |
|
412 | - // After widget (defined by themes). |
|
413 | - echo $after_widget; |
|
414 | - } |
|
415 | - } |
|
416 | - } |
|
364 | + if (! empty($events)) { |
|
365 | + echo '<ul class="ee-upcoming-events-widget-ul">'; |
|
366 | + foreach ($events as $event) { |
|
367 | + if ($event instanceof EE_Event && ( !is_single() || $post->ID != $event->ID() )) { |
|
368 | + // printr( $event, '$event <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
|
369 | + echo '<li id="ee-upcoming-events-widget-li-' . $event->ID() . '" class="ee-upcoming-events-widget-li">'; |
|
370 | + // how big is the event name ? |
|
371 | + $name_length = strlen($event->name()); |
|
372 | + switch ($name_length) { |
|
373 | + case $name_length > 70: |
|
374 | + $len_class = ' three-line'; |
|
375 | + break; |
|
376 | + case $name_length > 35: |
|
377 | + $len_class = ' two-line'; |
|
378 | + break; |
|
379 | + default: |
|
380 | + $len_class = ' one-line'; |
|
381 | + } |
|
382 | + $event_url = apply_filters('FHEE_EEW_Upcoming_Events__widget__event_url', $event->get_permalink(), $event); |
|
383 | + echo '<h5 class="ee-upcoming-events-widget-title-h5"><a class="ee-widget-event-name-a' . $len_class . '" href="' . $event_url . '">' . $event->name() . '</a></h5>'; |
|
384 | + if (post_password_required($event->ID())) { |
|
385 | + $pswd_form = apply_filters('FHEE_EEW_Upcoming_Events__widget__password_form', get_the_password_form($event->ID()), $event); |
|
386 | + echo $pswd_form; |
|
387 | + } else { |
|
388 | + if (has_post_thumbnail($event->ID()) && $image_size != 'none') { |
|
389 | + echo '<div class="ee-upcoming-events-widget-img-dv"><a class="ee-upcoming-events-widget-img" href="' . $event_url . '">' . get_the_post_thumbnail($event->ID(), $image_size) . '</a></div>'; |
|
390 | + } |
|
391 | + $desc = $event->short_description(25); |
|
392 | + if ($show_dates) { |
|
393 | + $date_format = apply_filters('FHEE__espresso_event_date_range__date_format', get_option('date_format')); |
|
394 | + $time_format = apply_filters('FHEE__espresso_event_date_range__time_format', get_option('time_format')); |
|
395 | + $single_date_format = apply_filters('FHEE__espresso_event_date_range__single_date_format', get_option('date_format')); |
|
396 | + $single_time_format = apply_filters('FHEE__espresso_event_date_range__single_time_format', get_option('time_format')); |
|
397 | + if ($date_range == true) { |
|
398 | + echo espresso_event_date_range($date_format, $time_format, $single_date_format, $single_time_format, $event->ID()); |
|
399 | + } else { |
|
400 | + echo espresso_list_of_event_dates($event->ID(), $date_format, $time_format, false, null, true, true, $date_limit); |
|
401 | + } |
|
402 | + } |
|
403 | + if ($show_desc && $desc) { |
|
404 | + echo '<p style="margin-top: .5em">' . $desc . '</p>'; |
|
405 | + } |
|
406 | + } |
|
407 | + echo '</li>'; |
|
408 | + } |
|
409 | + } |
|
410 | + echo '</ul>'; |
|
411 | + } |
|
412 | + // After widget (defined by themes). |
|
413 | + echo $after_widget; |
|
414 | + } |
|
415 | + } |
|
416 | + } |
|
417 | 417 | |
418 | 418 | |
419 | 419 | |
420 | - /** |
|
421 | - * make_the_title_a_link |
|
422 | - * callback for widget_title filter |
|
423 | - * |
|
424 | - * @param $title |
|
425 | - * @return string |
|
426 | - */ |
|
427 | - public function make_the_title_a_link($title) |
|
428 | - { |
|
429 | - return '<a href="' . EEH_Event_View::event_archive_url() . '">' . $title . '</a>'; |
|
430 | - } |
|
420 | + /** |
|
421 | + * make_the_title_a_link |
|
422 | + * callback for widget_title filter |
|
423 | + * |
|
424 | + * @param $title |
|
425 | + * @return string |
|
426 | + */ |
|
427 | + public function make_the_title_a_link($title) |
|
428 | + { |
|
429 | + return '<a href="' . EEH_Event_View::event_archive_url() . '">' . $title . '</a>'; |
|
430 | + } |
|
431 | 431 | } |
@@ -35,7 +35,7 @@ discard block |
||
35 | 35 | { |
36 | 36 | parent::__construct( |
37 | 37 | __('Event Espresso Upcoming Events', 'event_espresso'), |
38 | - array( 'description' => __('A widget to display your upcoming events.', 'event_espresso')) |
|
38 | + array('description' => __('A widget to display your upcoming events.', 'event_espresso')) |
|
39 | 39 | ); |
40 | 40 | } |
41 | 41 | |
@@ -71,12 +71,12 @@ discard block |
||
71 | 71 | // don't add HTML labels for EE_Form_Fields generated inputs |
72 | 72 | add_filter('FHEE__EEH_Form_Fields__label_html', '__return_empty_string'); |
73 | 73 | $yes_no_values = array( |
74 | - EE_Question_Option::new_instance(array( 'QSO_value' => false, 'QSO_desc' => __('No', 'event_espresso'))), |
|
75 | - EE_Question_Option::new_instance(array( 'QSO_value' => true, 'QSO_desc' => __('Yes', 'event_espresso'))) |
|
74 | + EE_Question_Option::new_instance(array('QSO_value' => false, 'QSO_desc' => __('No', 'event_espresso'))), |
|
75 | + EE_Question_Option::new_instance(array('QSO_value' => true, 'QSO_desc' => __('Yes', 'event_espresso'))) |
|
76 | 76 | ); |
77 | 77 | $sort_values = array( |
78 | - EE_Question_Option::new_instance(array( 'QSO_value' => 'ASC', 'QSO_desc' => __('ASC', 'event_espresso'))), |
|
79 | - EE_Question_Option::new_instance(array( 'QSO_value' => 'DESC', 'QSO_desc' => __('DESC', 'event_espresso'))) |
|
78 | + EE_Question_Option::new_instance(array('QSO_value' => 'ASC', 'QSO_desc' => __('ASC', 'event_espresso'))), |
|
79 | + EE_Question_Option::new_instance(array('QSO_value' => 'DESC', 'QSO_desc' => __('DESC', 'event_espresso'))) |
|
80 | 80 | ); |
81 | 81 | |
82 | 82 | ?> |
@@ -101,11 +101,11 @@ discard block |
||
101 | 101 | if ($categories) { |
102 | 102 | foreach ($categories as $category) { |
103 | 103 | if ($category instanceof EE_Term) { |
104 | - $event_categories[] = EE_Question_Option::new_instance(array( 'QSO_value' => $category->get('slug'), 'QSO_desc' => $category->get('name'))); |
|
104 | + $event_categories[] = EE_Question_Option::new_instance(array('QSO_value' => $category->get('slug'), 'QSO_desc' => $category->get('name'))); |
|
105 | 105 | } |
106 | 106 | } |
107 | 107 | } |
108 | - array_unshift($event_categories, EE_Question_Option::new_instance(array( 'QSO_value' => '', 'QSO_desc' => __(' - display all - ', 'event_espresso')))); |
|
108 | + array_unshift($event_categories, EE_Question_Option::new_instance(array('QSO_value' => '', 'QSO_desc' => __(' - display all - ', 'event_espresso')))); |
|
109 | 109 | echo EEH_Form_Fields::select( |
110 | 110 | __('Event Category:', 'event_espresso'), |
111 | 111 | $instance['category_name'], |
@@ -130,9 +130,9 @@ discard block |
||
130 | 130 | __('Show Expired Events:', 'event_espresso'), |
131 | 131 | $instance['show_expired'], |
132 | 132 | array( |
133 | - EE_Question_Option::new_instance(array( 'QSO_value' => 0, 'QSO_desc' => __('No', 'event_espresso'))), |
|
134 | - EE_Question_Option::new_instance(array( 'QSO_value' => 1, 'QSO_desc' => __('Yes', 'event_espresso'))), |
|
135 | - EE_Question_Option::new_instance(array( 'QSO_value' => 2, 'QSO_desc' => __('Show Only Expired', 'event_espresso'))), |
|
133 | + EE_Question_Option::new_instance(array('QSO_value' => 0, 'QSO_desc' => __('No', 'event_espresso'))), |
|
134 | + EE_Question_Option::new_instance(array('QSO_value' => 1, 'QSO_desc' => __('Yes', 'event_espresso'))), |
|
135 | + EE_Question_Option::new_instance(array('QSO_value' => 2, 'QSO_desc' => __('Show Only Expired', 'event_espresso'))), |
|
136 | 136 | ), |
137 | 137 | $this->get_field_name('show_expired'), |
138 | 138 | $this->get_field_id('show_expired') |
@@ -165,11 +165,11 @@ discard block |
||
165 | 165 | foreach ($sizes as $image_size) { |
166 | 166 | $image_size = trim($image_size); |
167 | 167 | // no big images plz |
168 | - if (! in_array($image_size, array( 'large', 'post-thumbnail' ))) { |
|
169 | - $image_sizes[] = EE_Question_Option::new_instance(array( 'QSO_value' => $image_size, 'QSO_desc' => $image_size )); |
|
168 | + if ( ! in_array($image_size, array('large', 'post-thumbnail'))) { |
|
169 | + $image_sizes[] = EE_Question_Option::new_instance(array('QSO_value' => $image_size, 'QSO_desc' => $image_size)); |
|
170 | 170 | } |
171 | 171 | } |
172 | - $image_sizes[] = EE_Question_Option::new_instance(array( 'QSO_value' => 'none', 'QSO_desc' => __('don\'t show images', 'event_espresso') )); |
|
172 | + $image_sizes[] = EE_Question_Option::new_instance(array('QSO_value' => 'none', 'QSO_desc' => __('don\'t show images', 'event_espresso'))); |
|
173 | 173 | } |
174 | 174 | echo EEH_Form_Fields::select( |
175 | 175 | __('Image Size:', 'event_espresso'), |
@@ -298,7 +298,7 @@ discard block |
||
298 | 298 | $after_widget = ''; |
299 | 299 | // but NOT an events archives page, cuz that would be like two event lists on the same page |
300 | 300 | $show_everywhere = isset($instance['show_everywhere']) ? (bool) absint($instance['show_everywhere']) : true; |
301 | - if ($show_everywhere || ! ( $post->post_type == 'espresso_events' && is_archive() )) { |
|
301 | + if ($show_everywhere || ! ($post->post_type == 'espresso_events' && is_archive())) { |
|
302 | 302 | // let's use some of the event helper functions' |
303 | 303 | // make separate vars out of attributes |
304 | 304 | |
@@ -318,8 +318,8 @@ discard block |
||
318 | 318 | // Before widget (defined by themes). |
319 | 319 | echo $before_widget; |
320 | 320 | // Display the widget title if one was input (before and after defined by themes). |
321 | - if (! empty($title)) { |
|
322 | - echo $before_title . $title . $after_title; |
|
321 | + if ( ! empty($title)) { |
|
322 | + echo $before_title.$title.$after_title; |
|
323 | 323 | } |
324 | 324 | // grab widget settings |
325 | 325 | $category = isset($instance['category_name']) && ! empty($instance['category_name']) ? $instance['category_name'] : false; |
@@ -332,7 +332,7 @@ discard block |
||
332 | 332 | // start to build our where clause |
333 | 333 | $where = array( |
334 | 334 | // 'Datetime.DTT_is_primary' => 1, |
335 | - 'status' => array( 'IN', array( 'publish', 'sold_out' ) ) |
|
335 | + 'status' => array('IN', array('publish', 'sold_out')) |
|
336 | 336 | ); |
337 | 337 | // add category |
338 | 338 | if ($category) { |
@@ -342,11 +342,11 @@ discard block |
||
342 | 342 | // if NOT expired then we want events that start today or in the future |
343 | 343 | // if NOT show expired then we want events that start today or in the future |
344 | 344 | if ($show_expired == 0) { |
345 | - $where['Datetime.DTT_EVT_end'] = array( '>=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end') ); |
|
345 | + $where['Datetime.DTT_EVT_end'] = array('>=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_end')); |
|
346 | 346 | } |
347 | 347 | // if show ONLY expired we want events that ended prior to today |
348 | 348 | if ($show_expired == 2) { |
349 | - $where['Datetime.DTT_EVT_end'] = array( '<=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start') ); |
|
349 | + $where['Datetime.DTT_EVT_end'] = array('<=', EEM_Datetime::instance()->current_time_for_query('DTT_EVT_start')); |
|
350 | 350 | } |
351 | 351 | // allow $where to be filtered |
352 | 352 | $where = apply_filters('FHEE__EEW_Upcoming_Events__widget__where', $where, $category, $show_expired); |
@@ -354,39 +354,39 @@ discard block |
||
354 | 354 | $events = EE_Registry::instance()->load_model('Event')->get_all(array( |
355 | 355 | $where, |
356 | 356 | 'limit' => isset($instance['limit']) && $instance['limit'] > 0 |
357 | - ? '0,' . $instance['limit'] |
|
357 | + ? '0,'.$instance['limit'] |
|
358 | 358 | : '0,10', |
359 | 359 | 'order_by' => 'Datetime.DTT_EVT_start', |
360 | 360 | 'order' => isset($instance['sort']) ? $instance['sort'] : 'ASC', |
361 | 361 | 'group_by' => 'EVT_ID' |
362 | 362 | )); |
363 | 363 | |
364 | - if (! empty($events)) { |
|
364 | + if ( ! empty($events)) { |
|
365 | 365 | echo '<ul class="ee-upcoming-events-widget-ul">'; |
366 | 366 | foreach ($events as $event) { |
367 | - if ($event instanceof EE_Event && ( !is_single() || $post->ID != $event->ID() )) { |
|
367 | + if ($event instanceof EE_Event && ( ! is_single() || $post->ID != $event->ID())) { |
|
368 | 368 | // printr( $event, '$event <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
369 | - echo '<li id="ee-upcoming-events-widget-li-' . $event->ID() . '" class="ee-upcoming-events-widget-li">'; |
|
369 | + echo '<li id="ee-upcoming-events-widget-li-'.$event->ID().'" class="ee-upcoming-events-widget-li">'; |
|
370 | 370 | // how big is the event name ? |
371 | 371 | $name_length = strlen($event->name()); |
372 | 372 | switch ($name_length) { |
373 | 373 | case $name_length > 70: |
374 | - $len_class = ' three-line'; |
|
374 | + $len_class = ' three-line'; |
|
375 | 375 | break; |
376 | 376 | case $name_length > 35: |
377 | - $len_class = ' two-line'; |
|
377 | + $len_class = ' two-line'; |
|
378 | 378 | break; |
379 | 379 | default: |
380 | - $len_class = ' one-line'; |
|
380 | + $len_class = ' one-line'; |
|
381 | 381 | } |
382 | 382 | $event_url = apply_filters('FHEE_EEW_Upcoming_Events__widget__event_url', $event->get_permalink(), $event); |
383 | - echo '<h5 class="ee-upcoming-events-widget-title-h5"><a class="ee-widget-event-name-a' . $len_class . '" href="' . $event_url . '">' . $event->name() . '</a></h5>'; |
|
383 | + echo '<h5 class="ee-upcoming-events-widget-title-h5"><a class="ee-widget-event-name-a'.$len_class.'" href="'.$event_url.'">'.$event->name().'</a></h5>'; |
|
384 | 384 | if (post_password_required($event->ID())) { |
385 | 385 | $pswd_form = apply_filters('FHEE_EEW_Upcoming_Events__widget__password_form', get_the_password_form($event->ID()), $event); |
386 | 386 | echo $pswd_form; |
387 | 387 | } else { |
388 | 388 | if (has_post_thumbnail($event->ID()) && $image_size != 'none') { |
389 | - echo '<div class="ee-upcoming-events-widget-img-dv"><a class="ee-upcoming-events-widget-img" href="' . $event_url . '">' . get_the_post_thumbnail($event->ID(), $image_size) . '</a></div>'; |
|
389 | + echo '<div class="ee-upcoming-events-widget-img-dv"><a class="ee-upcoming-events-widget-img" href="'.$event_url.'">'.get_the_post_thumbnail($event->ID(), $image_size).'</a></div>'; |
|
390 | 390 | } |
391 | 391 | $desc = $event->short_description(25); |
392 | 392 | if ($show_dates) { |
@@ -401,7 +401,7 @@ discard block |
||
401 | 401 | } |
402 | 402 | } |
403 | 403 | if ($show_desc && $desc) { |
404 | - echo '<p style="margin-top: .5em">' . $desc . '</p>'; |
|
404 | + echo '<p style="margin-top: .5em">'.$desc.'</p>'; |
|
405 | 405 | } |
406 | 406 | } |
407 | 407 | echo '</li>'; |
@@ -426,6 +426,6 @@ discard block |
||
426 | 426 | */ |
427 | 427 | public function make_the_title_a_link($title) |
428 | 428 | { |
429 | - return '<a href="' . EEH_Event_View::event_archive_url() . '">' . $title . '</a>'; |
|
429 | + return '<a href="'.EEH_Event_View::event_archive_url().'">'.$title.'</a>'; |
|
430 | 430 | } |
431 | 431 | } |
@@ -6,17 +6,17 @@ |
||
6 | 6 | interface EEI_Contact |
7 | 7 | { |
8 | 8 | |
9 | - public function fname(); |
|
9 | + public function fname(); |
|
10 | 10 | |
11 | 11 | |
12 | 12 | |
13 | - public function lname(); |
|
13 | + public function lname(); |
|
14 | 14 | |
15 | 15 | |
16 | 16 | |
17 | - public function email(); |
|
17 | + public function email(); |
|
18 | 18 | |
19 | 19 | |
20 | 20 | |
21 | - public function phone(); |
|
21 | + public function phone(); |
|
22 | 22 | } |
@@ -6,33 +6,33 @@ |
||
6 | 6 | interface EEI_Has_Address |
7 | 7 | { |
8 | 8 | |
9 | - public function address(); |
|
9 | + public function address(); |
|
10 | 10 | |
11 | 11 | |
12 | 12 | |
13 | - public function address2(); |
|
13 | + public function address2(); |
|
14 | 14 | |
15 | 15 | |
16 | 16 | |
17 | - public function city(); |
|
17 | + public function city(); |
|
18 | 18 | |
19 | 19 | |
20 | 20 | |
21 | - public function state_ID(); |
|
21 | + public function state_ID(); |
|
22 | 22 | |
23 | 23 | |
24 | 24 | |
25 | - public function state_obj(); |
|
25 | + public function state_obj(); |
|
26 | 26 | |
27 | 27 | |
28 | 28 | |
29 | - public function country_ID(); |
|
29 | + public function country_ID(); |
|
30 | 30 | |
31 | 31 | |
32 | 32 | |
33 | - public function country_obj(); |
|
33 | + public function country_obj(); |
|
34 | 34 | |
35 | 35 | |
36 | 36 | |
37 | - public function zip(); |
|
37 | + public function zip(); |
|
38 | 38 | } |
@@ -6,22 +6,22 @@ |
||
6 | 6 | interface EEHI_Template |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * EEH_Template::format_currency |
|
11 | - * This helper takes a raw float value and formats it according to the default config country currency settings, or the country currency settings from the supplied country ISO code |
|
12 | - * |
|
13 | - * @param float $amount raw money value |
|
14 | - * @param boolean $return_raw whether to return the formatted float value only with no currency sign or code |
|
15 | - * @param boolean $display_code whether to display the country code (USD). Default = TRUE |
|
16 | - * @param string $CNT_ISO 2 letter ISO code for a country |
|
17 | - * @param string $cur_code_span_class |
|
18 | - * @return string the html output for the formatted money value |
|
19 | - */ |
|
20 | - public static function format_currency( |
|
21 | - $amount = null, |
|
22 | - $return_raw = false, |
|
23 | - $display_code = true, |
|
24 | - $CNT_ISO = '', |
|
25 | - $cur_code_span_class = 'currency-code' |
|
26 | - ); |
|
9 | + /** |
|
10 | + * EEH_Template::format_currency |
|
11 | + * This helper takes a raw float value and formats it according to the default config country currency settings, or the country currency settings from the supplied country ISO code |
|
12 | + * |
|
13 | + * @param float $amount raw money value |
|
14 | + * @param boolean $return_raw whether to return the formatted float value only with no currency sign or code |
|
15 | + * @param boolean $display_code whether to display the country code (USD). Default = TRUE |
|
16 | + * @param string $CNT_ISO 2 letter ISO code for a country |
|
17 | + * @param string $cur_code_span_class |
|
18 | + * @return string the html output for the formatted money value |
|
19 | + */ |
|
20 | + public static function format_currency( |
|
21 | + $amount = null, |
|
22 | + $return_raw = false, |
|
23 | + $display_code = true, |
|
24 | + $CNT_ISO = '', |
|
25 | + $cur_code_span_class = 'currency-code' |
|
26 | + ); |
|
27 | 27 | } |
@@ -6,27 +6,27 @@ |
||
6 | 6 | interface EEHI_File |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * ensure_file_exists_and_is_writable |
|
11 | - * ensures that a file exists and is writable, will attempt to create file if it does not exist |
|
12 | - * |
|
13 | - * @param string $full_file_path |
|
14 | - * @throws EE_Error |
|
15 | - * @return bool |
|
16 | - */ |
|
17 | - public static function ensure_file_exists_and_is_writable($full_file_path = ''); |
|
9 | + /** |
|
10 | + * ensure_file_exists_and_is_writable |
|
11 | + * ensures that a file exists and is writable, will attempt to create file if it does not exist |
|
12 | + * |
|
13 | + * @param string $full_file_path |
|
14 | + * @throws EE_Error |
|
15 | + * @return bool |
|
16 | + */ |
|
17 | + public static function ensure_file_exists_and_is_writable($full_file_path = ''); |
|
18 | 18 | |
19 | 19 | |
20 | 20 | |
21 | - /** |
|
22 | - * ensure_folder_exists_and_is_writable |
|
23 | - * ensures that a folder exists and is writable, will attempt to create folder if it does not exist |
|
24 | - * |
|
25 | - * @param string $folder |
|
26 | - * @throws EE_Error |
|
27 | - * @return bool |
|
28 | - */ |
|
29 | - public static function ensure_folder_exists_and_is_writable($folder = ''); |
|
21 | + /** |
|
22 | + * ensure_folder_exists_and_is_writable |
|
23 | + * ensures that a folder exists and is writable, will attempt to create folder if it does not exist |
|
24 | + * |
|
25 | + * @param string $folder |
|
26 | + * @throws EE_Error |
|
27 | + * @return bool |
|
28 | + */ |
|
29 | + public static function ensure_folder_exists_and_is_writable($folder = ''); |
|
30 | 30 | } |
31 | 31 | // End of file EEHI_File.interface.php |
32 | 32 | // Location: core/interfaces/EEHI_File.interface.php |
@@ -6,14 +6,14 @@ |
||
6 | 6 | interface EEI_Address_Formatter |
7 | 7 | { |
8 | 8 | |
9 | - /** |
|
10 | - * @param string $address |
|
11 | - * @param string $address2 |
|
12 | - * @param string $city |
|
13 | - * @param string $state |
|
14 | - * @param string $zip |
|
15 | - * @param string $country |
|
16 | - * @param string $CNT_ISO |
|
17 | - */ |
|
18 | - public function format($address, $address2, $city, $state, $zip, $country, $CNT_ISO); |
|
9 | + /** |
|
10 | + * @param string $address |
|
11 | + * @param string $address2 |
|
12 | + * @param string $city |
|
13 | + * @param string $state |
|
14 | + * @param string $zip |
|
15 | + * @param string $country |
|
16 | + * @param string $CNT_ISO |
|
17 | + */ |
|
18 | + public function format($address, $address2, $city, $state, $zip, $country, $CNT_ISO); |
|
19 | 19 | } |
@@ -12,9 +12,9 @@ |
||
12 | 12 | { |
13 | 13 | |
14 | 14 | |
15 | - /** |
|
16 | - * Expect a EE_messenger object back that is serving as the sending messenger for a message. |
|
17 | - * @return EE_messenger |
|
18 | - */ |
|
19 | - public function sending_messenger(); |
|
15 | + /** |
|
16 | + * Expect a EE_messenger object back that is serving as the sending messenger for a message. |
|
17 | + * @return EE_messenger |
|
18 | + */ |
|
19 | + public function sending_messenger(); |
|
20 | 20 | } |
@@ -11,16 +11,16 @@ |
||
11 | 11 | interface EEI_Line_Item_Object |
12 | 12 | { |
13 | 13 | |
14 | - /** |
|
15 | - * Return the name representing the object (i.e. Event Title, or Ticket Name). |
|
16 | - * @return string |
|
17 | - */ |
|
18 | - public function name(); |
|
14 | + /** |
|
15 | + * Return the name representing the object (i.e. Event Title, or Ticket Name). |
|
16 | + * @return string |
|
17 | + */ |
|
18 | + public function name(); |
|
19 | 19 | |
20 | 20 | |
21 | - /** |
|
22 | - * Return the ID representation for the object. |
|
23 | - * @return mixed int|string |
|
24 | - */ |
|
25 | - public function ID(); |
|
21 | + /** |
|
22 | + * Return the ID representation for the object. |
|
23 | + * @return mixed int|string |
|
24 | + */ |
|
25 | + public function ID(); |
|
26 | 26 | } |