-
Notifications
You must be signed in to change notification settings - Fork 4
/
em-shortcode.php
208 lines (192 loc) · 8.25 KB
/
em-shortcode.php
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
195
196
197
198
199
200
201
202
203
204
205
206
207
208
<?php
//TODO add a shortcode to link for a specific event, e.g. [event id=x]text[/event]
/**
* Returns the html of an events calendar with events that match given query attributes. Accepts any event query attribute.
* @param array $atts
* @return string
*/
function em_get_calendar_shortcode($atts) {
$atts = (array) $atts;
return EM_Calendar::output($atts);
}
add_shortcode('events_calendar', 'em_get_calendar_shortcode');
function em_get_gcal_shortcode($atts){
$img_url = is_ssl() ? 'https://www.google.com/calendar/images/ext/gc_button6.gif':'http://www.google.com/calendar/images/ext/gc_button6.gif';
$atts = shortcode_atts(array('img'=>$img_url, 'button'=>6), $atts);
if( $img_url == $atts['img'] && $atts['button'] != 6 ){
$img_url = str_replace('gc_button6.gif', 'gc_button'.$atts['button'].'.gif', $img_url);
}
$url = '<a href="http://www.google.com/calendar/render?cid='.urlencode(trailingslashit(get_home_url()).'events.ics').'" target="_blank"><img src="'.$img_url.'" alt="0" border="0"></a>';
return $url;
}
add_shortcode('events_gcal', 'em_get_gcal_shortcode');
/**
* Generates a map of locations that match given query attributes. Accepts any location query attributes.
* @param array $args
* @return string
*/
function em_get_locations_map_shortcode($args){
$args['width'] = ( !empty($args['width']) ) ? $args['width']:450;
$args['height'] = ( !empty($args['height']) ) ? $args['height']:300;
ob_start();
em_locate_template('templates/map-global.php',true, array('args'=>$args));
return ob_get_clean();
}
add_shortcode('locations_map', 'em_get_locations_map_shortcode');
add_shortcode('locations-map', 'em_get_locations_map_shortcode'); //Depreciate this... confusing for WordPress
/**
* Shows a list of events according to given specifications. Accepts any event query attribute.
* @param array $atts
* @return string
*/
function em_get_events_list_shortcode($atts, $format='') {
$atts = (array) $atts;
$atts['format'] = ($format != '' || empty($atts['format'])) ? $format : $atts['format'];
$atts['format'] = html_entity_decode($atts['format']); //shorcode doesn't accept html
$atts['page'] = ( !empty($atts['page']) && is_numeric($atts['page']) )? $atts['page'] : 1;
$atts['page'] = ( !empty($_GET['page']) && is_numeric($_GET['page']) )? $_GET['page'] : $atts['page'];
return EM_Events::output( $atts );
}
add_shortcode ( 'events_list', 'em_get_events_list_shortcode' );
/**
* Shows a list of events according to given specifications. Accepts any event query attribute.
* @param array $atts
* @return string
*/
function em_get_event_shortcode($atts, $format='') {
$atts = (array) $atts;
$atts['format'] = ($format != '' || empty($atts['format'])) ? $format : $atts['format'];
$atts['format'] = html_entity_decode($atts['format']); //shorcode doesn't accept html
if( !empty($atts['event']) && is_numeric($atts['event']) ){
$EM_Event = em_get_event($atts['event']);
return ( !empty($atts['format']) ) ? $EM_Event->output($atts['format']) : $EM_Event->output_single();
}elseif( !empty($atts['post_id']) && is_numeric($atts['post_id']) ){
$EM_Event = em_get_event($atts['post_id'], 'post_id');
return ( !empty($atts['format']) ) ? $EM_Event->output($atts['format']) : $EM_Event->output_single();
}
}
add_shortcode ( 'event', 'em_get_event_shortcode' );
/**
* Returns list of locations according to given specifications. Accepts any location query attribute.
*/
function em_get_locations_list_shortcode( $atts, $format='' ) {
$atts = (array) $atts;
$atts['format'] = ($format != '' || empty($atts['format'])) ? $format : $atts['format'];
$atts['format'] = html_entity_decode($atts['format']); //shorcode doesn't accept html
$atts['page'] = ( !empty($atts['page']) && is_numeric($atts['page']) )? $atts['page'] : 1;
$atts['page'] = ( !empty($_GET['page']) && is_numeric($_GET['page']) )? $_GET['page'] : $atts['page'];
$args['orderby'] = !empty($args['orderby']) ? $args['orderby'] : get_option('dbem_locations_default_orderby');
$args['order'] = !empty($args['order']) ? $args['order'] : get_option('dbem_locations_default_order');
return EM_Locations::output( $atts );
}
add_shortcode('locations_list', 'em_get_locations_list_shortcode');
/**
* Shows a single location according to given specifications. Accepts any event query attribute.
* @param array $atts
* @return string
*/
function em_get_location_shortcode($atts, $format='') {
$atts = (array) $atts;
$atts['format'] = ($format != '' || empty($atts['format'])) ? $format : $atts['format'];
$atts['format'] = html_entity_decode($atts['format']); //shorcode doesn't accept html
if( !empty($atts['location']) && is_numeric($atts['location']) ){
$EM_Location = em_get_location($atts['location']);
return ( !empty($atts['format']) ) ? $EM_Location->output($atts['format']) : $EM_Location->output_single();
}elseif( !empty($atts['post_id']) && is_numeric($atts['post_id']) ){
$EM_Location = em_get_location($atts['post_id'],'post_id');
return ( !empty($atts['format']) ) ? $EM_Location->output($atts['format']) : $EM_Location->output_single();
}
}
add_shortcode ( 'location', 'em_get_location_shortcode' );
function em_get_categories_shortcode($args, $format=''){
$args = (array) $args;
$args['format'] = ($format != '' || empty($args['format'])) ? $format : $args['format'];
$args['format'] = html_entity_decode($args['format']); //shorcode doesn't accept html
$args['orderby'] = !empty($args['orderby']) ? $args['orderby'] : get_option('dbem_categories_default_orderby');
$args['order'] = !empty($args['order']) ? $args['order'] : get_option('dbem_categories_default_order');
return EM_Categories::output($args);
}
add_shortcode ( 'categories_list', 'em_get_categories_shortcode' );
/**
* DO NOT DOCUMENT! This should be replaced with shortcodes events-link and events_uri
* @param array $atts
* @return string
*/
function em_get_events_page_shortcode($atts) {
$atts = shortcode_atts ( array ('justurl' => 0, 'text' => '' ), $atts );
if($atts['justurl']){
return EM_URI;
}else{
return em_get_link($atts['text']);
}
}
add_shortcode ( 'events_page', 'em_get_events_page_shortcode' );
/**
* Shortcode for a link to events page. Default will show events page title in link text, if you use [events_link]text[/events_link] 'text' will be the link text
* @param array $atts
* @param string $text
* @return string
*/
function em_get_link_shortcode($atts, $text='') {
return em_get_link($text);
}
add_shortcode ( 'events_link', 'em_get_link_shortcode');
/**
* Returns the uri of the events page only
* @return string
*/
function em_get_url_shortcode(){
return EM_URI;
}
add_shortcode ( 'events_url', 'em_get_url_shortcode');
/**
* CHANGE DOCUMENTATION! if you just want the url you should use shortcode events_rss_uri
* @param array $atts
* @return string
*/
function em_get_rss_link_shortcode($atts) {
$atts = shortcode_atts ( array ('justurl' => 0, 'text' => 'RSS' ), $atts );
if($atts['justurl']){
return EM_RSS_URI;
}else{
return em_get_rss_link($atts['text']);
}
}
add_shortcode ( 'events_rss_link', 'em_get_rss_link_shortcode' );
/**
* Returns the uri of the events rss page only, takes no attributes.
* @return string
*/
function em_get_rss_url_shortcode(){
return EM_RSS_URI;
}
add_shortcode ( 'events_rss_url', 'em_get_rss_url_shortcode');
/**
* Creates a form to submit events with
* @param array $atts
* @return string
*/
function em_get_event_form_shortcode( $args = array() ){
return em_get_event_form( $args );
}
add_shortcode ( 'event_form', 'em_get_event_form_shortcode');
/**
* Creates a form to search events with
* @param array $atts
* @return string
*/
function em_get_event_search_form_shortcode( $args = array() ){
return em_get_event_search_form( $args );
}
add_shortcode ( 'event_search_form', 'em_get_event_search_form_shortcode');
/**
* Creates a grouped list of events by year, month, week or day
* @since 4.213
* @param array $args
* @param string $format
* @return string
*/
function em_get_events_list_grouped_shortcode($args = array(), $format = ''){
return em_get_events_list_grouped($args,$format);
}
add_shortcode ( 'events_list_grouped', 'em_get_events_list_grouped_shortcode' );