Version Description
- saving event tickets will now validate properly with meaningful errors
- my-bookings page will show/hide bookings depending on multisite settings (MS only)
- adjusted EM_Events output to use old preg from 4.212 but process custom atts beforehand
Download this release
Release Info
Developer | netweblogic |
Plugin | Events Manager |
Version | 4.301 |
Comparing to | |
See all releases |
Code changes from version 3.0.98 to 4.301
- admin/bookings/em-cancelled.php +136 -132
- admin/bookings/em-confirmed.php +143 -139
- admin/bookings/em-events.php +178 -178
- admin/bookings/em-pending.php +158 -154
- admin/bookings/em-person.php +151 -149
- admin/bookings/em-rejected.php +136 -132
- admin/em-admin.php +199 -284
- admin/em-bookings.php +405 -287
- admin/em-categories.php +212 -176
- admin/em-docs.php +255 -192
- admin/em-event.php +766 -626
- admin/em-events.php +237 -241
- admin/em-help.php +68 -51
- admin/em-locations-search.php +7 -3
- admin/em-locations.php +311 -267
- admin/em-options.php +696 -443
- admin/em-people.php +2 -165
- buddypress/bp-em-activity.php +142 -0
- buddypress/bp-em-admin.php +65 -0
- buddypress/bp-em-core.php +237 -0
- buddypress/bp-em-groups.php +57 -0
- buddypress/bp-em-notifications.php +135 -0
- buddypress/bp-em-templatetags.php +7 -0
- buddypress/screens/attending.php +29 -0
- buddypress/screens/group-events.php +30 -0
- buddypress/screens/my-bookings.php +35 -0
- buddypress/screens/my-events.php +64 -0
- buddypress/screens/my-group-events.php +27 -0
- buddypress/screens/my-locations.php +71 -0
- buddypress/screens/profile.php +32 -0
- buddypress/screens/settings.php +56 -0
- classes/em-booking.php +626 -378
- classes/em-bookings.php +582 -487
- classes/em-calendar.php +320 -366
- classes/em-categories.php +314 -156
- classes/em-category.php +253 -151
- classes/em-event.php +1381 -1005
- classes/em-events.php +370 -253
- classes/em-location.php +390 -306
- classes/em-locations.php +290 -212
- classes/em-mailer.php +79 -79
- classes/em-map.php +0 -60
- classes/em-notices.php +174 -0
- classes/em-object.php +781 -485
- classes/em-people.php +84 -128
- classes/em-permalinks.php +226 -0
- classes/em-person.php +90 -153
- classes/em-recurrence.php +0 -89
- classes/em-ticket-booking.php +221 -0
- classes/em-ticket.php +350 -0
- classes/em-tickets-bookings.php +283 -0
- classes/em-tickets.php +245 -0
- classes/phpmailer/class.phpmailer.php +1506 -1506
- classes/phpmailer/class.smtp.php +313 -1045
admin/bookings/em-cancelled.php
CHANGED
@@ -1,133 +1,137 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Generates a "widget" table of confirmed bookings for a specific event.
|
4 |
-
*
|
5 |
-
* @param int $event_id
|
6 |
-
*/
|
7 |
-
function em_bookings_cancelled_table(){
|
8 |
-
global $EM_Event, $wpdb, $current_user;
|
9 |
-
|
10 |
-
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_cancelled_table' );
|
11 |
-
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
12 |
-
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
13 |
-
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
14 |
-
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
15 |
-
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
16 |
-
|
17 |
-
if( is_object($
|
18 |
-
$
|
19 |
-
}else{
|
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 |
-
<th class='manage-column' scope='col'>
|
82 |
-
|
83 |
-
|
84 |
-
<th class='manage-column' scope='col'
|
85 |
-
<th class='manage-column' scope='col'
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
<
|
101 |
-
<td><?php echo $EM_Booking->
|
102 |
-
<td>
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
<?php
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
|
|
|
|
|
|
|
|
133 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Generates a "widget" table of confirmed bookings for a specific event.
|
4 |
+
*
|
5 |
+
* @param int $event_id
|
6 |
+
*/
|
7 |
+
function em_bookings_cancelled_table(){
|
8 |
+
global $EM_Event, $EM_Ticket, $wpdb, $current_user;
|
9 |
+
|
10 |
+
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_cancelled_table' );
|
11 |
+
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
12 |
+
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
13 |
+
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
14 |
+
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
15 |
+
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
16 |
+
|
17 |
+
if( is_object($EM_Ticket) ){
|
18 |
+
$EM_Bookings = $EM_Ticket->get_bookings()->get_cancelled_bookings();
|
19 |
+
}else{
|
20 |
+
if( is_object($EM_Event) ){
|
21 |
+
$EM_Bookings = $EM_Event->get_bookings()->get_cancelled_bookings();
|
22 |
+
}else{
|
23 |
+
return false;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
$bookings_count = (is_array($EM_Bookings->bookings)) ? count($EM_Bookings->bookings):0;
|
27 |
+
?>
|
28 |
+
<div class='wrap em_bookings_pending_table em_obj'>
|
29 |
+
<form id='bookings-filter' method='get' action='<?php bloginfo('wpurl') ?>/wp-admin/edit.php'>
|
30 |
+
<input type="hidden" name="em_obj" value="em_bookings_pending_table" />
|
31 |
+
<!--
|
32 |
+
<ul class="subsubsub">
|
33 |
+
<li>
|
34 |
+
<a href='edit.php?post_type=post' class="current">All <span class="count">(1)</span></a> |
|
35 |
+
</li>
|
36 |
+
</ul>
|
37 |
+
<p class="search-box">
|
38 |
+
<label class="screen-reader-text" for="post-search-input"><?php _e('Search', 'dbem'); ?>:</label>
|
39 |
+
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_GET['em_search'])) ? $_GET['em_search']:''; ?>" />
|
40 |
+
<input type="submit" value="<?php _e('Search', 'dbem'); ?>" class="button" />
|
41 |
+
</p>
|
42 |
+
-->
|
43 |
+
<?php if ( $bookings_count >= $limit ) : ?>
|
44 |
+
<div class='tablenav'>
|
45 |
+
<!--
|
46 |
+
<div class="alignleft actions">
|
47 |
+
<select name="action">
|
48 |
+
<option value="-1" selected="selected">
|
49 |
+
<?php _e('Bulk Actions', 'dbem'); ?>
|
50 |
+
</option>
|
51 |
+
<option value="approve">
|
52 |
+
<?php _e('Approve', 'dbem'); ?>
|
53 |
+
</option>
|
54 |
+
<option value="decline">
|
55 |
+
<?php _e('Decline', 'dbem'); ?>
|
56 |
+
</option>
|
57 |
+
</select>
|
58 |
+
<input type="submit" id="post-query-submit" value="Filter" class="button-secondary" />
|
59 |
+
</div>
|
60 |
+
-->
|
61 |
+
<!--
|
62 |
+
<div class="view-switch">
|
63 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
64 |
+
</div>
|
65 |
+
-->
|
66 |
+
<?php
|
67 |
+
if ( $bookings_count >= $limit ) {
|
68 |
+
$bookings_nav = em_admin_paginate( $bookings_count, $limit, $page, array('em_ajax'=>0, 'em_obj'=>'em_bookings_confirmed_table'));
|
69 |
+
echo $bookings_nav;
|
70 |
+
}
|
71 |
+
?>
|
72 |
+
<div class="clear"></div>
|
73 |
+
</div>
|
74 |
+
<?php endif; ?>
|
75 |
+
<div class="clear"></div>
|
76 |
+
<?php if( $bookings_count > 0 ): ?>
|
77 |
+
<div class='table-wrap'>
|
78 |
+
<table id='dbem-bookings-table' class='widefat post '>
|
79 |
+
<thead>
|
80 |
+
<tr>
|
81 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
82 |
+
<input class='select-all' type="checkbox" value='1' />
|
83 |
+
</th>
|
84 |
+
<th class='manage-column' scope='col'><?php _e('Booker', 'dbem'); ?></th>
|
85 |
+
<th class='manage-column' scope='col'><?php _e('E-mail', 'dbem'); ?></th>
|
86 |
+
<th class='manage-column' scope='col'><?php _e('Phone number', 'dbem'); ?></th>
|
87 |
+
<th class='manage-column' scope='col'><?php _e('Spaces', 'dbem'); ?></th>
|
88 |
+
<th class='manage-column' scope='col'> </th>
|
89 |
+
</tr>
|
90 |
+
</thead>
|
91 |
+
<tbody>
|
92 |
+
<?php
|
93 |
+
$rowno = 0;
|
94 |
+
$event_count = 0;
|
95 |
+
foreach ($EM_Bookings->bookings as $EM_Booking) {
|
96 |
+
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
97 |
+
$rowno++;
|
98 |
+
?>
|
99 |
+
<tr>
|
100 |
+
<th scope="row" class="check-column" style="padding:7px 0px 7px;"><input type='checkbox' value='<?php echo $EM_Booking->id ?>' name='bookings[]'/></th>
|
101 |
+
<td><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&person_id=<?php echo $EM_Booking->person->ID; ?>"><?php echo $EM_Booking->person->get_name() ?></a></td>
|
102 |
+
<td><?php echo $EM_Booking->person->user_email ?></td>
|
103 |
+
<td><?php echo $EM_Booking->person->phone ?></td>
|
104 |
+
<td><?php echo $EM_Booking->get_spaces() ?></td>
|
105 |
+
<td>
|
106 |
+
<?php
|
107 |
+
$approve_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_approve', 'booking_id'=>$EM_Booking->id));
|
108 |
+
$delete_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_delete', 'booking_id'=>$EM_Booking->id));
|
109 |
+
$edit_url = em_add_get_params($_SERVER['REQUEST_URI'], array('booking_id'=>$EM_Booking->id));
|
110 |
+
?>
|
111 |
+
<a class="em-bookings-approve" href="<?php echo $approve_url ?>"><?php _e('Restore','dbem'); ?></a> |
|
112 |
+
<a class="em-bookings-edit" href="<?php echo $edit_url; ?>"><?php _e('Edit/View','dbem'); ?></a> |
|
113 |
+
<a class="em-bookings-delete" href="<?php echo $delete_url ?>"><?php _e('Delete','dbem'); ?></a>
|
114 |
+
</td>
|
115 |
+
</tr>
|
116 |
+
<?php
|
117 |
+
}
|
118 |
+
$event_count++;
|
119 |
+
}
|
120 |
+
?>
|
121 |
+
</tbody>
|
122 |
+
</table>
|
123 |
+
</div>
|
124 |
+
<?php else: ?>
|
125 |
+
<?php _e('No cancelled bookings.', 'dbem'); ?>
|
126 |
+
<?php endif; ?>
|
127 |
+
</form>
|
128 |
+
<?php if( !empty($bookings_nav) && $EM_Bookings >= $limit ) : ?>
|
129 |
+
<div class='tablenav'>
|
130 |
+
<?php echo $bookings_nav; ?>
|
131 |
+
<div class="clear"></div>
|
132 |
+
</div>
|
133 |
+
<?php endif; ?>
|
134 |
+
</div>
|
135 |
+
<?php
|
136 |
+
}
|
137 |
?>
|
admin/bookings/em-confirmed.php
CHANGED
@@ -1,140 +1,144 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Generates a "widget" table of confirmed bookings for a specific event.
|
5 |
-
*
|
6 |
-
* @param int $event_id
|
7 |
-
*/
|
8 |
-
function em_bookings_confirmed_table(){
|
9 |
-
global $EM_Event, $wpdb, $current_user;
|
10 |
-
|
11 |
-
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_confirmed_table' );
|
12 |
-
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
13 |
-
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
14 |
-
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
15 |
-
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
16 |
-
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
17 |
-
|
18 |
-
if( is_object($
|
19 |
-
$
|
20 |
-
}else{
|
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 |
-
<th class='manage-column' scope='col'>
|
83 |
-
|
84 |
-
|
85 |
-
<th class='manage-column' scope='col'
|
86 |
-
<th class='manage-column' scope='col'
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
<
|
102 |
-
<td><?php echo $EM_Booking->
|
103 |
-
<td>
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
<?php
|
114 |
-
<a class="em-bookings-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
<?php
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
|
139 |
-
|
|
|
|
|
|
|
|
|
140 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Generates a "widget" table of confirmed bookings for a specific event.
|
5 |
+
*
|
6 |
+
* @param int $event_id
|
7 |
+
*/
|
8 |
+
function em_bookings_confirmed_table(){
|
9 |
+
global $EM_Event, $EM_Ticket, $wpdb, $current_user;
|
10 |
+
|
11 |
+
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_confirmed_table' );
|
12 |
+
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
13 |
+
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
14 |
+
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
15 |
+
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
16 |
+
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
17 |
+
|
18 |
+
if( is_object($EM_Ticket) ){
|
19 |
+
$EM_Bookings = $EM_Ticket->get_bookings()->get_bookings();
|
20 |
+
}else{
|
21 |
+
if( is_object($EM_Event) ){
|
22 |
+
$EM_Bookings = $EM_Event->get_bookings()->get_bookings();
|
23 |
+
}else{
|
24 |
+
return false;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
$bookings_count = (is_array($EM_Bookings->bookings)) ? count($EM_Bookings->bookings):0;
|
28 |
+
?>
|
29 |
+
<div class='wrap em_bookings_pending_table em_obj'>
|
30 |
+
<form id='bookings-filter' method='get' action='<?php bloginfo('wpurl') ?>/wp-admin/edit.php'>
|
31 |
+
<input type="hidden" name="em_obj" value="em_bookings_pending_table" />
|
32 |
+
<!--
|
33 |
+
<ul class="subsubsub">
|
34 |
+
<li>
|
35 |
+
<a href='edit.php?post_type=post' class="current">All <span class="count">(1)</span></a> |
|
36 |
+
</li>
|
37 |
+
</ul>
|
38 |
+
<p class="search-box">
|
39 |
+
<label class="screen-reader-text" for="post-search-input"><?php _e('Search', 'dbem'); ?>:</label>
|
40 |
+
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_GET['em_search'])) ? $_GET['em_search']:''; ?>" />
|
41 |
+
<input type="submit" value="<?php _e('Search', 'dbem'); ?>" class="button" />
|
42 |
+
</p>
|
43 |
+
-->
|
44 |
+
<?php if ( $bookings_count >= $limit ) : ?>
|
45 |
+
<div class='tablenav'>
|
46 |
+
<!--
|
47 |
+
<div class="alignleft actions">
|
48 |
+
<select name="action">
|
49 |
+
<option value="-1" selected="selected">
|
50 |
+
<?php _e('Bulk Actions', 'dbem'); ?>
|
51 |
+
</option>
|
52 |
+
<option value="approve">
|
53 |
+
<?php _e('Approve', 'dbem'); ?>
|
54 |
+
</option>
|
55 |
+
<option value="decline">
|
56 |
+
<?php _e('Decline', 'dbem'); ?>
|
57 |
+
</option>
|
58 |
+
</select>
|
59 |
+
<input type="submit" id="post-query-submit" value="Filter" class="button-secondary" />
|
60 |
+
</div>
|
61 |
+
-->
|
62 |
+
<!--
|
63 |
+
<div class="view-switch">
|
64 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
65 |
+
</div>
|
66 |
+
-->
|
67 |
+
<?php
|
68 |
+
if ( $bookings_count >= $limit ) {
|
69 |
+
$bookings_nav = em_admin_paginate($bookings_count, $limit, $page, array('em_ajax'=>0, 'em_obj'=>'em_bookings_confirmed_table'));
|
70 |
+
echo $bookings_nav;
|
71 |
+
}
|
72 |
+
?>
|
73 |
+
<div class="clear"></div>
|
74 |
+
</div>
|
75 |
+
<?php endif; ?>
|
76 |
+
<div class="clear"></div>
|
77 |
+
<?php if( $bookings_count > 0 ): ?>
|
78 |
+
<div class='table-wrap'>
|
79 |
+
<table id='dbem-bookings-table' class='widefat post '>
|
80 |
+
<thead>
|
81 |
+
<tr>
|
82 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
83 |
+
<input class='select-all' type="checkbox" value='1' />
|
84 |
+
</th>
|
85 |
+
<th class='manage-column' scope='col'><?php _e('Booker', 'dbem'); ?></th>
|
86 |
+
<th class='manage-column' scope='col'><?php _e('E-mail', 'dbem'); ?></th>
|
87 |
+
<th class='manage-column' scope='col'><?php _e('Phone number', 'dbem'); ?></th>
|
88 |
+
<th class='manage-column' scope='col'><?php _e('Spaces', 'dbem'); ?></th>
|
89 |
+
<th class='manage-column' scope='col'> </th>
|
90 |
+
</tr>
|
91 |
+
</thead>
|
92 |
+
<tbody>
|
93 |
+
<?php
|
94 |
+
$rowno = 0;
|
95 |
+
$event_count = 0;
|
96 |
+
foreach ($EM_Bookings->bookings as $EM_Booking) {
|
97 |
+
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
98 |
+
$rowno++;
|
99 |
+
?>
|
100 |
+
<tr>
|
101 |
+
<th scope="row" class="check-column" style="padding:7px 0px 7px;"><input type='checkbox' value='<?php echo $EM_Booking->id ?>' name='bookings[]'/></th>
|
102 |
+
<td><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&person_id=<?php echo $EM_Booking->person_id; ?>"><?php echo $EM_Booking->person->get_name() ?></a></td>
|
103 |
+
<td><?php echo $EM_Booking->person->user_email ?></td>
|
104 |
+
<td><?php echo $EM_Booking->person->phone ?></td>
|
105 |
+
<td><?php echo $EM_Booking->get_spaces() ?></td>
|
106 |
+
<td>
|
107 |
+
<?php
|
108 |
+
$unapprove_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_unapprove', 'booking_id'=>$EM_Booking->id));
|
109 |
+
$reject_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_reject', 'booking_id'=>$EM_Booking->id));
|
110 |
+
$delete_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_delete', 'booking_id'=>$EM_Booking->id));
|
111 |
+
$edit_url = em_add_get_params($_SERVER['REQUEST_URI'], array('booking_id'=>$EM_Booking->id));
|
112 |
+
?>
|
113 |
+
<?php if( current_user_can('manage_bookings') && get_option('dbem_bookings_approval') ): ?>
|
114 |
+
<a class="em-bookings-unapprove" href="<?php echo $unapprove_url ?>"><?php _e('Unapprove','dbem'); ?></a> |
|
115 |
+
<?php else: ?>
|
116 |
+
<a class="em-bookings-reject" href="<?php echo $reject_url ?>"><?php _e('Reject','dbem'); ?></a> |
|
117 |
+
<?php endif; ?>
|
118 |
+
<span class="trash"><a class="em-bookings-delete" href="<?php echo $delete_url ?>"><?php _e('Delete','dbem'); ?></a></span> |
|
119 |
+
<a class="em-bookings-edit" href="<?php echo $edit_url; ?>"><?php _e('Edit/View','dbem'); ?></a>
|
120 |
+
</td>
|
121 |
+
</tr>
|
122 |
+
<?php
|
123 |
+
}
|
124 |
+
$event_count++;
|
125 |
+
}
|
126 |
+
?>
|
127 |
+
</tbody>
|
128 |
+
</table>
|
129 |
+
</div>
|
130 |
+
<?php else: ?>
|
131 |
+
<?php _e('No confirmed bookings.', 'dbem'); ?>
|
132 |
+
<?php endif; ?>
|
133 |
+
</form>
|
134 |
+
<?php if( !empty($bookings_nav) && $EM_Bookings >= $limit ) : ?>
|
135 |
+
<div class='tablenav'>
|
136 |
+
<?php echo $bookings_nav; ?>
|
137 |
+
<div class="clear"></div>
|
138 |
+
</div>
|
139 |
+
<?php endif; ?>
|
140 |
+
</div>
|
141 |
+
<?php
|
142 |
+
|
143 |
+
}
|
144 |
?>
|
admin/bookings/em-events.php
CHANGED
@@ -1,179 +1,179 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Determines whether to show event page or events page, and saves any updates to the event or events
|
5 |
-
* @return null
|
6 |
-
*/
|
7 |
-
function em_bookings_events_table() {
|
8 |
-
//TODO Simplify panel for events, use form flags to detect certain actions (e.g. submitted, etc)
|
9 |
-
global $wpdb;
|
10 |
-
global $EM_Event;
|
11 |
-
|
12 |
-
$scope_names = array (
|
13 |
-
'past' => __ ( 'Past events', 'dbem' ),
|
14 |
-
'all' => __ ( 'All events', 'dbem' ),
|
15 |
-
'future' => __ ( 'Future events', 'dbem' )
|
16 |
-
);
|
17 |
-
|
18 |
-
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_events_table' );
|
19 |
-
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
20 |
-
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
21 |
-
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
22 |
-
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
23 |
-
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
24 |
-
$scope = ( $action_scope && !empty($_GET ['scope']) && array_key_exists($_GET ['scope'], $scope_names) ) ? $_GET ['scope']:'future';
|
25 |
-
|
26 |
-
// No action, only showing the events list
|
27 |
-
switch ($scope) {
|
28 |
-
case "past" :
|
29 |
-
$title = __ ( 'Past Events', 'dbem' );
|
30 |
-
break;
|
31 |
-
case "all" :
|
32 |
-
$title = __ ( 'All Events', 'dbem' );
|
33 |
-
break;
|
34 |
-
default :
|
35 |
-
$title = __ ( 'Future Events', 'dbem' );
|
36 |
-
$scope = "future";
|
37 |
-
}
|
38 |
-
$
|
39 |
-
$
|
40 |
-
|
41 |
-
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
|
48 |
-
|
49 |
-
|
50 |
-
|
51 |
-
|
52 |
-
|
53 |
-
|
54 |
-
|
55 |
-
|
56 |
-
|
57 |
-
<option value="
|
58 |
-
|
59 |
-
|
60 |
-
|
61 |
-
|
62 |
-
|
63 |
-
|
64 |
-
|
65 |
-
|
66 |
-
|
67 |
-
|
68 |
-
|
69 |
-
|
70 |
-
|
71 |
-
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
|
81 |
-
$events_nav = em_admin_paginate( $
|
82 |
-
echo $events_nav;
|
83 |
-
}
|
84 |
-
?>
|
85 |
-
<br class="clear" />
|
86 |
-
</div>
|
87 |
-
|
88 |
-
<?php
|
89 |
-
if (empty ( $events )) {
|
90 |
-
// TODO localize
|
91 |
-
_e ( 'no events','dbem' );
|
92 |
-
} else {
|
93 |
-
?>
|
94 |
-
<div class='table-wrap'>
|
95 |
-
<table class="widefat">
|
96 |
-
<thead>
|
97 |
-
<tr>
|
98 |
-
<th class='manage-column column-cb check-column' scope='col'>
|
99 |
-
<input class='select-all' type="checkbox" value='1' />
|
100 |
-
</th>
|
101 |
-
<th><?php _e ( 'Event', 'dbem' ); ?></th>
|
102 |
-
<th><?php _e ( 'Date and time', 'dbem' ); ?></th>
|
103 |
-
</tr>
|
104 |
-
</thead>
|
105 |
-
<tbody>
|
106 |
-
<?php
|
107 |
-
$rowno = 0;
|
108 |
-
$event_count = 0;
|
109 |
-
foreach ( $events as $event ) {
|
110 |
-
/* @var $event EM_Event */
|
111 |
-
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
112 |
-
$rowno++;
|
113 |
-
$class = ($rowno % 2) ? ' class="alternate"' : '';
|
114 |
-
// FIXME set to american
|
115 |
-
$localised_start_date = date_i18n('
|
116 |
-
$localised_end_date = date_i18n('
|
117 |
-
$style = "";
|
118 |
-
$today = date ( "Y-m-d" );
|
119 |
-
|
120 |
-
if ($event->start_date < $today && $event->end_date < $today){
|
121 |
-
$style = "style ='background-color: #FADDB7;'";
|
122 |
-
}
|
123 |
-
?>
|
124 |
-
<tr <?php echo "$class $style"; ?>>
|
125 |
-
|
126 |
-
<td>
|
127 |
-
<input type='checkbox' class='row-selector' value='<?php echo $event->id; ?>' name='events[]' />
|
128 |
-
</td>
|
129 |
-
<td>
|
130 |
-
<strong>
|
131 |
-
|
132 |
-
</strong>
|
133 |
-
–
|
134 |
-
<?php _e("Booked
|
135 |
-
<?php if( get_option('dbem_bookings_approval') == 1 ) : ?>
|
136 |
-
| <?php _e("Pending",'dbem') ?>: <?php echo $event->get_bookings()->
|
137 |
-
<?php endif; ?>
|
138 |
-
</td>
|
139 |
-
|
140 |
-
<td>
|
141 |
-
<?php echo $localised_start_date; ?>
|
142 |
-
<?php echo ($localised_end_date != $localised_start_date) ? " - $localised_end_date":'' ?>
|
143 |
-
–
|
144 |
-
<?php
|
145 |
-
//TODO Should 00:00 - 00:00 be treated as an all day event?
|
146 |
-
echo substr ( $event->start_time, 0, 5 ) . " - " . substr ( $event->end_time, 0, 5 );
|
147 |
-
?>
|
148 |
-
</td>
|
149 |
-
</tr>
|
150 |
-
<?php
|
151 |
-
}
|
152 |
-
$event_count++;
|
153 |
-
}
|
154 |
-
?>
|
155 |
-
</tbody>
|
156 |
-
</table>
|
157 |
-
</div>
|
158 |
-
<?php
|
159 |
-
} // end of table
|
160 |
-
?>
|
161 |
-
<div class='tablenav'>
|
162 |
-
<div class="alignleft actions">
|
163 |
-
<br class='clear' />
|
164 |
-
</div>
|
165 |
-
|
166 |
-
<div class="tablenav-pages">
|
167 |
-
<?php
|
168 |
-
echo $events_nav;
|
169 |
-
?>
|
170 |
-
</div>
|
171 |
-
<?php endif; ?>
|
172 |
-
<br class='clear' />
|
173 |
-
</div>
|
174 |
-
</form>
|
175 |
-
</div>
|
176 |
-
<?php
|
177 |
-
}
|
178 |
-
|
179 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Determines whether to show event page or events page, and saves any updates to the event or events
|
5 |
+
* @return null
|
6 |
+
*/
|
7 |
+
function em_bookings_events_table() {
|
8 |
+
//TODO Simplify panel for events, use form flags to detect certain actions (e.g. submitted, etc)
|
9 |
+
global $wpdb;
|
10 |
+
global $EM_Event;
|
11 |
+
|
12 |
+
$scope_names = array (
|
13 |
+
'past' => __ ( 'Past events', 'dbem' ),
|
14 |
+
'all' => __ ( 'All events', 'dbem' ),
|
15 |
+
'future' => __ ( 'Future events', 'dbem' )
|
16 |
+
);
|
17 |
+
|
18 |
+
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_events_table' );
|
19 |
+
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
20 |
+
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
21 |
+
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
22 |
+
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
23 |
+
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
24 |
+
$scope = ( $action_scope && !empty($_GET ['scope']) && array_key_exists($_GET ['scope'], $scope_names) ) ? $_GET ['scope']:'future';
|
25 |
+
|
26 |
+
// No action, only showing the events list
|
27 |
+
switch ($scope) {
|
28 |
+
case "past" :
|
29 |
+
$title = __ ( 'Past Events', 'dbem' );
|
30 |
+
break;
|
31 |
+
case "all" :
|
32 |
+
$title = __ ( 'All Events', 'dbem' );
|
33 |
+
break;
|
34 |
+
default :
|
35 |
+
$title = __ ( 'Future Events', 'dbem' );
|
36 |
+
$scope = "future";
|
37 |
+
}
|
38 |
+
$owner = !current_user_can('edit_others_events') ? get_current_user_id() : false;
|
39 |
+
$events = EM_Events::get( array('scope'=>$scope, 'limit'=>0, 'order'=>$order, 'bookings'=>true, 'owner' => $owner ) );
|
40 |
+
$events_count = count ( $events );
|
41 |
+
|
42 |
+
$use_events_end = get_option ( 'dbem_use_event_end' );
|
43 |
+
?>
|
44 |
+
<div class="wrap em_bookings_events_table em_obj">
|
45 |
+
<form id="posts-filter" action="" method="get">
|
46 |
+
<input type="hidden" name="em_obj" value="em_bookings_events_table" />
|
47 |
+
<?php if(!empty($_GET['page'])): ?>
|
48 |
+
<input type='hidden' name='page' value='events-manager-bookings' />
|
49 |
+
<?php endif; ?>
|
50 |
+
<ul class="subsubsub">
|
51 |
+
<li><a href='#' class="current"><?php _e ( 'Total', 'dbem' ); ?> <span class="count">(<?php echo (count ( $events )); ?>)</span></a></li>
|
52 |
+
</ul>
|
53 |
+
<div class="tablenav">
|
54 |
+
<div class="alignleft actions">
|
55 |
+
<!--
|
56 |
+
<select name="action">
|
57 |
+
<option value="-1" selected="selected"><?php _e ( 'Bulk Actions' ); ?></option>
|
58 |
+
<option value="deleteEvents"><?php _e ( 'Delete selected','dbem' ); ?></option>
|
59 |
+
</select>
|
60 |
+
<input type="submit" value="<?php _e ( 'Apply' ); ?>" name="doaction2" id="doaction2" class="button-secondary action" />
|
61 |
+
-->
|
62 |
+
<select name="scope">
|
63 |
+
<?php
|
64 |
+
foreach ( $scope_names as $key => $value ) {
|
65 |
+
$selected = "";
|
66 |
+
if ($key == $scope)
|
67 |
+
$selected = "selected='selected'";
|
68 |
+
echo "<option value='$key' $selected>$value</option> ";
|
69 |
+
}
|
70 |
+
?>
|
71 |
+
</select>
|
72 |
+
<input id="post-query-submit" class="button-secondary" type="submit" value="<?php _e ( 'Filter' )?>" />
|
73 |
+
</div>
|
74 |
+
<!--
|
75 |
+
<div class="view-switch">
|
76 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
77 |
+
</div>
|
78 |
+
-->
|
79 |
+
<?php
|
80 |
+
if ( $events_count >= $limit ) {
|
81 |
+
$events_nav = em_admin_paginate( $events_count, $limit, $page, array('em_ajax'=>0, 'em_obj'=>'em_bookings_events_table'));
|
82 |
+
echo $events_nav;
|
83 |
+
}
|
84 |
+
?>
|
85 |
+
<br class="clear" />
|
86 |
+
</div>
|
87 |
+
|
88 |
+
<?php
|
89 |
+
if (empty ( $events )) {
|
90 |
+
// TODO localize
|
91 |
+
_e ( 'no events','dbem' );
|
92 |
+
} else {
|
93 |
+
?>
|
94 |
+
<div class='table-wrap'>
|
95 |
+
<table class="widefat">
|
96 |
+
<thead>
|
97 |
+
<tr>
|
98 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
99 |
+
<input class='select-all' type="checkbox" value='1' />
|
100 |
+
</th>
|
101 |
+
<th><?php _e ( 'Event', 'dbem' ); ?></th>
|
102 |
+
<th><?php _e ( 'Date and time', 'dbem' ); ?></th>
|
103 |
+
</tr>
|
104 |
+
</thead>
|
105 |
+
<tbody>
|
106 |
+
<?php
|
107 |
+
$rowno = 0;
|
108 |
+
$event_count = 0;
|
109 |
+
foreach ( $events as $event ) {
|
110 |
+
/* @var $event EM_Event */
|
111 |
+
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
112 |
+
$rowno++;
|
113 |
+
$class = ($rowno % 2) ? ' class="alternate"' : '';
|
114 |
+
// FIXME set to american
|
115 |
+
$localised_start_date = date_i18n(get_option('date_format'), $event->start);
|
116 |
+
$localised_end_date = date_i18n(get_option('date_format'), $event->end);
|
117 |
+
$style = "";
|
118 |
+
$today = date ( "Y-m-d" );
|
119 |
+
|
120 |
+
if ($event->start_date < $today && $event->end_date < $today){
|
121 |
+
$style = "style ='background-color: #FADDB7;'";
|
122 |
+
}
|
123 |
+
?>
|
124 |
+
<tr <?php echo "$class $style"; ?>>
|
125 |
+
|
126 |
+
<td>
|
127 |
+
<input type='checkbox' class='row-selector' value='<?php echo $event->id; ?>' name='events[]' />
|
128 |
+
</td>
|
129 |
+
<td>
|
130 |
+
<strong>
|
131 |
+
<?php echo $event->output('#_BOOKINGSLINK'); ?>
|
132 |
+
</strong>
|
133 |
+
–
|
134 |
+
<?php _e("Booked Spaces",'dbem') ?>: <?php echo $event->get_bookings()->get_booked_spaces()."/".$event->get_spaces() ?>
|
135 |
+
<?php if( get_option('dbem_bookings_approval') == 1 ) : ?>
|
136 |
+
| <?php _e("Pending",'dbem') ?>: <?php echo $event->get_bookings()->get_pending_spaces(); ?>
|
137 |
+
<?php endif; ?>
|
138 |
+
</td>
|
139 |
+
|
140 |
+
<td>
|
141 |
+
<?php echo $localised_start_date; ?>
|
142 |
+
<?php echo ($localised_end_date != $localised_start_date) ? " - $localised_end_date":'' ?>
|
143 |
+
–
|
144 |
+
<?php
|
145 |
+
//TODO Should 00:00 - 00:00 be treated as an all day event?
|
146 |
+
echo substr ( $event->start_time, 0, 5 ) . " - " . substr ( $event->end_time, 0, 5 );
|
147 |
+
?>
|
148 |
+
</td>
|
149 |
+
</tr>
|
150 |
+
<?php
|
151 |
+
}
|
152 |
+
$event_count++;
|
153 |
+
}
|
154 |
+
?>
|
155 |
+
</tbody>
|
156 |
+
</table>
|
157 |
+
</div>
|
158 |
+
<?php
|
159 |
+
} // end of table
|
160 |
+
?>
|
161 |
+
<div class='tablenav'>
|
162 |
+
<div class="alignleft actions">
|
163 |
+
<br class='clear' />
|
164 |
+
</div>
|
165 |
+
<?php if (!empty($events_nav) && $events_count >= $limit ) : ?>
|
166 |
+
<div class="tablenav-pages">
|
167 |
+
<?php
|
168 |
+
echo $events_nav;
|
169 |
+
?>
|
170 |
+
</div>
|
171 |
+
<?php endif; ?>
|
172 |
+
<br class='clear' />
|
173 |
+
</div>
|
174 |
+
</form>
|
175 |
+
</div>
|
176 |
+
<?php
|
177 |
+
}
|
178 |
+
|
179 |
?>
|
admin/bookings/em-pending.php
CHANGED
@@ -1,155 +1,159 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Generates a "widget" table of pending bookings with some quick admin operation options.
|
5 |
-
* If event id supplied then only pending bookings for that event will show.
|
6 |
-
*
|
7 |
-
* @param int $event_id
|
8 |
-
*/
|
9 |
-
function em_bookings_pending_table($event_id = false){
|
10 |
-
global $EM_Event, $wpdb, $current_user;
|
11 |
-
|
12 |
-
if( get_option('dbem_bookings_approval') == 0 ){
|
13 |
-
return false;
|
14 |
-
}
|
15 |
-
|
16 |
-
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_pending_table' );
|
17 |
-
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
18 |
-
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
19 |
-
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
20 |
-
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
21 |
-
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
22 |
-
|
23 |
-
if( is_object($
|
24 |
-
$
|
25 |
-
}else{
|
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 |
-
<th class='manage-column' scope='col'>
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
<th class='manage-column' scope=
|
102 |
-
|
103 |
-
<th class='manage-column' scope='col'
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
<
|
119 |
-
<?php
|
120 |
-
|
121 |
-
<td><?php echo $EM_Booking->
|
122 |
-
|
123 |
-
<td>
|
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 |
-
<?php
|
151 |
-
|
152 |
-
|
153 |
-
|
154 |
-
|
|
|
|
|
|
|
|
|
155 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Generates a "widget" table of pending bookings with some quick admin operation options.
|
5 |
+
* If event id supplied then only pending bookings for that event will show.
|
6 |
+
*
|
7 |
+
* @param int $event_id
|
8 |
+
*/
|
9 |
+
function em_bookings_pending_table($event_id = false){
|
10 |
+
global $EM_Event, $EM_Ticket, $wpdb, $current_user;
|
11 |
+
|
12 |
+
if( get_option('dbem_bookings_approval') == 0 ){
|
13 |
+
return false;
|
14 |
+
}
|
15 |
+
|
16 |
+
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_pending_table' );
|
17 |
+
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
18 |
+
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
19 |
+
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
20 |
+
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
21 |
+
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
22 |
+
|
23 |
+
if( is_object($EM_Ticket) ){
|
24 |
+
$EM_Bookings = $EM_Ticket->get_bookings()->get_pending_bookings();
|
25 |
+
}else{
|
26 |
+
if( is_object($EM_Event) ){
|
27 |
+
$EM_Bookings = $EM_Event->get_bookings()->get_pending_bookings();
|
28 |
+
}else{
|
29 |
+
//To optimize performance, we can do one query here for all pending bookings to show.
|
30 |
+
$EM_Bookings = EM_Bookings::get(array('status'=>0));
|
31 |
+
$events = array();
|
32 |
+
//Now let's create events and bookings for this:
|
33 |
+
foreach($EM_Bookings->bookings as $EM_Booking){
|
34 |
+
//create event
|
35 |
+
if( !array_key_exists($EM_Booking->event_id,$events) ){
|
36 |
+
$events[$EM_Booking->event_id] = new EM_Event($EM_Booking->event_id);
|
37 |
+
}
|
38 |
+
}
|
39 |
+
}
|
40 |
+
}
|
41 |
+
$bookings_count = (is_array($EM_Bookings->bookings)) ? count($EM_Bookings->bookings):0;
|
42 |
+
?>
|
43 |
+
<div class='wrap em_bookings_pending_table em_obj'>
|
44 |
+
<form id='bookings-filter' method='get' action='<?php bloginfo('wpurl') ?>/wp-admin/edit.php'>
|
45 |
+
<input type="hidden" name="em_obj" value="em_bookings_pending_table" />
|
46 |
+
<!--
|
47 |
+
<ul class="subsubsub">
|
48 |
+
<li>
|
49 |
+
<a href='edit.php?post_type=post' class="current">All <span class="count">(1)</span></a> |
|
50 |
+
</li>
|
51 |
+
</ul>
|
52 |
+
<p class="search-box">
|
53 |
+
<label class="screen-reader-text" for="post-search-input"><?php _e('Search', 'dbem'); ?>:</label>
|
54 |
+
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_GET['em_search'])) ? $_GET['em_search']:''; ?>" />
|
55 |
+
<input type="submit" value="<?php _e('Search', 'dbem'); ?>" class="button" />
|
56 |
+
</p>
|
57 |
+
-->
|
58 |
+
<?php if ( $bookings_count >= $limit ) : ?>
|
59 |
+
<div class='tablenav'>
|
60 |
+
<!--
|
61 |
+
<div class="alignleft actions">
|
62 |
+
<select name="action">
|
63 |
+
<option value="-1" selected="selected">
|
64 |
+
<?php _e('Bulk Actions', 'dbem'); ?>
|
65 |
+
</option>
|
66 |
+
<option value="approve">
|
67 |
+
<?php _e('Approve', 'dbem'); ?>
|
68 |
+
</option>
|
69 |
+
<option value="decline">
|
70 |
+
<?php _e('Decline', 'dbem'); ?>
|
71 |
+
</option>
|
72 |
+
</select>
|
73 |
+
<input type="submit" id="post-query-submit" value="Filter" class="button-secondary" />
|
74 |
+
</div>
|
75 |
+
-->
|
76 |
+
<!--
|
77 |
+
<div class="view-switch">
|
78 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
79 |
+
</div>
|
80 |
+
-->
|
81 |
+
<?php
|
82 |
+
if ( $bookings_count >= $limit ) {
|
83 |
+
$bookings_nav = em_admin_paginate( $bookings_count, $limit, $page, array('em_ajax'=>0, 'em_obj'=>'em_bookings_pending_table'));
|
84 |
+
echo $bookings_nav;
|
85 |
+
}
|
86 |
+
?>
|
87 |
+
<div class="clear"></div>
|
88 |
+
</div>
|
89 |
+
<?php endif; ?>
|
90 |
+
<div class="clear"></div>
|
91 |
+
<?php if( $bookings_count > 0 ): ?>
|
92 |
+
<div class='table-wrap'>
|
93 |
+
<table id='dbem-bookings-table' class='widefat post '>
|
94 |
+
<thead>
|
95 |
+
<tr>
|
96 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
97 |
+
<input class='select-all' type="checkbox" value='1' />
|
98 |
+
</th>
|
99 |
+
<th class='manage-column' scope='col'><?php _e('Booker', 'dbem'); ?></th>
|
100 |
+
<?php if( !is_object($EM_Event) && !is_object($EM_Ticket) ): ?>
|
101 |
+
<th class='manage-column' scope="col"><?php _e('Event', 'dbem'); ?></th>
|
102 |
+
<?php endif; ?>
|
103 |
+
<th class='manage-column' scope='col'><?php _e('E-mail', 'dbem'); ?></th>
|
104 |
+
<th class='manage-column' scope='col'><?php _e('Phone number', 'dbem'); ?></th>
|
105 |
+
<th class='manage-column' scope='col'><?php _e('Spaces', 'dbem'); ?></th>
|
106 |
+
<th class='manage-column' scope='col'> </th>
|
107 |
+
</tr>
|
108 |
+
</thead>
|
109 |
+
<tbody>
|
110 |
+
<?php
|
111 |
+
$rowno = 0;
|
112 |
+
$event_count = 0;
|
113 |
+
foreach ($EM_Bookings->bookings as $EM_Booking) {
|
114 |
+
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
115 |
+
$rowno++;
|
116 |
+
?>
|
117 |
+
<tr>
|
118 |
+
<th scope="row" class="check-column" style="padding:7px 0px 7px;"><input type='checkbox' value='<?php echo $EM_Booking->id ?>' name='bookings[]'/></th>
|
119 |
+
<td><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&person_id=<?php echo $EM_Booking->person->ID; ?>"><?php echo $EM_Booking->person->get_name() ?></a></td>
|
120 |
+
<?php if( !is_object($EM_Event) && !is_object($EM_Ticket) ): ?>
|
121 |
+
<td><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&event_id=<?php echo $EM_Booking->event_id; ?>"><?php echo $events[$EM_Booking->event_id]->name ?></a></td>
|
122 |
+
<?php endif; ?>
|
123 |
+
<td><?php echo $EM_Booking->person->user_email ?></td>
|
124 |
+
<td><?php echo $EM_Booking->person->phone ?></td>
|
125 |
+
<td><?php echo $EM_Booking->get_spaces() ?></td>
|
126 |
+
<td>
|
127 |
+
<?php
|
128 |
+
$approve_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_approve', 'booking_id'=>$EM_Booking->id));
|
129 |
+
$reject_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_reject', 'booking_id'=>$EM_Booking->id));
|
130 |
+
$delete_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_delete', 'booking_id'=>$EM_Booking->id));
|
131 |
+
?>
|
132 |
+
<a class="em-bookings-approve" href="<?php echo $approve_url ?>"><?php _e('Approve','dbem'); ?></a> |
|
133 |
+
<a class="em-bookings-reject" href="<?php echo $reject_url ?>"><?php _e('Reject','dbem'); ?></a> |
|
134 |
+
<span class="trash"><a class="em-bookings-delete" href="<?php echo $delete_url ?>"><?php _e('Delete','dbem'); ?></a></span> |
|
135 |
+
<a class="em-bookings-edit" href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&booking_id=<?php echo $EM_Booking->id; ?>"><?php _e('Edit/View','dbem'); ?></a>
|
136 |
+
</td>
|
137 |
+
</tr>
|
138 |
+
<?php
|
139 |
+
}
|
140 |
+
$event_count++;
|
141 |
+
}
|
142 |
+
?>
|
143 |
+
</tbody>
|
144 |
+
</table>
|
145 |
+
</div>
|
146 |
+
<?php else: ?>
|
147 |
+
<?php _e('No pending bookings.', 'dbem'); ?>
|
148 |
+
<?php endif; ?>
|
149 |
+
</form>
|
150 |
+
<?php if( !empty($bookings_nav) && $EM_Bookings >= $limit ) : ?>
|
151 |
+
<div class='tablenav'>
|
152 |
+
<?php echo $bookings_nav; ?>
|
153 |
+
<div class="clear"></div>
|
154 |
+
</div>
|
155 |
+
<?php endif; ?>
|
156 |
+
</div>
|
157 |
+
<?php
|
158 |
+
}
|
159 |
?>
|
admin/bookings/em-person.php
CHANGED
@@ -1,150 +1,152 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Generates a "widget" table of confirmed bookings for a specific event.
|
5 |
-
*
|
6 |
-
* @param int $event_id
|
7 |
-
*/
|
8 |
-
function em_bookings_person_table(){
|
9 |
-
global $wpdb, $current_user,$EM_Person;
|
10 |
-
if(!is_object($EM_Person)){
|
11 |
-
return false;
|
12 |
-
}
|
13 |
-
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_confirmed_table' );
|
14 |
-
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
15 |
-
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
16 |
-
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
17 |
-
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
18 |
-
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
19 |
-
|
20 |
-
$bookings = $EM_Person->get_bookings();
|
21 |
-
$bookings_count =
|
22 |
-
if($bookings_count > 0){
|
23 |
-
//Get events here in one query to speed things up
|
24 |
-
foreach($bookings as $EM_Booking){
|
25 |
-
$event_ids[] = $EM_Booking->event_id;
|
26 |
-
}
|
27 |
-
$events = EM_Events::get($event_ids);
|
28 |
-
}
|
29 |
-
?>
|
30 |
-
<div class='wrap em_bookings_pending_table em_obj'>
|
31 |
-
<form id='bookings-filter' method='get' action='<?php bloginfo('wpurl') ?>/wp-admin/edit.php'>
|
32 |
-
<input type="hidden" name="em_obj" value="em_bookings_pending_table" />
|
33 |
-
<!--
|
34 |
-
<ul class="subsubsub">
|
35 |
-
<li>
|
36 |
-
<a href='edit.php?post_type=post' class="current">All <span class="count">(1)</span></a> |
|
37 |
-
</li>
|
38 |
-
</ul>
|
39 |
-
<p class="search-box">
|
40 |
-
<label class="screen-reader-text" for="post-search-input"><?php _e('Search'); ?>:</label>
|
41 |
-
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_GET['em_search'])) ? $_GET['em_search']:''; ?>" />
|
42 |
-
<input type="submit" value="<?php _e('Search'); ?>" class="button" />
|
43 |
-
</p>
|
44 |
-
-->
|
45 |
-
<?php if ( $bookings_count >= $limit ) : ?>
|
46 |
-
<div class='tablenav'>
|
47 |
-
<!--
|
48 |
-
<div class="alignleft actions">
|
49 |
-
<select name="action">
|
50 |
-
<option value="-1" selected="selected">
|
51 |
-
<?php _e('Bulk Actions'); ?>
|
52 |
-
</option>
|
53 |
-
<option value="approve">
|
54 |
-
<?php _e('Approve', 'dbem'); ?>
|
55 |
-
</option>
|
56 |
-
<option value="decline">
|
57 |
-
<?php _e('Decline', 'dbem'); ?>
|
58 |
-
</option>
|
59 |
-
</select>
|
60 |
-
<input type="submit" id="post-query-submit" value="Filter" class="button-secondary" />
|
61 |
-
</div>
|
62 |
-
-->
|
63 |
-
<!--
|
64 |
-
<div class="view-switch">
|
65 |
-
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
66 |
-
</div>
|
67 |
-
-->
|
68 |
-
<?php
|
69 |
-
if ( $bookings_count >= $limit ) {
|
70 |
-
$
|
71 |
-
$bookings_nav
|
72 |
-
|
73 |
-
|
74 |
-
|
75 |
-
|
76 |
-
|
77 |
-
|
78 |
-
|
79 |
-
|
80 |
-
<
|
81 |
-
|
82 |
-
|
83 |
-
|
84 |
-
|
85 |
-
|
86 |
-
|
87 |
-
<th class='manage-column' scope='col'
|
88 |
-
<th class='manage-column' scope='col'
|
89 |
-
<th class='manage-column' scope='col'
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
$
|
96 |
-
$
|
97 |
-
|
98 |
-
$EM_Event
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
<
|
104 |
-
<td
|
105 |
-
<td><?php echo $EM_Booking->
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
$
|
111 |
-
$
|
112 |
-
$
|
113 |
-
|
114 |
-
?>
|
115 |
-
<?php
|
116 |
-
|
117 |
-
<?php
|
118 |
-
<?php
|
119 |
-
|
120 |
-
<?php
|
121 |
-
<?php
|
122 |
-
|
123 |
-
<?php
|
124 |
-
<a class="em-bookings-
|
125 |
-
|
126 |
-
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
133 |
-
|
134 |
-
|
135 |
-
|
136 |
-
|
137 |
-
|
138 |
-
<?php
|
139 |
-
|
140 |
-
|
141 |
-
|
142 |
-
|
143 |
-
|
144 |
-
|
145 |
-
|
146 |
-
|
147 |
-
|
148 |
-
|
149 |
-
|
|
|
|
|
150 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Generates a "widget" table of confirmed bookings for a specific event.
|
5 |
+
*
|
6 |
+
* @param int $event_id
|
7 |
+
*/
|
8 |
+
function em_bookings_person_table(){
|
9 |
+
global $wpdb, $current_user,$EM_Person;
|
10 |
+
if(!is_object($EM_Person)){
|
11 |
+
return false;
|
12 |
+
}
|
13 |
+
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_confirmed_table' );
|
14 |
+
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
15 |
+
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
16 |
+
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
17 |
+
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
18 |
+
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
19 |
+
|
20 |
+
$bookings = $EM_Person->get_bookings();
|
21 |
+
$bookings_count = count($bookings);
|
22 |
+
if($bookings_count > 0){
|
23 |
+
//Get events here in one query to speed things up
|
24 |
+
foreach($bookings as $EM_Booking){
|
25 |
+
$event_ids[] = $EM_Booking->event_id;
|
26 |
+
}
|
27 |
+
$events = EM_Events::get($event_ids);
|
28 |
+
}
|
29 |
+
?>
|
30 |
+
<div class='wrap em_bookings_pending_table em_obj'>
|
31 |
+
<form id='bookings-filter' method='get' action='<?php bloginfo('wpurl') ?>/wp-admin/edit.php'>
|
32 |
+
<input type="hidden" name="em_obj" value="em_bookings_pending_table" />
|
33 |
+
<!--
|
34 |
+
<ul class="subsubsub">
|
35 |
+
<li>
|
36 |
+
<a href='edit.php?post_type=post' class="current">All <span class="count">(1)</span></a> |
|
37 |
+
</li>
|
38 |
+
</ul>
|
39 |
+
<p class="search-box">
|
40 |
+
<label class="screen-reader-text" for="post-search-input"><?php _e('Search', 'dbem'); ?>:</label>
|
41 |
+
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_GET['em_search'])) ? $_GET['em_search']:''; ?>" />
|
42 |
+
<input type="submit" value="<?php _e('Search', 'dbem'); ?>" class="button" />
|
43 |
+
</p>
|
44 |
+
-->
|
45 |
+
<?php if ( $bookings_count >= $limit ) : ?>
|
46 |
+
<div class='tablenav'>
|
47 |
+
<!--
|
48 |
+
<div class="alignleft actions">
|
49 |
+
<select name="action">
|
50 |
+
<option value="-1" selected="selected">
|
51 |
+
<?php _e('Bulk Actions', 'dbem'); ?>
|
52 |
+
</option>
|
53 |
+
<option value="approve">
|
54 |
+
<?php _e('Approve', 'dbem'); ?>
|
55 |
+
</option>
|
56 |
+
<option value="decline">
|
57 |
+
<?php _e('Decline', 'dbem'); ?>
|
58 |
+
</option>
|
59 |
+
</select>
|
60 |
+
<input type="submit" id="post-query-submit" value="Filter" class="button-secondary" />
|
61 |
+
</div>
|
62 |
+
-->
|
63 |
+
<!--
|
64 |
+
<div class="view-switch">
|
65 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
66 |
+
</div>
|
67 |
+
-->
|
68 |
+
<?php
|
69 |
+
if ( $bookings_count >= $limit ) {
|
70 |
+
$bookings_nav = em_admin_paginate( $bookings_count, $limit, $page, array('em_ajax'=>0, 'em_obj'=>'em_bookings_confirmed_table'));
|
71 |
+
echo $bookings_nav;
|
72 |
+
}
|
73 |
+
?>
|
74 |
+
<div class="clear"></div>
|
75 |
+
</div>
|
76 |
+
<?php endif; ?>
|
77 |
+
<div class="clear"></div>
|
78 |
+
<?php if( $bookings_count > 0 ): ?>
|
79 |
+
<div class='table-wrap'>
|
80 |
+
<table id='dbem-bookings-table' class='widefat post '>
|
81 |
+
<thead>
|
82 |
+
<tr>
|
83 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
84 |
+
<input class='select-all' type="checkbox" value='1' />
|
85 |
+
</th>
|
86 |
+
<th class='manage-column' scope='col'><?php _e('Event', 'dbem'); ?></th>
|
87 |
+
<th class='manage-column' scope='col'><?php _e('Spaces', 'dbem'); ?></th>
|
88 |
+
<th class='manage-column' scope='col'><?php _e('Status', 'dbem'); ?></th>
|
89 |
+
<th class='manage-column' scope='col'> </th>
|
90 |
+
</tr>
|
91 |
+
</thead>
|
92 |
+
<tbody>
|
93 |
+
<?php
|
94 |
+
$rowno = 0;
|
95 |
+
$event_count = 0;
|
96 |
+
foreach ($bookings as $EM_Booking) {
|
97 |
+
$EM_Event = $events[$EM_Booking->event_id];
|
98 |
+
if( $EM_Event->can_manage('edit_events','edit_others_events') && ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
99 |
+
$rowno++;
|
100 |
+
?>
|
101 |
+
<tr>
|
102 |
+
<th scope="row" class="check-column" style="padding:7px 0px 7px;"><input type='checkbox' value='<?php echo $EM_Booking->id ?>' name='bookings[]'/></th>
|
103 |
+
<td><a class="row-title" href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&event_id=<?php echo $EM_Event->id ?>"><?php echo ($EM_Event->name); ?></a></td>
|
104 |
+
<td><?php echo $EM_Booking->get_spaces() ?></td>
|
105 |
+
<td><?php echo $EM_Booking->status_array[$EM_Booking->status]; ?>
|
106 |
+
</td>
|
107 |
+
<td>
|
108 |
+
<?php
|
109 |
+
$unapprove_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_unapprove', 'booking_id'=>$EM_Booking->id));
|
110 |
+
$approve_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_approve', 'booking_id'=>$EM_Booking->id));
|
111 |
+
$reject_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_reject', 'booking_id'=>$EM_Booking->id));
|
112 |
+
$delete_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_delete', 'booking_id'=>$EM_Booking->id));
|
113 |
+
?>
|
114 |
+
<?php if( get_option('dbem_bookings_approval') && ($EM_Booking->status == 0 ) ): ?>
|
115 |
+
<a class="em-bookings-approve" href="<?php echo $approve_url ?>"><?php _e('Approve','dbem'); ?></a> |
|
116 |
+
<?php endif; ?>
|
117 |
+
<?php if( get_option('dbem_bookings_approval') && $EM_Booking->status == 1 ): ?>
|
118 |
+
<a class="em-bookings-unapprove" href="<?php echo $unapprove_url ?>"><?php _e('Unapprove','dbem'); ?></a> |
|
119 |
+
<?php endif; ?>
|
120 |
+
<?php if( $EM_Booking->status == 2 ): ?>
|
121 |
+
<a class="em-bookings-approve" href="<?php echo $approve_url ?>"><?php _e('Restore','dbem'); ?></a> |
|
122 |
+
<?php endif; ?>
|
123 |
+
<?php if( $EM_Booking->status == 0 || $EM_Booking->status == 1 ): ?>
|
124 |
+
<a class="em-bookings-reject" href="<?php echo $reject_url ?>"><?php _e('Reject','dbem'); ?></a> |
|
125 |
+
<?php endif; ?>
|
126 |
+
<a class="em-bookings-edit" href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&booking_id=<?php echo $EM_Booking->id; ?>"><?php _e('Edit/View','dbem'); ?></a> |
|
127 |
+
<span class="trash"><a class="em-bookings-delete" href="<?php echo $delete_url ?>"><?php _e('Delete','dbem'); ?></a></span>
|
128 |
+
</td>
|
129 |
+
</tr>
|
130 |
+
<?php
|
131 |
+
}
|
132 |
+
$event_count++;
|
133 |
+
}
|
134 |
+
?>
|
135 |
+
</tbody>
|
136 |
+
</table>
|
137 |
+
</div>
|
138 |
+
<?php else: ?>
|
139 |
+
<?php _e('No confirmed bookings.', 'dbem'); ?>
|
140 |
+
<?php endif; ?>
|
141 |
+
</form>
|
142 |
+
<?php if( !empty($bookings_nav) && $bookings >= $limit ) : ?>
|
143 |
+
<div class='tablenav'>
|
144 |
+
<?php echo $bookings_nav; ?>
|
145 |
+
<div class="clear"></div>
|
146 |
+
</div>
|
147 |
+
<?php endif; ?>
|
148 |
+
</div>
|
149 |
+
<?php
|
150 |
+
|
151 |
+
}
|
152 |
?>
|
admin/bookings/em-rejected.php
CHANGED
@@ -1,133 +1,137 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Generates a "widget" table of confirmed bookings for a specific event.
|
4 |
-
*
|
5 |
-
* @param int $event_id
|
6 |
-
*/
|
7 |
-
function em_bookings_rejected_table(){
|
8 |
-
global $EM_Event, $wpdb, $current_user;
|
9 |
-
|
10 |
-
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_confirmed_table' );
|
11 |
-
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
12 |
-
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
13 |
-
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
14 |
-
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
15 |
-
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
16 |
-
|
17 |
-
if( is_object($
|
18 |
-
$
|
19 |
-
}else{
|
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 |
-
<th class='manage-column' scope='col'>
|
82 |
-
|
83 |
-
|
84 |
-
<th class='manage-column' scope='col'
|
85 |
-
<th class='manage-column' scope='col'
|
86 |
-
|
87 |
-
|
88 |
-
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
<
|
101 |
-
<td><?php echo $EM_Booking->
|
102 |
-
<td>
|
103 |
-
|
104 |
-
|
105 |
-
|
106 |
-
|
107 |
-
|
108 |
-
|
109 |
-
|
110 |
-
|
111 |
-
|
112 |
-
|
113 |
-
|
114 |
-
|
115 |
-
|
116 |
-
|
117 |
-
|
118 |
-
|
119 |
-
|
120 |
-
|
121 |
-
|
122 |
-
|
123 |
-
|
124 |
-
|
125 |
-
|
126 |
-
<?php
|
127 |
-
|
128 |
-
|
129 |
-
|
130 |
-
|
131 |
-
|
132 |
-
|
|
|
|
|
|
|
|
|
133 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Generates a "widget" table of confirmed bookings for a specific event.
|
4 |
+
*
|
5 |
+
* @param int $event_id
|
6 |
+
*/
|
7 |
+
function em_bookings_rejected_table(){
|
8 |
+
global $EM_Event, $EM_Ticket, $wpdb, $current_user;
|
9 |
+
|
10 |
+
$action_scope = ( !empty($_REQUEST['em_obj']) && $_REQUEST['em_obj'] == 'em_bookings_confirmed_table' );
|
11 |
+
$action = ( $action_scope && !empty($_GET ['action']) ) ? $_GET ['action']:'';
|
12 |
+
$order = ( $action_scope && !empty($_GET ['order']) ) ? $_GET ['order']:'ASC';
|
13 |
+
$limit = ( $action_scope && !empty($_GET['limit']) ) ? $_GET['limit'] : 20;//Default limit
|
14 |
+
$page = ( $action_scope && !empty($_GET['pno']) ) ? $_GET['pno']:1;
|
15 |
+
$offset = ( $action_scope && $page > 1 ) ? ($page-1)*$limit : 0;
|
16 |
+
|
17 |
+
if( is_object($EM_Ticket) ){
|
18 |
+
$EM_Bookings = $EM_Ticket->get_bookings()->get_rejected_bookings();
|
19 |
+
}else{
|
20 |
+
if( is_object($EM_Event) ){
|
21 |
+
$EM_Bookings = $EM_Event->get_bookings()->get_rejected_bookings();
|
22 |
+
}else{
|
23 |
+
return false;
|
24 |
+
}
|
25 |
+
}
|
26 |
+
$bookings_count = (is_array($EM_Bookings->bookings)) ? count($EM_Bookings->bookings):0;
|
27 |
+
?>
|
28 |
+
<div class='wrap em_bookings_pending_table em_obj'>
|
29 |
+
<form id='bookings-filter' method='get' action='<?php bloginfo('wpurl') ?>/wp-admin/edit.php'>
|
30 |
+
<input type="hidden" name="em_obj" value="em_bookings_pending_table" />
|
31 |
+
<!--
|
32 |
+
<ul class="subsubsub">
|
33 |
+
<li>
|
34 |
+
<a href='edit.php?post_type=post' class="current">All <span class="count">(1)</span></a> |
|
35 |
+
</li>
|
36 |
+
</ul>
|
37 |
+
<p class="search-box">
|
38 |
+
<label class="screen-reader-text" for="post-search-input"><?php _e('Search', 'dbem'); ?>:</label>
|
39 |
+
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_GET['em_search'])) ? $_GET['em_search']:''; ?>" />
|
40 |
+
<input type="submit" value="<?php _e('Search', 'dbem'); ?>" class="button" />
|
41 |
+
</p>
|
42 |
+
-->
|
43 |
+
<?php if ( $bookings_count >= $limit ) : ?>
|
44 |
+
<div class='tablenav'>
|
45 |
+
<!--
|
46 |
+
<div class="alignleft actions">
|
47 |
+
<select name="action">
|
48 |
+
<option value="-1" selected="selected">
|
49 |
+
<?php _e('Bulk Actions', 'dbem'); ?>
|
50 |
+
</option>
|
51 |
+
<option value="approve">
|
52 |
+
<?php _e('Approve', 'dbem'); ?>
|
53 |
+
</option>
|
54 |
+
<option value="decline">
|
55 |
+
<?php _e('Decline', 'dbem'); ?>
|
56 |
+
</option>
|
57 |
+
</select>
|
58 |
+
<input type="submit" id="post-query-submit" value="Filter" class="button-secondary" />
|
59 |
+
</div>
|
60 |
+
-->
|
61 |
+
<!--
|
62 |
+
<div class="view-switch">
|
63 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
64 |
+
</div>
|
65 |
+
-->
|
66 |
+
<?php
|
67 |
+
if ( $bookings_count >= $limit ) {
|
68 |
+
$bookings_nav = em_admin_paginate( $bookings_count, $limit, $page, array('em_ajax'=>0, 'em_obj'=>'em_bookings_confirmed_table'));
|
69 |
+
echo $bookings_nav;
|
70 |
+
}
|
71 |
+
?>
|
72 |
+
<div class="clear"></div>
|
73 |
+
</div>
|
74 |
+
<?php endif; ?>
|
75 |
+
<div class="clear"></div>
|
76 |
+
<?php if( $bookings_count > 0 ): ?>
|
77 |
+
<div class='table-wrap'>
|
78 |
+
<table id='dbem-bookings-table' class='widefat post '>
|
79 |
+
<thead>
|
80 |
+
<tr>
|
81 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
82 |
+
<input class='select-all' type="checkbox" value='1' />
|
83 |
+
</th>
|
84 |
+
<th class='manage-column' scope='col'><?php _e('Booker', 'dbem'); ?></th>
|
85 |
+
<th class='manage-column' scope='col'><?php _e('E-mail', 'dbem'); ?></th>
|
86 |
+
<th class='manage-column' scope='col'><?php _e('Phone number', 'dbem'); ?></th>
|
87 |
+
<th class='manage-column' scope='col'><?php _e('Spaces', 'dbem'); ?></th>
|
88 |
+
<th class='manage-column' scope='col'> </th>
|
89 |
+
</tr>
|
90 |
+
</thead>
|
91 |
+
<tbody>
|
92 |
+
<?php
|
93 |
+
$rowno = 0;
|
94 |
+
$event_count = 0;
|
95 |
+
foreach ($EM_Bookings->bookings as $EM_Booking) {
|
96 |
+
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
97 |
+
$rowno++;
|
98 |
+
?>
|
99 |
+
<tr>
|
100 |
+
<th scope="row" class="check-column" style="padding:7px 0px 7px;"><input type='checkbox' value='<?php echo $EM_Booking->id ?>' name='bookings[]'/></th>
|
101 |
+
<td><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&person_id=<?php echo $EM_Booking->person->ID; ?>"><?php echo $EM_Booking->person->get_name() ?></a></td>
|
102 |
+
<td><?php echo $EM_Booking->person->user_email ?></td>
|
103 |
+
<td><?php echo $EM_Booking->person->phone ?></td>
|
104 |
+
<td><?php echo $EM_Booking->get_spaces() ?></td>
|
105 |
+
<td>
|
106 |
+
<?php
|
107 |
+
$approve_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_approve', 'booking_id'=>$EM_Booking->id));
|
108 |
+
$delete_url = em_add_get_params($_SERVER['REQUEST_URI'], array('action'=>'bookings_delete', 'booking_id'=>$EM_Booking->id));
|
109 |
+
$edit_url = em_add_get_params($_SERVER['REQUEST_URI'], array('booking_id'=>$EM_Booking->id));
|
110 |
+
?>
|
111 |
+
<a class="em-bookings-approve" href="<?php echo $approve_url ?>"><?php _e('Approve','dbem'); ?></a> |
|
112 |
+
<a class="em-bookings-edit" href="<?php echo $edit_url ?>"><?php _e('Edit/View','dbem'); ?></a> |
|
113 |
+
<span class="trash"><a class="em-bookings-delete" href="<?php echo $delete_url ?>"><?php _e('Delete','dbem'); ?></a></span>
|
114 |
+
</td>
|
115 |
+
</tr>
|
116 |
+
<?php
|
117 |
+
}
|
118 |
+
$event_count++;
|
119 |
+
}
|
120 |
+
?>
|
121 |
+
</tbody>
|
122 |
+
</table>
|
123 |
+
</div>
|
124 |
+
<?php else: ?>
|
125 |
+
<?php _e('No rejected bookings.', 'dbem'); ?>
|
126 |
+
<?php endif; ?>
|
127 |
+
</form>
|
128 |
+
<?php if( !empty($bookings_nav) && $EM_Bookings >= $limit ) : ?>
|
129 |
+
<div class='tablenav'>
|
130 |
+
<?php echo $bookings_nav; ?>
|
131 |
+
<div class="clear"></div>
|
132 |
+
</div>
|
133 |
+
<?php endif; ?>
|
134 |
+
</div>
|
135 |
+
<?php
|
136 |
+
}
|
137 |
?>
|
admin/em-admin.php
CHANGED
@@ -1,285 +1,200 @@
|
|
1 |
-
<?php
|
2 |
-
//Admin functions
|
3 |
-
|
4 |
-
/**
|
5 |
-
* Generate warnings and notices in the admin area
|
6 |
-
*/
|
7 |
-
function em_admin_warnings() {
|
8 |
-
//If we're editing the events page show hello to new user
|
9 |
-
$events_page_id = get_option ( 'dbem_events_page' );
|
10 |
-
$dismiss_link_joiner = ( count($_GET) > 0 ) ? '&':'?';
|
11 |
-
|
12 |
-
if(
|
13 |
-
//New User Intro
|
14 |
-
if (isset ( $_GET ['disable_hello_to_user'] ) && $_GET ['disable_hello_to_user'] == 'true'){
|
15 |
-
// Disable Hello to new user if requested
|
16 |
-
update_option
|
17 |
-
}elseif ( get_option ( 'dbem_hello_to_user' )
|
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 |
-
$("#recurrence-dates-explanation").hide();
|
201 |
-
$("#event-date-explanation").show();
|
202 |
-
$("h3#recurrence-dates-title").hide();
|
203 |
-
$("h3#event-date-title").show();
|
204 |
-
}
|
205 |
-
}
|
206 |
-
$("#recurrence-dates-explanation").hide();
|
207 |
-
$("#localised-date").show();
|
208 |
-
$("#localised-end-date").show();
|
209 |
-
|
210 |
-
$("#date-to-submit").hide();
|
211 |
-
$("#end-date-to-submit").hide();
|
212 |
-
|
213 |
-
$("#start-time").timeEntry({spinnerImage: '', show24Hours: <?php echo $show24Hours; ?> });
|
214 |
-
$("#end-time").timeEntry({spinnerImage: '', show24Hours: <?php echo $show24Hours; ?>});
|
215 |
-
|
216 |
-
$('input.select-all').change(function(){
|
217 |
-
if($(this).is(':checked'))
|
218 |
-
$('input.row-selector').attr('checked', true);
|
219 |
-
else
|
220 |
-
$('input.row-selector').attr('checked', false);
|
221 |
-
});
|
222 |
-
|
223 |
-
updateIntervalDescriptor();
|
224 |
-
updateIntervalSelectors();
|
225 |
-
updateShowHideRecurrence();
|
226 |
-
updateShowHideRsvp();
|
227 |
-
$('input#event-recurrence').change(updateShowHideRecurrence);
|
228 |
-
$('input#rsvp-checkbox').change(updateShowHideRsvp);
|
229 |
-
|
230 |
-
// recurrency elements
|
231 |
-
$('input#recurrence-interval').keyup(updateIntervalDescriptor);
|
232 |
-
$('select#recurrence-frequency').change(updateIntervalDescriptor);
|
233 |
-
$('select#recurrence-frequency').change(updateIntervalSelectors);
|
234 |
-
|
235 |
-
// hiding or showing notes according to their content
|
236 |
-
$('.postbox h3').prepend('<a class="togbox">+</a> ');
|
237 |
-
$('#event_notes h3').click( function() {
|
238 |
-
$(this).parent().first().toggleClass('closed');
|
239 |
-
});
|
240 |
-
|
241 |
-
// users cannot submit the event form unless some fields are filled
|
242 |
-
function validateEventForm(){
|
243 |
-
errors = "";
|
244 |
-
var recurring = $("input[@name=repeated_event]:checked").val();
|
245 |
-
requiredFields= new Array('event_name', 'localised_event_date', 'location_name','location_address','location_town');
|
246 |
-
var localisedRequiredFields = {
|
247 |
-
'event_name':"<?php _e ( 'Name', 'dbem' )?>",
|
248 |
-
'localised_event_date':"<?php _e ( 'Date', 'dbem' )?>",
|
249 |
-
'location_name':"<?php _e ( 'Location', 'dbem' )?>",
|
250 |
-
'location_address':"<?php _e ( 'Address', 'dbem' )?>",
|
251 |
-
'location_town':"<?php _e ( 'Town', 'dbem' )?>"
|
252 |
-
};
|
253 |
-
missingFields = new Array;
|
254 |
-
for (var i in requiredFields) {
|
255 |
-
if ($("input[@name=" + requiredFields[i]+ "]").val() == 0) {
|
256 |
-
missingFields.push(localisedRequiredFields[requiredFields[i]]);
|
257 |
-
$("input[@name=" + requiredFields[i]+ "]").css('border','2px solid red');
|
258 |
-
} else {
|
259 |
-
$("input[@name=" + requiredFields[i]+ "]").css('border','1px solid #DFDFDF');
|
260 |
-
}
|
261 |
-
}
|
262 |
-
|
263 |
-
// alert('ciao ' + recurring+ " end: " + $("input[@name=localised_event_end_date]").val());
|
264 |
-
if (missingFields.length > 0) {
|
265 |
-
errors = "<?php _e ( 'Some required fields are missing:', 'dbem' )?> " + missingFields.join(", ") + ".\n";
|
266 |
-
}
|
267 |
-
if(recurring && $("input[@name=localised_event_end_date]").val() == "") {
|
268 |
-
errors = errors + "<?php _e ( 'Since the event is repeated, you must specify an end date', 'dbem' )?>.";
|
269 |
-
$("input[@name=localised_event_end_date]").css('border','2px solid red');
|
270 |
-
} else {
|
271 |
-
$("input[@name=localised_event_end_date]").css('border','1px solid #DFDFDF');
|
272 |
-
}
|
273 |
-
if(errors != "") {
|
274 |
-
alert(errors);
|
275 |
-
return false;
|
276 |
-
}
|
277 |
-
return true;
|
278 |
-
}
|
279 |
-
$('#event-form').bind("submit", validateEventForm);
|
280 |
-
});
|
281 |
-
//]]>
|
282 |
-
</script>
|
283 |
-
<?php
|
284 |
-
}
|
285 |
?>
|
1 |
+
<?php
|
2 |
+
//Admin functions
|
3 |
+
|
4 |
+
/**
|
5 |
+
* Generate warnings and notices in the admin area
|
6 |
+
*/
|
7 |
+
function em_admin_warnings() {
|
8 |
+
//If we're editing the events page show hello to new user
|
9 |
+
$events_page_id = get_option ( 'dbem_events_page' );
|
10 |
+
$dismiss_link_joiner = ( count($_GET) > 0 ) ? '&':'?';
|
11 |
+
|
12 |
+
if( current_user_can('activate_plugins') ){
|
13 |
+
//New User Intro
|
14 |
+
if (isset ( $_GET ['disable_hello_to_user'] ) && $_GET ['disable_hello_to_user'] == 'true'){
|
15 |
+
// Disable Hello to new user if requested
|
16 |
+
update_option('dbem_hello_to_user',0);
|
17 |
+
}elseif ( get_option ( 'dbem_hello_to_user' ) ) {
|
18 |
+
//FIXME update welcome msg with good links
|
19 |
+
$advice = sprintf( __("<p>Events Manager is ready to go! It is highly recommended you read the <a href='%s'>Getting Started</a> guide on our site, as well as checking out the <a href='%s'>Settings Page</a>. <a href='%s' title='Don't show this advice again'>Dismiss</a></p>", 'dbem'), 'http://wp-events-plugin.com/documentation/getting-started/?utm_source=em&utm_medium=plugin&utm_content=installationlink&utm_campaign=plugin_links', get_bloginfo('url').'/wp-admin/admin.php?page=events-manager-options', $_SERVER['REQUEST_URI'].$dismiss_link_joiner.'disable_hello_to_user=true');
|
20 |
+
?>
|
21 |
+
<div id="message" class="updated">
|
22 |
+
<?php echo $advice; ?>
|
23 |
+
</div>
|
24 |
+
<?php
|
25 |
+
}
|
26 |
+
|
27 |
+
//Image upload folders
|
28 |
+
if( is_admin() && EM_IMAGE_DS == '/' ){
|
29 |
+
$errs = array();
|
30 |
+
if( is_writable(EM_IMAGE_UPLOAD_DIR) || @mkdir(EM_IMAGE_UPLOAD_DIR, 0777)){
|
31 |
+
if( !is_writable(EM_IMAGE_UPLOAD_DIR.'/events/') && !@mkdir(EM_IMAGE_UPLOAD_DIR."events/", 0777) ){ $errs[] = 'events'; }
|
32 |
+
if( !is_writable(EM_IMAGE_UPLOAD_DIR.'/locations/') && !@mkdir(EM_IMAGE_UPLOAD_DIR."locations/", 0777) ){ $errs[] = 'locations'; }
|
33 |
+
if( !is_writable(EM_IMAGE_UPLOAD_DIR.'/categories/') && !@mkdir(EM_IMAGE_UPLOAD_DIR."categories/", 0777) ){ $errs[] = 'categories'; }
|
34 |
+
}elseif( !is_writable(EM_IMAGE_UPLOAD_DIR) ){
|
35 |
+
$errs = array('events','categories','locations');
|
36 |
+
}
|
37 |
+
if( count($errs) > 0 ){
|
38 |
+
?>
|
39 |
+
<div class="updated">
|
40 |
+
<p><?php echo sprintf(__('The upload directory '.EM_IMAGE_UPLOAD_DIR.' is must be present with these writeable folders: %s. Please create these folders with the same write permissions you use for your normal wordpress image upload folders.','dbem'),implode(', ',$errs)); ?></p>
|
41 |
+
</div>
|
42 |
+
<?php
|
43 |
+
}
|
44 |
+
}
|
45 |
+
|
46 |
+
//If events page couldn't be created
|
47 |
+
if( !empty($_GET['em_dismiss_admin_notice']) ){
|
48 |
+
delete_option('dbem_admin_notice_'.$_GET['em_dismiss_admin_notice']);
|
49 |
+
}else{
|
50 |
+
if ( get_option('dbem_admin_notice_3.0.91') ){
|
51 |
+
?>
|
52 |
+
<div class="updated">
|
53 |
+
<p><?php echo sprintf ( __( '<strong>Events Manager has some new features!</strong><ul><li>Bookings can now be approved before they count towards your event\'s space allocations.</li><li>Events now have owners, and you can restrict users so they can only manage events/locations/categories they create.<br/><br/>These new permissions are enabled by default, but since you upgraded it has been disabled to maintain the previous plugin behaviour. You can re-enable it from the <a href="%s">settings page</a>. <a href="%s">Dismiss</a>', 'dbem'), get_bloginfo ( 'url' ) . '/wp-admin/admin.php?page=events-manager-options', $_SERVER['REQUEST_URI'].$dismiss_link_joiner.'em_dismiss_admin_notice=3.0.91' ); ?></p>
|
54 |
+
</div>
|
55 |
+
<?php
|
56 |
+
}
|
57 |
+
}
|
58 |
+
|
59 |
+
//If events page couldn't be created
|
60 |
+
if( !empty($_GET['em_dismiss_events_page']) ){
|
61 |
+
update_option('dbem_dismiss_events_page',1);
|
62 |
+
}else{
|
63 |
+
if ( !get_page($events_page_id) && !get_option('dbem_dismiss_events_page') ){
|
64 |
+
?>
|
65 |
+
<div id="em_page_error" class="updated">
|
66 |
+
<p><?php echo sprintf ( __( 'Uh Oh! For some reason wordpress could not create an events page for you (or you just deleted it). Not to worry though, all you have to do is create an empty page, name it whatever you want, and select it as your events page in your <a href="%s">settings page</a>. Sorry for the extra step! If you know what you are doing, you may have done this on purpose, if so <a href="%s">ignore this message</a>', 'dbem'), get_bloginfo ( 'url' ) . '/wp-admin/admin.php?page=events-manager-options', $_SERVER['REQUEST_URI'].$dismiss_link_joiner.'em_dismiss_events_page=1' ); ?></p>
|
67 |
+
</div>
|
68 |
+
<?php
|
69 |
+
}
|
70 |
+
}
|
71 |
+
//If events page couldn't be created
|
72 |
+
if( !empty($_GET['em_dismiss_notice_migrate_v3']) ){
|
73 |
+
delete_option('em_notice_migrate_v3');
|
74 |
+
}else{
|
75 |
+
if( get_option('em_notice_migrate_v3') ){
|
76 |
+
?>
|
77 |
+
<div id="em_page_error" class="updated">
|
78 |
+
<p><?php echo sprintf ( __( 'A <strong>LOT</strong> has changed since Events Manager 3. We recommend you take a look at the <a href="%s">settings page</a> for new features and upgrade instructions, and you may particualarly be interested in modifying permissions. <a href="%s">Dismiss</a>' ), 'admin.php?page=events-manager-options', em_add_get_params($_SERVER['REQUEST_URI'], array('em_dismiss_notice_migrate_v3'=>1))); ?></p>
|
79 |
+
</div>
|
80 |
+
<?php
|
81 |
+
}
|
82 |
+
}
|
83 |
+
|
84 |
+
if( !empty($_REQUEST['action']) && $_REQUEST['action'] == 'em_rc_reimport' && wp_verify_nonce($_REQUEST['_wpnonce'], 'em_rc_reimport') ){
|
85 |
+
require_once( dirname(__FILE__).'/../em-install.php');
|
86 |
+
em_migrate_v3();
|
87 |
+
?>
|
88 |
+
<div id="em_page_error" class="updated">
|
89 |
+
<p>Reimporting old settings was successful. Click the dismiss button on the other notification if after checking things are now working.</p>
|
90 |
+
</div>
|
91 |
+
<?php
|
92 |
+
}
|
93 |
+
|
94 |
+
if( defined('EMP_VERSION') && EMP_VERSION < EM_PRO_MIN_VERSION ){?>
|
95 |
+
<div id="em_page_error" class="updated">
|
96 |
+
<p>There is a newer version of Events Manager Pro which is required for this current version of Events Manager. Please go to the plugin website and download the latest update.</p>
|
97 |
+
</div>
|
98 |
+
<?php
|
99 |
+
}
|
100 |
+
}
|
101 |
+
//Warn about EM page edit
|
102 |
+
if ( preg_match( '/(post|page).php/', $_SERVER ['SCRIPT_NAME']) && isset ( $_GET ['action'] ) && $_GET ['action'] == 'edit' && isset ( $_GET ['post'] ) && $_GET ['post'] == "$events_page_id") {
|
103 |
+
$message = sprintf ( __ ( "This page corresponds to <strong>Events Manager</strong> events page. Its content will be overriden by Events Manager, although if you include the word CONTENTS (exactly in capitals) and surround it with other text, only CONTENTS will be overwritten. If you want to change the way your events look, go to the <a href='%s'>settings</a> page. ", 'dbem' ), 'admin.php?page=events-manager-options' );
|
104 |
+
$notice = "<div class='error'><p>$message</p></div>";
|
105 |
+
echo $notice;
|
106 |
+
}
|
107 |
+
|
108 |
+
}
|
109 |
+
add_action ( 'admin_notices', 'em_admin_warnings' );
|
110 |
+
|
111 |
+
/**
|
112 |
+
* Creates a wp-admin style navigation. All this does is wrap some html around the em_paginate function result to make it style correctly in the admin area.
|
113 |
+
* @param string $link
|
114 |
+
* @param int $total
|
115 |
+
* @param int $limit
|
116 |
+
* @param int $page
|
117 |
+
* @param int $pagesToShow
|
118 |
+
* @return string
|
119 |
+
* @uses em_paginate()
|
120 |
+
*/
|
121 |
+
function em_admin_paginate($total, $limit, $page=1, $vars=false){
|
122 |
+
$return = '<div class="tablenav-pages">';
|
123 |
+
$events_nav = paginate_links( array(
|
124 |
+
'base' => add_query_arg( 'pno', '%#%' ),
|
125 |
+
'format' => '',
|
126 |
+
'total' => ceil($total / $limit),
|
127 |
+
'current' => $page,
|
128 |
+
'add_args' => $vars
|
129 |
+
));
|
130 |
+
$return .= sprintf( '<span class="displaying-num">' . __( 'Displaying %s–%s of %s', 'dbem') . ' </span>%s',
|
131 |
+
number_format_i18n( ( $page - 1 ) * $limit + 1 ),
|
132 |
+
number_format_i18n( min( $page * $limit, $total ) ),
|
133 |
+
number_format_i18n( $total ),
|
134 |
+
$events_nav
|
135 |
+
);
|
136 |
+
$return .= '</div>';
|
137 |
+
return apply_filters('em_admin_paginate',$return,$total,$limit,$page,$vars);
|
138 |
+
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Called by admin_print_scripts-(hook|page) action, created when adding menu items in events-manager.php
|
142 |
+
*/
|
143 |
+
function em_admin_load_scripts(){
|
144 |
+
//Load the UI items, currently date picker and autocomplete plus dependencies
|
145 |
+
//wp_enqueue_script('em-ui-js', WP_PLUGIN_URL.'/events-manager/includes/js/jquery-ui-1.8.5.custom.min.js', array('jquery', 'jquery-ui-core'));
|
146 |
+
wp_enqueue_script('events-manager', plugins_url('includes/js/events-manager.js',dirname(__FILE__)), array('jquery', 'jquery-ui-core','jquery-ui-widget','jquery-ui-position'));
|
147 |
+
|
148 |
+
//Time Entry
|
149 |
+
wp_enqueue_script('em-timeentry', plugins_url('includes/js/timeentry/jquery.timeentry.js',dirname(__FILE__)), array('jquery'));
|
150 |
+
|
151 |
+
if( is_admin() ){
|
152 |
+
//TinyMCE Editor
|
153 |
+
remove_filter('the_editor', 'qtrans_modifyRichEditor'); //qtranslate filter
|
154 |
+
if( function_exists('wp_tiny_mce')) add_action( 'admin_print_footer_scripts', 'wp_tiny_mce', 25 );
|
155 |
+
if( function_exists('wp_tiny_mce_preload_dialogs')) add_action( 'admin_print_footer_scripts', 'wp_tiny_mce_preload_dialogs', 30 );
|
156 |
+
wp_enqueue_script('post');
|
157 |
+
if ( user_can_richedit() )
|
158 |
+
wp_enqueue_script('editor');
|
159 |
+
|
160 |
+
add_thickbox();
|
161 |
+
wp_enqueue_script('media-upload');
|
162 |
+
wp_enqueue_script('word-count');
|
163 |
+
wp_enqueue_script('quicktags');
|
164 |
+
}
|
165 |
+
em_js_localize_vars();
|
166 |
+
}
|
167 |
+
|
168 |
+
/**
|
169 |
+
* Called by admin_print_styles-(hook|page) action, created when adding menu items in events-manager.php
|
170 |
+
*/
|
171 |
+
function em_admin_load_styles() {
|
172 |
+
add_thickbox();
|
173 |
+
wp_enqueue_style('em-ui-css', plugins_url('includes/css/jquery-ui-1.8.13.custom.css',dirname(__FILE__)));
|
174 |
+
wp_enqueue_style('events-manager-admin', plugins_url('includes/css/events_manager_admin.css',dirname(__FILE__)));
|
175 |
+
}
|
176 |
+
|
177 |
+
/**
|
178 |
+
* Loads script inline due to insertion of php values
|
179 |
+
*/
|
180 |
+
function em_admin_general_script() {
|
181 |
+
//TODO clean script up, remove dependency of php so it can be moved to js file.
|
182 |
+
// Check if the locale is there and loads it
|
183 |
+
$locale_code = substr ( get_locale (), 0, 2 );
|
184 |
+
$show24Hours = 'true';
|
185 |
+
// Setting 12 hours format for those countries using it
|
186 |
+
if (preg_match ( "/en|sk|zh|us|uk/", $locale_code ))
|
187 |
+
$show24Hours = 'false';
|
188 |
+
?>
|
189 |
+
<script type="text/javascript">
|
190 |
+
//<![CDATA[
|
191 |
+
// TODO: make more general, to support also latitude and longitude (when added)
|
192 |
+
jQuery(document).ready( function($) {
|
193 |
+
$("#start-time").timeEntry({spinnerImage: '', show24Hours: <?php echo $show24Hours; ?> });
|
194 |
+
$("#end-time").timeEntry({spinnerImage: '', show24Hours: <?php echo $show24Hours; ?>});
|
195 |
+
});
|
196 |
+
//]]>
|
197 |
+
</script>
|
198 |
+
<?php
|
199 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
200 |
?>
|
admin/em-bookings.php
CHANGED
@@ -1,288 +1,406 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Check if there's any admin-related actions to take for bookings. All actions are caught here.
|
4 |
-
* @return null
|
5 |
-
*/
|
6 |
-
function em_admin_actions_bookings() {
|
7 |
-
global $dbem_form_add_message;
|
8 |
-
global $dbem_form_delete_message;
|
9 |
-
global $wpdb, $EM_Booking, $EM_Event;
|
10 |
-
|
11 |
-
if(
|
12 |
-
if( $_REQUEST['action'] == '
|
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 |
-
em_bookings_dashboard
|
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 |
-
</div>
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
288 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Check if there's any admin-related actions to take for bookings. All actions are caught here.
|
4 |
+
* @return null
|
5 |
+
*/
|
6 |
+
function em_admin_actions_bookings() {
|
7 |
+
global $dbem_form_add_message;
|
8 |
+
global $dbem_form_delete_message;
|
9 |
+
global $wpdb, $EM_Booking, $EM_Event, $EM_Notices;
|
10 |
+
|
11 |
+
if( is_object($EM_Booking) && !empty($_REQUEST['action']) && $EM_Booking->can_manage('manage_bookings','manage_others_bookings') ) {
|
12 |
+
if( $_REQUEST['action'] == 'bookings_add_note' ){
|
13 |
+
$EM_Booking->add_note($_REQUEST['booking_note']);
|
14 |
+
function em_booking_save_notification(){ global $EM_Booking; ?><div class="updated"><p><strong><?php echo $EM_Booking->feedback_message; ?></strong></p></div><?php }
|
15 |
+
add_action ( 'admin_notices', 'em_booking_save_notification' );
|
16 |
+
}
|
17 |
+
}
|
18 |
+
if( is_object($EM_Event) && !empty($_REQUEST['action']) ){
|
19 |
+
if( $_REQUEST['action'] == 'bookings_export_csv' && wp_verify_nonce($_REQUEST['_wpnonce'],'bookings_export_csv') ){
|
20 |
+
$EM_Event->get_bookings()->export_csv();
|
21 |
+
exit();
|
22 |
+
}
|
23 |
+
}
|
24 |
+
}
|
25 |
+
add_action('admin_init','em_admin_actions_bookings',100);
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Decide what content to show in the bookings section.
|
29 |
+
*/
|
30 |
+
function em_bookings_page(){
|
31 |
+
global $action;
|
32 |
+
//First any actions take priority
|
33 |
+
if( !empty($_REQUEST['booking_id']) ){
|
34 |
+
em_bookings_single();
|
35 |
+
}elseif( !empty($_REQUEST['person_id']) ){
|
36 |
+
em_bookings_person();
|
37 |
+
}elseif( !empty($_REQUEST['action']) ){
|
38 |
+
do_action('em_bookings_'.$action);
|
39 |
+
}elseif( !empty($_REQUEST['event_id']) ){
|
40 |
+
em_bookings_event();
|
41 |
+
}elseif( !empty($_REQUEST['ticket_id']) ){
|
42 |
+
em_bookings_ticket();
|
43 |
+
}else{
|
44 |
+
em_bookings_dashboard();
|
45 |
+
}
|
46 |
+
}
|
47 |
+
|
48 |
+
/**
|
49 |
+
* Generates the bookings dashboard, showing information on all events
|
50 |
+
*/
|
51 |
+
function em_bookings_dashboard(){
|
52 |
+
global $EM_Notices;
|
53 |
+
?>
|
54 |
+
<div class='wrap'>
|
55 |
+
<div id='icon-users' class='icon32'>
|
56 |
+
<br/>
|
57 |
+
</div>
|
58 |
+
<h2>
|
59 |
+
<?php _e('Event Bookings Dashboard', 'dbem'); ?>
|
60 |
+
</h2>
|
61 |
+
<?php echo $EM_Notices; ?>
|
62 |
+
<?php if( get_option('dbem_bookings_approval')): ?>
|
63 |
+
<h2><?php _e('Pending Bookings','dbem'); ?></h2>
|
64 |
+
<?php em_bookings_pending_table(); ?>
|
65 |
+
<?php endif; ?>
|
66 |
+
<h2><?php _e('Events With Bookings Enabled','dbem'); ?></h2>
|
67 |
+
<?php em_bookings_events_table(); ?>
|
68 |
+
<?php do_action('em_bookings_dashboard'); ?>
|
69 |
+
</div>
|
70 |
+
<?php
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Shows all booking data for a single event
|
75 |
+
*/
|
76 |
+
function em_bookings_event(){
|
77 |
+
global $EM_Event,$EM_Person,$EM_Notices;
|
78 |
+
//check that user can access this page
|
79 |
+
if( is_object($EM_Event) && !$EM_Event->can_manage('manage_bookings','manage_others_bookings') ){
|
80 |
+
?>
|
81 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this event.','dbem'); ?></p></div>
|
82 |
+
<?php
|
83 |
+
return false;
|
84 |
+
}
|
85 |
+
$localised_start_date = date_i18n('D d M Y', $EM_Event->start);
|
86 |
+
$localised_end_date = date_i18n('D d M Y', $EM_Event->end);
|
87 |
+
?>
|
88 |
+
<div class='wrap'>
|
89 |
+
<div id='icon-users' class='icon32'>
|
90 |
+
<br/>
|
91 |
+
</div>
|
92 |
+
<h2>
|
93 |
+
<?php echo sprintf(__('Manage %s Bookings', 'dbem'), "'{$EM_Event->name}'"); ?>
|
94 |
+
<a href="<?php echo $EM_Event->output('#_EDITEVENTURL'); ?>" class="button add-new-h2"><?php _e('View/Edit Event','dbem') ?></a>
|
95 |
+
<?php do_action('em_admin_event_booking_options_buttons'); ?>
|
96 |
+
</h2>
|
97 |
+
<?php echo $EM_Notices; ?>
|
98 |
+
<div><a href='<?php echo get_bloginfo('wpurl') . "/wp-admin/admin.php?page=events-manager-bookings&action=bookings_export_csv&_wpnonce=".wp_create_nonce('bookings_export_csv')."&event_id=".$EM_Event->id ?>'><?php _e('export csv','dbem')?></a></div>
|
99 |
+
<div>
|
100 |
+
<p><strong><?php _e('Event Name','dbem'); ?></strong> : <?php echo ($EM_Event->name); ?></p>
|
101 |
+
<p><strong><?php _e('Availability','dbem'); ?></strong> : <?php echo $EM_Event->get_bookings()->get_booked_spaces() . '/'. $EM_Event->get_spaces() ." ". __('Spaces confirmed','dbem'); ?></p>
|
102 |
+
<p>
|
103 |
+
<strong><?php _e('Date','dbem'); ?></strong> :
|
104 |
+
<?php echo $localised_start_date; ?>
|
105 |
+
<?php echo ($localised_end_date != $localised_start_date) ? " - $localised_end_date":'' ?>
|
106 |
+
<?php echo substr ( $EM_Event->start_time, 0, 5 ) . " - " . substr ( $EM_Event->end_time, 0, 5 ); ?>
|
107 |
+
</p>
|
108 |
+
<p>
|
109 |
+
<strong><?php _e('Location','dbem'); ?></strong> :
|
110 |
+
<a class="row-title" href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-locations&location_id=<?php echo $EM_Event->location->id ?>"><?php echo ($EM_Event->location->name); ?></a>
|
111 |
+
</p>
|
112 |
+
</div>
|
113 |
+
<?php if( get_option('dbem_bookings_approval')): ?>
|
114 |
+
<h2><?php _e('Pending Bookings','dbem'); ?></h2>
|
115 |
+
<?php em_bookings_pending_table(); ?>
|
116 |
+
<?php endif; ?>
|
117 |
+
<h2><?php _e('Confirmed Bookings','dbem'); ?></h2>
|
118 |
+
<?php em_bookings_confirmed_table(); ?>
|
119 |
+
<h2><?php _e('Rejected Bookings','dbem'); ?></h2>
|
120 |
+
<?php em_bookings_rejected_table(); ?>
|
121 |
+
<h2><?php _e('Cancelled Bookings','dbem'); ?></h2>
|
122 |
+
<?php em_bookings_cancelled_table(); ?>
|
123 |
+
<?php do_action('em_bookings_event_footer', $EM_Event); ?>
|
124 |
+
</div>
|
125 |
+
<?php
|
126 |
+
}
|
127 |
+
|
128 |
+
/**
|
129 |
+
* Shows a ticket view
|
130 |
+
*/
|
131 |
+
function em_bookings_ticket(){
|
132 |
+
global $EM_Ticket,$EM_Notices;
|
133 |
+
$EM_Event = $EM_Ticket->get_event();
|
134 |
+
//check that user can access this page
|
135 |
+
if( is_object($EM_Ticket) && !$EM_Ticket->can_manage() ){
|
136 |
+
?>
|
137 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this ticket.','dbem'); ?></p></div>
|
138 |
+
<?php
|
139 |
+
return false;
|
140 |
+
}
|
141 |
+
?>
|
142 |
+
<div class='wrap'>
|
143 |
+
<div id='icon-users' class='icon32'>
|
144 |
+
<br/>
|
145 |
+
</div>
|
146 |
+
<h2>
|
147 |
+
<?php echo sprintf(__('Ticket for %s', 'dbem'), "'{$EM_Event->name}'"); ?>
|
148 |
+
<a href="admin.php?page=events-manager-event&event_id=<?php echo $EM_Event->id; ?>" class="button add-new-h2"><?php _e('View/Edit Event','dbem') ?></a>
|
149 |
+
<a href="admin.php?page=events-manager-bookings&event_id=<?php echo $EM_Event->id; ?>" class="button add-new-h2"><?php _e('View Event Bookings','dbem') ?></a>
|
150 |
+
</h2>
|
151 |
+
<?php echo $EM_Notices; ?>
|
152 |
+
<div>
|
153 |
+
<table>
|
154 |
+
<tr><td><?php echo __('Name','dbem'); ?></td><td></td><td><?php echo $EM_Ticket->name; ?></td></tr>
|
155 |
+
<tr><td><?php echo __('Description','dbem'); ?> </td><td></td><td><?php echo ($EM_Ticket->description) ? $EM_Ticket->description : '-'; ?></td></tr>
|
156 |
+
<tr><td><?php echo __('Price','dbem'); ?></td><td></td><td><?php echo ($EM_Ticket->price) ? $EM_Ticket->price : '-'; ?></td></tr>
|
157 |
+
<tr><td><?php echo __('Spaces','dbem'); ?></td><td></td><td><?php echo ($EM_Ticket->spaces) ? $EM_Ticket->spaces : '-'; ?></td></tr>
|
158 |
+
<tr><td><?php echo __('Min','dbem'); ?></td><td></td><td><?php echo ($EM_Ticket->min) ? $EM_Ticket->min : '-'; ?></td></tr>
|
159 |
+
<tr><td><?php echo __('Max','dbem'); ?></td><td></td><td><?php echo ($EM_Ticket->max) ? $EM_Ticket->max : '-'; ?></td></tr>
|
160 |
+
<tr><td><?php echo __('Start','dbem'); ?></td><td></td><td><?php echo ($EM_Ticket->start) ? $EM_Ticket->start : '-'; ?></td></tr>
|
161 |
+
<tr><td><?php echo __('End','dbem'); ?></td><td></td><td><?php echo ($EM_Ticket->end) ? $EM_Ticket->end : '-'; ?></td></tr>
|
162 |
+
</table>
|
163 |
+
</div>
|
164 |
+
<?php if( get_option('dbem_bookings_approval')): ?>
|
165 |
+
<h2><?php _e('Pending Bookings','dbem'); ?></h2>
|
166 |
+
<?php em_bookings_pending_table(); ?>
|
167 |
+
<?php endif; ?>
|
168 |
+
<h2><?php _e('Confirmed Bookings','dbem'); ?></h2>
|
169 |
+
<?php em_bookings_confirmed_table(); ?>
|
170 |
+
<h2><?php _e('Rejected Bookings','dbem'); ?></h2>
|
171 |
+
<?php em_bookings_rejected_table(); ?>
|
172 |
+
<h2><?php _e('Cancelled Bookings','dbem'); ?></h2>
|
173 |
+
<?php em_bookings_cancelled_table(); ?>
|
174 |
+
<?php do_action('em_bookings_ticket_footer', $EM_Ticket); ?>
|
175 |
+
</div>
|
176 |
+
<?php
|
177 |
+
}
|
178 |
+
|
179 |
+
/**
|
180 |
+
* Shows a single booking for a single person.
|
181 |
+
*/
|
182 |
+
function em_bookings_single(){
|
183 |
+
global $EM_Booking, $EM_Notices;
|
184 |
+
//check that user can access this page
|
185 |
+
if( is_object($EM_Booking) && !$EM_Booking->can_manage() ){
|
186 |
+
?>
|
187 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this event.','dbem'); ?></p></div>
|
188 |
+
<?php
|
189 |
+
return false;
|
190 |
+
}
|
191 |
+
?>
|
192 |
+
<div class='wrap'>
|
193 |
+
<div id='icon-users' class='icon32'>
|
194 |
+
<br/>
|
195 |
+
</div>
|
196 |
+
<h2>
|
197 |
+
<?php _e('Edit Booking', 'dbem'); ?>
|
198 |
+
</h2>
|
199 |
+
<?php echo $EM_Notices; ?>
|
200 |
+
<div id="poststuff" class="metabox-holder">
|
201 |
+
<div id="post-body">
|
202 |
+
<div id="post-body-content">
|
203 |
+
<div id="em-booking-details" class="stuffbox">
|
204 |
+
<h3>
|
205 |
+
<?php _e ( 'Event Details', 'dbem' ); ?>
|
206 |
+
</h3>
|
207 |
+
<div class="inside">
|
208 |
+
<?php
|
209 |
+
$EM_Event = $EM_Booking->get_event();
|
210 |
+
$localised_start_date = date_i18n('D d M Y', $EM_Event->start);
|
211 |
+
$localised_end_date = date_i18n('D d M Y', $EM_Event->end);
|
212 |
+
?>
|
213 |
+
<table>
|
214 |
+
<tr><td><strong><?php _e('Name','dbem'); ?></strong></td><td><a class="row-title" href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&event_id=<?php echo $EM_Event->id ?>"><?php echo ($EM_Event->name); ?></a></td></tr>
|
215 |
+
<tr>
|
216 |
+
<td><strong><?php _e('Date/Time','dbem'); ?> </strong></td>
|
217 |
+
<td>
|
218 |
+
<?php echo $localised_start_date; ?>
|
219 |
+
<?php echo ($localised_end_date != $localised_start_date) ? " - $localised_end_date":'' ?>
|
220 |
+
<?php echo substr ( $EM_Event->start_time, 0, 5 ) . " - " . substr ( $EM_Event->end_time, 0, 5 ); ?>
|
221 |
+
</td>
|
222 |
+
</tr>
|
223 |
+
</table>
|
224 |
+
</div>
|
225 |
+
</div>
|
226 |
+
<div id="em-booking-details" class="stuffbox">
|
227 |
+
<h3>
|
228 |
+
<?php _e ( 'Personal Details', 'dbem' ); ?>
|
229 |
+
</h3>
|
230 |
+
<div class="inside">
|
231 |
+
<?php echo $EM_Booking->get_person()->display_summary(); ?>
|
232 |
+
</div>
|
233 |
+
</div>
|
234 |
+
<div id="em-booking-details" class="stuffbox">
|
235 |
+
<h3>
|
236 |
+
<?php _e ( 'Booking Details', 'dbem' ); ?>
|
237 |
+
</h3>
|
238 |
+
<div class="inside">
|
239 |
+
<?php
|
240 |
+
$EM_Event = $EM_Booking->get_event();
|
241 |
+
$localised_start_date = date_i18n('D d M Y', $EM_Event->start);
|
242 |
+
$localised_end_date = date_i18n('D d M Y', $EM_Event->end);
|
243 |
+
$shown_tickets = array();
|
244 |
+
?>
|
245 |
+
<p><strong><?php _e('Status','dbem'); ?> : </strong><?php echo $EM_Booking->get_status(); ?></p>
|
246 |
+
<form action="" method="post">
|
247 |
+
<table class="em-tickets-bookings-table" cellspacing="0" cellpadding="0">
|
248 |
+
<thead>
|
249 |
+
<tr>
|
250 |
+
<th><?php _e('Ticket Type','dbem'); ?></th>
|
251 |
+
<th><?php _e('Spaces','dbem'); ?></th>
|
252 |
+
<th><?php _e('Price','dbem'); ?></th>
|
253 |
+
</tr>
|
254 |
+
</thead>
|
255 |
+
<tbody>
|
256 |
+
<?php foreach($EM_Booking->get_tickets_bookings()->tickets_bookings as $EM_Ticket_Booking): ?>
|
257 |
+
<tr>
|
258 |
+
<td class="ticket-type"><a class="row-title" href="<?php bloginfo ( 'wpurl' ); ?>/wp-admin/admin.php?page=events-manager-bookings&ticket_id=<?php echo $EM_Ticket_Booking->get_ticket()->id ?>"><?php echo $EM_Ticket_Booking->get_ticket()->name ?></a></td>
|
259 |
+
<td>
|
260 |
+
<input name="em_tickets[<?php echo $EM_Ticket_Booking->get_ticket()->id; ?>][spaces]" class="em-ticket-select" value="<?php echo $EM_Ticket_Booking->get_spaces(); ?>" />
|
261 |
+
</td>
|
262 |
+
<td><?php echo $EM_Ticket_Booking->get_price(true,true); ?></td>
|
263 |
+
</tr>
|
264 |
+
<?php $shown_tickets[] = $EM_Ticket_Booking->ticket_id; ?>
|
265 |
+
<?php endforeach; ?>
|
266 |
+
<?php if( count($shown_tickets) < count($EM_Event->get_bookings()->get_tickets()->tickets)): ?><tr>
|
267 |
+
<?php foreach($EM_Event->get_bookings()->get_tickets()->tickets as $EM_Ticket): ?>
|
268 |
+
<?php if( !in_array($EM_Ticket->id, $shown_tickets) ): ?>
|
269 |
+
<tr>
|
270 |
+
<td class="ticket-type"><a class="row-title" href="<?php bloginfo ( 'wpurl' ); ?>/wp-admin/admin.php?page=events-manager-bookings&ticket_id=<?php echo $EM_Ticket->id ?>"><?php echo $EM_Ticket->name ?></a></td>
|
271 |
+
<td>
|
272 |
+
<input name="em_tickets[<?php echo $EM_Ticket->id; ?>][spaces]" class="em-ticket-select" value="0" />
|
273 |
+
</td>
|
274 |
+
<td><?php echo em_get_currency_symbol() ?>0.00</td>
|
275 |
+
</tr>
|
276 |
+
<?php endif; ?>
|
277 |
+
<?php endforeach; ?>
|
278 |
+
<?php endif; ?>
|
279 |
+
</tbody>
|
280 |
+
<tfoot>
|
281 |
+
<tr>
|
282 |
+
<th><?php _e('Totals','dbem'); ?></th>
|
283 |
+
<th><?php echo $EM_Booking->get_spaces(); ?></th>
|
284 |
+
<th><?php echo $EM_Booking->get_price(true, true); ?></th>
|
285 |
+
</tr>
|
286 |
+
<?php if( !get_option('dbem_bookings_tax_auto_add') && is_numeric(get_option('dbem_bookings_tax')) && get_option('dbem_bookings_tax') > 0 ): ?>
|
287 |
+
<tr>
|
288 |
+
<th><?php _e('Tax','dbem'); ?></th>
|
289 |
+
<th><?php echo get_option('dbem_bookings_tax') ?>%</th>
|
290 |
+
<th><?php echo em_get_currency_symbol().number_format($EM_Booking->get_price() * (get_option('dbem_bookings_tax')/100),2); ?></th>
|
291 |
+
</tr>
|
292 |
+
<tr>
|
293 |
+
<th><?php _e('Total (inc. tax)','dbem'); ?></th>
|
294 |
+
<th> </th>
|
295 |
+
<th><?php echo em_get_currency_symbol().number_format($EM_Booking->get_price()* (1 + get_option('dbem_bookings_tax')/100),2); ?></th>
|
296 |
+
</tr>
|
297 |
+
<?php endif; ?>
|
298 |
+
</tfoot>
|
299 |
+
</table>
|
300 |
+
<p>
|
301 |
+
<input type="submit" class="em-booking-submit" id="em-booking-submit" value="<?php _e('Modify Booking', 'dbem'); ?>" />
|
302 |
+
<input type='hidden' name='action' value='booking_save'/>
|
303 |
+
<input type='hidden' name='booking_id' value='<?php echo $EM_Booking->id; ?>'/>
|
304 |
+
<input type='hidden' name='event_id' value='<?php echo $EM_Event->id; ?>'/>
|
305 |
+
<input type='hidden' name='_wpnonce' value='<?php echo wp_create_nonce('booking_save'); ?>'/>
|
306 |
+
<em><?php _e('<strong>Note:</strong> ticket availability not taken into account (i.e. you can overbook). Confirmation email is not resent automatically.','dbem'); ?></em>
|
307 |
+
</p>
|
308 |
+
<table cellspacing="0" cellpadding="0">
|
309 |
+
<?php if( !get_option('em_booking_form_custom') ): ?>
|
310 |
+
<tr><td><strong><?php _e('Comment','dbem'); ?> </strong></td><td><?php echo $EM_Booking->comment; ?></td></tr>
|
311 |
+
<?php foreach( $EM_Booking->get_custom() as $custom_option ){
|
312 |
+
?><tr><td><strong><?php echo $custom_option['name'] ?></strong></td><td><?php echo esc_html($custom_option['value']); ?></td></tr><?php
|
313 |
+
} ?>
|
314 |
+
<?php else: do_action('em_bookings_single_custom',$EM_Booking); ?>
|
315 |
+
<?php endif; ?>
|
316 |
+
</table>
|
317 |
+
</form>
|
318 |
+
</div>
|
319 |
+
</div>
|
320 |
+
<div id="em-booking-notes" class="stuffbox">
|
321 |
+
<h3>
|
322 |
+
<?php _e ( 'Booking Notes', 'dbem' ); ?>
|
323 |
+
</h3>
|
324 |
+
<div class="inside">
|
325 |
+
<p><?php _e('You can add private notes below for internal reference that only event managers will see.','dbem'); ?></p>
|
326 |
+
<?php foreach( $EM_Booking->notes as $note ):
|
327 |
+
$user = new EM_Person($note['author']);
|
328 |
+
?>
|
329 |
+
<div>
|
330 |
+
<?php echo date(get_option('date_format'), $note['timestamp']) .' - '. $user->get_name(); ?> <?php _e('wrote','dbem'); ?>:
|
331 |
+
<p style="background:#efefef; padding:5px;"><?php echo nl2br($note['note']); ?></p>
|
332 |
+
</div>
|
333 |
+
<?php endforeach; ?>
|
334 |
+
<form method="post" action="" style="padding:5px;">
|
335 |
+
<textarea class="widefat" rows="5" name="booking_note"></textarea>
|
336 |
+
<input type="hidden" name="action" value="bookings_add_note" />
|
337 |
+
<input type="submit" value="Add Note" />
|
338 |
+
</form>
|
339 |
+
</div>
|
340 |
+
</div>
|
341 |
+
<?php do_action('em_bookings_single_metabox_footer', $EM_Booking); ?>
|
342 |
+
</div>
|
343 |
+
</div>
|
344 |
+
</div>
|
345 |
+
<br style="clear:both;" />
|
346 |
+
<?php do_action('em_bookings_single_footer', $EM_Booking); ?>
|
347 |
+
</div>
|
348 |
+
<?php
|
349 |
+
|
350 |
+
}
|
351 |
+
|
352 |
+
/**
|
353 |
+
* Shows all bookings made by one person.
|
354 |
+
*/
|
355 |
+
function em_bookings_person(){
|
356 |
+
global $EM_Person, $EM_Notices;
|
357 |
+
$EM_Person->get_bookings();
|
358 |
+
$has_booking = false;
|
359 |
+
foreach($EM_Person->get_bookings() as $EM_Booking){
|
360 |
+
if($EM_Booking->can_manage('manage_bookings','manage_others_bookings')){
|
361 |
+
$has_booking = true;
|
362 |
+
}
|
363 |
+
}
|
364 |
+
if( !$has_booking ){
|
365 |
+
?>
|
366 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this event.','dbem'); ?></p></div>
|
367 |
+
<?php
|
368 |
+
return false;
|
369 |
+
}
|
370 |
+
?>
|
371 |
+
<div class='wrap'>
|
372 |
+
<div id='icon-users' class='icon32'>
|
373 |
+
<br/>
|
374 |
+
</div>
|
375 |
+
<h2>
|
376 |
+
<?php _e('Manage Person\'s Booking', 'dbem'); ?>
|
377 |
+
<?php if( current_user_can('edit_users') ) : ?>
|
378 |
+
<a href="user-edit.php?user_id=<?php echo $EM_Person->ID; ?>" class="button add-new-h2"><?php _e('Edit User','dbem') ?></a>
|
379 |
+
<?php endif; ?>
|
380 |
+
</h2>
|
381 |
+
<?php echo $EM_Notices; ?>
|
382 |
+
<?php do_action('em_bookings_person_header'); ?>
|
383 |
+
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
384 |
+
<div id="post-body">
|
385 |
+
<div id="post-body-content">
|
386 |
+
<div id="event_name" class="stuffbox">
|
387 |
+
<h3>
|
388 |
+
<?php _e ( 'Personal Details', 'dbem' ); ?>
|
389 |
+
</h3>
|
390 |
+
<div class="inside">
|
391 |
+
<?php echo $EM_Person->display_summary(); ?>
|
392 |
+
</div>
|
393 |
+
</div>
|
394 |
+
</div>
|
395 |
+
</div>
|
396 |
+
</div>
|
397 |
+
<br style="clear:both;" />
|
398 |
+
<?php do_action('em_bookings_person_body_1'); ?>
|
399 |
+
<h3><?php _e('Past And Present Bookings','dbem'); ?></h3>
|
400 |
+
<?php em_bookings_person_table(); ?>
|
401 |
+
<?php do_action('em_bookings_person_footer', $EM_Person); ?>
|
402 |
+
</div>
|
403 |
+
<?php
|
404 |
+
}
|
405 |
+
|
406 |
?>
|
admin/em-categories.php
CHANGED
@@ -1,177 +1,213 @@
|
|
1 |
-
<?php
|
2 |
-
function em_admin_categories_page() {
|
3 |
-
global $wpdb, $EM_Category;
|
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 |
?>
|
1 |
+
<?php
|
2 |
+
function em_admin_categories_page() {
|
3 |
+
global $wpdb, $EM_Category, $EM_Notices;
|
4 |
+
|
5 |
+
//Take actions
|
6 |
+
if( (!empty($_REQUEST['action']) && ( ($_REQUEST['action'] == "edit" && !empty($_REQUEST['category_id'])) || $_REQUEST['action'] == "add")) ) {
|
7 |
+
em_categories_edit_layout();
|
8 |
+
} elseif( !empty($_REQUEST['action']) && $_REQUEST['action'] == "category_save" ) {
|
9 |
+
em_categories_edit_layout();
|
10 |
+
} else {
|
11 |
+
// no action, just a locations list
|
12 |
+
em_categories_table_layout();
|
13 |
+
}
|
14 |
+
return;
|
15 |
+
//TODO move categories action logic to em-actions.php
|
16 |
+
if( !empty($_REQUEST['action']) ){
|
17 |
+
if( $_REQUEST['action'] == "save") {
|
18 |
+
// save (add/update) category
|
19 |
+
if( empty($EM_Category) || !is_object($EM_Category) ){
|
20 |
+
$EM_Category = new EM_Category(); //blank category
|
21 |
+
$success_message = __('The category has been added.', 'dbem');
|
22 |
+
}else{
|
23 |
+
$success_message = __('The category has been updated.', 'dbem');
|
24 |
+
}
|
25 |
+
|
26 |
+
if ( $EM_Category->get_post() && $EM_Category->save() ) {
|
27 |
+
$EM_Notices->add_confirm($EM_Category->feedback_message);
|
28 |
+
em_categories_table_layout();
|
29 |
+
} else {
|
30 |
+
$EM_Notices->add_error($EM_Category->errors);
|
31 |
+
em_categories_edit_layout();
|
32 |
+
}
|
33 |
+
} elseif( $_REQUEST['action'] == "edit" ){
|
34 |
+
em_categories_edit_layout();
|
35 |
+
} elseif( $_REQUEST['action'] == "delete" ){
|
36 |
+
//delelte category
|
37 |
+
EM_Categories::delete($_REQUEST['categories']);
|
38 |
+
//FIXME no result verification when deleting various categories
|
39 |
+
$message = __('Categories Deleted', "dbem" );
|
40 |
+
em_categories_table_layout($message);
|
41 |
+
}
|
42 |
+
}else{
|
43 |
+
em_categories_table_layout();
|
44 |
+
}
|
45 |
+
}
|
46 |
+
|
47 |
+
function em_categories_table_layout($message = "") {
|
48 |
+
global $EM_Notices;
|
49 |
+
$categories = EM_Categories::get();
|
50 |
+
$destination = get_bloginfo('url')."/wp-admin/admin.php";
|
51 |
+
?>
|
52 |
+
<div class='wrap'>
|
53 |
+
<div id='icon-edit' class='icon32'>
|
54 |
+
<br/>
|
55 |
+
</div>
|
56 |
+
<h2>
|
57 |
+
<?php echo __('Categories', 'dbem') ?>
|
58 |
+
<a href="admin.php?page=events-manager-categories&action=add" class="button add-new-h2"><?php _e('Add New', 'dbem') ?></a>
|
59 |
+
</h2>
|
60 |
+
|
61 |
+
<?php echo $EM_Notices; ?>
|
62 |
+
|
63 |
+
<form id='bookings-filter' method='post' action='<?php echo get_bloginfo('wpurl') ?>/wp-admin/admin.php?page=events-manager-categories'>
|
64 |
+
<input type='hidden' name='action' value='category_delete'/>
|
65 |
+
<input type='hidden' name='_wpnonce' value='<?php echo wp_create_nonce('category_delete'); ?>'/>
|
66 |
+
<?php if (count($categories)>0) : ?>
|
67 |
+
<table class='widefat'>
|
68 |
+
<thead>
|
69 |
+
<tr>
|
70 |
+
<th class='manage-column column-cb check-column' scope='col'><input type='checkbox' class='select-all' value='1'/></th>
|
71 |
+
<th><?php echo __('ID', 'dbem') ?></th>
|
72 |
+
<th><?php echo __('Name', 'dbem') ?></th>
|
73 |
+
</tr>
|
74 |
+
</thead>
|
75 |
+
<tfoot>
|
76 |
+
<tr>
|
77 |
+
<th class='manage-column column-cb check-column' scope='col'><input type='checkbox' class='select-all' value='1'/></th>
|
78 |
+
<th><?php echo __('ID', 'dbem') ?></th>
|
79 |
+
<th><?php echo __('Name', 'dbem') ?></th>
|
80 |
+
</tr>
|
81 |
+
</tfoot>
|
82 |
+
<tbody>
|
83 |
+
<?php foreach ($categories as $EM_Category) : ?>
|
84 |
+
<tr>
|
85 |
+
<td><input type='checkbox' class ='row-selector' value='<?php echo $EM_Category->id ?>' name='categories[]'/></td>
|
86 |
+
<td><a href='<?php echo get_bloginfo('wpurl') ?>/wp-admin/admin.php?page=events-manager-categories&action=edit&category_id=<?php echo $EM_Category->id ?>'><?php echo htmlspecialchars($EM_Category->id, ENT_QUOTES); ?></a></td>
|
87 |
+
<td><a href='<?php echo get_bloginfo('wpurl') ?>/wp-admin/admin.php?page=events-manager-categories&action=edit&category_id=<?php echo $EM_Category->id ?>'><?php echo htmlspecialchars($EM_Category->name, ENT_QUOTES); ?></a></td>
|
88 |
+
</tr>
|
89 |
+
<?php endforeach; ?>
|
90 |
+
</tbody>
|
91 |
+
|
92 |
+
</table>
|
93 |
+
|
94 |
+
<div class='tablenav'>
|
95 |
+
<div class='alignleft actions'>
|
96 |
+
<input class='button-secondary action' type='submit' name='doaction2' value='Delete'/>
|
97 |
+
<br class='clear'/>
|
98 |
+
</div>
|
99 |
+
<br class='clear'/>
|
100 |
+
</div>
|
101 |
+
<?php else: ?>
|
102 |
+
<p><?php echo __('No categories have been inserted yet!', 'dbem'); ?></p>
|
103 |
+
<?php endif; ?>
|
104 |
+
</form>
|
105 |
+
</div>
|
106 |
+
<?php
|
107 |
+
}
|
108 |
+
|
109 |
+
|
110 |
+
function em_categories_edit_layout($message = "") {
|
111 |
+
global $EM_Category, $EM_Notices;
|
112 |
+
if( !is_object($EM_Category) ){
|
113 |
+
$EM_Category = new EM_Category();
|
114 |
+
}
|
115 |
+
//check that user can access this page
|
116 |
+
if( is_object($EM_Category) && !$EM_Category->can_manage('edit_categories') ){
|
117 |
+
?>
|
118 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php implode('<br/>',$EM_Category->get_errors()); ?></p></div>
|
119 |
+
<?php
|
120 |
+
return;
|
121 |
+
}
|
122 |
+
?>
|
123 |
+
<div class='wrap'>
|
124 |
+
<div id='icon-edit' class='icon32'>
|
125 |
+
<br/>
|
126 |
+
</div>
|
127 |
+
|
128 |
+
<h2><?php echo __('Edit category', 'dbem') ?></h2>
|
129 |
+
|
130 |
+
<?php echo $EM_Notices ?>
|
131 |
+
|
132 |
+
<div id='ajax-response'></div>
|
133 |
+
|
134 |
+
<div id="poststuff" class="metabox-holder">
|
135 |
+
<div id="post-body">
|
136 |
+
<div id="post-body-content">
|
137 |
+
<form enctype='multipart/form-data' name='editcat' id='editcat' method='post' action='admin.php?page=events-manager-categories' class='validate'>
|
138 |
+
<input type='hidden' name='action' value='category_save' />
|
139 |
+
<input type='hidden' name='category_id' value='<?php echo $EM_Category->id ?>'/>
|
140 |
+
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('category_save'); ?>" />
|
141 |
+
|
142 |
+
<?php do_action('em_admin_category_form_header'); ?>
|
143 |
+
|
144 |
+
<div id="category_description" class="postbox">
|
145 |
+
<h3><?php echo __('Category name', 'dbem') ?></h3>
|
146 |
+
<div class="inside">
|
147 |
+
<input name='category_name' id='category-name' type='text' value='<?php echo htmlspecialchars($EM_Category->name,ENT_QUOTES); ?>' size='40' />
|
148 |
+
<br />
|
149 |
+
<em><?php echo __('The name of the category', 'dbem') ?></em>
|
150 |
+
<?php $slug_link = __('View Slug','dbem'); ?>
|
151 |
+
<a href="#" id="category-slug-trigger"><?php echo $slug_link; ?></a>
|
152 |
+
<script type="text/javascript">
|
153 |
+
jQuery(document).ready(function($){
|
154 |
+
$('#category-slug-trigger').click(function(){
|
155 |
+
if( $(this).text() == '<?php echo $slug_link; ?>'){
|
156 |
+
$('.category-slug').show();
|
157 |
+
$(this).text('<?php _e('Hide Slug','dbem'); ?>');
|
158 |
+
}else{
|
159 |
+
$('.category-slug').hide();
|
160 |
+
$(this).text('<?php echo $slug_link; ?>');
|
161 |
+
}
|
162 |
+
});
|
163 |
+
});
|
164 |
+
</script>
|
165 |
+
<p class='category-slug' style="display:none">
|
166 |
+
<?php echo sprintf(__('%s Slug','dbem'),__('Category','dbem')); ?>: <input type="text" name="category_slug" id="category-slug" value="<?php echo $EM_Category->slug; ?>" />
|
167 |
+
<br />
|
168 |
+
<?php _e ( 'The event slug. If the event slug already exists, a random number will be appended to the end.', 'dbem' )?>
|
169 |
+
</p>
|
170 |
+
</div>
|
171 |
+
</div>
|
172 |
+
|
173 |
+
<div id="category_description" class="postbox">
|
174 |
+
<h3>
|
175 |
+
<?php _e ( 'Details', 'dbem' ); ?>
|
176 |
+
</h3>
|
177 |
+
<div class="inside">
|
178 |
+
<div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
|
179 |
+
<?php the_editor($EM_Category->description ); ?>
|
180 |
+
</div>
|
181 |
+
<br />
|
182 |
+
<em><?php _e ( 'Details about the category', 'dbem' )?></em>
|
183 |
+
</div>
|
184 |
+
</div>
|
185 |
+
|
186 |
+
<div id="category_description" class="stuffbox">
|
187 |
+
<h3>
|
188 |
+
<?php _e ( 'Category image', 'dbem' ); ?>
|
189 |
+
</h3>
|
190 |
+
<div class="inside" style="padding:10px;">
|
191 |
+
<?php if ($EM_Category->get_image_url() != '') : ?>
|
192 |
+
<img src='<?php echo $EM_Category->image_url; ?>' alt='<?php echo $EM_Category->name ?>'/>
|
193 |
+
<?php else : ?>
|
194 |
+
<em><?php _e('No image uploaded for this category yet', 'dbem') ?></em>
|
195 |
+
<?php endif; ?>
|
196 |
+
<br /><br />
|
197 |
+
<label for='category_image'><?php _e('Upload/change picture', 'dbem') ?></label> <input id='locacategoryge' name='category_image' id='category_image' type='file' size='40' />
|
198 |
+
<br />
|
199 |
+
<label for='category_image_delete'><?php _e('Delete Image?', 'dbem') ?></label> <input id='category-image-delete' name='category_image_delete' id='category_image_delete' type='checkbox' value='1' />
|
200 |
+
</div>
|
201 |
+
</div>
|
202 |
+
</div>
|
203 |
+
<?php do_action('em_admin_category_form_footer'); ?>
|
204 |
+
<p class='submit'><input type='submit' class='button-primary' name='submit' value='<?php echo __('Update category', 'dbem') ?>' /></p>
|
205 |
+
</form>
|
206 |
+
</div>
|
207 |
+
</div>
|
208 |
+
</div>
|
209 |
+
|
210 |
+
</div>
|
211 |
+
<?php
|
212 |
+
}
|
213 |
?>
|
admin/em-docs.php
CHANGED
@@ -1,193 +1,256 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
function em_docs_init(){
|
4 |
-
if( class_exists('EM_Event') ){
|
5 |
-
add_action('wp_head', 'emd_head');
|
6 |
-
//Generate the docs
|
7 |
-
global $EM_Documentation;
|
8 |
-
$EM_Event = new EM_Event();
|
9 |
-
$event_fields = $EM_Event->get_fields(true);
|
10 |
-
$EM_Location = new EM_Location();
|
11 |
-
$location_fields = $EM_Location->get_fields(true);
|
12 |
-
$EM_Documentation = array(
|
13 |
-
'arguments' => array(
|
14 |
-
'events' => array(
|
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 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
function em_docs_init(){
|
4 |
+
if( class_exists('EM_Event') ){
|
5 |
+
add_action('wp_head', 'emd_head');
|
6 |
+
//Generate the docs
|
7 |
+
global $EM_Documentation;
|
8 |
+
$EM_Event = new EM_Event();
|
9 |
+
$event_fields = $EM_Event->get_fields(true);
|
10 |
+
$EM_Location = new EM_Location();
|
11 |
+
$location_fields = $EM_Location->get_fields(true);
|
12 |
+
$EM_Documentation = array(
|
13 |
+
'arguments' => array(
|
14 |
+
'events' => array(
|
15 |
+
'search' => array( 'desc'=> __('Do a search for this string within event name, details and location address.', 'dbem') ),
|
16 |
+
'limit' => array( 'desc'=> __('See the events lists limit option on the settings page.', 'dbem') ),
|
17 |
+
'orderby' => array( 'desc'=> __('Choose what fields to order your results by. You can supply a single field or multiple comma-seperated fields (e.g. "start_date,name").', 'dbem'), 'default'=> __('See the event lists ordering option on the settings page.', 'dbem'), 'args'=>'name, start_date, start_time, end_date, end_time'),
|
18 |
+
'order' => array( 'desc'=> __('See the event lists ordering option on the settings page.', 'dbem') ),
|
19 |
+
'bookings' => array( 'desc'=> __('Include only events with bookings enabled. Use \'user\' to show events a logged in user has booked.', 'dbem') ),
|
20 |
+
'status' => array( 'desc' => __('Limit search to events with a spefic status (1 is active, 0 is pending approval)', 'dbem')),
|
21 |
+
'blog' => array( 'desc' => __('Limit search to events created in a specific blog (MultiSite only)', 'dbem')),
|
22 |
+
'group' => array( 'desc' => __('Limit search to events belonging to a specific group id (BuddyPress only). Using \'my\' will show events belonging to groups the logged in user is a member of.', 'dbem')),
|
23 |
+
'town' => array( 'desc'=> __('Search for events in this town (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
24 |
+
'state' => array( 'desc'=> __('Search for events in this state (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
25 |
+
'region' => array( 'desc'=> __('Search for events in this region (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
26 |
+
'country' => array( 'desc'=> __('Search for events in this country (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
27 |
+
'postcode' => array( 'desc'=> __('Search for events in this postcode (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
28 |
+
'format_header' => array( 'desc' => __('When displaying event lists, you can supply specific HTML to replace the default header from the settings page.', 'dbem')),
|
29 |
+
'format_footer' => array( 'desc' => __('When displaying event lists, you can supply specific HTML to replace the default footer from the settings page.', 'dbem')),
|
30 |
+
),
|
31 |
+
'locations' => array(
|
32 |
+
'eventful' => array( 'desc'=> __('If set to 1 will only show locations that have at least one event occurring during the scope.', 'dbem'), 'default' => 0),
|
33 |
+
'eventless' => array( 'desc'=> __('If set to 1 will only show locations that have no events occurring during the scope.', 'dbem'), 'default' => 0),
|
34 |
+
'orderby' => array('desc'=> __('Choose what fields to order your results by. You can supply a single field or multiple comma-seperated fields (e.g. "start_date,name").', 'dbem'), 'default'=>'name', 'args' => 'name, address, town'),
|
35 |
+
'scope' => array( 'default' => 'all'),
|
36 |
+
'town' => array( 'desc'=> __('Search for locations in this town (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
37 |
+
'state' => array( 'desc'=> __('Search for locations in this state (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
38 |
+
'region' => array( 'desc'=> __('Search for locations in this region (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
39 |
+
'country' => array( 'desc'=> __('Search for locations in this country (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem')),
|
40 |
+
'postcode' => array( 'desc'=> __('Search for locations in this postcode (no partial matches, case sensitive).', 'dbem'), 'default' => __('none','dbem'))
|
41 |
+
),
|
42 |
+
'calendar' => array(
|
43 |
+
'full' => array( 'desc'=> __('If set to 1 it will display a full calendar that shows event names.', 'dbem'), 'default' => 0),
|
44 |
+
'long_events' => array( 'desc'=> __('If set to 1, will show events that last longer than a day.', 'dbem'), 'default' => 0),
|
45 |
+
'order' => array( 'desc'=> __('Same as for events.', 'dbem') ),
|
46 |
+
'scope' => array( 'default' => 'future')
|
47 |
+
),
|
48 |
+
//The object is commonly shared by all, so entries above overwrite entries here
|
49 |
+
'general' => array(
|
50 |
+
'limit' => array( 'desc'=> __('Limits the amount of values returned to this number.', 'dbem'), 'default'=>'0 (no limit)'),
|
51 |
+
'scope' => array( 'desc'=> __('Choose the time frame of events to show. Accepted values are "future", "past", "today", "tomorrow", "month", "next-month", "1-months", "2-months", "3-months", "6-months", "12-months" or "all" events. Additionally you can supply dates (in format of YYYY-MM-DD), either single for events on a specific date or two dates seperated by a comma (e.g. 2010-12-25,2010-12-31) for events ocurring between these dates.', 'dbem'), 'default'=>'future'),
|
52 |
+
'order' => array( 'desc'=> __('Indicates the order of the events. Choose between ASC (ascending) and DESC (descending).', 'dbem'), 'default'=>'ASC'),
|
53 |
+
'orderby' => array( 'desc'=> __('Choose what fields to order your results by. You can supply a single field or multiple comma-seperated fields (e.g. "start_date,name"). See specific instances (e.g. events, locations, etc.) for field names.', 'dbem'), 'default'=>0),
|
54 |
+
'format' => array( 'desc'=> __('If you are displaying some information with the shortcode or function (e.g. listing events), you can supply the html and placeholders here.', 'dbem'), 'default'=> __('The relevant default format will be taken from the settings page.', 'dbem')),
|
55 |
+
'event' => array( 'desc'=> __('Supply a single id or comma-seperated ids (e.g. "1,2,3") to limit the search to events with these id(s).', 'dbem'), 'default'=>0),
|
56 |
+
'category' => array( 'desc'=> __('Supply a single id or comma-seperated ids (e.g. "1,2,3") to limit the search to events in these categories.', 'dbem'), 'default'=>0),
|
57 |
+
'location' => array( 'desc'=> __('Supply a single id or comma-seperated ids to limit the search to these locations (or events in these locations).', 'dbem'), 'default'=>0),
|
58 |
+
'offset' => array( 'desc'=> __('For example, if you have ten results, if you set this to 5, only the last 5 results will be returned. Useful for pagination.', 'dbem'), 'default'=>0),
|
59 |
+
'recurrence' => array( 'desc'=> __('If set to 1, will show only events that are recurring (i.e. events that are repeated over different dates).', 'dbem'), 'default'=>0),
|
60 |
+
'recurring' => array( 'desc'=> __('If set to 1, will only show recurring event templates. Only useful if you know what you\'re doing, use recurrence if you want events that are recurrences.', 'dbem'), 'default'=>0),
|
61 |
+
'month' => array( 'desc'=> __('If set to a month (1 to 12) only events that start or end during this month/year will be retured. Must be used in conjunction with year and does not work as intended if used with scope.', 'dbem'), 'default'=>''),
|
62 |
+
'year' => array( 'desc'=> __('If set to a year (e.g. 2010) only events that start or end during this year/month will be returned. Does not work as intended if used with scope.', 'dbem'), 'default'=>''),
|
63 |
+
'array' => array( 'desc'=> __('If you supply this as an argument, the returned data will be in an array, no objects (only useful wen using PHP, not shortcodes)', 'dbem'), 'default'=>0),
|
64 |
+
'pagination' => array('desc'=> __('When using a function or shortcode that outputs items (e.g. [events_list] for events, [locations_list] for locations), if the number of items supercede the limit of items to show, setting this to 1 will show page links under the list.', 'dbem'), 'default'=>0),
|
65 |
+
'owner' => array('desc'=> __('Limits returned results to a specific owner, identified by their usaer id (e.g. list events or locations owned by user)', 'dbem'), 'default'=>0)
|
66 |
+
)
|
67 |
+
),
|
68 |
+
'placeholders' => array(
|
69 |
+
'events' => array(
|
70 |
+
'Event Details' => array(
|
71 |
+
'placeholders' => array(
|
72 |
+
'#_NAME' => array( 'desc' => __('Displays the name of the event.', 'dbem') ),
|
73 |
+
'#_NOTES' => array( 'desc' => __('Shows the description of the event.', 'dbem') ),
|
74 |
+
'#_EXCERPT' => array( 'desc' => __('If you added a <a href="http://en.support.wordpress.com/splitting-content/more-tag/">more tag</a> to your event description, only the content before this tag will show (currently, no read more link is added).', 'dbem') ),
|
75 |
+
'#_EVENTID' => array( 'desc' => __('Shows the event corresponding ID number in the database table.', 'dbem') ),
|
76 |
+
'#_EVENTIMAGE' => array( 'desc' => __('Shows the event image, if available.', 'dbem') ),
|
77 |
+
'#_EVENTIMAGE{x,y}' => array( 'desc' => __('Shows the event image thumbnail, x and y are width and height respectively, both being numbers e.g. <code>#_EVENTIMAGE{100,100}</code>', 'dbem') ),
|
78 |
+
'#_EVENTIMAGEURL' => array( 'desc' => __('Shows the event image url, if available.', 'dbem') ),
|
79 |
+
'#_CATEGORIES' => array( 'desc' => __('Shows a list of category links this event belongs to.', 'dbem') ),
|
80 |
+
)
|
81 |
+
),
|
82 |
+
'Time' => array(
|
83 |
+
'desc' => '',
|
84 |
+
'placeholders' => array(
|
85 |
+
'#_24HSTARTTIME' => array( 'desc' => __('Displays the start time in a 24 hours format (e.g. 16:30).', 'dbem') ),
|
86 |
+
'#_24HENDTIME' => array( 'desc' => __('Displays the end time in a 24 hours format (e.g. 18:30).', 'dbem') ),
|
87 |
+
'#_12HSTARTTIME' => array( 'desc' => __('Displays the start time in a 12 hours format (e.g. 4:30 PM).', 'dbem') ),
|
88 |
+
'#_12HENDTIME' => array( 'desc' => __('Displays the end time in a 12 hours format (e.g. 6:30 PM).', 'dbem') )
|
89 |
+
)
|
90 |
+
),
|
91 |
+
'Custom Date/Time Formatting' => array(
|
92 |
+
'desc' => __('Events Manager allows extremely flexible date formatting by using <a href="http://www.php.net/manual/en/function.date.php">PHP date syntax format characters</a> along with placeholders.', 'dbem'),
|
93 |
+
'placeholders' => array(
|
94 |
+
'# or #@' => array( 'desc' => __('Prepend <code>#</code> or <code>#@</code> before a valid PHP date syntax format character to show start and end date/time information respectively (e.g. <code>#F</code> will show the starting month name like "January", #@h shows the end hour).', 'dbem') ),
|
95 |
+
'#{x} or #@{x}' => array( 'desc' => __('You can also create a date format without prepending # to each character by wrapping a valid php date() format in <code>#{}</code> or <code>#@{}</code> (e.g. <code>#_{d/m/Y}</code>). If there is no end date (or is same as start date), the value is not shown. This is useful if you want to show event end dates only on events that are longer than on day, e.g. <code>#j #M #Y #@_{ \u\n\t\i\l j M Y}</code>.', 'dbem') ),
|
96 |
+
)
|
97 |
+
),
|
98 |
+
'Links' => array(
|
99 |
+
'placeholders' => array(
|
100 |
+
'#_EVENTURL' => array( 'desc' => __('Simply prints the event URL. You can use this placeholder to build your own customised links.', 'dbem') ),
|
101 |
+
'#_EVENTIMAGEURL' => array( 'desc' => __('Shows the event image url, if available.', 'dbem') ),
|
102 |
+
'#_EVENTLINK' => array( 'desc' => __('Displays the event name with a link to the event page.', 'dbem') ),
|
103 |
+
'#_EDITEVENTLINK' => array( 'desc' => __('Inserts a link to the admin or buddypress (if activated) edit event page, only if a user is logged in and is allowed to edit the event.', 'dbem') ),
|
104 |
+
'#_EDITEVENTURL' => array( 'desc' => __('Inserts a url to the admin or buddypress (if activated) edit event page, only if a user is logged in and is allowed to edit the event.', 'dbem') )
|
105 |
+
)
|
106 |
+
),
|
107 |
+
'Custom Attributes' => array(
|
108 |
+
'desc' => __('Events Manager allows you to create dynamic attributes to your events, which act as extra information fields for your events (e.g. "Dress Code"). For more information see <a href="http://wp-events-plugin.com/documentation/categories-and-attributes/">our online documentation</a> for more info on attributes.', 'dbem'),
|
109 |
+
'placeholders' => array(
|
110 |
+
'#_ATT{key}' => array('desc'=> __('This key will appear as an option when adding attributes to your event.', 'dbem')),
|
111 |
+
'#_ATT{key}{alternative text}' => array('desc'=> __('This key will appear as an option when adding attributes to your event. The text in the second braces will appear if the attribute is not defined or left blank for that event.', 'dbem')),
|
112 |
+
'#_ATT{key}{option 1|option 2|option 3|etc.}' => array('desc'=> __('This key will appear as an option when adding attributes to your event. The second braces are optional and will use a select box with these values as input. If no valid value is defined, the first option is used.', 'dbem')),
|
113 |
+
)
|
114 |
+
),
|
115 |
+
'Bookings' => array(
|
116 |
+
'desc' => __('These placeholders will only show if bookings are enabled for the given event and in the events manager settings page. Spaces placeholders will default to 0', 'dbem'),
|
117 |
+
'placeholders' => array(
|
118 |
+
'#_BOOKINGFORM' => array( 'desc' => __('Adds a booking forms for this event.', 'dbem') ),
|
119 |
+
'#_AVAILABLESPACES' => array( 'desc' => __('Shows available spaces for the event.', 'dbem') ),
|
120 |
+
'#_BOOKEDSPACES' => array( 'desc' => __('Shows the amount of currently booked spaces for the event.', 'dbem') ),
|
121 |
+
'#_PENDINGSPACES' => array( 'desc' => __('Shows the amount of pending spaces for the event.', 'dbem') ),
|
122 |
+
'#_SPACES' => array( 'desc' => __('Shows the total spaces for the event.', 'dbem') ),
|
123 |
+
'#_ATTENDEES' => array( 'desc' => __('Shows the list of user avatars attending events.', 'dbem') ),
|
124 |
+
'#_BOOKINGBUTTON' => array( 'desc' => __('A single button that will appear to logged in users, if they click on it, they apply for a booking. This button will only display if there is one ticket.', 'dbem') ),
|
125 |
+
'#_BOOKINGSURL' => array( 'desc' => __('Shows the url to the admin or buddypress (if activated) bookings management page for this event. Only shown if user is logged in and able to manage bookings.', 'dbem') ),
|
126 |
+
'#_BOOKINGSLINK' => array( 'desc' => __('Shows a link to the admin or buddypress (if activated) bookings management page for this event. Only shown if user is logged in and able to manage bookings.', 'dbem') )
|
127 |
+
)
|
128 |
+
),
|
129 |
+
'Contact Details' => array(
|
130 |
+
'desc' => __('The values here are taken from the chosen contact for the specific event, or the default contact in the settings page.', 'dbem'),
|
131 |
+
'placeholders' => array(
|
132 |
+
'#_CONTACTNAME' => array( 'desc' => __('Name of the contact person for this event (as shown in the dropdown when adding an event).', 'dbem') ),
|
133 |
+
'#_CONTACTUSERNAME' => array( 'desc' => __('Contact person\'s username.', 'dbem') ),
|
134 |
+
'#_CONTACTEMAIL' => array( 'desc' => __('E-mail of the contact person for this event.', 'dbem') ),
|
135 |
+
'#_CONTACTPHONE' => array( 'desc' => __('Phone number of the contact person for this event. Can be set in the user profile page.', 'dbem') ),
|
136 |
+
'#_CONTACTAVATAR' => array( 'desc' => __('Contact person\'s avatar.', 'dbem') ),
|
137 |
+
'#_CONTACTPROFILELINK' => array( 'desc' => __('Contact person\'s "Profile" link. Only works with BuddyPress enabled.', 'dbem') ),
|
138 |
+
'#_CONTACTPROFILEURL' => array( 'desc' => __('Contact person\'s profile url. Only works with BuddyPress enabled.', 'dbem') ),
|
139 |
+
'#_CONTACTID' => array( 'desc' => __('Contact person\'s wordpress user ID.', 'dbem'))
|
140 |
+
)
|
141 |
+
),
|
142 |
+
),
|
143 |
+
'categories' => array(
|
144 |
+
'Category Details' => array(
|
145 |
+
'placeholders' => array(
|
146 |
+
'#_CATEGORYNAME' => array( 'desc' => __('Shows the category name of the event.', 'dbem') ),
|
147 |
+
'#_CATEGORYID' => array( 'desc' => __('Shows the category ID of the event.', 'dbem') ),
|
148 |
+
'#_CATEGORYIMAGE' => array( 'desc' => __('Shows the event image, if available.', 'dbem') ),
|
149 |
+
'#_CATEGORYIMAGE{x,y}' => array( 'desc' => __('Shows the category image thumbnail, x and y are width and height respectively, both being numbers e.g. <code>#_CATEGORYIMAGE{100,100}</code>', 'dbem') ),
|
150 |
+
'#_CATEGORYIMAGEURL' => array( 'desc' => __('Shows the category image url, if available.', 'dbem') ),
|
151 |
+
'#_CATEGORYNOTES' => array( 'desc' => __('Shows the location description.', 'dbem') )
|
152 |
+
)
|
153 |
+
),
|
154 |
+
'Related Events' => array(
|
155 |
+
'desc' => __('You can show lists of other events belonging to this category. The formatting of the list is the same as a normal events list.', 'dbem'),
|
156 |
+
'placeholders' => array(
|
157 |
+
'#_CATEGORYPASTEVENTS' => array( 'desc' => __('Will show a list of all past events at this category.', 'dbem') ),
|
158 |
+
'#_CATEGORYNEXTEVENTS' => array( 'desc' => __('Will show a list of all future events at this category.', 'dbem') ),
|
159 |
+
'#_CATEGORYALLEVENTS' => array( 'desc' => __('Will show a list of all events at this category.', 'dbem') )
|
160 |
+
)
|
161 |
+
)
|
162 |
+
),
|
163 |
+
'locations' => array(
|
164 |
+
'Location Details' => array(
|
165 |
+
'desc' => '',
|
166 |
+
'placeholders' => array(
|
167 |
+
'#_LOCATIONID' => array( 'desc' => __('Displays the location ID number.', 'dbem') ),
|
168 |
+
'#_LOCATIONNAME' => array( 'desc' => __('Displays the location name.', 'dbem') ),
|
169 |
+
'#_LOCATIONADDRESS' => array( 'desc' => __('Displays the address.', 'dbem') ),
|
170 |
+
'#_LOCATIONTOWN' => array( 'desc' => __('Displays the town.', 'dbem') ),
|
171 |
+
'#_LOCATIONSTATE' => array( 'desc' => __('Displays the state/county.', 'dbem') ),
|
172 |
+
'#_LOCATIONPOSTCODE' => array( 'desc' => __('Displays the postcode.', 'dbem') ),
|
173 |
+
'#_LOCATIONREGION' => array( 'desc' => __('Displays the region.', 'dbem') ),
|
174 |
+
'#_LOCATIONCOUNTRY' => array( 'desc' => __('Displays the country.', 'dbem') ),
|
175 |
+
'#_LOCATIONMAP' => array( 'desc' => __('Displays a google map showing where the event is located (Will not show if maps are disabled in the settings page)', 'dbem') ),
|
176 |
+
'#_LOCATIONNOTES' => array( 'desc' => __('Shows the location description.', 'dbem') ),
|
177 |
+
'#_LOCATIONEXCERPT' => array( 'desc' => __('If you added a <a href="http://en.support.wordpress.com/splitting-content/more-tag/">more tag</a> to your location description, only the content before this tag will show (currently, no read more link is added).', 'dbem') ),
|
178 |
+
'#_LOCATIONIMAGE' => array( 'desc' => __('Shows the location image.', 'dbem') ),
|
179 |
+
'#_LOCATIONIMAGE{x,y}' => array( 'desc' => __('Shows the location image thumbnail, x and y are width and height respectively, both being numbers e.g. <code>#_LOCATIONIMAGE{100,100}</code>', 'dbem') ),
|
180 |
+
'#_LOCATIONIMAGEURL' => array( 'desc' => __('Shows the cattegory image url, if available.', 'dbem') )
|
181 |
+
)
|
182 |
+
),
|
183 |
+
'Links' => array(
|
184 |
+
'placeholders' => array(
|
185 |
+
'#_LOCATIONURL' => array( 'desc' => __('Simply prints the location URL. You can use this placeholder to build your own customised links.', 'dbem') ),
|
186 |
+
'#_LOCATIONLINK' => array( 'desc' => __('Displays the location name with a link to the location page.', 'dbem') )
|
187 |
+
)
|
188 |
+
),
|
189 |
+
'Related Events' => array(
|
190 |
+
'desc' => __('You can show lists of other events that are being held at this location. The formatting of the list is the same as a normal events list.', 'dbem'),
|
191 |
+
'placeholders' => array(
|
192 |
+
'#_LOCATIONPASTEVENTS' => array( 'desc' => __('Will show a list of all past events at this location.', 'dbem') ),
|
193 |
+
'#_LOCATIONNEXTEVENTS' => array( 'desc' => __('Will show a list of all future events at this location.', 'dbem') ),
|
194 |
+
'#_LOCATIONALLEVENTS' => array( 'desc' => __('Will show a list of all events at this location.', 'dbem') )
|
195 |
+
)
|
196 |
+
),
|
197 |
+
),
|
198 |
+
'bookings' => array(
|
199 |
+
'Booking Person Information' => array(
|
200 |
+
'desc' => __('When a specific booking is displayed (on screen and on email), you can use these placeholders to show specific information about the booking. For contact details of the contact of this event, see the events placeholders.', 'dbem'),
|
201 |
+
'placeholders' => array(
|
202 |
+
'#_BOOKINGNAME' => array( 'desc' => __('Name of person who made the booking.', 'dbem') ),
|
203 |
+
'#_BOOKINGEMAIL' => array( 'desc' => __('Email of person who made the booking.', 'dbem') ),
|
204 |
+
'#_BOOKINGPHONE' => array( 'desc' => __('Phone number of person who made the booking.', 'dbem') ),
|
205 |
+
'#_BOOKINGSPACES' => array( 'desc' => __('Number of spaces the person has booked.', 'dbem') ),
|
206 |
+
'#_BOOKINGCOMMENT' => array( 'desc' => __('Any specific comments made by the person who made the booking.', 'dbem') ),
|
207 |
+
'#_BOOKINGTICKETNAME' => array( 'desc' => __('Name of the ticket booked. Useful in single ticket mode, if multiple tickets are booked a random ticket is used.', 'dbem') ),
|
208 |
+
'#_BOOKINGTICKETDESCRIPTION' => array( 'desc' => __('Description of the ticket booked. Useful in single ticket mode, if multiple tickets are booked a random ticket is used.', 'dbem') ),
|
209 |
+
'#_BOOKINGTICKETPRICE' => array( 'desc' => __('Booked ticket price with currency symbol (e.g. $ 10.00). Useful in single ticket mode, if multiple tickets are booked a random ticket is used.', 'dbem') ),
|
210 |
+
'#_BOOKINGTICKETS' => array( 'desc' => __('A list of booked tickets. You can modify this by using template files and modifying templates/emails/bookingtickets.php', 'dbem') ),
|
211 |
+
'#_BOOKINGFORMCUSTOM{field_id}' => array( 'desc' => sprintf(__('(<a href="%s">pro only</a>) Shows booking form custom fields. The field_id value must match that of your custom booking form field.', 'dbem'),'http://wp-events-plugin.com/upgrade/') ),
|
212 |
+
'#_BOOKINGFORMCUSTOMREG{field_id}' => array( 'desc' => sprintf(__('(<a href="%s">pro only</a>) Shows booking form custom fields that are used for guest user registration. The field_id value must match that of your custom booking form field.', 'dbem'),'http://wp-events-plugin.com/upgrade/') )
|
213 |
+
)
|
214 |
+
),
|
215 |
+
'Links' => array(
|
216 |
+
'desc' => __('People are able to manage their bookings. Below are some placeholder which automatically provides correctly formatted urls', 'dbem'),
|
217 |
+
'placeholders' => array(
|
218 |
+
'#_BOOKINGLISTURL' => array( 'desc' => __('URL to page showing that users booked events.', 'dbem') )
|
219 |
+
)
|
220 |
+
)
|
221 |
+
),
|
222 |
+
),
|
223 |
+
//TODO add capabilites explanations
|
224 |
+
'capabilities' => array()
|
225 |
+
);
|
226 |
+
}
|
227 |
+
}
|
228 |
+
add_action('init', 'em_docs_init');
|
229 |
+
|
230 |
+
function em_docs_placeholders($atts){
|
231 |
+
ob_start();
|
232 |
+
?>
|
233 |
+
<div class="em-docs">
|
234 |
+
<?php
|
235 |
+
global $EM_Documentation;
|
236 |
+
$type = $atts['type'];
|
237 |
+
$data = $EM_Documentation['placeholders'][$type];
|
238 |
+
foreach($data as $sectionTitle => $details) : ?>
|
239 |
+
<div>
|
240 |
+
<h3><?php echo $sectionTitle; ?></h3>
|
241 |
+
<?php if( !empty($details['desc']) ): ?>
|
242 |
+
<p><?php echo $details['desc']; ?></p>
|
243 |
+
<?php endif; ?>
|
244 |
+
<dl>
|
245 |
+
<?php foreach($details['placeholders'] as $placeholder => $desc ): ?>
|
246 |
+
<dt><b><?php echo $placeholder; ?></b></dt>
|
247 |
+
<dd><?php echo $desc['desc']; ?></dd>
|
248 |
+
<?php endforeach; ?>
|
249 |
+
</dl>
|
250 |
+
</div>
|
251 |
+
<?php endforeach; ?>
|
252 |
+
</div>
|
253 |
+
<?php
|
254 |
+
return ob_get_clean();
|
255 |
+
}
|
256 |
?>
|
admin/em-event.php
CHANGED
@@ -1,627 +1,767 @@
|
|
1 |
-
<?php
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
<
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
<input id=
|
359 |
-
|
360 |
-
<
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
<
|
466 |
-
<?php
|
467 |
-
|
468 |
-
|
469 |
-
<
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
<div
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
<?php
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
|
510 |
-
|
511 |
-
|
512 |
-
|
513 |
-
|
514 |
-
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
<
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
627 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Generates Event Admin page, for adding and updating a single (or recurring) event.
|
4 |
+
* @param $title
|
5 |
+
* @return null
|
6 |
+
*/
|
7 |
+
function em_admin_event_page() {
|
8 |
+
global $EM_Event, $current_user, $EM_Notices, $localised_date_formats;
|
9 |
+
//$EM_Event->get_bookings()->get_tickets()->get_ticket_bookings(); print_r($EM_Event);die();
|
10 |
+
|
11 |
+
//check that user can access this page
|
12 |
+
if( is_object($EM_Event) && !$EM_Event->can_manage('edit_events','edit_others_events') ){
|
13 |
+
?>
|
14 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php echo sprintf(__('You do not have the rights to manage this %s.','dbem'),__('Event','dbem')); ?></p></div>
|
15 |
+
<?php
|
16 |
+
return false;
|
17 |
+
}elseif( !is_object($EM_Event) ){
|
18 |
+
$EM_Event = new EM_Event();
|
19 |
+
}
|
20 |
+
|
21 |
+
if( is_object($EM_Event) && $EM_Event->id > 0 ){
|
22 |
+
if($EM_Event->is_recurring()){
|
23 |
+
$title = __( "Reschedule", 'dbem' )." '{$EM_Event->name}'";
|
24 |
+
}else{
|
25 |
+
$title = __ ( "Edit Event", 'dbem' ) . " '" . $EM_Event->name . "'";
|
26 |
+
}
|
27 |
+
} else {
|
28 |
+
$EM_Event = ( is_object($EM_Event) && get_class($EM_Event) == 'EM_Event') ? $EM_Event : new EM_Event();
|
29 |
+
$title = __ ( "Insert New Event", 'dbem' );
|
30 |
+
//Give a default location & category
|
31 |
+
$default_cat = get_option('dbem_default_category');
|
32 |
+
$default_loc = get_option('dbem_default_location');
|
33 |
+
if( is_numeric($default_cat) && $default_cat > 0 ){
|
34 |
+
$EM_Category = new EM_Category($default_cat);
|
35 |
+
$EM_Event->get_categories()->categories[] = $EM_Category;
|
36 |
+
}
|
37 |
+
if( is_numeric($default_loc) && $default_loc > 0 && ( empty($EM_Event->location->id) && empty($EM_Event->location->name) && empty($EM_Event->location->address) && empty($EM_Event->location->town) ) ){
|
38 |
+
$EM_Event->location_id = $default_loc;
|
39 |
+
$EM_Event->location = new EM_Location($default_loc);
|
40 |
+
}
|
41 |
+
}
|
42 |
+
|
43 |
+
$use_select_for_locations = get_option('dbem_use_select_for_locations');
|
44 |
+
// change prefix according to event/recurrence
|
45 |
+
$pref = "event_";
|
46 |
+
|
47 |
+
$locale_code = substr ( get_locale (), 0, 2 );
|
48 |
+
$localised_date_format = $localised_date_formats[$locale_code];
|
49 |
+
|
50 |
+
//FIXME time useage is very flimsy imho
|
51 |
+
$hours_locale_regexp = "H:i";
|
52 |
+
// Setting 12 hours format for those countries using it
|
53 |
+
if (preg_match ( "/en|sk|zh|us|uk/", $locale_code ))
|
54 |
+
$hours_locale_regexp = "h:iA";
|
55 |
+
|
56 |
+
$days_names = array (1 => __ ( 'Mon' ), 2 => __ ( 'Tue' ), 3 => __ ( 'Wed' ), 4 => __ ( 'Thu' ), 5 => __ ( 'Fri' ), 6 => __ ( 'Sat' ), 0 => __ ( 'Sun' ) );
|
57 |
+
$required = "<i>*</i>";
|
58 |
+
?>
|
59 |
+
<?php echo $EM_Notices; ?>
|
60 |
+
|
61 |
+
<form id="event-form" method="post" action="" enctype='multipart/form-data'>
|
62 |
+
<div class="wrap">
|
63 |
+
<div id="icon-events" class="icon32"><br /></div>
|
64 |
+
<h2><?php echo $title; ?></h2>
|
65 |
+
<?php if ( count($EM_Event->warnings) > 0 ) : ?>
|
66 |
+
<?php foreach($EM_Event->warnings as $warning): ?>
|
67 |
+
<p class="warning"><?php echo $warning; ?></p>
|
68 |
+
<?php endforeach; ?>
|
69 |
+
<?php endif; ?>
|
70 |
+
<div id="poststuff" class="metabox-holder has-right-sidebar">
|
71 |
+
<!-- SIDEBAR -->
|
72 |
+
<div id="side-info-column" class='inner-sidebar'>
|
73 |
+
<div id='side-sortables'>
|
74 |
+
<?php do_action('em_admin_event_form_side_header'); ?>
|
75 |
+
<?php if(get_option('dbem_recurrence_enabled')) : ?>
|
76 |
+
<!-- START recurrence postbox -->
|
77 |
+
<div class="postbox ">
|
78 |
+
<div class="handlediv"><br />
|
79 |
+
</div>
|
80 |
+
<h3 class='hndle'><span>
|
81 |
+
<?php _e ( "Recurrence", 'dbem' ); ?>
|
82 |
+
</span></h3>
|
83 |
+
<div class="inside">
|
84 |
+
|
85 |
+
<?php if( $EM_Event->is_recurrence() ) : ?>
|
86 |
+
<p>
|
87 |
+
<?php echo $EM_Event->get_recurrence_description(); ?>
|
88 |
+
<br />
|
89 |
+
<a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-event&event_id=<?php echo $EM_Event->recurrence_id; ?>">
|
90 |
+
<?php _e ( 'Reschedule', 'dbem' ); ?>
|
91 |
+
</a>
|
92 |
+
<input type="hidden" name="recurrence_id" value="<?php echo $EM_Event->recurrence_id; ?>" />
|
93 |
+
</p>
|
94 |
+
<?php //TODO add js warning if rescheduling, since all bookings are deleted ?>
|
95 |
+
<?php else : ?>
|
96 |
+
<p>
|
97 |
+
<input id="event-recurrence" type="checkbox" name="repeated_event" value="1" <?php echo ( $EM_Event->is_recurring() ) ? 'checked="checked"':'' ; ?> />
|
98 |
+
<?php _e ( 'Repeated event', 'dbem' ); ?>
|
99 |
+
</p>
|
100 |
+
<div id="event_recurrence_pattern">
|
101 |
+
<p>
|
102 |
+
Frequency:
|
103 |
+
<select id="recurrence-frequency" name="recurrence_freq">
|
104 |
+
<?php
|
105 |
+
$freq_options = array ("daily" => __ ( 'Daily', 'dbem' ), "weekly" => __ ( 'Weekly', 'dbem' ), "monthly" => __ ( 'Monthly', 'dbem' ) );
|
106 |
+
em_option_items ( $freq_options, $EM_Event->freq );
|
107 |
+
?>
|
108 |
+
</select>
|
109 |
+
</p>
|
110 |
+
<p>
|
111 |
+
<?php _e ( 'Every', 'dbem' )?>
|
112 |
+
<input id="recurrence-interval" name='recurrence_interval' size='2' value='<?php echo $EM_Event->interval ; ?>' />
|
113 |
+
<span class='interval-desc' id="interval-daily-singular">
|
114 |
+
<?php _e ( 'day', 'dbem' )?>
|
115 |
+
</span> <span class='interval-desc' id="interval-daily-plural">
|
116 |
+
<?php _e ( 'days', 'dbem' ) ?>
|
117 |
+
</span> <span class='interval-desc' id="interval-weekly-singular">
|
118 |
+
<?php _e ( 'week', 'dbem' )?>
|
119 |
+
</span> <span class='interval-desc' id="interval-weekly-plural">
|
120 |
+
<?php _e ( 'weeks', 'dbem' )?>
|
121 |
+
</span> <span class='interval-desc' id="interval-monthly-singular">
|
122 |
+
<?php _e ( 'month', 'dbem' )?>
|
123 |
+
</span> <span class='interval-desc' id="interval-monthly-plural">
|
124 |
+
<?php _e ( 'months', 'dbem' )?>
|
125 |
+
</span>
|
126 |
+
</p>
|
127 |
+
<p class="alternate-selector" id="weekly-selector">
|
128 |
+
<?php
|
129 |
+
$saved_bydays = ($EM_Event->is_recurring()) ? explode ( ",", $EM_Event->byday ) : array();
|
130 |
+
em_checkbox_items ( 'recurrence_bydays[]', $days_names, $saved_bydays );
|
131 |
+
?>
|
132 |
+
</p>
|
133 |
+
<p class="alternate-selector" id="monthly-selector">
|
134 |
+
<?php _e ( 'Every', 'dbem' )?>
|
135 |
+
<select id="monthly-modifier" name="recurrence_byweekno">
|
136 |
+
<?php
|
137 |
+
$weekno_options = array ("1" => __ ( 'first', 'dbem' ), '2' => __ ( 'second', 'dbem' ), '3' => __ ( 'third', 'dbem' ), '4' => __ ( 'fourth', 'dbem' ), '-1' => __ ( 'last', 'dbem' ) );
|
138 |
+
em_option_items ( $weekno_options, $EM_Event->byweekno );
|
139 |
+
?>
|
140 |
+
</select>
|
141 |
+
<select id="recurrence-weekday" name="recurrence_byday">
|
142 |
+
<?php em_option_items ( $days_names, $EM_Event->byday ); ?>
|
143 |
+
</select>
|
144 |
+
|
145 |
+
</p>
|
146 |
+
</div>
|
147 |
+
<p id="recurrence-tip">
|
148 |
+
<?php _e ( 'Check if your event happens more than once according to a regular pattern', 'dbem' )?>
|
149 |
+
</p>
|
150 |
+
<?php endif; ?>
|
151 |
+
</div>
|
152 |
+
</div>
|
153 |
+
<!-- END recurrence postbox -->
|
154 |
+
<?php endif; ?>
|
155 |
+
|
156 |
+
<?php if ( current_user_can('edit_others_events') ): ?>
|
157 |
+
<div class="postbox ">
|
158 |
+
<div class="handlediv"><br />
|
159 |
+
</div>
|
160 |
+
<h3 class='hndle'><span><?php _e ( 'Event Owner/Contact Person', 'dbem' ); ?></span></h3>
|
161 |
+
<div class="inside">
|
162 |
+
<?php
|
163 |
+
$event_owner = (empty($EM_Event->id)) ? $EM_Event->owner:get_current_user_id();
|
164 |
+
$user_args = array ('name' => 'event_owner', 'show_option_none' => __ ( "Select...", 'dbem' ), 'selected' => $EM_Event->owner );
|
165 |
+
if( is_super_admin() || is_main_site() ){ $user_args['blog_id'] = false; }
|
166 |
+
wp_dropdown_users ( apply_filters('em_event_owner_dropdown_users',$user_args) );
|
167 |
+
?>
|
168 |
+
</div>
|
169 |
+
</div>
|
170 |
+
<?php else: ?>
|
171 |
+
<input type="hidden" name="event_owner" value="<?php get_current_user_id() ?>" />
|
172 |
+
<?php endif; ?>
|
173 |
+
|
174 |
+
<?php if( empty($EM_Event->id) ): ?>
|
175 |
+
<?php
|
176 |
+
$user_groups = array();
|
177 |
+
if( function_exists('groups_get_user_groups') ){
|
178 |
+
$group_data = groups_get_user_groups(get_current_user_id());
|
179 |
+
foreach( $group_data['groups'] as $group_id ){
|
180 |
+
if( groups_is_user_admin(get_current_user_id(), $group_id) ){
|
181 |
+
$user_groups[] = groups_get_group( array('group_id'=>$group_id));
|
182 |
+
}
|
183 |
+
}
|
184 |
+
}
|
185 |
+
?>
|
186 |
+
<?php if( count($user_groups) > 0 ): ?>
|
187 |
+
<!-- START RSVP -->
|
188 |
+
<div class="postbox " id='group-data'>
|
189 |
+
<div class="handlediv"><br />
|
190 |
+
</div>
|
191 |
+
<h3 class='hndle'><span><?php _e('Group Ownership','dbem'); ?></span></h3>
|
192 |
+
<div class="inside">
|
193 |
+
<p>
|
194 |
+
<select name="group_id">
|
195 |
+
<option value="<?php echo $BP_Group->id; ?>">Not a Group Event</option>
|
196 |
+
<?php
|
197 |
+
foreach($user_groups as $BP_Group){
|
198 |
+
?>
|
199 |
+
<option value="<?php echo $BP_Group->id; ?>"><?php echo $BP_Group->name; ?></option>
|
200 |
+
<?php
|
201 |
+
}
|
202 |
+
?>
|
203 |
+
</select>
|
204 |
+
<br />
|
205 |
+
<em><?php _e ( 'Select a group you admin to attach this event to it. Note that all other admins of that group can modify the booking, and you will not be able to unattach the event without deleting it.', 'dbem' )?></em>
|
206 |
+
</p>
|
207 |
+
</div>
|
208 |
+
</div>
|
209 |
+
<?php endif; ?>
|
210 |
+
<?php endif; ?>
|
211 |
+
|
212 |
+
<?php if(get_option('dbem_rsvp_enabled')) : ?>
|
213 |
+
<!-- START RSVP -->
|
214 |
+
<div class="postbox " id='rsvp-data'>
|
215 |
+
<div class="handlediv"><br />
|
216 |
+
</div>
|
217 |
+
<h3 class='hndle'><span><?php _e('Bookings Stats','dbem'); ?></span></h3>
|
218 |
+
<div class="inside">
|
219 |
+
<div>
|
220 |
+
<!-- START RSVP Stats -->
|
221 |
+
<?php
|
222 |
+
$available_spaces = $EM_Event->get_bookings()->get_available_spaces();
|
223 |
+
$booked_spaces = $EM_Event->get_bookings()->get_booked_spaces();
|
224 |
+
|
225 |
+
if ( count($EM_Event->get_bookings()->bookings) > 0 ) {
|
226 |
+
?>
|
227 |
+
<div class='wrap'>
|
228 |
+
<p><strong><?php echo __('Available Spaces','dbem').': '.$EM_Event->get_bookings()->get_available_spaces(); ?></strong></p>
|
229 |
+
<p><strong><?php echo __('Confirmed Spaces','dbem').': '.$EM_Event->get_bookings()->get_booked_spaces(); ?></strong></p>
|
230 |
+
<p><strong><?php echo __('Pending Spaces','dbem').': '.$EM_Event->get_bookings()->get_pending_spaces(); ?></strong></p>
|
231 |
+
</div>
|
232 |
+
|
233 |
+
<br class='clear'/>
|
234 |
+
|
235 |
+
<div id='major-publishing-actions'>
|
236 |
+
<div id='publishing-action'>
|
237 |
+
<a id='printable' href='<?php echo get_bloginfo('wpurl') . "/wp-admin/admin.php?page=events-manager-bookings&event_id=".$EM_Event->id ?>'><?php _e('manage bookings','dbem')?></a><br />
|
238 |
+
<a target='_blank' href='<?php echo get_bloginfo('wpurl') . "/wp-admin/admin.php?page=events-manager-bookings&action=bookings_report&event_id=".$EM_Event->id ?>'><?php _e('printable view','dbem')?></a>
|
239 |
+
<a href='<?php echo get_bloginfo('wpurl') . "/wp-admin/admin.php?page=events-manager-bookings&action=export_csv&event_id=".$EM_Event->id ?>'><?php _e('export csv','dbem')?></a>
|
240 |
+
<?php do_action('em_admin_event_booking_options'); ?>
|
241 |
+
<br class='clear'/>
|
242 |
+
</div>
|
243 |
+
<br class='clear'/>
|
244 |
+
</div>
|
245 |
+
<?php
|
246 |
+
} else {
|
247 |
+
?>
|
248 |
+
<p><em><?php _e('No responses yet!', 'dbem')?></em></p>
|
249 |
+
<?php
|
250 |
+
}
|
251 |
+
?>
|
252 |
+
<!-- END RSVP Stats -->
|
253 |
+
</div>
|
254 |
+
</div>
|
255 |
+
</div>
|
256 |
+
<!-- END RSVP -->
|
257 |
+
<?php endif; ?>
|
258 |
+
<?php if(get_option('dbem_categories_enabled')) :?>
|
259 |
+
<!-- START Categories -->
|
260 |
+
<div class="postbox ">
|
261 |
+
<div class="handlediv"><br />
|
262 |
+
</div>
|
263 |
+
<h3 class='hndle'><span>
|
264 |
+
<?php _e ( 'Category', 'dbem' ); ?>
|
265 |
+
</span></h3>
|
266 |
+
<div class="inside">
|
267 |
+
<?php $categories = EM_Categories::get(array('orderby'=>'category_name')); ?>
|
268 |
+
<?php if( count($categories) > 0 ): ?>
|
269 |
+
<p>
|
270 |
+
<?php foreach( $categories as $EM_Category ):?>
|
271 |
+
<label><input type="checkbox" name="event_categories[]" value="<?php echo $EM_Category->id; ?>" <?php if($EM_Event->get_categories()->has($EM_Category->id)) echo 'checked="checked"'; ?> /> <?php echo $EM_Category->name ?></label><br />
|
272 |
+
<?php endforeach; ?>
|
273 |
+
</p>
|
274 |
+
<?php else: ?>
|
275 |
+
<p><?php sprintf(__('No categories available, <a href="%s">create one here first</a>','dbem'), get_bloginfo('wpurl').'/wp-admin/admin.php?page=events-manager-categories'); ?></p>
|
276 |
+
<?php endif; ?>
|
277 |
+
</div>
|
278 |
+
</div>
|
279 |
+
<!-- END Categories -->
|
280 |
+
<?php endif; ?>
|
281 |
+
<?php do_action('em_admin_event_form_side_footer'); ?>
|
282 |
+
</div>
|
283 |
+
</div>
|
284 |
+
<!-- END OF SIDEBAR -->
|
285 |
+
<div id="post-body">
|
286 |
+
<div id="post-body-content">
|
287 |
+
<?php do_action('em_admin_event_form_header'); ?>
|
288 |
+
<div id="event_name" class="stuffbox">
|
289 |
+
<h3>
|
290 |
+
<?php _e ( 'Name', 'dbem' ); ?>
|
291 |
+
</h3>
|
292 |
+
<div class="inside">
|
293 |
+
<input type="text" name="event_name" id="event-name" value="<?php echo htmlspecialchars($EM_Event->name,ENT_QUOTES); ?>" /><?php echo $required; ?>
|
294 |
+
<br />
|
295 |
+
<?php _e ( 'The event name. Example: Birthday party', 'dbem' )?>
|
296 |
+
<?php $slug_link = __('View Slug','dbem'); ?>
|
297 |
+
<a href="#" id="event-slug-trigger"><?php echo $slug_link; ?></a>
|
298 |
+
<script type="text/javascript">
|
299 |
+
jQuery(document).ready(function($){
|
300 |
+
$('#event-slug-trigger').click(function(){
|
301 |
+
if( $(this).text() == '<?php echo $slug_link; ?>'){
|
302 |
+
$('.event-slug').show();
|
303 |
+
$(this).text('<?php _e('Hide Slug','dbem'); ?>');
|
304 |
+
}else{
|
305 |
+
$('.event-slug').hide();
|
306 |
+
$(this).text('<?php echo $slug_link; ?>');
|
307 |
+
}
|
308 |
+
});
|
309 |
+
});
|
310 |
+
</script>
|
311 |
+
<p class='event-slug' style="display:none">
|
312 |
+
<?php _e('Event Slug','dbem'); ?>: <input type="text" name="event_slug" id="event-slug" value="<?php echo $EM_Event->slug; ?>" />
|
313 |
+
<br />
|
314 |
+
<?php _e ( 'The event slug. If the event slug already exists, a random number will be appended to the end.', 'dbem' )?>
|
315 |
+
</p>
|
316 |
+
</div>
|
317 |
+
</div>
|
318 |
+
<div id="event_start_date" class="stuffbox">
|
319 |
+
<h3 id='event-date-title'><?php _e ( 'Event date', 'dbem' ); ?></h3>
|
320 |
+
<h3 id='recurrence-dates-title'><?php _e ( 'Recurrence dates', 'dbem' ); ?></h3>
|
321 |
+
<div class="inside">
|
322 |
+
<input id="em-date-start-loc" type="text" />
|
323 |
+
<input id="em-date-start" type="hidden" name="event_start_date" value="<?php echo $EM_Event->start_date ?>" />
|
324 |
+
<input id="em-date-end-loc" type="text" />
|
325 |
+
<input id="em-date-end" type="hidden" name="event_end_date" value="<?php echo $EM_Event->end_date ?>" />
|
326 |
+
<br />
|
327 |
+
<span id='event-date-explanation'>
|
328 |
+
<?php
|
329 |
+
_e ( 'The event date.', 'dbem' );
|
330 |
+
/* Marcus Begin Edit */
|
331 |
+
echo " ";
|
332 |
+
_e ( 'When not reoccurring, this event spans between the beginning and end date.', 'dbem' );
|
333 |
+
/* Marcus End Edit */
|
334 |
+
?>
|
335 |
+
</span>
|
336 |
+
<span id='recurrence-dates-explanation'>
|
337 |
+
<?php _e ( 'The recurrence beginning and end date.', 'dbem' ); ?>
|
338 |
+
</span>
|
339 |
+
</div>
|
340 |
+
</div>
|
341 |
+
<div id="event_end_day" class="stuffbox">
|
342 |
+
<h3>
|
343 |
+
<?php _e ( 'Event time', 'dbem' ); ?>
|
344 |
+
</h3>
|
345 |
+
<div class="inside">
|
346 |
+
<input id="start-time" type="text" size="8" maxlength="8" name="event_start_time" value="<?php echo date( $hours_locale_regexp, strtotime($EM_Event->start_time) ); ?>" />
|
347 |
+
-
|
348 |
+
<input id="end-time" type="text" size="8" maxlength="8" name="event_end_time" value="<?php echo date( $hours_locale_regexp, strtotime($EM_Event->end_time) ); ?>" />
|
349 |
+
<br />
|
350 |
+
<?php _e ( 'The time of the event beginning and end', 'dbem' )?>.
|
351 |
+
</div>
|
352 |
+
</div>
|
353 |
+
<div id="location_coordinates" class="stuffbox" style='display: none;'>
|
354 |
+
<h3>
|
355 |
+
<?php _e ( 'Coordinates', 'dbem' ); ?>
|
356 |
+
</h3>
|
357 |
+
<div class="inside">
|
358 |
+
<input id='location-latitude' name='location_latitude' type='text' value='<?php echo $EM_Event->get_location()->latitude; ?>' size='15' />
|
359 |
+
-
|
360 |
+
<input id='location-longitude' name='location_longitude' type='text' value='<?php echo $EM_Event->get_location()->longitude; ?>' size='15' />
|
361 |
+
</div>
|
362 |
+
</div>
|
363 |
+
<div id="location_info" class="stuffbox">
|
364 |
+
<h3>
|
365 |
+
<?php _e ( 'Location', 'dbem' ); ?>
|
366 |
+
</h3>
|
367 |
+
<div class="inside">
|
368 |
+
<div id="em-location-data">
|
369 |
+
<table>
|
370 |
+
<?php if($use_select_for_locations) : ?>
|
371 |
+
<tr>
|
372 |
+
<th><?php _e('Location:','dbem') ?></th>
|
373 |
+
<td>
|
374 |
+
<select name="location_id" id='location-select-id' size="1">
|
375 |
+
<?php
|
376 |
+
$locations = EM_Locations::get();
|
377 |
+
foreach($locations as $location) {
|
378 |
+
$selected = "";
|
379 |
+
if ($EM_Event->get_location()->id == $location->id){
|
380 |
+
$selected = "selected='selected' ";
|
381 |
+
}
|
382 |
+
?>
|
383 |
+
<option value="<?php echo $location->id ?>" title="<?php echo "{$location->latitude},{$location->longitude}" ?>" <?php echo $selected ?>><?php echo $location->name; ?></option>
|
384 |
+
<?php
|
385 |
+
}
|
386 |
+
?>
|
387 |
+
</select>
|
388 |
+
<p><?php _e ( 'The name of the location where the event takes place. You can use the name of a venue, a square, etc', 'dbem' )?></p>
|
389 |
+
</td>
|
390 |
+
</tr>
|
391 |
+
<?php else : ?>
|
392 |
+
<tr>
|
393 |
+
<th><?php _e ( 'Name:', 'dbem' )?></th>
|
394 |
+
<td>
|
395 |
+
<input id='location-id' name='location_id' type='hidden' value='<?php echo $EM_Event->get_location()->id; ?>' size='15' />
|
396 |
+
<input id="location-name" type="text" name="location_name" value="<?php echo htmlspecialchars($EM_Event->location->name, ENT_QUOTES); ?>" /><?php echo $required; ?>
|
397 |
+
<p><em><?php _e ( 'Create a location or start typing to search a previously created location.', 'dbem' )?></em></p>
|
398 |
+
<p id="em-location-reset" style="display:none;"><em><?php _e('You cannot edit saved locations here.', 'dbem'); ?> <a href="#"><?php _e('Reset this form to create a location.', 'dbem')?></a></em></p>
|
399 |
+
</td>
|
400 |
+
</tr>
|
401 |
+
<tr>
|
402 |
+
<th><?php _e ( 'Address:', 'dbem' )?> </th>
|
403 |
+
<td>
|
404 |
+
<input id="location-address" type="text" name="location_address" value="<?php echo htmlspecialchars($EM_Event->location->address, ENT_QUOTES); ; ?>" /><?php echo $required; ?>
|
405 |
+
</td>
|
406 |
+
</tr>
|
407 |
+
<tr>
|
408 |
+
<th><?php _e ( 'City/Town:', 'dbem' )?> </th>
|
409 |
+
<td>
|
410 |
+
<input id="location-town" type="text" name="location_town" value="<?php echo htmlspecialchars($EM_Event->location->town, ENT_QUOTES); ?>" /><?php echo $required; ?>
|
411 |
+
<input id="location-town-wpnonce" type="hidden" value="<?php echo wp_create_nonce('search_town'); ?>" />
|
412 |
+
</td>
|
413 |
+
</tr>
|
414 |
+
<tr>
|
415 |
+
<th><?php _e ( 'State/County:', 'dbem' )?> </th>
|
416 |
+
<td>
|
417 |
+
<input id="location-state" type="text" name="location_state" value="<?php echo htmlspecialchars($EM_Event->location->state, ENT_QUOTES); ?>" />
|
418 |
+
<input id="location-state-wpnonce" type="hidden" value="<?php echo wp_create_nonce('search_states'); ?>" />
|
419 |
+
</td>
|
420 |
+
</tr>
|
421 |
+
<tr>
|
422 |
+
<th><?php _e ( 'Postcode:', 'dbem' )?> </th>
|
423 |
+
<td>
|
424 |
+
<input id="location-postcode" type="text" name="location_postcode" value="<?php echo htmlspecialchars($EM_Event->location->postcode, ENT_QUOTES); ?>" />
|
425 |
+
</td>
|
426 |
+
</tr>
|
427 |
+
<tr>
|
428 |
+
<th><?php _e ( 'Region:', 'dbem' )?> </th>
|
429 |
+
<td>
|
430 |
+
<input id="location-region" type="text" name="location_region" value="<?php echo htmlspecialchars($EM_Event->location->region, ENT_QUOTES); ?>" />
|
431 |
+
<input id="location-region-wpnonce" type="hidden" value="<?php echo wp_create_nonce('search_regions'); ?>" />
|
432 |
+
</td>
|
433 |
+
</tr>
|
434 |
+
<tr>
|
435 |
+
<th><?php _e ( 'Country:', 'dbem' )?> </th>
|
436 |
+
<td>
|
437 |
+
<select id="location-country" name="location_country">
|
438 |
+
<option value="0" <?php echo ( $EM_Event->location->country == '' && $EM_Event->location->id == '' && get_option('dbem_location_default_country') == '' ) ? 'selected="selected"':''; ?>><?php _e('none selected','dbem'); ?></option>
|
439 |
+
<?php foreach(em_get_countries() as $country_key => $country_name): ?>
|
440 |
+
<option value="<?php echo $country_key; ?>" <?php echo ( $EM_Event->location->country == $country_key || ($EM_Event->location->country == '' && $EM_Event->location->id == '' && get_option('dbem_location_default_country')==$country_key) ) ? 'selected="selected"':''; ?>><?php echo $country_name; ?></option>
|
441 |
+
<?php endforeach; ?>
|
442 |
+
</select><?php echo $required; ?>
|
443 |
+
<!-- <p><em><?php _e('Filling this in first will allow you to quickly find previously filled states and regions for the country.','dbem'); ?></em></p> -->
|
444 |
+
</td>
|
445 |
+
</tr>
|
446 |
+
<?php endif; ?>
|
447 |
+
</table>
|
448 |
+
|
449 |
+
<?php if ( get_option( 'dbem_gmap_is_active' ) ) : ?>
|
450 |
+
<div style="width: 400px; height: 300px; float:left; ">
|
451 |
+
<div id='em-map-404' style='width: 400px; height:300px; vertical-align:middle; text-align: center;'>
|
452 |
+
<p><em><?php _e ( 'Location not found', 'dbem' ); ?></em></p>
|
453 |
+
</div>
|
454 |
+
<div id='em-map' style='width: 400px; height: 300px; display: none;'></div>
|
455 |
+
</div>
|
456 |
+
<?php endif; ?>
|
457 |
+
<br style="clear:both;" />
|
458 |
+
</div>
|
459 |
+
</div>
|
460 |
+
</div>
|
461 |
+
<div id="event_notes" class="stuffbox">
|
462 |
+
<h3>
|
463 |
+
<?php _e ( 'Details', 'dbem' ); ?>
|
464 |
+
</h3>
|
465 |
+
<div class="inside">
|
466 |
+
<div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
|
467 |
+
<?php the_editor($EM_Event->notes ); ?>
|
468 |
+
</div>
|
469 |
+
<br />
|
470 |
+
<?php _e ( 'Details about the event', 'dbem' )?>
|
471 |
+
</div>
|
472 |
+
</div>
|
473 |
+
|
474 |
+
<div id="event-image" class="stuffbox">
|
475 |
+
<h3>
|
476 |
+
<?php _e ( 'Event image', 'dbem' ); ?>
|
477 |
+
</h3>
|
478 |
+
<div class="inside" style="padding:10px;">
|
479 |
+
<?php if ($EM_Event->get_image_url() != '') : ?>
|
480 |
+
<img src='<?php echo $EM_Event->image_url; ?>' alt='<?php echo $EM_Event->name ?>'/>
|
481 |
+
<?php else : ?>
|
482 |
+
<?php _e('No image uploaded for this event yet', 'dbem') ?>
|
483 |
+
<?php endif; ?>
|
484 |
+
<br /><br />
|
485 |
+
<label for='event_image'><?php _e('Upload/change picture', 'dbem') ?></label> <input id='event-image' name='event_image' id='event_image' type='file' size='40' />
|
486 |
+
<br />
|
487 |
+
<label for='event_image_delete'><?php _e('Delete Image?', 'dbem') ?></label> <input id='event-image-delete' name='event_image_delete' id='event_image_delete' type='checkbox' value='1' />
|
488 |
+
</div>
|
489 |
+
</div>
|
490 |
+
|
491 |
+
<?php if(get_option('dbem_rsvp_enabled')) : ?>
|
492 |
+
<div id="event-bookings" class="stuffbox">
|
493 |
+
<h3><span><?php _e('Bookings/Registration','dbem'); ?></span></h3>
|
494 |
+
<div class="inside">
|
495 |
+
<div class="wrap">
|
496 |
+
<div id="event-rsvp-box">
|
497 |
+
<input id="event-rsvp" name='event_rsvp' value='1' type='checkbox' <?php echo ($EM_Event->rsvp) ? 'checked="checked"' : ''; ?> />
|
498 |
+
|
499 |
+
<?php _e ( 'Enable registration for this event', 'dbem' )?>
|
500 |
+
</div>
|
501 |
+
<div id="event-tickets" style="<?php echo ($EM_Event->rsvp) ? '':'display:none;' ?>">
|
502 |
+
<?php
|
503 |
+
//get tickets here and if there are none, create a blank ticket
|
504 |
+
$EM_Tickets = $EM_Event->get_bookings()->get_tickets();
|
505 |
+
if( count($EM_Tickets->tickets) == 0 ){
|
506 |
+
$EM_Tickets->tickets[] = new EM_Ticket();
|
507 |
+
$delete_temp_ticket = true;
|
508 |
+
}
|
509 |
+
if( get_option('dbem_bookings_tickets_single') ){
|
510 |
+
$EM_Ticket = $EM_Tickets->get_first();
|
511 |
+
include( em_locate_template('forms/ticket-form.php') );
|
512 |
+
}else{
|
513 |
+
?>
|
514 |
+
<p><strong><?php _e('Tickets','dbem'); ?></strong></p>
|
515 |
+
<p><em><?php _e('You can have single or multiple tickets, where certain tickets become availalble under certain conditions, e.g. early bookings, group discounts, maximum bookings per ticket, etc.', 'dbem'); ?> <?php _e('Basic HTML is allowed in ticket labels and descriptions.','dbem'); ?></em></p>
|
516 |
+
<table class="form-table">
|
517 |
+
<thead>
|
518 |
+
<tr valign="top">
|
519 |
+
<th class="ticket-status"> </th>
|
520 |
+
<th><?php _e('Ticket Name','dbem'); ?></th>
|
521 |
+
<th><?php _e('Price','dbem'); ?></th>
|
522 |
+
<th><?php _e('Min/Max','dbem'); ?></th>
|
523 |
+
<th><?php _e('Start/End','dbem'); ?></th>
|
524 |
+
<th><?php _e('Avail. Spaces','dbem'); ?></th>
|
525 |
+
<th><?php _e('Booked Spaces','dbem'); ?></th>
|
526 |
+
<th> </th>
|
527 |
+
</tr>
|
528 |
+
</thead>
|
529 |
+
<tfoot>
|
530 |
+
<tr valign="top">
|
531 |
+
<td colspan="6">
|
532 |
+
<a href="#" id="em-tickets-add" rel="#em-tickets-form"><?php _e('Add new ticket','dbem'); ?></a>
|
533 |
+
</td>
|
534 |
+
</tr>
|
535 |
+
</tfoot>
|
536 |
+
<tbody id="em-tickets-body">
|
537 |
+
<?php
|
538 |
+
global $allowedposttags;
|
539 |
+
$count = 1;
|
540 |
+
foreach( $EM_Tickets->tickets as $EM_Ticket){
|
541 |
+
?>
|
542 |
+
<tr valign="top" id="em-tickets-row-<?php echo $count ?>" class="em-tickets-row">
|
543 |
+
<td class="ticket-status"><span class="<?php echo ($EM_Ticket->is_available()) ? 'ticket_on':'ticket_off'; ?>"></span></td>
|
544 |
+
<td class="ticket-name"><span class="ticket_name"><?php echo wp_kses_data($EM_Ticket->name); ?></span><br /><span class="ticket_description"><?php echo wp_kses($EM_Ticket->description,$allowedposttags); ?></span></td>
|
545 |
+
<td class="ticket-price">
|
546 |
+
<span class="ticket_price"><?php echo ($EM_Ticket->price) ? $EM_Ticket->price : __('Free','dbem'); ?></span>
|
547 |
+
</td>
|
548 |
+
<td class="ticket-limit">
|
549 |
+
<span class="ticket_min">
|
550 |
+
<?php echo ( !empty($EM_Ticket->min) ) ? $EM_Ticket->min:'-'; ?>
|
551 |
+
</span> /
|
552 |
+
<span class="ticket_max"><?php echo ( !empty($EM_Ticket->max) ) ? $EM_Ticket->max:'-'; ?></span>
|
553 |
+
</td>
|
554 |
+
<td class="ticket-time">
|
555 |
+
<span class="ticket_start"><?php echo ( !empty($EM_Ticket->start) ) ? date($localised_date_format, $EM_Ticket->start_timestamp):''; ?></span> -
|
556 |
+
<span class="ticket_end"><?php echo ( !empty($EM_Ticket->end) ) ? date($localised_date_format, $EM_Ticket->end_timestamp):''; ?></span>
|
557 |
+
</td>
|
558 |
+
<td class="ticket-qty">
|
559 |
+
<span class="ticket_available_spaces"><?php echo $EM_Ticket->get_available_spaces(); ?></span>/
|
560 |
+
<span class="ticket_spaces">
|
561 |
+
<?php
|
562 |
+
if( $EM_Ticket->get_spaces() ){
|
563 |
+
echo $EM_Ticket->get_spaces();
|
564 |
+
echo ($EM_Ticket->spaces_limit) ? '':'*';
|
565 |
+
}else{
|
566 |
+
echo '-';
|
567 |
+
}
|
568 |
+
?>
|
569 |
+
</span>
|
570 |
+
</td>
|
571 |
+
<td class="ticket-booked-spaces">
|
572 |
+
<span class="ticket_booked_spaces"><?php echo $EM_Ticket->get_booked_spaces(); ?></span>
|
573 |
+
</td>
|
574 |
+
<td class="ticket-actions">
|
575 |
+
<a href="#" class="ticket-actions-edit"><?php _e('Edit','dbem'); ?></a>
|
576 |
+
<?php if( count($EM_Ticket->get_bookings()->bookings) == 0 ): ?>
|
577 |
+
| <a href="<?php bloginfo('wpurl'); ?>/wp-load.php" class="ticket-actions-delete"><?php _e('Delete','dbem'); ?></a>
|
578 |
+
<?php else: ?>
|
579 |
+
| <a href="<?php bloginfo('wpurl'); ?>/wp-admin/admin.php?page=events-manager-bookings&ticket_id=<?php echo $EM_Ticket->id ?>"><?php _e('View Bookings','dbem'); ?></a>
|
580 |
+
<?php endif; ?>
|
581 |
+
<input type="hidden" class="ticket_id" name="em_tickets[<?php echo $count; ?>][ticket_id]" value="<?php echo $EM_Ticket->id ?>" />
|
582 |
+
<input type="hidden" class="ticket_name" name="em_tickets[<?php echo $count; ?>][ticket_name]" value="<?php echo esc_attr(stripslashes($EM_Ticket->name)) ?>" />
|
583 |
+
<input type="hidden" class="ticket_description" name="em_tickets[<?php echo $count; ?>][ticket_description]" value="<?php echo esc_attr(stripslashes($EM_Ticket->description)) ?>" />
|
584 |
+
<input type="hidden" class="ticket_price" name="em_tickets[<?php echo $count; ?>][ticket_price]" value="<?php echo $EM_Ticket->price ?>" />
|
585 |
+
<input type="hidden" class="ticket_spaces" name="em_tickets[<?php echo $count; ?>][ticket_spaces]" value="<?php echo $EM_Ticket->spaces ?>" />
|
586 |
+
<input type="hidden" class="ticket_start" name="em_tickets[<?php echo $count; ?>][ticket_start]" value="<?php echo ( !empty($EM_Ticket->start) ) ? date("Y-m-d H:i", $EM_Ticket->start_timestamp):''; ?>" />
|
587 |
+
<input type="hidden" class="ticket_end" name="em_tickets[<?php echo $count; ?>][ticket_end]" value="<?php echo ( !empty($EM_Ticket->end) ) ? date("Y-m-d H:i", $EM_Ticket->end_timestamp):''; ?>" />
|
588 |
+
<input type="hidden" class="ticket_min" name="em_tickets[<?php echo $count; ?>][ticket_min]" value="<?php echo $EM_Ticket->min ?>" />
|
589 |
+
<input type="hidden" class="ticket_max" name="em_tickets[<?php echo $count; ?>][ticket_max]" value="<?php echo $EM_Ticket->max ?>" />
|
590 |
+
</td>
|
591 |
+
</tr>
|
592 |
+
<?php
|
593 |
+
$count++;
|
594 |
+
}
|
595 |
+
if( !empty($delete_temp_ticket) ){
|
596 |
+
array_pop($EM_Tickets->tickets);
|
597 |
+
}
|
598 |
+
?>
|
599 |
+
</tbody>
|
600 |
+
</table>
|
601 |
+
<?php } ?>
|
602 |
+
</div>
|
603 |
+
</div>
|
604 |
+
</div>
|
605 |
+
</div>
|
606 |
+
<?php endif; ?>
|
607 |
+
|
608 |
+
<?php if(get_option('dbem_attributes_enabled')) : ?>
|
609 |
+
<div id="event-attributes" class="stuffbox">
|
610 |
+
<h3>
|
611 |
+
<?php _e ( 'Attributes', 'dbem' ); ?>
|
612 |
+
</h3>
|
613 |
+
<div class="inside">
|
614 |
+
<?php
|
615 |
+
$attributes = em_get_attributes();
|
616 |
+
$has_depreciated = false;
|
617 |
+
?>
|
618 |
+
<div class="wrap">
|
619 |
+
<?php if( !empty($attributes['names']) && count( $attributes['names'] ) > 0 ) : ?>
|
620 |
+
<table class="form-table">
|
621 |
+
<thead>
|
622 |
+
<tr valign="top">
|
623 |
+
<td><strong>Attribute Name</strong></td>
|
624 |
+
<td><strong>Value</strong></td>
|
625 |
+
</tr>
|
626 |
+
</thead>
|
627 |
+
<tbody id="mtm_body">
|
628 |
+
<?php
|
629 |
+
$count = 1;
|
630 |
+
foreach( $attributes['names'] as $name){
|
631 |
+
?>
|
632 |
+
<tr valign="top" id="em_attribute_<?php echo $count ?>">
|
633 |
+
<td scope="row"><?php echo $name ?></td>
|
634 |
+
<td>
|
635 |
+
<?php if( count($attributes['values'][$name]) > 0 ): ?>
|
636 |
+
<select name="em_attributes[<?php echo $name ?>]">
|
637 |
+
<?php foreach($attributes['values'][$name] as $attribute_val): ?>
|
638 |
+
<?php if( array_key_exists($name, $EM_Event->attributes) && $EM_Event->attributes[$name]==$attribute_val ): ?>
|
639 |
+
<option selected="selected"><?php echo $attribute_val; ?></option>
|
640 |
+
<?php else: ?>
|
641 |
+
<option><?php echo $attribute_val; ?></option>
|
642 |
+
<?php endif; ?>
|
643 |
+
<?php endforeach; ?>
|
644 |
+
</select>
|
645 |
+
<?php else: ?>
|
646 |
+
<input type="text" name="em_attributes[<?php echo $name ?>]" value="<?php echo array_key_exists($name, $EM_Event->attributes) ? htmlspecialchars($EM_Event->attributes[$name], ENT_QUOTES):''; ?>" />
|
647 |
+
<?php endif; ?>
|
648 |
+
</td>
|
649 |
+
</tr>
|
650 |
+
<?php
|
651 |
+
$count++;
|
652 |
+
}
|
653 |
+
if($count == 1){
|
654 |
+
?>
|
655 |
+
<tr><td colspan="2"><?php echo sprintf(__("You don't have any custom attributes defined in any of your Events Manager template settings. Please add them the <a href='%s'>settings page</a>",'dbem'),get_bloginfo('wpurl')."/wp-admin/admin.php?page=events-manager-options"); ?></td></tr>
|
656 |
+
<?php
|
657 |
+
}
|
658 |
+
?>
|
659 |
+
</tbody>
|
660 |
+
</table>
|
661 |
+
<?php if( count(array_diff(array_keys($EM_Event->attributes), $attributes['names'])) > 0 ): ?>
|
662 |
+
<p><strong><?php _e('Depreciated Attributes', 'dbem')?></strong></p>
|
663 |
+
<p><em><?php _e("If you see any attributes under here, that means they're not used in Events Manager anymore. To add them, you need to add the custom attribute again to a formatting option in the settings page. To remove any of these depreciated attributes, give it a blank value and save.") ?></em></p>
|
664 |
+
<table class="form-table">
|
665 |
+
<thead>
|
666 |
+
<tr valign="top">
|
667 |
+
<td><strong>Attribute Name</strong></td>
|
668 |
+
<td><strong>Value</strong></td>
|
669 |
+
</tr>
|
670 |
+
</thead>
|
671 |
+
<tbody id="mtm_body">
|
672 |
+
<?php
|
673 |
+
if( is_array($EM_Event->attributes) and count($EM_Event->attributes) > 0){
|
674 |
+
foreach( $EM_Event->attributes as $name => $value){
|
675 |
+
if( !in_array($name, $attributes['names']) ){
|
676 |
+
?>
|
677 |
+
<tr valign="top" id="em_attribute_<?php echo $count ?>">
|
678 |
+
<td scope="row"><?php echo $name ?></td>
|
679 |
+
<td>
|
680 |
+
<input type="text" name="em_attributes[<?php echo $name ?>]" value="<?php echo htmlspecialchars($value, ENT_QUOTES); ?>" />
|
681 |
+
</td>
|
682 |
+
</tr>
|
683 |
+
<?php
|
684 |
+
$count++;
|
685 |
+
}
|
686 |
+
}
|
687 |
+
}
|
688 |
+
?>
|
689 |
+
</tbody>
|
690 |
+
</table>
|
691 |
+
<?php endif; ?>
|
692 |
+
<?php else : ?>
|
693 |
+
<p>
|
694 |
+
<?php _e('In order to use attributes, you must define some in your templates, otherwise they\'ll never show. Go to Events > Settings to add attribute placeholders.', 'dbem'); ?>
|
695 |
+
</p>
|
696 |
+
<script>
|
697 |
+
jQuery(document).ready(function($){ $('#event_attributes').addClass('closed'); });
|
698 |
+
</script>
|
699 |
+
<?php endif; ?>
|
700 |
+
</div>
|
701 |
+
</div>
|
702 |
+
</div>
|
703 |
+
<?php endif; ?>
|
704 |
+
<?php do_action('em_admin_event_form_footer'); ?>
|
705 |
+
</div>
|
706 |
+
<p class="submit">
|
707 |
+
<?php
|
708 |
+
if ( $EM_Event->is_recurring() ) {
|
709 |
+
$recurrence_delete_confirm = __('WARNING! You are about to re-create all your recurrent events including erasing your old booking data! Are you sure you want to do this?','dbem');
|
710 |
+
$js = 'onclick = "if( !confirm(\''. $recurrence_delete_confirm.'\') ){ return false; }"';
|
711 |
+
}
|
712 |
+
?>
|
713 |
+
<input type="submit" name="events_update" value="<?php _e ( 'Submit Event', 'dbem' ); ?> »" <?php if(!empty($js)) echo $js; ?> />
|
714 |
+
</p>
|
715 |
+
<input type="hidden" name="p" value="<?php echo ( !empty($_REQUEST['pno']) ) ? $_REQUEST['pno']:''; ?>" /><a>
|
716 |
+
<input type="hidden" name="scope" value="<?php echo ( !empty($_REQUEST['scope']) ) ? $_REQUEST['scope']:'' ?>" /></a>
|
717 |
+
<input type="hidden" name="event_id" value="<?php echo $EM_Event->id; ?>" />
|
718 |
+
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('wpnonce_event_save'); ?>" />
|
719 |
+
<input type="hidden" name="action" value="event_save" />
|
720 |
+
</div>
|
721 |
+
</div>
|
722 |
+
</div>
|
723 |
+
</form>
|
724 |
+
<?php
|
725 |
+
if( !get_option('dbem_bookings_tickets_single') ){
|
726 |
+
em_locate_template('forms/tickets-form.php', true); //put here as it can't be in the add event form
|
727 |
+
}
|
728 |
+
?>
|
729 |
+
<script type="text/javascript">
|
730 |
+
jQuery(document).ready( function($) {
|
731 |
+
<?php if( $EM_Event->is_recurring() ): ?>
|
732 |
+
//Recurrence Warnings
|
733 |
+
$('#event_form').submit( function(event){
|
734 |
+
confirmation = confirm('<?php _e('Are you sure you want to reschedule this recurring event? If you do this, you will lose all booking information and the old recurring events will be deleted.', 'dbem'); ?>');
|
735 |
+
if( confirmation == false ){
|
736 |
+
event.preventDefault();
|
737 |
+
}
|
738 |
+
});
|
739 |
+
<?php endif; ?>
|
740 |
+
<?php if( get_option('dbem_rsvp_enabled') ): ?>
|
741 |
+
//RSVP Warning
|
742 |
+
$('#event-rsvp').click( function(event){
|
743 |
+
if( !this.checked ){
|
744 |
+
confirmation = confirm('<?php _e('Are you sure you want to disable bookings? If you do this and save, you will lose all previous bookings. If you wish to prevent further bookings, reduce the number of spaces available to the amount of bookings you currently have', 'dbem'); ?>');
|
745 |
+
if( confirmation == false ){
|
746 |
+
event.preventDefault();
|
747 |
+
}else{
|
748 |
+
$('#event-tickets').hide();
|
749 |
+
$("div#rsvp-data").hide();
|
750 |
+
}
|
751 |
+
}else{
|
752 |
+
$('#event-tickets').fadeIn();
|
753 |
+
$("div#rsvp-data").fadeIn();
|
754 |
+
}
|
755 |
+
});
|
756 |
+
|
757 |
+
if($('input#event-rsvp').attr("checked")) {
|
758 |
+
$("div#rsvp-data").fadeIn();
|
759 |
+
} else {
|
760 |
+
$("div#rsvp-data").hide();
|
761 |
+
}
|
762 |
+
<?php endif; ?>
|
763 |
+
});
|
764 |
+
</script>
|
765 |
+
<?php
|
766 |
+
}
|
767 |
?>
|
admin/em-events.php
CHANGED
@@ -1,242 +1,238 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
/**
|
4 |
-
* Determines whether to show event page or events page, and saves any updates to the event or events
|
5 |
-
* @return null
|
6 |
-
*/
|
7 |
-
function em_admin_events_page() {
|
8 |
-
//TODO Simplify panel for events, use form flags to detect certain actions (e.g. submitted, etc)
|
9 |
-
global $wpdb;
|
10 |
-
|
11 |
-
$action = ( !empty($
|
12 |
-
$order = ( !empty($
|
13 |
-
$limit = ( !empty($
|
14 |
-
$page = ( !empty($
|
15 |
-
$offset = ( $page > 1 ) ? ($page-1)*$limit : 0;
|
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 |
-
</div>
|
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 |
-
<?php
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
<div class="
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
</div>
|
239 |
-
<?php
|
240 |
-
}
|
241 |
-
|
242 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* Determines whether to show event page or events page, and saves any updates to the event or events
|
5 |
+
* @return null
|
6 |
+
*/
|
7 |
+
function em_admin_events_page() {
|
8 |
+
//TODO Simplify panel for events, use form flags to detect certain actions (e.g. submitted, etc)
|
9 |
+
global $wpdb, $EM_Notices, $EM_Event;
|
10 |
+
|
11 |
+
$action = ( !empty($_REQUEST ['action']) ) ? $_REQUEST ['action']:'';
|
12 |
+
$order = ( !empty($_REQUEST ['order']) ) ? $_REQUEST ['order']:'ASC';
|
13 |
+
$limit = ( !empty($_REQUEST['limit']) ) ? $_REQUEST['limit'] : 20;//Default limit
|
14 |
+
$page = ( !empty($_REQUEST['pno']) ) ? $_REQUEST['pno']:1;
|
15 |
+
$offset = ( $page > 1 ) ? ($page-1)*$limit : 0;
|
16 |
+
$search = ( !empty($_REQUEST['em_search']) ) ? $_REQUEST['em_search']:'';
|
17 |
+
$scope_names = em_get_scopes();
|
18 |
+
$scope = ( !empty($_REQUEST ['scope']) && array_key_exists($_REQUEST ['scope'], $scope_names) ) ? $_REQUEST ['scope']:'future';
|
19 |
+
$selectedEvents = ( !empty($_REQUEST ['events']) ) ? $_REQUEST ['events']:'';
|
20 |
+
|
21 |
+
$args = array('scope'=>$scope, 'limit'=>0, 'order'=>$order, 'search'=>$search );
|
22 |
+
|
23 |
+
if( !current_user_can('edit_others_events') ){
|
24 |
+
$args['owner'] = get_current_user_id();
|
25 |
+
}
|
26 |
+
//Figure out what status to search for
|
27 |
+
$args['status'] = ( isset($_REQUEST['status']) && is_numeric($_REQUEST['status']) ) ? $_REQUEST['status'] : false;
|
28 |
+
|
29 |
+
$events = EM_Events::get( $args );
|
30 |
+
$events_count = count ( $events );
|
31 |
+
$pending_count = EM_Events::count( array('status'=>0, 'scope'=>$scope) );
|
32 |
+
$approved_count = EM_Events::count( array('status'=> 1, 'scope'=>$scope) );
|
33 |
+
$total_count = EM_Events::count( array('status'=> false, 'scope'=>$scope) );
|
34 |
+
|
35 |
+
$use_events_end = get_option('dbem_use_event_end');
|
36 |
+
echo $EM_Notices;
|
37 |
+
?>
|
38 |
+
<div class="wrap">
|
39 |
+
<div id="icon-events" class="icon32"><br />
|
40 |
+
</div>
|
41 |
+
<h2>
|
42 |
+
<?php echo $scope_names[$scope]; ?>
|
43 |
+
<a href="admin.php?page=events-manager-event" class="button add-new-h2"><?php _e('Add New','dbem'); ?></a>
|
44 |
+
</h2>
|
45 |
+
<?php
|
46 |
+
$link = array ();
|
47 |
+
$link ['past'] = "<a href='" . get_bloginfo ( 'wpurl' ) . "/wp-admin/admin.php?page=events-manager&scope=past&order=desc'>" . __ ( 'Past events', 'dbem' ) . "</a>";
|
48 |
+
$link ['all'] = " <a href='" . get_bloginfo ( 'wpurl' ) . "/wp-admin/admin.php?page=events-manager&scope=all&order=desc'>" . __ ( 'All events', 'dbem' ) . "</a>";
|
49 |
+
$link ['future'] = " <a href='" . get_bloginfo ( 'wpurl' ) . "/wp-admin/admin.php?page=events-manager&scope=future'>" . __ ( 'Future events', 'dbem' ) . "</a>";
|
50 |
+
?>
|
51 |
+
<?php if ( !empty($_REQUEST['error']) ) : ?>
|
52 |
+
<div id='message' class='error'>
|
53 |
+
<p><?php echo $_REQUEST['error']; ?></p>
|
54 |
+
</div>
|
55 |
+
<?php endif; ?>
|
56 |
+
<?php if ( !empty($_REQUEST['message']) ) : ?>
|
57 |
+
<div id='message' class='updated fade'>
|
58 |
+
<p><?php echo $_REQUEST['message']; ?></p>
|
59 |
+
</div>
|
60 |
+
<?php endif; ?>
|
61 |
+
<form id="posts-filter" action="" method="get"><input type='hidden' name='page' value='events-manager' />
|
62 |
+
<ul class="subsubsub">
|
63 |
+
<li><a href='<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager&scope=<?php echo $scope; ?>' <?php echo ( !isset($_REQUEST['status']) ) ? 'class="current"':''; ?>><?php _e ( 'Total', 'dbem' ); ?> <span class="count">(<?php echo $total_count; ?>)</span></a></li>
|
64 |
+
<?php if( current_user_can('publish_events') ): ?>
|
65 |
+
<li>| <a href='<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager&scope=<?php echo $scope; ?>&status=1' <?php echo ( isset($_REQUEST['status']) && $_REQUEST['status']=='1' ) ? 'class="current"':''; ?>><?php _e ( 'Approved', 'dbem' ); ?> <span class="count">(<?php echo $approved_count; ?>)</span></a></li>
|
66 |
+
<li>| <a href='<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager&scope=<?php echo $scope; ?>&status=0' <?php echo ( isset($_REQUEST['status']) && $_REQUEST['status']=='0' ) ? 'class="current"':''; ?>><?php _e ( 'Pending', 'dbem' ); ?> <span class="count">(<?php echo $pending_count; ?>)</span></a></li>
|
67 |
+
<?php endif; ?>
|
68 |
+
</ul>
|
69 |
+
<p class="search-box">
|
70 |
+
<label class="screen-reader-text" for="post-search-input"><?php _e('Search Events','dbem'); ?>:</label>
|
71 |
+
<input type="text" id="post-search-input" name="em_search" value="<?php echo (!empty($_REQUEST['em_search'])) ? $_REQUEST['em_search']:''; ?>" />
|
72 |
+
<input type="submit" value="<?php _e('Search Events','dbem'); ?>" class="button" />
|
73 |
+
</p>
|
74 |
+
<div class="tablenav">
|
75 |
+
|
76 |
+
<div class="alignleft actions">
|
77 |
+
<select name="action">
|
78 |
+
<option value="-1" selected="selected"><?php _e ( 'Bulk Actions' ); ?></option>
|
79 |
+
<option value="event_delete"><?php _e ( 'Delete selected','dbem' ); ?></option>
|
80 |
+
</select>
|
81 |
+
<input type="submit" value="<?php _e ( 'Apply' ); ?>" name="doaction2" id="doaction2" class="button-secondary action" />
|
82 |
+
<select name="scope">
|
83 |
+
<?php
|
84 |
+
foreach ( $scope_names as $key => $value ) {
|
85 |
+
$selected = "";
|
86 |
+
if ($key == $scope)
|
87 |
+
$selected = "selected='selected'";
|
88 |
+
echo "<option value='$key' $selected>$value</option> ";
|
89 |
+
}
|
90 |
+
?>
|
91 |
+
</select>
|
92 |
+
<input id="post-query-submit" class="button-secondary" type="submit" value="<?php _e ( 'Filter' )?>" />
|
93 |
+
</div>
|
94 |
+
<!--
|
95 |
+
<div class="view-switch">
|
96 |
+
<a href="/wp-admin/edit.php?mode=list"><img class="current" id="view-switch-list" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="List View" alt="List View" name="view-switch-list" /></a> <a href="/wp-admin/edit.php?mode=excerpt"><img id="view-switch-excerpt" src="http://wordpress.lan/wp-includes/images/blank.gif" width="20" height="20" title="Excerpt View" alt="Excerpt View" name="view-switch-excerpt" /></a>
|
97 |
+
</div>
|
98 |
+
-->
|
99 |
+
<?php
|
100 |
+
if ( $events_count >= $limit ) {
|
101 |
+
$events_nav = em_admin_paginate( $events_count, $limit, $page);
|
102 |
+
echo $events_nav;
|
103 |
+
}
|
104 |
+
?>
|
105 |
+
<br class="clear" />
|
106 |
+
</div>
|
107 |
+
|
108 |
+
<?php
|
109 |
+
if (empty ( $events )) {
|
110 |
+
// TODO localize
|
111 |
+
_e ( 'no events','dbem' );
|
112 |
+
} else {
|
113 |
+
?>
|
114 |
+
|
115 |
+
<table class="widefat events-table">
|
116 |
+
<thead>
|
117 |
+
<tr>
|
118 |
+
<th class='manage-column column-cb check-column' scope='col'>
|
119 |
+
<input class='select-all' type="checkbox" value='1' />
|
120 |
+
</th>
|
121 |
+
<th><?php _e ( 'Name', 'dbem' ); ?></th>
|
122 |
+
<th> </th>
|
123 |
+
<th><?php _e ( 'Location', 'dbem' ); ?></th>
|
124 |
+
<th colspan="2"><?php _e ( 'Date and time', 'dbem' ); ?></th>
|
125 |
+
</tr>
|
126 |
+
</thead>
|
127 |
+
<tbody>
|
128 |
+
<?php
|
129 |
+
$rowno = 0;
|
130 |
+
$event_count = 0;
|
131 |
+
foreach ( $events as $event ) {
|
132 |
+
/* @var $event EM_Event */
|
133 |
+
if( ($rowno < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ) {
|
134 |
+
$rowno++;
|
135 |
+
$class = ($rowno % 2) ? 'alternate' : '';
|
136 |
+
// FIXME set to american
|
137 |
+
$localised_start_date = date_i18n('D d M Y', $event->start);
|
138 |
+
$localised_end_date = date_i18n('D d M Y', $event->end);
|
139 |
+
$style = "";
|
140 |
+
$today = date ( "Y-m-d" );
|
141 |
+
$location_summary = "<b>" . $event->location->name . "</b><br/>" . $event->location->address . " - " . $event->location->town;
|
142 |
+
|
143 |
+
if ($event->start_date < $today && $event->end_date < $today){
|
144 |
+
$class .= " past";
|
145 |
+
}
|
146 |
+
//Check pending approval events
|
147 |
+
if ( !$event->status ){
|
148 |
+
$class .= " pending";
|
149 |
+
}
|
150 |
+
?>
|
151 |
+
<tr class="event <?php echo trim($class); ?>" <?php echo $style; ?> id="event_<?php echo $event->id ?>">
|
152 |
+
<td>
|
153 |
+
<input type='checkbox' class='row-selector' value='<?php echo $event->id; ?>' name='events[]' />
|
154 |
+
</td>
|
155 |
+
<td>
|
156 |
+
<strong>
|
157 |
+
<a class="row-title" href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-event&event_id=<?php echo $event->id ?>&scope=<?php echo $scope ?>&pno=<?php echo $page ?>"><?php echo ($event->name); ?></a>
|
158 |
+
</strong>
|
159 |
+
<?php
|
160 |
+
if( get_option('dbem_rsvp_enabled') == 1 && $event->rsvp == 1 ){
|
161 |
+
?>
|
162 |
+
<br/>
|
163 |
+
<a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&event_id=<?php echo $event->id ?>"><?php echo __("Bookings",'dbem'); ?></a> –
|
164 |
+
<?php _e("Booked",'dbem'); ?>: <?php echo $event->get_bookings()->get_booked_spaces()."/".$event->get_spaces(); ?>
|
165 |
+
<?php if( get_option('dbem_bookings_approval') == 1 ): ?>
|
166 |
+
| <?php _e("Pending",'dbem') ?>: <?php echo $event->get_bookings()->get_pending_spaces(); ?>
|
167 |
+
<?php endif;
|
168 |
+
}
|
169 |
+
?>
|
170 |
+
<div class="row-actions">
|
171 |
+
<span class="trash"><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager&action=event_delete&event_id=<?php echo $event->id ?>&scope=<?php echo $scope ?>&pno=<?php echo $page ?>" class="em-event-delete"><?php _e('Delete','dbem'); ?></a></span>
|
172 |
+
<?php if( !$event->status && current_user_can('publish_events') ): ?>
|
173 |
+
| <a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager&action=event_approve&event_id=<?php echo $event->id ?>&scope=<?php echo $scope ?>&pno=<?php echo $page ?>" class="em-event-approve" style="color:green"><?php _e('Approve','dbem'); ?></a>
|
174 |
+
<?php endif; ?>
|
175 |
+
</div>
|
176 |
+
</td>
|
177 |
+
<td>
|
178 |
+
<a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-event&action=event_duplicate&event_id=<?php echo $event->id; ?>&scope=<?php echo $scope ?>&pno=<?php echo $page ?>" title="<?php _e ( 'Duplicate this event', 'dbem' ); ?>">
|
179 |
+
<strong>+</strong>
|
180 |
+
</a>
|
181 |
+
</td>
|
182 |
+
<td>
|
183 |
+
<?php echo $location_summary; ?>
|
184 |
+
</td>
|
185 |
+
|
186 |
+
<td>
|
187 |
+
<?php echo $localised_start_date; ?>
|
188 |
+
<?php echo ($localised_end_date != $localised_start_date) ? " - $localised_end_date":'' ?>
|
189 |
+
<br />
|
190 |
+
<?php
|
191 |
+
//TODO Should 00:00 - 00:00 be treated as an all day event?
|
192 |
+
echo substr ( $event->start_time, 0, 5 ) . " - " . substr ( $event->end_time, 0, 5 );
|
193 |
+
?>
|
194 |
+
</td>
|
195 |
+
<td>
|
196 |
+
<?php
|
197 |
+
if ( $event->is_recurrence() ) {
|
198 |
+
$recurrence_delete_confirm = __('WARNING! You will delete ALL recurrences of this event, including booking history associated with any event in this recurrence. To keep booking information, go to the relevant single event and save it to detach it from this recurrence series.','dbem');
|
199 |
+
?>
|
200 |
+
<strong>
|
201 |
+
<?php echo $event->get_recurrence_description(); ?> <br />
|
202 |
+
<a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-event&event_id=<?php echo $event->recurrence_id ?>&scope=<?php echo $scope ?>&pno=<?php echo $page ?>"><?php _e ( 'Reschedule', 'dbem' ); ?></a> |
|
203 |
+
<span class="trash"><a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager&action=event_delete&event_id=<?php echo $event->recurrence_id ?>&scope=<?php echo $scope ?>&pno=<?php echo $page ?>" class="em-event-rec-delete" onclick ="if( !confirm('<?php echo $recurrence_delete_confirm; ?>') ){ return false; }"><?php _e('Delete','dbem'); ?></a></span>
|
204 |
+
</strong>
|
205 |
+
<?php
|
206 |
+
}
|
207 |
+
?>
|
208 |
+
</td>
|
209 |
+
</tr>
|
210 |
+
<?php
|
211 |
+
}
|
212 |
+
$event_count++;
|
213 |
+
}
|
214 |
+
?>
|
215 |
+
</tbody>
|
216 |
+
</table>
|
217 |
+
<?php
|
218 |
+
} // end of table
|
219 |
+
?>
|
220 |
+
<div class='tablenav'>
|
221 |
+
<div class="alignleft actions">
|
222 |
+
<br class='clear' />
|
223 |
+
</div>
|
224 |
+
<?php if ( $events_count >= $limit ) : ?>
|
225 |
+
<div class="tablenav-pages">
|
226 |
+
<?php
|
227 |
+
echo $events_nav;
|
228 |
+
?>
|
229 |
+
</div>
|
230 |
+
<?php endif; ?>
|
231 |
+
<br class='clear' />
|
232 |
+
</div>
|
233 |
+
</form>
|
234 |
+
</div>
|
235 |
+
<?php
|
236 |
+
}
|
237 |
+
|
|
|
|
|
|
|
|
|
238 |
?>
|
admin/em-help.php
CHANGED
@@ -1,52 +1,69 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Display function for the support page. here we can give links to forums and special upgrade instructions e.g. migration features
|
4 |
-
*/
|
5 |
-
function em_admin_help_page(){
|
6 |
-
global $wpdb;
|
7 |
-
?>
|
8 |
-
<div class="wrap">
|
9 |
-
<div id="icon-events" class="icon32"><br /></div>
|
10 |
-
<h2><?php _e('Getting Help for Events Manager','dbem'); ?></h2>
|
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 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Display function for the support page. here we can give links to forums and special upgrade instructions e.g. migration features
|
4 |
+
*/
|
5 |
+
function em_admin_help_page(){
|
6 |
+
global $wpdb;
|
7 |
+
?>
|
8 |
+
<div class="wrap">
|
9 |
+
<div id="icon-events" class="icon32"><br /></div>
|
10 |
+
<h2><?php _e('Getting Help for Events Manager','dbem'); ?></h2>
|
11 |
+
<div class="em-docs">
|
12 |
+
<h2>Where To Get Help</h3>
|
13 |
+
<p>
|
14 |
+
This page is only a small portion of the event documentation which is here for quick reference. If you're just starting out, we recommend you visit the following places for further support:
|
15 |
+
</p>
|
16 |
+
<ol>
|
17 |
+
<li>New users are strongly encouraged to have a look at our <a href="http://wp-events-plugin.com/documentation/getting-started/">getting started page</a>.</li>
|
18 |
+
<li>Browse the other documentation pages and <a href="http://wp-events-plugin.com/tutorials/">tutorials</a>.</li>
|
19 |
+
<li>View the <a href="http://wp-events-plugin.com/documentation/faq/">FAQ</a> for general questions and <a href="http://wp-events-plugin.com/documentation/troubleshooting/">Troubleshooting</a> for common issues. These are regularly updated with recent issues.</li>
|
20 |
+
<li>Rather than trying to contact us directly, we request you use the <a href="http://wordpress.org/tags/events-manager?forum_id=10">support forums</a> as others may be experiencing the same issues as you. For faster support via private member forums and extra features please consider <a href="http://wp-events-plugin.com/events-manager-pro/">upgrading to pro</a>.</li>
|
21 |
+
</ol>
|
22 |
+
<p>
|
23 |
+
If you can't find what you're looking for in the documentation, you may find help on our <a href="http://wp-events-plugin.com/forums/">support forums</a>.
|
24 |
+
</p>
|
25 |
+
<h2><?php _e('Placeholders for customizing event pages','dbem'); ?></h2>
|
26 |
+
<p><?php echo sprintf( __("In the <a href='%s'>settings page</a>, you'll find various textboxes where you can edit how event information looks, such as for event and location lists. Using the placeholders below, you can choose what information should be displayed.",'dbem'), 'admin.php?page=events-manager-options'); ?></p>
|
27 |
+
<a name="event-placeholders"></a>
|
28 |
+
<h3 style="margin-top:20px;"><?php _e('Event Related Placeholders','dbem'); ?></h3>
|
29 |
+
<?php echo em_docs_placeholders( array('type'=>'events') ); ?>
|
30 |
+
<a name="category-placeholders"></a>
|
31 |
+
<h3><?php _e('Category Related Placeholders','dbem'); ?></h3>
|
32 |
+
<?php echo em_docs_placeholders( array('type'=>'categories') ); ?>
|
33 |
+
<a name="location-placeholders"></a>
|
34 |
+
<h3><?php _e('Location Related Placeholders','dbem'); ?></h3>
|
35 |
+
<?php echo em_docs_placeholders( array('type'=>'locations') ); ?>
|
36 |
+
<a name="booking-placeholders"></a>
|
37 |
+
<h3><?php _e('Booking Related Placeholders','dbem'); ?></h3>
|
38 |
+
<?php echo em_docs_placeholders( array('type'=>'bookings') ); ?>
|
39 |
+
</div>
|
40 |
+
<?php
|
41 |
+
|
42 |
+
//Is this a previously imported installation?
|
43 |
+
$old_table_name = $wpdb->prefix.'dbem_events';
|
44 |
+
if( $wpdb->get_var("SHOW TABLES LIKE '$old_table_name'") == $old_table_name ){
|
45 |
+
?>
|
46 |
+
<hr style="margin:30px 10px;" />
|
47 |
+
<div class="updated">
|
48 |
+
<h3>Troubleshooting upgrades from version 2.x to 3.x</h3>
|
49 |
+
<p>We notice that you upgraded from version 2, as we are now using new database tables, and we do not delete the old tables in case something went wrong with this upgrade.</p>
|
50 |
+
<p>If something went wrong with the update to version 3 read on:</p>
|
51 |
+
<h4>Scenario 1: the plugin is working, but for some reason the old events weren't imported</h4>
|
52 |
+
<p>You can safely reimport your old events from the previous tables without any risk of deleting them. However, if you click the link below <b>YOU WILL OVERWRITE ANY NEW EVENTS YOU CREATED IN VERSION 3</b></p>
|
53 |
+
<p><a onclick="return confirm('Are you sure you want to do this? Any new changes made since updating will be overwritten by your old ones, and this cannot be undone');" href="<?php echo wp_nonce_url( get_bloginfo('wpurl').'/wp-admin/admin.php?page=events-manager-help&em_reimport=1', 'em_reimport' ) ?>">Reimport Events from version 2</a></p>
|
54 |
+
<h4>Scenario 2: the plugin is not working, I want to go back to version 2!</h4>
|
55 |
+
<p>You can safely downgrade and will not lose any information.</p>
|
56 |
+
<ol>
|
57 |
+
<li>First of all, <a href='http://downloads.wordpress.org/plugin/events-manager.2.2.2.zip'>dowload a copy of version 2.2</a></li>
|
58 |
+
<li>Deactivate and delete Events Manager in the plugin page</li>
|
59 |
+
<li><a href="<?php bloginfo('wpurl'); ?>/wp-admin/plugin-install.php?tab=upload">Upload the zip file you just downloaded here</a></li>
|
60 |
+
<li>Let the developers know, of any bugs you ran into while upgrading. We'll help you out if there is a simple solution, and will fix reported bugs within days, if not quicker!</li>
|
61 |
+
</ol>
|
62 |
+
</div>
|
63 |
+
<?php
|
64 |
+
}
|
65 |
+
?>
|
66 |
+
</div>
|
67 |
+
<?php
|
68 |
+
}
|
69 |
?>
|
admin/em-locations-search.php
CHANGED
@@ -3,20 +3,24 @@
|
|
3 |
* This page will search for either a specific location via GET "id" variable
|
4 |
* or will search for events by name via the GET "q" variable.
|
5 |
*/
|
|
|
6 |
require_once('../../../../wp-load.php');
|
7 |
global $wpdb;
|
8 |
|
9 |
-
$locations_table =
|
10 |
-
$location_cond = (
|
11 |
|
12 |
$term = (isset($_GET['term'])) ? '%'.$_GET['term'].'%' : '%'.$_GET['q'].'%';
|
13 |
$sql = $wpdb->prepare("
|
14 |
SELECT
|
|
|
15 |
Concat( location_name, ', ', location_address, ', ', location_town) AS `label`,
|
16 |
location_name AS `value`,
|
17 |
location_address AS `address`,
|
18 |
location_town AS `town`,
|
19 |
-
|
|
|
|
|
20 |
FROM $locations_table
|
21 |
WHERE ( `location_name` LIKE %s ) $location_cond LIMIT 10
|
22 |
", $term);
|
3 |
* This page will search for either a specific location via GET "id" variable
|
4 |
* or will search for events by name via the GET "q" variable.
|
5 |
*/
|
6 |
+
//FIXME just plug loc search into ajax catcher
|
7 |
require_once('../../../../wp-load.php');
|
8 |
global $wpdb;
|
9 |
|
10 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
11 |
+
$location_cond = ( !current_user_can('edit_others_locations') && !current_user_can('read_others_locations') ) ? "AND location_owner=".get_current_user_id() : '';
|
12 |
|
13 |
$term = (isset($_GET['term'])) ? '%'.$_GET['term'].'%' : '%'.$_GET['q'].'%';
|
14 |
$sql = $wpdb->prepare("
|
15 |
SELECT
|
16 |
+
location_id AS `id`,
|
17 |
Concat( location_name, ', ', location_address, ', ', location_town) AS `label`,
|
18 |
location_name AS `value`,
|
19 |
location_address AS `address`,
|
20 |
location_town AS `town`,
|
21 |
+
location_state AS `state`,
|
22 |
+
location_postcode AS `postcode`,
|
23 |
+
location_country AS `country`
|
24 |
FROM $locations_table
|
25 |
WHERE ( `location_name` LIKE %s ) $location_cond LIMIT 10
|
26 |
", $term);
|
admin/em-locations.php
CHANGED
@@ -1,268 +1,312 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Looks at the request values, saves/updates and then displays the right menu in the admin
|
4 |
-
* @return null
|
5 |
-
*/
|
6 |
-
function em_admin_locations_page() {
|
7 |
-
//TODO EM_Location is globalized, use it fully here
|
8 |
-
global $EM_Location;
|
9 |
-
//Take actions
|
10 |
-
if( !empty($_REQUEST['action'])
|
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 |
-
</div>
|
183 |
-
</div>
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
<
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
268 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Looks at the request values, saves/updates and then displays the right menu in the admin
|
4 |
+
* @return null
|
5 |
+
*/
|
6 |
+
function em_admin_locations_page() {
|
7 |
+
//TODO EM_Location is globalized, use it fully here
|
8 |
+
global $EM_Location;
|
9 |
+
//Take actions
|
10 |
+
if( (!empty($_REQUEST['action']) && ( ($_REQUEST['action'] == "edit" && !empty($_REQUEST['location_id'])) || $_REQUEST['action'] == "add")) ) {
|
11 |
+
em_admin_location();
|
12 |
+
} elseif( !empty($_REQUEST['action']) && $_REQUEST['action'] == "location_save" ) {
|
13 |
+
em_admin_location();
|
14 |
+
} else {
|
15 |
+
// no action, just a locations list
|
16 |
+
em_admin_locations();
|
17 |
+
}
|
18 |
+
}
|
19 |
+
|
20 |
+
function em_admin_locations($message='', $fill_fields = false) {
|
21 |
+
global $EM_Notices;
|
22 |
+
$limit = ( !empty($_REQUEST['limit']) ) ? $_REQUEST['limit'] : 20;//Default limit
|
23 |
+
$page = ( !empty($_REQUEST['pno']) ) ? $_REQUEST['pno']:1;
|
24 |
+
$offset = ( $page > 1 ) ? ($page-1)*$limit : 0;
|
25 |
+
if( !empty($_REQUEST['owner']) && current_user_can('read_others_locations') ){
|
26 |
+
$locations = EM_Locations::get(array('owner'=>false));
|
27 |
+
$locations_mine_count = EM_Locations::count( array('owner'=>get_current_user_id()) );
|
28 |
+
$locations_all_count = count($locations);
|
29 |
+
}else{
|
30 |
+
$locations = EM_Locations::get( array('owner'=>get_current_user_id(), 'blog'=>false) );
|
31 |
+
$locations_mine_count = count($locations);
|
32 |
+
$locations_all_count = current_user_can('read_others_locations') ? EM_Locations::count(array('blog'=>false)):0;
|
33 |
+
}
|
34 |
+
$locations_count = count($locations);
|
35 |
+
?>
|
36 |
+
<div class='wrap'>
|
37 |
+
<div id='icon-edit' class='icon32'>
|
38 |
+
<br/>
|
39 |
+
</div>
|
40 |
+
<h2>
|
41 |
+
<?php _e('Locations', 'dbem'); ?>
|
42 |
+
<a href="admin.php?page=events-manager-locations&action=add" class="button add-new-h2"><?php _e('Add New', 'dbem') ?></a>
|
43 |
+
</h2>
|
44 |
+
|
45 |
+
<?php echo $EM_Notices; ?>
|
46 |
+
|
47 |
+
<form id='locations-filter' method='post' action=''>
|
48 |
+
<input type='hidden' name='page' value='locations'/>
|
49 |
+
<input type='hidden' name='limit' value='<?php echo $limit ?>' />
|
50 |
+
<input type='hidden' name='p' value='<?php echo $page ?>' />
|
51 |
+
<div class="subsubsub">
|
52 |
+
<a href='admin.php?page=events-manager-locations' <?php echo (empty($_REQUEST['owner'])) ? 'class="current"':''; ?>><?php echo sprintf( __( 'My %s', 'dbem' ), __('Locations','dbem')); ?> <span class="count">(<?php echo $locations_mine_count; ?>)</span></a>
|
53 |
+
<?php if( current_user_can('read_others_locations') ): ?>
|
54 |
+
|
|
55 |
+
<a href='admin.php?page=events-manager-locations&owner=all' <?php echo (!empty($_REQUEST['owner'])) ? 'class="current"':''; ?>><?php echo sprintf( __( 'All %s', 'dbem' ), __('Locations','dbem')); ?> <span class="count">(<?php echo $locations_all_count; ?>)</span></a>
|
56 |
+
<?php endif; ?>
|
57 |
+
</div>
|
58 |
+
<?php if ( $locations_count > 0 ) : ?>
|
59 |
+
<div class='tablenav'>
|
60 |
+
<div class="alignleft actions">
|
61 |
+
<select name="action">
|
62 |
+
<option value="" selected="selected"><?php _e ( 'Bulk Actions' ); ?></option>
|
63 |
+
<option value="location_delete"><?php _e ( 'Delete selected','dbem' ); ?></option>
|
64 |
+
</select>
|
65 |
+
<input type="submit" value="<?php _e ( 'Apply' ); ?>" id="doaction2" class="button-secondary action" />
|
66 |
+
</div>
|
67 |
+
<?php
|
68 |
+
if ( $locations_count >= $limit ) {
|
69 |
+
$locations_nav = em_admin_paginate( $locations_count, $limit, $page );
|
70 |
+
echo $locations_nav;
|
71 |
+
}
|
72 |
+
?>
|
73 |
+
</div>
|
74 |
+
<table class='widefat'>
|
75 |
+
<thead>
|
76 |
+
<tr>
|
77 |
+
<th class='manage-column column-cb check-column' scope='col'><input type='checkbox' class='select-all' value='1'/></th>
|
78 |
+
<th><?php _e('Name', 'dbem') ?></th>
|
79 |
+
<th><?php _e('Address', 'dbem') ?></th>
|
80 |
+
<th><?php _e('Town', 'dbem') ?></th>
|
81 |
+
<th><?php _e('State', 'dbem') ?></th>
|
82 |
+
<th><?php _e('Country', 'dbem') ?></th>
|
83 |
+
</tr>
|
84 |
+
</thead>
|
85 |
+
<tfoot>
|
86 |
+
<tr>
|
87 |
+
<th class='manage-column column-cb check-column' scope='col'><input type='checkbox' class='select-all' value='1'/></th>
|
88 |
+
<th><?php _e('Name', 'dbem') ?></th>
|
89 |
+
<th><?php _e('Address', 'dbem') ?></th>
|
90 |
+
<th><?php _e('Town', 'dbem') ?></th>
|
91 |
+
<th><?php _e('State', 'dbem') ?></th>
|
92 |
+
<th><?php _e('Country', 'dbem') ?></th>
|
93 |
+
</tr>
|
94 |
+
</tfoot>
|
95 |
+
<tbody>
|
96 |
+
<?php $i = 1; ?>
|
97 |
+
<?php foreach ($locations as $EM_Location) : ?>
|
98 |
+
<?php if( $i >= $offset && $i <= $offset+$limit ): ?>
|
99 |
+
<tr>
|
100 |
+
<td><input type='checkbox' class ='row-selector' value='<?php echo $EM_Location->id ?>' name='locations[]'/></td>
|
101 |
+
<td><a href='admin.php?page=events-manager-locations&action=edit&location_id=<?php echo $EM_Location->id ?>'><?php echo $EM_Location->name ?></a></td>
|
102 |
+
<td><?php echo $EM_Location->address ?></td>
|
103 |
+
<td><?php echo $EM_Location->town ?></td>
|
104 |
+
<td><?php echo $EM_Location->state ?></td>
|
105 |
+
<td><?php echo $EM_Location->get_country() ?></td>
|
106 |
+
</tr>
|
107 |
+
<?php endif; ?>
|
108 |
+
<?php $i++; ?>
|
109 |
+
<?php endforeach; ?>
|
110 |
+
</tbody>
|
111 |
+
</table>
|
112 |
+
<?php else: ?>
|
113 |
+
<p><?php _e('No venues have been inserted yet!', 'dbem') ?></p>
|
114 |
+
<?php endif; ?>
|
115 |
+
</form>
|
116 |
+
</div>
|
117 |
+
<?php
|
118 |
+
}
|
119 |
+
|
120 |
+
function em_admin_location($message = "") {
|
121 |
+
global $EM_Location, $EM_Notices;
|
122 |
+
//check that user can access this page
|
123 |
+
if( is_object($EM_Location) && !$EM_Location->can_manage('edit_locations','edit_others_locations') ){
|
124 |
+
?>
|
125 |
+
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this location.','dbem'); ?></p></div>
|
126 |
+
<?php
|
127 |
+
return false;
|
128 |
+
}
|
129 |
+
if( empty($EM_Location) || !is_object($EM_Location) ){
|
130 |
+
$title = __('Add location', 'dbem');
|
131 |
+
$EM_Location = new EM_Location();
|
132 |
+
}else{
|
133 |
+
$title = __('Edit location', 'dbem');
|
134 |
+
}
|
135 |
+
$required = "<i>(".__('required','dbem').")</i>";
|
136 |
+
echo $EM_Notices;
|
137 |
+
?>
|
138 |
+
<form enctype='multipart/form-data' name='editcat' id='location-form' method='post' action='admin.php?page=events-manager-locations' class='validate'>
|
139 |
+
<input type='hidden' name='action' value='location_save' />
|
140 |
+
<input type='hidden' name='_wpnonce' value='<?php echo wp_create_nonce('location_save'); ?>' />
|
141 |
+
<input type='hidden' name='location_id' value='<?php echo $EM_Location->id ?>'/>
|
142 |
+
<div class='wrap'>
|
143 |
+
<div id='icon-edit' class='icon32'>
|
144 |
+
<br/>
|
145 |
+
</div>
|
146 |
+
<h2><?php echo $title ?></h2>
|
147 |
+
|
148 |
+
<?php global $EM_Notices; echo $EM_Notices; ?>
|
149 |
+
<div id='ajax-response'></div>
|
150 |
+
|
151 |
+
<div id="poststuff" class="metabox-holder">
|
152 |
+
<div id="post-body">
|
153 |
+
<div id="post-body-content">
|
154 |
+
<div id="location_name" class="stuffbox">
|
155 |
+
<h3>
|
156 |
+
<?php _e ( 'Location Name', 'dbem' ); ?>
|
157 |
+
</h3>
|
158 |
+
<div class="inside">
|
159 |
+
<input name='location_name' id='location-name' type='text' value='<?php echo htmlspecialchars($EM_Location->name, ENT_QUOTES); ?>' size='40' />
|
160 |
+
<br />
|
161 |
+
<?php _e('The name of the location', 'dbem') ?>
|
162 |
+
<?php $slug_link = __('View Slug','dbem'); ?>
|
163 |
+
<a href="#" id="location-slug-trigger"><?php echo $slug_link; ?></a>
|
164 |
+
<script type="text/javascript">
|
165 |
+
jQuery(document).ready(function($){
|
166 |
+
$('#location-slug-trigger').click(function(){
|
167 |
+
if( $(this).text() == '<?php echo $slug_link; ?>'){
|
168 |
+
$('.location-slug').show();
|
169 |
+
$(this).text('<?php _e('Hide Slug','dbem'); ?>');
|
170 |
+
}else{
|
171 |
+
$('.location-slug').hide();
|
172 |
+
$(this).text('<?php echo $slug_link; ?>');
|
173 |
+
}
|
174 |
+
});
|
175 |
+
});
|
176 |
+
</script>
|
177 |
+
<p class='location-slug' style="display:none">
|
178 |
+
<?php echo sprintf(__('%s Slug','dbem'),__('Location','dbem')); ?>: <input type="text" name="location_slug" id="location-slug" value="<?php echo $EM_Location->slug; ?>" />
|
179 |
+
<br />
|
180 |
+
<?php _e ( 'The event slug. If the event slug already exists, a random number will be appended to the end.', 'dbem' )?>
|
181 |
+
</p>
|
182 |
+
</div>
|
183 |
+
</div>
|
184 |
+
<?php if( current_user_can('edit_others_locations') ): ?>
|
185 |
+
<div id="location_owner" class="stuffbox">
|
186 |
+
<h3>
|
187 |
+
<?php _e ( 'Location Owner', 'dbem' ); ?>
|
188 |
+
</h3>
|
189 |
+
<div class="inside">
|
190 |
+
<?php
|
191 |
+
$location_owner = (!empty($EM_Location->id)) ? $EM_Location->owner:get_current_user_id();
|
192 |
+
$user_args = array ('name' => 'location_owner', 'show_option_none' => __ ( "Select...", 'dbem' ), 'selected' => $location_owner );
|
193 |
+
if( is_super_admin() || is_main_site() ){ $user_args['blog_id'] = false; }
|
194 |
+
wp_dropdown_users ( $user_args );
|
195 |
+
?>
|
196 |
+
</div>
|
197 |
+
</div>
|
198 |
+
<?php endif; ?>
|
199 |
+
<div id="location_coordinates" class="stuffbox" style='display: none;'>
|
200 |
+
<h3>
|
201 |
+
<?php _e ( 'Coordinates', 'dbem' ); ?>
|
202 |
+
</h3>
|
203 |
+
<div class="inside">
|
204 |
+
<input id='location-latitude' name='location_latitude' type='text' value='<?php echo $EM_Location->latitude; ?>' size='15' />
|
205 |
+
-
|
206 |
+
<input id='location-longitude' name='location_longitude' type='text' value='<?php echo $EM_Location->longitude; ?>' size='15' />
|
207 |
+
</div>
|
208 |
+
</div>
|
209 |
+
<div id="location_info" class="stuffbox">
|
210 |
+
<h3>
|
211 |
+
<?php _e ( 'Location', 'dbem' ); ?>
|
212 |
+
</h3>
|
213 |
+
<div class="inside">
|
214 |
+
<p><?php _e("If you're using the Google Maps, the more detail you provide, the more accurate Google can be at finding your location. If your address isn't being found, please <a='http://maps.google.com'>try it on maps.google.com</a> by adding all the fields below seperated by commas.",'dbem')?></p>
|
215 |
+
<div id="em-location-data">
|
216 |
+
<table>
|
217 |
+
<tr>
|
218 |
+
<th><?php _e ( 'Address:', 'dbem' )?> </th>
|
219 |
+
<td>
|
220 |
+
<input id="location-address" type="text" name="location_address" value="<?php echo htmlspecialchars($EM_Location->address, ENT_QUOTES); ; ?>" /> <?php echo $required; ?>
|
221 |
+
</td>
|
222 |
+
</tr>
|
223 |
+
<tr>
|
224 |
+
<th><?php _e ( 'City/Town:', 'dbem' )?> </th>
|
225 |
+
<td>
|
226 |
+
<input id="location-town" type="text" name="location_town" value="<?php echo htmlspecialchars($EM_Location->town, ENT_QUOTES); ?>" /> <?php echo $required; ?>
|
227 |
+
</td>
|
228 |
+
</tr>
|
229 |
+
<tr>
|
230 |
+
<th><?php _e ( 'State/County:', 'dbem' )?> </th>
|
231 |
+
<td>
|
232 |
+
<input id="location-state" type="text" name="location_state" value="<?php echo htmlspecialchars($EM_Location->state, ENT_QUOTES); ?>" />
|
233 |
+
</td>
|
234 |
+
</tr>
|
235 |
+
<tr>
|
236 |
+
<th><?php _e ( 'Postcode:', 'dbem' )?> </th>
|
237 |
+
<td>
|
238 |
+
<input id="location-postcode" type="text" name="location_postcode" value="<?php echo htmlspecialchars($EM_Location->postcode, ENT_QUOTES); ?>" />
|
239 |
+
</td>
|
240 |
+
</tr>
|
241 |
+
<tr>
|
242 |
+
<th><?php _e ( 'Region:', 'dbem' )?> </th>
|
243 |
+
<td>
|
244 |
+
<input id="location-region" type="text" name="location_region" value="<?php echo htmlspecialchars($EM_Location->region, ENT_QUOTES); ?>" />
|
245 |
+
<input id="location-region-wpnonce" type="hidden" value="<?php echo wp_create_nonce('search_regions'); ?>" />
|
246 |
+
</td>
|
247 |
+
</tr>
|
248 |
+
<tr>
|
249 |
+
<th><?php _e ( 'Country:', 'dbem' )?> </th>
|
250 |
+
<td>
|
251 |
+
<select id="location-country" name="location_country">
|
252 |
+
<?php foreach(em_get_countries(__('none selected','dbem')) as $country_key => $country_name): ?>
|
253 |
+
<option value="<?php echo $country_key; ?>" <?php echo ( $EM_Location->country === $country_key || ($EM_Location->country == '' && $EM_Location->id == '' && get_option('dbem_location_default_country')==$country_key) ) ? 'selected="selected"':''; ?>><?php echo $country_name; ?></option>
|
254 |
+
<?php endforeach; ?>
|
255 |
+
</select> <?php echo $required; ?>
|
256 |
+
</td>
|
257 |
+
</tr>
|
258 |
+
</table>
|
259 |
+
<?php if ( get_option ( 'dbem_gmap_is_active' ) ) : ?>
|
260 |
+
<div style="width: 400px; height: 300px; float:left;">
|
261 |
+
<div id='em-map-404' style='width: 400px; height:300px; vertical-align:middle; text-align: center;'>
|
262 |
+
<p><em><?php _e ( 'Location not found', 'dbem' ); ?></em></p>
|
263 |
+
</div>
|
264 |
+
<div id='em-map' style='width: 400px; height: 300px; display: none;'></div>
|
265 |
+
</div>
|
266 |
+
<?php endif; ?>
|
267 |
+
<br style="clear:both; " />
|
268 |
+
</div>
|
269 |
+
</div>
|
270 |
+
</div>
|
271 |
+
|
272 |
+
<div id="location_description" class="postbox">
|
273 |
+
<h3>
|
274 |
+
<?php _e ( 'Details', 'dbem' ); ?>
|
275 |
+
</h3>
|
276 |
+
<div class="inside">
|
277 |
+
<div id="<?php echo user_can_richedit() ? 'postdivrich' : 'postdiv'; ?>" class="postarea">
|
278 |
+
<?php the_editor($EM_Location->description ); ?>
|
279 |
+
</div>
|
280 |
+
<br />
|
281 |
+
<?php _e ( 'Details about the location', 'dbem' )?>
|
282 |
+
</div>
|
283 |
+
</div>
|
284 |
+
|
285 |
+
<div id="location_description" class="stuffbox">
|
286 |
+
<h3>
|
287 |
+
<?php _e ( 'Location image', 'dbem' ); ?>
|
288 |
+
</h3>
|
289 |
+
<div class="inside" style="padding:10px;">
|
290 |
+
<?php if ($EM_Location->get_image_url() != '') : ?>
|
291 |
+
<img src='<?php echo $EM_Location->image_url; ?>' alt='<?php echo $EM_Location->name ?>'/>
|
292 |
+
<?php else : ?>
|
293 |
+
<?php _e('No image uploaded for this location yet', 'dbem') ?>
|
294 |
+
<?php endif; ?>
|
295 |
+
<br /><br />
|
296 |
+
<label for='location_image'><?php _e('Upload/change picture', 'dbem') ?></label> <input id='location-image' name='location_image' id='location_image' type='file' size='40' />
|
297 |
+
<br />
|
298 |
+
<label for='location_image_delete'><?php _e('Delete Image?', 'dbem') ?></label> <input id='location-image-delete' name='location_image_delete' id='location_image_delete' type='checkbox' value='1' />
|
299 |
+
</div>
|
300 |
+
</div>
|
301 |
+
<?php do_action('em_admin_location_form_footer'); ?>
|
302 |
+
|
303 |
+
</div>
|
304 |
+
</div>
|
305 |
+
</div>
|
306 |
+
<p class='submit'><input type='submit' class='button-primary' name='submit' value='<?php _e('Update location', 'dbem') ?>' /></p>
|
307 |
+
</div>
|
308 |
+
</form>
|
309 |
+
<?php
|
310 |
+
}
|
311 |
+
|
312 |
?>
|
admin/em-options.php
CHANGED
@@ -1,444 +1,697 @@
|
|
1 |
-
<?php
|
2 |
-
|
3 |
-
//Function composing the options subpanel
|
4 |
-
function em_options_save(){
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
em_options_input_text ( __( '
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
<?php
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
em_options_input_text ( __( '
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
em_options_input_text ( __( '
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
em_options_input_text ( __( '
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
<?php
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
);
|
406 |
-
|
407 |
-
?>
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
?>
|
417 |
-
<tr
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
</
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
444 |
?>
|
1 |
+
<?php
|
2 |
+
|
3 |
+
//Function composing the options subpanel
|
4 |
+
function em_options_save(){
|
5 |
+
/*
|
6 |
+
* Here's the idea, we have an array of all options that need super admin approval if in multi-site mode
|
7 |
+
* since options are only updated here, its one place fit all
|
8 |
+
*/
|
9 |
+
if( current_user_can('activate_plugins') && !empty($_POST['em-submitted']) && check_admin_referer('events-manager-options','_wpnonce') ){
|
10 |
+
//Build the array of options here
|
11 |
+
$post = $_POST;
|
12 |
+
foreach ($_POST as $postKey => $postValue){
|
13 |
+
if( substr($postKey, 0, 5) == 'dbem_' ){
|
14 |
+
//TODO some more validation/reporting
|
15 |
+
$numeric_options = array('dbem_locations_default_limit','dbem_events_default_limit');
|
16 |
+
if( in_array($postKey,$numeric_options) && !is_numeric($postValue) ){
|
17 |
+
//Do nothing, keep old setting.
|
18 |
+
}else{
|
19 |
+
//TODO slashes being added?
|
20 |
+
//$postValue = EM_Object::sanitize($postValue)
|
21 |
+
update_option($postKey, stripslashes($postValue));
|
22 |
+
}
|
23 |
+
}
|
24 |
+
}
|
25 |
+
|
26 |
+
//set capabilities
|
27 |
+
if( !empty($_POST['em_capabilities']) && is_array($_POST['em_capabilities']) && (!is_multisite() || is_multisite() && is_super_admin()) ){
|
28 |
+
global $em_capabilities_array, $wp_roles;
|
29 |
+
foreach( $wp_roles->role_objects as $role_name => $role ){
|
30 |
+
foreach( array_keys($em_capabilities_array) as $capability){
|
31 |
+
if( !empty($_POST['em_capabilities'][$role_name][$capability]) ){
|
32 |
+
$role->add_cap($capability);
|
33 |
+
}else{
|
34 |
+
$role->remove_cap($capability);
|
35 |
+
}
|
36 |
+
}
|
37 |
+
}
|
38 |
+
}
|
39 |
+
do_action('em_options_save');
|
40 |
+
function em_options_saved_notice(){
|
41 |
+
?>
|
42 |
+
<div class="updated"><p><strong><?php _e('Changes saved.', 'dbem'); ?></strong></p></div>
|
43 |
+
<?php
|
44 |
+
}
|
45 |
+
add_action ( 'admin_notices', 'em_options_saved_notice' );
|
46 |
+
if( get_option('dbem_debug') ){
|
47 |
+
include_once( WP_PLUGIN_DIR.'/events-manager/em-debug.php');
|
48 |
+
}
|
49 |
+
}
|
50 |
+
}
|
51 |
+
add_action('admin_head', 'em_options_save');
|
52 |
+
|
53 |
+
|
54 |
+
|
55 |
+
function em_admin_options_page() {
|
56 |
+
global $wpdb;
|
57 |
+
//TODO place all options into an array
|
58 |
+
$events_placeholders = '<a href="admin.php?page=events-manager-help#event-placeholders">'. __('Event Related Placeholders','dbem') .'</a>';
|
59 |
+
$locations_placeholders = '<a href="admin.php?page=events-manager-help#location-placeholders">'. __('Location Related Placeholders','dbem') .'</a>';
|
60 |
+
$bookings_placeholders = '<a href="admin.php?page=events-manager-help#booking-placeholders">'. __('Booking Related Placeholders','dbem') .'</a>';
|
61 |
+
$categories_placeholders = '<a href="admin.php?page=events-manager-help#category-placeholders">'. __('Category Related Placeholders','dbem') .'</a>';
|
62 |
+
$events_placeholder_tip = " ". sprintf(__('This accepts %s and %s placeholders.','dbem'),$events_placeholders, $locations_placeholders);
|
63 |
+
$locations_placeholder_tip = " ". sprintf(__('This accepts %s placeholders.','dbem'), $locations_placeholders);
|
64 |
+
$categories_placeholder_tip = " ". sprintf(__('This accepts %s placeholders.','dbem'), $categories_placeholders);
|
65 |
+
$bookings_placeholder_tip = " ". sprintf(__('This accepts %s, %s and %s placeholders.','dbem'), $bookings_placeholders, $events_placeholders, $locations_placeholders);
|
66 |
+
|
67 |
+
$save_button = '<tr><th> </th><td><p class="submit" style="margin:0px; padding:0px; text-align:right;"><input type="submit" id="dbem_options_submit" name="Submit" value="'. __( 'Save Changes', 'dbem') .' ('. __('All','dbem') .')" /></p></ts></td></tr>';
|
68 |
+
//Do some multisite checking here for reuse
|
69 |
+
$multisite_view = (is_multisite() && is_super_admin()) ? ' - ('.__('Only Network Admins see this','dbem').')':'';
|
70 |
+
?>
|
71 |
+
<script type="text/javascript" charset="utf-8">
|
72 |
+
jQuery(document).ready(function($){
|
73 |
+
var close_text = '<?php _e('Collapse All','dbem'); ?>';
|
74 |
+
var open_text = '<?php _e('Expand All','dbem'); ?>';
|
75 |
+
var open_close = $('<a href="#" style="display:block; float:right; clear:right; margin:10px;">'+close_text+'</a>');
|
76 |
+
$('#icon-options-general').after(open_close);
|
77 |
+
open_close.click( function(e){
|
78 |
+
e.preventDefault();
|
79 |
+
if($(this).text() == close_text){
|
80 |
+
$(".postbox").addClass('closed');
|
81 |
+
$(this).text(open_text);
|
82 |
+
}else{
|
83 |
+
$(".postbox").removeClass('closed');
|
84 |
+
$(this).text(close_text);
|
85 |
+
}
|
86 |
+
});
|
87 |
+
//For rewrite titles
|
88 |
+
$('input:radio[name=dbem_disable_title_rewrites]').live('change',function(){
|
89 |
+
checked_check = $('input:radio[name=dbem_disable_title_rewrites]:checked');
|
90 |
+
if( checked_check.val() == 1 ){
|
91 |
+
$('#dbem_title_html_row').show();
|
92 |
+
}else{
|
93 |
+
$('#dbem_title_html_row').hide();
|
94 |
+
}
|
95 |
+
});
|
96 |
+
$('input:radio[name=dbem_disable_title_rewrites]').trigger('change');
|
97 |
+
});
|
98 |
+
</script>
|
99 |
+
<div class="wrap">
|
100 |
+
<div id='icon-options-general' class='icon32'><br />
|
101 |
+
</div>
|
102 |
+
<h2><?php _e ( 'Event Manager Options', 'dbem' ); ?></h2>
|
103 |
+
<?php
|
104 |
+
/*
|
105 |
+
* START MIGRATION BIT
|
106 |
+
*/
|
107 |
+
if( !empty($_REQUEST['action']) && $_REQUEST['action'] == 'bookings_migrate' ){
|
108 |
+
require_once(dirname(__FILE__).'/../em-install.php');
|
109 |
+
em_migrate_bookings();
|
110 |
+
}elseif( !empty($_REQUEST['action']) && $_REQUEST['action'] == 'bookings_migrate_delete'){
|
111 |
+
require_once( dirname(__FILE__).'/../em-install.php');
|
112 |
+
em_migrate_bookings_delete();
|
113 |
+
}
|
114 |
+
?>
|
115 |
+
<?php if( $wpdb->get_var("SHOW TABLES LIKE '".EM_PEOPLE_TABLE."'") == EM_PEOPLE_TABLE ): ?>
|
116 |
+
<?php if( $wpdb->get_var('SELECT COUNT(*) FROM '.EM_TICKETS_BOOKINGS_TABLE) > 0 ): ?>
|
117 |
+
<div class='updated'>
|
118 |
+
<p>
|
119 |
+
It looks like you've already tried reimporting some bookings into the new version (or new bookings have been made since you installed).
|
120 |
+
If everything looks correct, you can
|
121 |
+
<a href="admin.php?page=events-manager-options&_wpnonce=<?php echo wp_create_nonce('bookings_migrate_delete'); ?>&action=bookings_migrate_delete">delete the unused tables</a>,
|
122 |
+
or you can also safely try
|
123 |
+
<a href="admin.php?page=events-manager-options&_wpnonce=<?php echo wp_create_nonce('bookings_migrate'); ?>&action=bookings_migrate">re-importing again</a>.
|
124 |
+
</p>
|
125 |
+
</div>
|
126 |
+
<?php else: ?>
|
127 |
+
<div class='updated'>
|
128 |
+
<p>It looks like you've upgraded from Events Manager version 3.0, meaning your old bookings won't work until you re-import them.
|
129 |
+
Events Manager 3.0 kept booking user info in a simple database table, whereas now people that make bookings get a subscriber account so
|
130 |
+
they can access private booking information. You have to choice to
|
131 |
+
<a href="admin.php?page=events-manager-options&_wpnonce=<?php echo wp_create_nonce('bookings_migrate'); ?>&action=bookings_migrate">import all your old bookings</a>
|
132 |
+
and create wordpress accounts for bookers, or you can also start afresh and
|
133 |
+
<a href="admin.php?page=events-manager-options&_wpnonce=<?php echo wp_create_nonce('bookings_migrate_delete'); ?>&action=bookings_migrate_delete">delete the old bookings</a>.
|
134 |
+
</p>
|
135 |
+
</div>
|
136 |
+
<?php endif; ?>
|
137 |
+
<?php endif; ?>
|
138 |
+
<?php
|
139 |
+
/*
|
140 |
+
* END MIGRATION BIT
|
141 |
+
*/
|
142 |
+
?>
|
143 |
+
<form id="dbem_options_form" method="post" action="">
|
144 |
+
<div class="metabox-holder">
|
145 |
+
<!-- // TODO Move style in css -->
|
146 |
+
<div class='postbox-container' style='width: 99.5%'>
|
147 |
+
<div id="">
|
148 |
+
|
149 |
+
<?php if ( is_multisite() && is_super_admin() ) : ?>
|
150 |
+
<div class="postbox " >
|
151 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Multi Site Options', 'dbem' ); ?> <?php echo $multisite_view; ?></span></h3>
|
152 |
+
<div class="inside">
|
153 |
+
<table class="form-table">
|
154 |
+
<?php
|
155 |
+
em_options_radio_binary ( __( 'Enable global tables mode?', 'dbem'), 'dbem_ms_global_table', __( 'Setting this to yes will make all events save in the main site event tables (EM must also be activated). This allows you to share events across different blogs, such as showing events in your network whilst allowing users to display and manage their events within their own blog. Bear in mind that activating this will mean old events created on the sub-blogs will not be accessible anymore, and if you switch back they will be but new events created during global events mode will only remain on the main site.','dbem' ) );
|
156 |
+
em_options_radio_binary ( __( 'Display global events on main blog?', 'dbem'), 'dbem_ms_global_events', __( 'Displays events from all sites on the network by default. You can still restrict events by blog using shortcodes and template tags coupled with the <code>blog</code> attribute. Requires global tables to be turned on.','dbem' ) );
|
157 |
+
em_options_radio_binary ( __( 'Link sub-site events directly to sub-site?', 'dbem'), 'dbem_ms_global_events_links', __( 'When displaying global events on the main site you have the option of users viewing the event details on the main site or being directed to the sub-site.','dbem' ) );
|
158 |
+
echo $save_button;
|
159 |
+
?>
|
160 |
+
</table>
|
161 |
+
|
162 |
+
</div> <!-- . inside -->
|
163 |
+
</div> <!-- .postbox -->
|
164 |
+
<?php endif; ?>
|
165 |
+
|
166 |
+
<div class="postbox " >
|
167 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'General options', 'dbem' ); ?> </span></h3>
|
168 |
+
<div class="inside">
|
169 |
+
<table class="form-table">
|
170 |
+
<?php
|
171 |
+
em_options_radio_binary ( __( 'Use dropdown for locations?', 'dbem' ), 'dbem_use_select_for_locations', __( 'Select yes to select location from a drow-down menu; location selection will be faster, but you will lose the ability to insert locations with events','dbem' ) );
|
172 |
+
em_options_radio_binary ( __( 'Use recurrence?', 'dbem' ), 'dbem_recurrence_enabled', __( 'Select yes to enable the recurrence features feature','dbem' ) );
|
173 |
+
em_options_radio_binary ( __( 'Enable bookings?', 'dbem' ), 'dbem_rsvp_enabled', __( 'Select yes to allow bookings and tickets for events.','dbem' ) );
|
174 |
+
em_options_radio_binary ( __( 'Use categories?', 'dbem' ), 'dbem_categories_enabled', __( 'Select yes to enable the category features','dbem' ) );
|
175 |
+
em_options_radio_binary ( __( 'Use event attributes?', 'dbem' ), 'dbem_attributes_enabled', __( 'Select yes to enable the attributes feature','dbem' ) );
|
176 |
+
|
177 |
+
/*default category*/
|
178 |
+
$category_options = array();
|
179 |
+
$category_options[0] = __('no default category','dbem');
|
180 |
+
$EM_Categories = EM_Categories::get();
|
181 |
+
foreach($EM_Categories as $EM_Category){
|
182 |
+
$category_options[$EM_Category->id] = $EM_Category->name;
|
183 |
+
}
|
184 |
+
em_options_select ( __( 'Default Category', 'dbem' ), 'dbem_default_category', $category_options, __( 'This option allows you to select the default category when adding an event.','dbem' )." ".__('(not applicable with event ownership on presently, coming soon!)','dbem') );
|
185 |
+
|
186 |
+
/*default location*/
|
187 |
+
$location_options = array();
|
188 |
+
$location_options[0] = __('no default location','dbem');
|
189 |
+
$EM_Locations = EM_Locations::get();
|
190 |
+
foreach($EM_Locations as $EM_Location){
|
191 |
+
$location_options[$EM_Location->id] = $EM_Location->name;
|
192 |
+
}
|
193 |
+
em_options_select ( __( 'Default Location', 'dbem' ), 'dbem_default_location', $location_options, __( 'This option allows you to select the default location when adding an event.','dbem' )." ".__('(not applicable with event ownership on presently, coming soon!)','dbem') );
|
194 |
+
|
195 |
+
/*default location country*/
|
196 |
+
em_options_select ( __( 'Default Location Country', 'dbem' ), 'dbem_location_default_country', em_get_countries(__('no default country', 'dbem')), __('If you select a default country, that will be pre-selected when creating a new location.','dbem') );
|
197 |
+
|
198 |
+
em_options_textarea ( __( 'Event Attributes', 'dbem' ), 'dbem_placeholders_custom', sprintf(__( "You can also add event attributes here, one per line in this format <code>#_ATT{key}</code>. They will not appear on event pages unless you insert them into another template below, but you may want to store extra information about an event for other uses. <a href='%s'>More information on placeholders.</a>", 'dbem' ), 'admin.php?page=events-manager-help') );
|
199 |
+
|
200 |
+
em_options_radio_binary ( __('Show some love?','dbem'), 'dbem_credits', __( 'Hundreds of free hours have gone into making this free plugin, show your support and add a small link to the plugin website at the bottom of your event pages.','dbem' ) );
|
201 |
+
echo $save_button;
|
202 |
+
?>
|
203 |
+
</table>
|
204 |
+
|
205 |
+
</div> <!-- . inside -->
|
206 |
+
</div> <!-- .postbox -->
|
207 |
+
|
208 |
+
<div class="postbox " >
|
209 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Events page', 'dbem' ); ?> </span></h3>
|
210 |
+
<div class="inside">
|
211 |
+
<table class="form-table">
|
212 |
+
<?php
|
213 |
+
//Wordpress Pages
|
214 |
+
global $em_disable_filter; //Using a flag here instead
|
215 |
+
$em_disable_filter = true;
|
216 |
+
$get_pages = get_pages();
|
217 |
+
$events_page_options = array();
|
218 |
+
$events_page_options[0] = __('[No Events Page]', 'dbem');
|
219 |
+
//TODO Add the hierarchy style ddm, like when choosing page parents
|
220 |
+
foreach($get_pages as $page){
|
221 |
+
$events_page_options[$page->ID] = $page->post_title;
|
222 |
+
}
|
223 |
+
em_options_select ( __( 'Events page', 'dbem' ), 'dbem_events_page', $events_page_options, __( 'This option allows you to select which page to use as an events page','dbem' ) );
|
224 |
+
$em_disable_filter = false;
|
225 |
+
//Rest
|
226 |
+
em_options_radio_binary ( __( 'Show events page in lists?', 'dbem' ), 'dbem_list_events_page', __( 'Check this option if you want the events page to appear together with other pages in pages lists.', 'dbem' ) );
|
227 |
+
em_options_radio_binary ( __( 'Display calendar in events page?', 'dbem' ), 'dbem_display_calendar_in_events_page', __( 'This options allows to display the calendar in the events page, instead of the default list. It is recommended not to display both the calendar widget and a calendar page.','dbem' ).' '.__('If you would like to show events that span over more than one day, see the Calendar section on this page.','dbem') );
|
228 |
+
em_options_radio_binary ( __( 'Disable title rewriting?', 'dbem' ), 'dbem_disable_title_rewrites', __( "Some wordpress themes don't follow best practices when generating navigation menus, and so the automatic title rewriting feature may cause problems, if your menus aren't working correctly on the event pages, try setting this to 'Yes', and provide an appropriate HTML title format below.",'dbem' ) );
|
229 |
+
em_options_input_text ( __( 'Event Manager titles', 'dbem' ), 'dbem_title_html', __( "This only setting only matters if you selected 'Yes' to above. You will notice the events page titles aren't being rewritten, and you have a new title underneath the default page name. This is where you control the HTML of this title. Make sure you keep the #_PAGETITLE placeholder here, as that's what is rewritten by events manager. To control what's rewritten in this title, see settings further down for page titles.", 'dbem' ) );
|
230 |
+
em_options_input_text ( __( 'Event List Limits', 'dbem' ), 'dbem_events_default_limit', __( "This will control how many events are shown on one list by default.", 'dbem' ) );
|
231 |
+
em_options_radio_binary ( __( 'Are current events past events?', 'dbem' ), 'dbem_events_current_are_past', __( "By default, events that are have an end date later than today will be included in searches, set this to yes to consider events that started 'yesterday' as past.", 'dbem' ) );
|
232 |
+
em_options_radio_binary ( __( 'Show events search?', 'dbem' ), 'dbem_events_page_search', __( "If set to yes, a search form will appear just above your list of events.", 'dbem' ) );
|
233 |
+
?>
|
234 |
+
<tr valign="top" id='dbem_events_default_orderby_row'>
|
235 |
+
<th scope="row"><?php _e('Default event list ordering','dbem'); ?></th>
|
236 |
+
<td>
|
237 |
+
<select name="dbem_events_default_orderby" >
|
238 |
+
<?php
|
239 |
+
$orderby_options = apply_filters('em_settings_events_default_orderby_ddm', array(
|
240 |
+
'start_date,start_time,name' => __('Order by start date, start time, then event name','dbem'),
|
241 |
+
'name,start_date,start_time' => __('Order by name, start date, then start time','dbem'),
|
242 |
+
'name,end_date,end_time' => __('Order by name, end date, then end time','dbem'),
|
243 |
+
'end_date,end_time,name' => __('Order by end date, end time, then event name','dbem'),
|
244 |
+
));
|
245 |
+
?>
|
246 |
+
<?php foreach($orderby_options as $key => $value) : ?>
|
247 |
+
<option value='<?php echo $key ?>' <?php echo ($key == get_option('dbem_events_default_orderby')) ? "selected='selected'" : ''; ?>>
|
248 |
+
<?php echo $value; ?>
|
249 |
+
</option>
|
250 |
+
<?php endforeach; ?>
|
251 |
+
</select>
|
252 |
+
<select name="dbem_events_default_order" >
|
253 |
+
<?php
|
254 |
+
$ascending = __('Ascending','dbem');
|
255 |
+
$descending = __('Descending','dbem');
|
256 |
+
$order_options = apply_filters('em_settings_events_default_order_ddm', array(
|
257 |
+
'ASC' => __('All Ascending','dbem'),
|
258 |
+
'DESC,ASC,ASC' => __("$descending, $ascending, $ascending",'dbem'),
|
259 |
+
'DESC,DESC,ASC' => __("$descending, $descending, $ascending",'dbem'),
|
260 |
+
'DESC' => __('All Descending','dbem'),
|
261 |
+
'ASC,DESC,ASC' => __("$ascending, $descending, $ascending",'dbem'),
|
262 |
+
'ASC,DESC,DESC' => __("$ascending, $descending, $descending",'dbem'),
|
263 |
+
'ASC,ASC,DESC' => __("$ascending, $ascending, $descending",'dbem'),
|
264 |
+
'DESC,ASC,DESC' => __("$descending, $ascending, $descending",'dbem'),
|
265 |
+
));
|
266 |
+
?>
|
267 |
+
<?php foreach( $order_options as $key => $value) : ?>
|
268 |
+
<option value='<?php echo $key ?>' <?php echo ($key == get_option('dbem_events_default_order')) ? "selected='selected'" : ''; ?>>
|
269 |
+
<?php echo $value; ?>
|
270 |
+
</option>
|
271 |
+
<?php endforeach; ?>
|
272 |
+
</select>
|
273 |
+
<br/>
|
274 |
+
<em><?php _e('When Events Manager displays lists of events the default behaviour is ordering by start date in ascending order. To change this, modify the values above.','dbem'); ?></em>
|
275 |
+
</td>
|
276 |
+
</tr>
|
277 |
+
<tr valign="top" id='dbem_events_display_time_limit'>
|
278 |
+
<th scope="row"><?php _e('Event list scope','dbem'); ?></th>
|
279 |
+
<td>
|
280 |
+
<select name="dbem_events_page_scope" >
|
281 |
+
<?php foreach( em_get_scopes() as $key => $value) : ?>
|
282 |
+
<option value='<?php echo $key ?>' <?php echo ($key == get_option('dbem_events_page_scope')) ? "selected='selected'" : ''; ?>>
|
283 |
+
<?php echo $value; ?>
|
284 |
+
</option>
|
285 |
+
<?php endforeach; ?>
|
286 |
+
</select>
|
287 |
+
<br />
|
288 |
+
<em><?php _e('Only show events starting within a certain time limit on the events page. Default is future events with no end time limit.','dbem'); ?></em>
|
289 |
+
</td>
|
290 |
+
</tr>
|
291 |
+
<?php
|
292 |
+
echo $save_button;
|
293 |
+
?>
|
294 |
+
</table>
|
295 |
+
</div> <!-- . inside -->
|
296 |
+
</div> <!-- .postbox -->
|
297 |
+
|
298 |
+
<div class="postbox " >
|
299 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Events format', 'dbem' ); ?> </span></h3>
|
300 |
+
<div class="inside">
|
301 |
+
<table class="form-table">
|
302 |
+
<tr><td><strong><?php echo sprintf(__('%s Page','dbem'),__('Events','dbem')); ?></strong></td></tr>
|
303 |
+
<?php
|
304 |
+
em_options_input_text ( __( 'Events page title', 'dbem' ), 'dbem_events_page_title', __( 'The title on the multiple events page.', 'dbem' ) );
|
305 |
+
em_options_textarea ( __( 'Default event list format header', 'dbem' ), 'dbem_event_list_item_format_header', __( 'This content will appear just above your code for the default event list format. Default is blank', 'dbem' ) );
|
306 |
+
em_options_textarea ( __( 'Default event list format', 'dbem' ), 'dbem_event_list_item_format', __( 'The format of any events in a list.', 'dbem' ).$events_placeholder_tip );
|
307 |
+
em_options_textarea ( __( 'Default event list format footer', 'dbem' ), 'dbem_event_list_item_format_footer', __( 'This content will appear just below your code for the default event list format. Default is blank', 'dbem' ) );
|
308 |
+
em_options_input_text ( __( 'No events message', 'dbem' ), 'dbem_no_events_message', __( 'The message displayed when no events are available.', 'dbem' ) );
|
309 |
+
em_options_input_text ( __( 'List events by date title', 'dbem' ), 'dbem_list_date_title', __( 'If viewing a page for events on a specific date, this is the title that would show up. To insert date values, use <a href="http://www.php.net/manual/en/function.date.php">PHP time format characters</a> with a <code>#</code> symbol before them, i.e. <code>#m</code>, <code>#M</code>, <code>#j</code>, etc.<br/>', 'dbem' ) );
|
310 |
+
?>
|
311 |
+
<tr><td><strong><?php echo sprintf(__('Single %s Page','dbem'),__('Event','dbem')); ?></strong></td></tr>
|
312 |
+
<?php
|
313 |
+
em_options_input_text ( __( 'Single event page title format', 'dbem' ), 'dbem_event_page_title_format', __( 'The format of a single event page title.', 'dbem' ).$events_placeholder_tip );
|
314 |
+
em_options_textarea ( __( 'Default single event format', 'dbem' ), 'dbem_single_event_format', __( 'The format of a single event page.', 'dbem' ).$events_placeholder_tip );
|
315 |
+
echo $save_button;
|
316 |
+
?>
|
317 |
+
</table>
|
318 |
+
</div> <!-- . inside -->
|
319 |
+
</div> <!-- .postbox -->
|
320 |
+
|
321 |
+
<div class="postbox " >
|
322 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Calendar format', 'dbem' ); ?></span></h3>
|
323 |
+
<div class="inside">
|
324 |
+
<table class="form-table">
|
325 |
+
<?php
|
326 |
+
em_options_input_text ( __( 'Small calendar title', 'dbem' ), 'dbem_small_calendar_event_title_format', __( 'The format of the title, corresponding to the text that appears when hovering on an eventful calendar day.', 'dbem' ).$events_placeholder_tip );
|
327 |
+
em_options_input_text ( __( 'Small calendar title separator', 'dbem' ), 'dbem_small_calendar_event_title_separator', __( 'The separator appearing on the above title when more than one events are taking place on the same day.', 'dbem' ) );
|
328 |
+
em_options_input_text ( __( 'Full calendar events format', 'dbem' ), 'dbem_full_calendar_event_format', __( 'The format of each event when displayed in the full calendar. Remember to include <code>li</code> tags before and after the event.', 'dbem' ).$events_placeholder_tip );
|
329 |
+
em_options_radio_binary ( __( 'Show long events on calendar pages?', 'dbem' ), 'dbem_full_calendar_long_events', __( "If you are showing a calendar on the events page (see Events format section on this page), you have the option of showing events that span over days on each day it occurs.",'dbem' ) );
|
330 |
+
em_options_radio_binary ( __( 'Show list on day with single event?', 'dbem' ), 'dbem_display_calendar_day_single', __( "By default, if a calendar day only has one event, it display a single event when clicking on the link of that calendar date. If you select Yes here, you will get always see a list of events.",'dbem' ) );
|
331 |
+
?>
|
332 |
+
<tr><td><strong><?php echo sprintf(__('iCal Feed Settings','dbem'),__('Event','dbem')); ?></strong></td></tr>
|
333 |
+
<?php
|
334 |
+
em_options_input_text ( __( 'iCal Title', 'dbem' ), 'dbem_ical_description_format', __( 'The title that will appear in the calendar.', 'dbem' ).$events_placeholder_tip );
|
335 |
+
em_options_input_text ( __( 'iCal Limit', 'dbem' ), 'dbem_ical_limit', __( 'Limits the number of future events shown (0 = unlimited).', 'dbem' ) );
|
336 |
+
echo $save_button;
|
337 |
+
?>
|
338 |
+
</table>
|
339 |
+
</div> <!-- . inside -->
|
340 |
+
</div> <!-- .postbox -->
|
341 |
+
|
342 |
+
<div class="postbox " >
|
343 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Locations format', 'dbem' ); ?> </span></h3>
|
344 |
+
<div class="inside">
|
345 |
+
<table class="form-table">
|
346 |
+
<tr><td><strong><?php echo sprintf(__('%s Page','dbem'),__('Locations','dbem')); ?></strong></td></tr>
|
347 |
+
<?php
|
348 |
+
em_options_input_text ( sprintf(__('%s page title','dbem'),__('Locations','dbem')), 'dbem_locations_page_title', sprintf(__( 'The title on the multiple %s page.', 'dbem' ), __('locations','dbem')) );
|
349 |
+
em_options_textarea ( sprintf(__('%s list header format','dbem'),__('Locations','dbem')), 'dbem_location_list_item_format_header', sprintf(__( 'This content will appear just above your code for the %s list format below. Default is blank', 'dbem' ), __('locations','dbem')) );
|
350 |
+
em_options_textarea ( sprintf(__('%s list item format','dbem'),__('Locations','dbem')), 'dbem_location_list_item_format', sprintf(__( 'The format of a single %s in a list.', 'dbem' ), __('locations','dbem')).$locations_placeholder_tip );
|
351 |
+
em_options_textarea ( sprintf(__('%s list footer format','dbem'),__('Locations','dbem')), 'dbem_location_list_item_format_footer', sprintf(__( 'This content will appear just below your code for the %s list format above. Default is blank', 'dbem' ), __('locations','dbem')) );
|
352 |
+
em_options_input_text ( sprintf(__( 'No %s message', 'dbem' ),__('Locations','dbem')), 'dbem_no_locations_message', sprintf( __( 'The message displayed when no %s are available.', 'dbem' ), __('locations','dbem')) );
|
353 |
+
?>
|
354 |
+
<tr><td><strong><?php echo sprintf(__('Single %s Page','dbem'),__('Location','dbem')); ?></strong></td></tr>
|
355 |
+
<?php
|
356 |
+
em_options_input_text (sprintf( __( 'Single %s title format', 'dbem' ),__('location','dbem')), 'dbem_location_page_title_format', __( 'The format of a single location page title.', 'dbem' ).$locations_placeholder_tip );
|
357 |
+
em_options_textarea ( sprintf(__('Single %s page format', 'dbem' ),__('location','dbem')), 'dbem_single_location_format', __( 'The format of a single location page.', 'dbem' ).$locations_placeholder_tip );
|
358 |
+
em_options_textarea ( __( 'Default location balloon format', 'dbem' ), 'dbem_location_baloon_format', __( 'The format of of the text appearing in the baloon describing the location a single location map.', 'dbem' ).$locations_placeholder_tip );
|
359 |
+
?>
|
360 |
+
<tr><td><strong><?php echo sprintf(__('%s List Formats','dbem'),__('Event','dbem')); ?></strong></td></tr>
|
361 |
+
<?php
|
362 |
+
em_options_textarea ( sprintf(__( 'Default %s list format', 'dbem' ),__('events','dbem')), 'dbem_location_event_list_item_format', __( 'The format of the events the list inserted in the location page through the <code>#_LOCATIONNEXTEVENTS</code>, <code>#_LOCATIONNEXTEVENTS</code> and <code>#_LOCATIONALLEVENTS</code> element.', 'dbem' ).$locations_placeholder_tip );
|
363 |
+
em_options_textarea ( sprintf(__( 'No %s message', 'dbem' ),__('events','dbem')), 'dbem_location_no_events_message', __( 'The message to be displayed in the list generated by <code>#_LOCATIONNEXTEVENTS</code>, <code>#_LOCATIONNEXTEVENTS</code> and <code>#_LOCATIONALLEVENTS</code> when no events are available.', 'dbem' ) );
|
364 |
+
echo $save_button;
|
365 |
+
?>
|
366 |
+
</table>
|
367 |
+
</div> <!-- . inside -->
|
368 |
+
</div> <!-- .postbox -->
|
369 |
+
|
370 |
+
<div class="postbox " >
|
371 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Categories format', 'dbem' ); ?> </span></h3>
|
372 |
+
<div class="inside">
|
373 |
+
<table class="form-table">
|
374 |
+
<tr><td><strong><?php echo sprintf(__('%s Page','dbem'),__('Categories','dbem')); ?></strong></td></tr>
|
375 |
+
<?php
|
376 |
+
em_options_input_text ( sprintf(__('%s page title','dbem'),__('Categories','dbem')), 'dbem_categories_page_title', sprintf(__( 'The title on the multiple %s page.', 'dbem' ), __('categories','dbem')) );
|
377 |
+
em_options_textarea ( sprintf(__('%s list header format','dbem'),__('Categories','dbem')), 'dbem_categories_list_item_format_header', sprintf(__( 'This content will appear just above your code for the %s list format below. Default is blank', 'dbem' ), __('categories','dbem')) );
|
378 |
+
em_options_textarea ( sprintf(__('%s list item format','dbem'),__('Categories','dbem')), 'dbem_categories_list_item_format', sprintf(__( 'The format of a single %s in a list.', 'dbem' ), __('categories','dbem')).$categories_placeholder_tip );
|
379 |
+
em_options_textarea ( sprintf(__('%s list footer format','dbem'),__('Categories','dbem')), 'dbem_categories_list_item_format_footer', sprintf(__( 'This content will appear just below your code for the %s list format above. Default is blank', 'dbem' ), __('categories','dbem')) );
|
380 |
+
em_options_input_text ( sprintf(__( 'No %s message', 'dbem' ),__('Categories','dbem')), 'dbem_no_categories_message', sprintf( __( 'The message displayed when no %s are available.', 'dbem' ), __('categories','dbem')) );
|
381 |
+
?>
|
382 |
+
<tr><td><strong><?php echo sprintf(__('Single %s Page','dbem'),__('Category','dbem')); ?></strong></td></tr>
|
383 |
+
<?php
|
384 |
+
em_options_input_text ( sprintf(__( 'Single %s title format', 'dbem' ),__('category','dbem')), 'dbem_category_page_title_format', __( 'The format of a single category page title.', 'dbem' ).$categories_placeholder_tip );
|
385 |
+
em_options_textarea ( sprintf(__('Single %s page format', 'dbem' ),__('category','dbem')), 'dbem_category_page_format', __( 'The format of a single category page.', 'dbem' ).$categories_placeholder_tip );
|
386 |
+
?>
|
387 |
+
<tr><td><strong><?php echo sprintf(__('%s List Formats','dbem'),__('Event','dbem')); ?></strong></td></tr>
|
388 |
+
<?php
|
389 |
+
em_options_textarea ( sprintf(__( 'Default %s list format', 'dbem' ),__('events','dbem')), 'dbem_category_event_list_item_format', __( 'The format of the events the list inserted in the category page through the <code>#_CATEGORYNEXTEVENTS</code>, <code>#_CATEGORYNEXTEVENTS</code> and <code>#_CATEGORYALLEVENTS</code> element.', 'dbem' ).$categories_placeholder_tip );
|
390 |
+
em_options_textarea ( sprintf(__( 'No %s message', 'dbem' ),__('events','dbem')), 'dbem_category_no_events_message', __( 'The message to be displayed in the list generated by <code>#_CATEGORYNEXTEVENTS</code>, <code>#_CATEGORYNEXTEVENTS</code> and <code>#_CATEGORYALLEVENTS</code> when no events are available.', 'dbem' ) );
|
391 |
+
echo $save_button;
|
392 |
+
?>
|
393 |
+
</table>
|
394 |
+
</div> <!-- . inside -->
|
395 |
+
</div> <!-- .postbox -->
|
396 |
+
|
397 |
+
<div class="postbox " >
|
398 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'RSS feed format', 'dbem' ); ?> </span></h3>
|
399 |
+
<div class="inside">
|
400 |
+
<table class="form-table">
|
401 |
+
<?php
|
402 |
+
em_options_input_text ( __( 'RSS main title', 'dbem' ), 'dbem_rss_main_title', __( 'The main title of your RSS events feed.', 'dbem' ).$events_placeholder_tip );
|
403 |
+
em_options_input_text ( __( 'RSS main description', 'dbem' ), 'dbem_rss_main_description', __( 'The main description of your RSS events feed.', 'dbem' ) );
|
404 |
+
em_options_input_text ( __( 'RSS title format', 'dbem' ), 'dbem_rss_title_format', __( 'The format of the title of each item in the events RSS feed.', 'dbem' ).$events_placeholder_tip );
|
405 |
+
em_options_input_text ( __( 'RSS description format', 'dbem' ), 'dbem_rss_description_format', __( 'The format of the description of each item in the events RSS feed.', 'dbem' ).$events_placeholder_tip );
|
406 |
+
echo $save_button;
|
407 |
+
?>
|
408 |
+
</table>
|
409 |
+
</div> <!-- . inside -->
|
410 |
+
</div> <!-- .postbox -->
|
411 |
+
|
412 |
+
<div class="postbox " >
|
413 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Maps and geotagging', 'dbem' ); ?> </span></h3>
|
414 |
+
<div class="inside">
|
415 |
+
<table class='form-table'>
|
416 |
+
<?php $gmap_is_active = get_option ( 'dbem_gmap_is_active' ); ?>
|
417 |
+
<tr valign="top">
|
418 |
+
<th scope="row"><?php _e ( 'Enable Google Maps integration?', 'dbem' ); ?></th>
|
419 |
+
<td>
|
420 |
+
<?php _e ( 'Yes' ); ?> <input id="dbem_gmap_is_active_yes" name="dbem_gmap_is_active" type="radio" value="1" <?php echo ($gmap_is_active) ? "checked='checked'":''; ?> />
|
421 |
+
<?php _e ( 'No' ); ?> <input name="dbem_gmap_is_active" type="radio" value="0" <?php echo ($gmap_is_active) ? '':"checked='checked'"; ?> /><br />
|
422 |
+
<em><?php _e ( 'Check this option to enable Goggle Map integration.', 'dbem' )?></em>
|
423 |
+
</td>
|
424 |
+
</tr>
|
425 |
+
<?php
|
426 |
+
em_options_textarea ( __( 'Map text format', 'dbem' ), 'dbem_map_text_format', __( 'The text format inside the map balloons.', 'dbem' ).$events_placeholder_tip );
|
427 |
+
echo $save_button;
|
428 |
+
?>
|
429 |
+
</table>
|
430 |
+
</div> <!-- . inside -->
|
431 |
+
</div> <!-- .postbox -->
|
432 |
+
|
433 |
+
<div class="postbox " >
|
434 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Booking and Ticketing Options', 'dbem' ); ?> </span></h3>
|
435 |
+
<div class="inside">
|
436 |
+
<table class='form-table'>
|
437 |
+
<?php
|
438 |
+
$ticket_orders = array(
|
439 |
+
'ticket_price DESC, ticket_name ASC'=>__('Ticket Price (Descending)','dbem'),
|
440 |
+
'ticket_price ASC, ticket_name ASC'=>__('Ticket Price (Ascending)','dbem'),
|
441 |
+
'ticket_name DESC, ticket_price DESC'=>__('Ticket Name (Ascending)','dbem'),
|
442 |
+
'ticket_name ASC, ticket_price DESC'=>__('Ticket Name (Descending)','dbem')
|
443 |
+
);
|
444 |
+
em_options_radio_binary ( __( 'Approval Required?', 'dbem' ), 'dbem_bookings_approval', __( 'Bookings will not be confirmed until the event administrator approves it.', 'dbem' ) );
|
445 |
+
em_options_radio_binary ( __( 'Can users cancel their booking?', 'dbem' ), 'dbem_bookings_user_cancellation', __( 'If enabled, users can cancel their bookings themselves from their bookings page.', 'dbem' ) );
|
446 |
+
em_options_select ( __( 'Currency', 'dbem' ), 'dbem_bookings_currency', em_get_currencies()->names, __( 'Choose your currency for displaying event pricing.', 'dbem' ) );
|
447 |
+
em_options_input_text ( __( 'Tax Rate', 'dbem' ), 'dbem_bookings_tax', __( 'Add a tax rate to your ticket prices (entering 10 will add 10% to the ticket price).', 'dbem' ) );
|
448 |
+
em_options_radio_binary ( __( 'Add tax to ticket price?', 'dbem' ), 'dbem_bookings_tax_auto_add', __( 'When displaying ticket prices and booking totals, include the tax automatically?', 'dbem' ) );
|
449 |
+
em_options_radio_binary ( __( 'Single ticket mode?', 'dbem' ), 'dbem_bookings_tickets_single', __( 'In single ticket mode, users can only create one ticket per booking (and will not see options to add more tickets).', 'dbem' ) );
|
450 |
+
em_options_radio_binary ( __( 'Show ticket table in single ticket mode?', 'dbem' ), 'dbem_bookings_tickets_single_form', __( 'If you prefer a ticket table like with multiple tickets, even for single ticket events, enable this.', 'dbem' ) );
|
451 |
+
em_options_radio_binary ( __( 'Show unavailable tickets?', 'dbem' ), 'dbem_bookings_tickets_show_unavailable', __( 'You can choose whether or not to show unavailable tickets to visitors.', 'dbem' ) );
|
452 |
+
em_options_radio_binary ( __( 'Reserved unconfirmed spaces?', 'dbem' ), 'dbem_bookings_approval_reserved', __( 'By default, event spaces become unavailable once there are enough CONFIRMED bookings. To reserve spaces even if unnapproved, choose yes.', 'dbem' ) );
|
453 |
+
em_options_radio_binary ( __( 'Show multiple tickets if logged out?', 'dbem' ), 'dbem_bookings_tickets_show_loggedout', __( 'If logged out, a user will be asked to register in order to book. However, we can show available tickets if you have more than one ticket.', 'dbem' ) );
|
454 |
+
em_options_select ( __( 'Order Tickets By', 'dbem' ), 'dbem_bookings_tickets_orderby', $ticket_orders, __( 'Choose which order your tickets appear.', 'dbem' ) );
|
455 |
+
em_options_radio_binary ( __( 'Allow overbooking when approving?', 'dbem' ), 'dbem_bookings_approval_overbooking', __( 'If you get a lot of pending bookings and you decide to allow more bookings than spaces allow, setting this to yes will allow you to override the event space limit when manually approving.', 'dbem' ) );
|
456 |
+
em_options_radio_binary ( __( 'Allow guest bookings?', 'dbem' ), 'dbem_bookings_anonymous', __( 'If enabled, guest visitors can supply an email address and a user account will automatically be created for them along with their booking. They will be also be able to log back in with that newly created account.', 'dbem' ) );
|
457 |
+
em_options_radio_binary ( __( 'Allow double bookings?', 'dbem' ), 'dbem_bookings_double', __( 'If enabled, users can book an event more than once.', 'dbem' ) );
|
458 |
+
em_options_radio_binary ( __( 'Display login form?', 'dbem' ), 'dbem_bookings_login_form', __( 'Choose whether or not to display a login form in the booking form area to remind your members to log in before booking.', 'dbem' ) );
|
459 |
+
?>
|
460 |
+
<tr><td colspan='2'><h4><?php _e('Booking form feedback messages','dbem') ?></h4></td></tr>
|
461 |
+
<tr><td colspan='2'><?php _e('When a booking is made by a user, a feedback message is shown depending on the result, which can be customized below.','dbem'); ?></td></tr>
|
462 |
+
<?php
|
463 |
+
em_options_input_text ( __( 'Successful booking', 'dbem' ), 'dbem_booking_feedback', __( 'When a booking is registered and confirmed.', 'dbem' ) );
|
464 |
+
em_options_input_text ( __( 'Successful pending booking', 'dbem' ), 'dbem_booking_feedback_pending', __( 'When a booking is registered but pending.', 'dbem' ) );
|
465 |
+
em_options_input_text ( __( 'Not enough spaces', 'dbem' ), 'dbem_booking_feedback_full', __( 'When a booking cannot be made due to lack of spaces.', 'dbem' ) );
|
466 |
+
em_options_input_text ( __( 'Errors', 'dbem' ), 'dbem_booking_feedback_error', __( 'When a booking cannot be made due to an error when filling the form. Below this, there will be a dynamic list of errors.', 'dbem' ) );
|
467 |
+
em_options_input_text ( __( 'User must log in', 'dbem' ), 'dbem_booking_feedback_log_in', __( 'When a user must log in before making a booking.', 'dbem' ) );
|
468 |
+
em_options_input_text ( __( 'Error mailing user', 'dbem' ), 'dbem_booking_feedback_nomail', __( 'If a booking is made and an email cannot be sent, this is added to the success message.', 'dbem' ) );
|
469 |
+
em_options_input_text ( __( 'Already booked', 'dbem' ), 'dbem_booking_feedback_already_booked', __( 'If the user made a previous booking and cannot double-book.', 'dbem' ) );
|
470 |
+
em_options_input_text ( __( 'No spaces booked', 'dbem' ), 'dbem_booking_feedback_min_space', __( 'If the user tries to make a booking without requesting any spaces.', 'dbem' ) );
|
471 |
+
?>
|
472 |
+
<tr><td colspan='2'><h4><?php _e('No-User Booking Mode','dbem') ?> (Beta)</h4></td></tr>
|
473 |
+
<tr><td colspan='2'>
|
474 |
+
<p><?php _e('By default, when a booking is made by a user, this booking is tied to a user account, if the user is not registered nor logged in and guest bookings are enabled, an account will be created for them.','dbem'); ?></p>
|
475 |
+
<p><?php _e('The option below allows you to disable user accounts and assign all bookings to a parent user, yet you will still see the supplied booking personal information for each booking. When this mode is enabled, extra booking information about the person is stored alongside the booking record rather than as a wordpress user.','dbem'); ?></p>
|
476 |
+
<p><?php _e('<strong>Warning : </strong> Various features afforded to users with an account will not be available, e.g. viewing bookings. Once you enable this and select a user, modifying these values will prevent older non-user bookings from displaying the correct information.','dbem'); ?></p>
|
477 |
+
</td></tr>
|
478 |
+
<?php
|
479 |
+
em_options_radio_binary ( __( 'Enable No-User Booking Mode?', 'dbem' ), 'dbem_bookings_registration_disable', __( 'This disables user registrations for bookings.', 'dbem' ) );
|
480 |
+
em_options_select ( __( 'Assign bookings to', 'dbem' ), 'dbem_bookings_registration_user', em_get_wp_users(), __( 'Choose a parent user to assign bookings to. People making their booking will be unaware of this and will never have access to those user details.', 'dbem' ) );
|
481 |
+
echo $save_button;
|
482 |
+
?>
|
483 |
+
</table>
|
484 |
+
</div> <!-- . inside -->
|
485 |
+
</div> <!-- .postbox -->
|
486 |
+
|
487 |
+
<div class="postbox " >
|
488 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Booking Email Templates', 'dbem' ); ?> </span></h3>
|
489 |
+
<div class="inside">
|
490 |
+
<table class='form-table'>
|
491 |
+
<?php
|
492 |
+
em_options_select ( __( 'Default contact person', 'dbem' ), 'dbem_default_contact_person', em_get_wp_users(), __( 'Select the default contact person. This user will be employed whenever a contact person is not explicitly specified for an event', 'dbem' ) );
|
493 |
+
em_options_input_text ( __( 'Email events admin?', 'dbem' ), 'dbem_bookings_notify_admin', __( "If you would like every event booking confirmation email sent to an administrator write their email here (leave blank to not send an email).", 'dbem' ) );
|
494 |
+
em_options_radio_binary ( __( 'Email contact person?', 'dbem' ), 'dbem_bookings_contact_email', __( 'Check this option if you want the event contact to receive an email when someone books places. An email will be sent when a booking is first made (regardless if confirmed or pending)', 'dbem' ) );
|
495 |
+
em_options_radio_binary ( __( 'Disable new registration email?', 'dbem' ), 'dbem_email_disable_registration', __( 'Check this option if you want to prevent the wordpress registration email from going out when a user anonymously books an event.', 'dbem' ) );
|
496 |
+
?>
|
497 |
+
<tr><td colspan='2'><h4><?php _e('Contact person booking confirmed','dbem') ?></h4></td></tr>
|
498 |
+
<tr><td colspan='2'><?php echo __('An email will be sent to the event contact when a booking is first made.','dbem').$bookings_placeholder_tip ?></td></tr>
|
499 |
+
<?php
|
500 |
+
em_options_input_text ( __( 'Contact person email subject', 'dbem' ), 'dbem_bookings_contact_email_subject', '' );
|
501 |
+
em_options_textarea ( __( 'Contact person email', 'dbem' ), 'dbem_bookings_contact_email_body', '' );
|
502 |
+
?>
|
503 |
+
<tr><td colspan='2'><h4><?php _e('Contact person booking cancelled','dbem') ?></h4></td></tr>
|
504 |
+
<tr><td colspan='2'><?php echo __('An email will be sent to the event contact if someone cancels their booking.','dbem').$bookings_placeholder_tip ?></td></tr>
|
505 |
+
<?php
|
506 |
+
em_options_input_text ( __( 'Contact person cancellation subject', 'dbem' ), 'dbem_contactperson_email_cancelled_subject', '' );
|
507 |
+
em_options_textarea ( __( 'Contact person cancellation email', 'dbem' ), 'dbem_contactperson_email_cancelled_body', '' );
|
508 |
+
?>
|
509 |
+
<tr><td colspan='2'><h4><?php _e('Confirmed booking email','dbem') ?></h4></td></tr>
|
510 |
+
<tr><td colspan='2'><?php echo __('This is sent when a person\'s booking is confirmed. This will be sent automatically if approvals are required and the booking is approved. If approvals are disabled, this is sent out when a user first submits their booking.','dbem').$bookings_placeholder_tip ?></td></tr>
|
511 |
+
<?php
|
512 |
+
em_options_input_text ( __( 'Booking confirmed email subject', 'dbem' ), 'dbem_bookings_email_confirmed_subject', '' );
|
513 |
+
em_options_textarea ( __( 'Booking confirmed email', 'dbem' ), 'dbem_bookings_email_confirmed_body', '' );
|
514 |
+
?>
|
515 |
+
<tr><td colspan='2'><h4><?php _e('Pending booking email','dbem') ?></h4></td></tr>
|
516 |
+
<tr><td colspan='2'><?php echo __( 'This will be sent to the person when they first submit their booking. Not relevant if bookings don\'t require approval.', 'dbem' ).$bookings_placeholder_tip ?></td></tr>
|
517 |
+
<?php
|
518 |
+
em_options_input_text ( __( 'Booking pending email subject', 'dbem' ), 'dbem_bookings_email_pending_subject', '');
|
519 |
+
em_options_textarea ( __( 'Booking pending email', 'dbem' ), 'dbem_bookings_email_pending_body','') ;
|
520 |
+
?>
|
521 |
+
<tr><td colspan='2'><h4><?php _e('Rejected booking email','dbem') ?></h4></td></tr>
|
522 |
+
<tr><td colspan='2'><?php echo __( 'This will be sent automatically when a booking is rejected. Not relevant if bookings don\'t require approval.', 'dbem' ).$bookings_placeholder_tip ?></td></tr>
|
523 |
+
<?php
|
524 |
+
em_options_input_text ( __( 'Booking rejected email subject', 'dbem' ), 'dbem_bookings_email_rejected_subject', __( "The subject of the email sent to the person making a booking that is awaiting administrator approval. Not relevant if bookings don't require approval.", 'dbem' ).$bookings_placeholder_tip );
|
525 |
+
em_options_textarea ( __( 'Booking rejected email', 'dbem' ), 'dbem_bookings_email_rejected_body', __( 'The body of the email which will be sent to the person if the booking is rejected. Not relevant if bookings don\'t require approval.', 'dbem' ).$bookings_placeholder_tip );
|
526 |
+
echo $save_button;
|
527 |
+
?>
|
528 |
+
<tr><td colspan='2'><h4><?php _e('Booking cancelled','dbem') ?></h4></td></tr>
|
529 |
+
<tr><td colspan='2'><?php echo __('This will be sent when a user cancels their booking.','dbem').$bookings_placeholder_tip ?></td></tr>
|
530 |
+
<?php
|
531 |
+
em_options_input_text ( __( 'Booking cancelled email subject', 'dbem' ), 'dbem_bookings_email_cancelled_subject', '' );
|
532 |
+
em_options_textarea ( __( 'Booking cancelled email', 'dbem' ), 'dbem_bookings_email_cancelled_body', '' );
|
533 |
+
?>
|
534 |
+
</table>
|
535 |
+
</div> <!-- . inside -->
|
536 |
+
</div> <!-- .postbox -->
|
537 |
+
|
538 |
+
<div class="postbox " >
|
539 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Event Email Templates', 'dbem' ); ?> </span></h3>
|
540 |
+
<div class="inside">
|
541 |
+
<table class='form-table'>
|
542 |
+
<tr><td colspan='2'><strong><?php _e('Event Approved','dbem') ?></strong></td></tr>
|
543 |
+
<tr><td colspan='2'><?php echo __('An email will be sent to the event owner when their event is approved. Users requiring event approval do not have the <code>publish_events</code> capability.','dbem').$bookings_placeholder_tip ?></td></tr>
|
544 |
+
<?php
|
545 |
+
em_options_input_text ( __( 'Event approved subject', 'dbem' ), 'dbem_event_approved_email_subject', '' );
|
546 |
+
em_options_textarea ( __( 'Event approved email', 'dbem' ), 'dbem_event_approved_email_body', '' );
|
547 |
+
?>
|
548 |
+
</table>
|
549 |
+
</div> <!-- . inside -->
|
550 |
+
</div> <!-- .postbox -->
|
551 |
+
|
552 |
+
<?php if ( !is_multisite() || (is_multisite() && is_super_admin()) ) : ?>
|
553 |
+
<div class="postbox " >
|
554 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Email Settings', 'dbem' ); ?> <?php echo $multisite_view; ?></span></h3>
|
555 |
+
<div class="inside">
|
556 |
+
<table class='form-table'>
|
557 |
+
<?php
|
558 |
+
em_options_input_text ( __( 'Notification sender name', 'dbem' ), 'dbem_mail_sender_name', __( "Insert the display name of the notification sender.", 'dbem' ) );
|
559 |
+
em_options_input_text ( __( 'Notification sender address', 'dbem' ), 'dbem_mail_sender_address', __( "Insert the address of the notification sender.", 'dbem' ) );
|
560 |
+
em_options_input_text ( 'Mail sending port', 'dbem_rsvp_mail_port', __( "The port through which you e-mail notifications will be sent. Make sure the firewall doesn't block this port", 'dbem' ) );
|
561 |
+
em_options_select ( __( 'Mail sending method', 'dbem' ), 'dbem_rsvp_mail_send_method', array ('smtp' => 'SMTP', 'mail' => __( 'PHP mail function', 'dbem' ), 'sendmail' => 'Sendmail', 'qmail' => 'Qmail', 'wp_mail' => 'WP Mail' ), __( 'Select the method to send email notification.', 'dbem' ) );
|
562 |
+
em_options_radio_binary ( __( 'Use SMTP authentication?', 'dbem' ), 'dbem_rsvp_mail_SMTPAuth', __( 'SMTP authentication is often needed. If you use GMail, make sure to set this parameter to Yes', 'dbem' ) );
|
563 |
+
em_options_input_text ( 'SMTP host', 'dbem_smtp_host', __( "The SMTP host. Usually it corresponds to 'localhost'. If you use GMail, set this value to 'ssl://smtp.gmail.com:465'.", 'dbem' ) );
|
564 |
+
em_options_input_text ( __( 'SMTP username', 'dbem' ), 'dbem_smtp_username', __( "Insert the username to be used to access your SMTP server.", 'dbem' ) );
|
565 |
+
em_options_input_password ( __( 'SMTP password', 'dbem' ), "dbem_smtp_password", __( "Insert the password to be used to access your SMTP server", 'dbem' ) );
|
566 |
+
echo $save_button;
|
567 |
+
?>
|
568 |
+
</table>
|
569 |
+
</div> <!-- . inside -->
|
570 |
+
</div> <!-- .postbox -->
|
571 |
+
|
572 |
+
<div class="postbox " >
|
573 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Images size', 'dbem' ); ?> <?php echo $multisite_view; ?> </span></h3>
|
574 |
+
<div class="inside">
|
575 |
+
<table class='form-table'>
|
576 |
+
<?php
|
577 |
+
em_options_input_text ( __( 'Maximum width (px)', 'dbem' ), 'dbem_image_max_width', __( 'The maximum allowed width for images uploades', 'dbem' ) );
|
578 |
+
em_options_input_text ( __( 'Maximum height (px)', 'dbem' ), 'dbem_image_max_height', __( "The maximum allowed height for images uploaded, in pixels", 'dbem' ) );
|
579 |
+
em_options_input_text ( __( 'Maximum size (bytes)', 'dbem' ), 'dbem_image_max_size', __( "The maximum allowed size for images uploaded, in bytes", 'dbem' ) );
|
580 |
+
echo $save_button;
|
581 |
+
?>
|
582 |
+
</table>
|
583 |
+
</div> <!-- . inside -->
|
584 |
+
</div> <!-- .postbox -->
|
585 |
+
|
586 |
+
<div class="postbox" >
|
587 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'User Capabilities', 'dbem' ); ?> <?php echo $multisite_view; ?></span></h3>
|
588 |
+
<div class="inside">
|
589 |
+
<table class="form-table">
|
590 |
+
<tr><td colspan="2">
|
591 |
+
<strong><?php _e('Warning: Changing these values may result in exposing previously hidden information to all users.', 'dbem')?></strong><br />
|
592 |
+
</td></tr>
|
593 |
+
<?php
|
594 |
+
global $wp_roles;
|
595 |
+
global $em_capabilities_array;
|
596 |
+
?>
|
597 |
+
<tr><td colspan="2">
|
598 |
+
<p><em><?php _e('You can now give fine grained control with regards to what your users can do with events. Each user role can have perform different sets of actions.','dbem'); ?></em></p>
|
599 |
+
<table class="em-caps-table" style="width:auto;" cellspacing="0" cellpadding="0">
|
600 |
+
<thead>
|
601 |
+
<tr>
|
602 |
+
<td> </td>
|
603 |
+
<?php
|
604 |
+
$odd = 0;
|
605 |
+
$cap_docs = array(
|
606 |
+
'publish_events' => __('Users can publish events and skip any admin approval.','dbem'),
|
607 |
+
'edit_categories' => __('User can edit the global categories.','dbem'),
|
608 |
+
'delete_others_events' => __('User can delete other users events.','dbem'),
|
609 |
+
'delete_others_locations' => __('User can delete other users locations.','dbem'),
|
610 |
+
'edit_others_locations' => __('User can edit other users locations.','dbem'),
|
611 |
+
'manage_others_bookings' => __('User can manage other users individual bookings and event booking settings.','dbem'),
|
612 |
+
'edit_others_events' => __('User can edit other users events.','dbem'),
|
613 |
+
'delete_locations' => __('User can delete their own locations.','dbem'),
|
614 |
+
'delete_events' => __('User can delete their events.','dbem'),
|
615 |
+
'edit_locations' => __('User can edit their locations.','dbem'),
|
616 |
+
'manage_bookings' => __('User can use and manage bookings with their events.','dbem'),
|
617 |
+
'read_others_locations' => __('User can view other users locations, to make locations shared by all users allow all event user roles to view all locations.','dbem'),
|
618 |
+
'edit_recurrences' => __('User can create recurrent events.','dbem'),
|
619 |
+
'edit_events' => __('User can create and edit their events.','dbem')
|
620 |
+
);
|
621 |
+
foreach(array_keys($em_capabilities_array) as $capability){
|
622 |
+
?><th class="<?php echo $capability ?> <?php echo ( !is_int($odd/2) ) ? 'odd':''; ?>"> <a href="#" title="<?php echo $cap_docs[$capability]; ?>">?</a></th><?php
|
623 |
+
$odd++;
|
624 |
+
}
|
625 |
+
?>
|
626 |
+
</tr>
|
627 |
+
</thead>
|
628 |
+
<tbody>
|
629 |
+
<?php foreach($wp_roles->role_objects as $role): ?>
|
630 |
+
<tr>
|
631 |
+
<td class="cap"><strong><?php echo $role->name; ?></strong></td>
|
632 |
+
<?php
|
633 |
+
$odd = 0;
|
634 |
+
foreach(array_keys($em_capabilities_array) as $capability){
|
635 |
+
?><td class="<?php echo ( !is_int($odd/2) ) ? 'odd':''; ?>"><input type="checkbox" name="em_capabilities[<?php echo $role->name; ?>][<?php echo $capability ?>]" value="1" <?php echo $role->has_cap($capability) ? 'checked="checked"':''; ?> /></td><?php
|
636 |
+
$odd++;
|
637 |
+
}
|
638 |
+
?>
|
639 |
+
</tr>
|
640 |
+
<?php endforeach; ?>
|
641 |
+
</tbody>
|
642 |
+
</table>
|
643 |
+
</td></tr>
|
644 |
+
<?php echo $save_button; ?>
|
645 |
+
</table>
|
646 |
+
</div> <!-- . inside -->
|
647 |
+
</div> <!-- .postbox -->
|
648 |
+
<?php endif; ?>
|
649 |
+
|
650 |
+
<div class="postbox" >
|
651 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Anonymous Event Submission', 'dbem' ); ?> (Beta)<?php echo $multisite_view; ?></span></h3>
|
652 |
+
<div class="inside">
|
653 |
+
<table class="form-table">
|
654 |
+
<tr><td colspan="2">
|
655 |
+
<strong><?php _e('You can allow users to publicly submit events on your blog by using the [event_form] shortcode, and enabling anonymous submissions below.','dbem')?> (beta)</strong><br />
|
656 |
+
</td></tr>
|
657 |
+
<?php
|
658 |
+
em_options_radio_binary ( __( 'Allow anonymous event submissions?', 'dbem' ), 'dbem_events_anonymous_submissions', __( 'Would you like to allow users to submit bookings anonymously? If so, you can use the new [event_form] shortcode or <code>em_event_form()</code> template tag with this enabled.', 'dbem' ) );
|
659 |
+
em_options_select ( __('Guest Default User', 'dbem'), 'dbem_events_anonymous_user', em_get_wp_users (), __( 'Events require a user to own them. In order to allow events to be submitted anonymously you need to assign that event a specific user. We recommend you create a "Anonymous" subscriber with a very good password and use that.', 'dbem' ) );
|
660 |
+
em_options_textarea ( __( 'Success Message', 'dbem' ), 'dbem_events_anonymous_result_success', __( 'Anonymous submitters cannot see or modify their event once submitted. You can customize the success message they see here.', 'dbem' ).$events_placeholder_tip );
|
661 |
+
?>
|
662 |
+
<?php echo $save_button; ?>
|
663 |
+
</table>
|
664 |
+
</div> <!-- . inside -->
|
665 |
+
</div> <!-- .postbox -->
|
666 |
+
|
667 |
+
<?php /*
|
668 |
+
<div class="postbox " >
|
669 |
+
<div class="handlediv" title="<?php __('Click to toggle', 'dbem'); ?>"><br /></div><h3 class='hndle'><span><?php _e ( 'Debug Modes', 'dbem' ); ?> </span></h3>
|
670 |
+
<div class="inside">
|
671 |
+
<table class='form-table'>
|
672 |
+
<?php
|
673 |
+
em_options_radio_binary ( __( 'EM Debug Mode?', 'dbem' ), 'dbem_debug', __( 'Setting this to yes will display different content to admins for event pages and emails so you can see all the available placeholders and their values.', 'dbem' ) );
|
674 |
+
em_options_radio_binary ( __( 'WP Debug Mode?', 'dbem' ), 'dbem_wp_debug', __( 'This will turn WP_DEBUG mode on. Useful if you want to troubleshoot php errors without looking at your logs.', 'dbem' ) );
|
675 |
+
?>
|
676 |
+
</table>
|
677 |
+
</div> <!-- . inside -->
|
678 |
+
</div> <!-- .postbox -->
|
679 |
+
*/ ?>
|
680 |
+
|
681 |
+
<?php do_action('em_options_page_footer'); ?>
|
682 |
+
|
683 |
+
<p class="submit">
|
684 |
+
<input type="submit" id="dbem_options_submit" name="Submit" value="<?php _e ( 'Save Changes' )?>" />
|
685 |
+
<input type="hidden" name="em-submitted" value="1" />
|
686 |
+
<input type="hidden" name="_wpnonce" value="<?php echo wp_create_nonce('events-manager-options'); ?>" />
|
687 |
+
</p>
|
688 |
+
|
689 |
+
</div> <!-- .metabox-sortables -->
|
690 |
+
</div> <!-- .postbox-container -->
|
691 |
+
|
692 |
+
</div> <!-- .metabox-holder -->
|
693 |
+
</form>
|
694 |
+
</div>
|
695 |
+
<?php
|
696 |
+
}
|
697 |
?>
|
admin/em-people.php
CHANGED
@@ -1,178 +1,15 @@
|
|
1 |
<?php
|
2 |
-
/**
|
3 |
-
* Check for flags to save personal data
|
4 |
-
*/
|
5 |
-
function em_person_actions(){
|
6 |
-
global $EM_Person;
|
7 |
-
if( !empty($_REQUEST['action']) && is_object($EM_Person) ){
|
8 |
-
if( $_REQUEST['action'] == 'edit_person' ){
|
9 |
-
$validation = $EM_Person->get_post();
|
10 |
-
if ( $validation ) { //EM_Event gets the event if submitted via POST and validates it (safer than to depend on JS)
|
11 |
-
//Save
|
12 |
-
if( $EM_Person->save() ) {
|
13 |
-
function em_person_save_notification(){
|
14 |
-
global $EM_Person;
|
15 |
-
?><div class="updated"><p><strong><?php echo $EM_Person->feedback_message; ?></strong></p></div><?php
|
16 |
-
}
|
17 |
-
}else{
|
18 |
-
function em_person_save_notification(){
|
19 |
-
global $EM_Person;
|
20 |
-
?><div class="error"><p><strong><?php echo $EM_Person->feedback_message; ?></strong></p></div><?php
|
21 |
-
}
|
22 |
-
}
|
23 |
-
}else{
|
24 |
-
//TODO make errors clearer when saving person
|
25 |
-
function em_person_save_notification(){
|
26 |
-
global $EM_Person;
|
27 |
-
?><div class="error"><p><strong><?php echo $EM_Person->feedback_message; ?></strong></p></div><?php
|
28 |
-
}
|
29 |
-
}
|
30 |
-
add_action ( 'admin_notices', 'em_person_save_notification' );
|
31 |
-
}
|
32 |
-
if( $_REQUEST['action'] == 'person_delete' ){
|
33 |
-
if( $EM_Person->delete() ){
|
34 |
-
//TODO delete person needs confirmation
|
35 |
-
wp_redirect( get_bloginfo('wpurl').'/wp-admin/admin.php?page=events-manager-bookings');
|
36 |
-
exit();
|
37 |
-
}else{
|
38 |
-
function em_person_delete_notification(){
|
39 |
-
global $EM_Person;
|
40 |
-
?><div class="error"><p><strong><?php echo $EM_Person->feedback_message; ?></strong></p></div><?php
|
41 |
-
}
|
42 |
-
}
|
43 |
-
add_action ( 'admin_notices', 'em_person_delete_notification' );
|
44 |
-
}
|
45 |
-
}
|
46 |
-
}
|
47 |
-
add_action('admin_init','em_person_actions');
|
48 |
-
|
49 |
-
/**
|
50 |
-
* Generate an edit form for person details.
|
51 |
-
*/
|
52 |
-
function em_person_edit_form(){
|
53 |
-
global $EM_Person;
|
54 |
-
?>
|
55 |
-
<form action="" method="post" id="em-person-form">
|
56 |
-
<table>
|
57 |
-
<tr><td><strong><?php _e('Name','dbem'); ?></strong></td><td><input type="text" name="person_name" size="60" value="<?php echo $EM_Person->name; ?>" /></td></tr>
|
58 |
-
<tr><td><strong><?php _e('Phone','dbem'); ?></strong></td><td><input type="text" name="person_phone" size="60" value="<?php echo $EM_Person->phone; ?>" /></td></tr>
|
59 |
-
<tr><td><strong><?php _e('E-mail','dbem'); ?></strong></td><td><input type="text" name="person_email" size="60" value="<?php echo $EM_Person->email; ?>" /></td></tr>
|
60 |
-
</table>
|
61 |
-
<p class="submit">
|
62 |
-
<input type="submit" name="events_update" value="<?php _e ( 'Save' ); ?> »" />
|
63 |
-
</p>
|
64 |
-
<input type="hidden" name="action" value="person_edit" />
|
65 |
-
<input type="hidden" name="person_id" value="<?php echo $EM_Person->id; ?>" />
|
66 |
-
</form>
|
67 |
-
<?php
|
68 |
-
}
|
69 |
-
|
70 |
-
/**
|
71 |
-
* Depreciated page... for now at least.
|
72 |
-
*/
|
73 |
-
function em_admin_people_page() {
|
74 |
-
?>
|
75 |
-
<div class='wrap'>
|
76 |
-
<div id="icon-users" class="icon32"><br/></div>
|
77 |
-
<h2>People</h2>
|
78 |
-
<?php
|
79 |
-
$EM_People = EM_People::get();
|
80 |
-
if (count($EM_People) < 1 ) {
|
81 |
-
_e("No people have responded to your events yet!", 'dbem');
|
82 |
-
} else {
|
83 |
-
?>
|
84 |
-
<p><?php _e('This table collects the data about the people who responded to your events', 'dbem') ?></p>
|
85 |
-
<table id='dbem-people-table' class='widefat post fixed'>
|
86 |
-
<thead>
|
87 |
-
<tr>
|
88 |
-
<th class='manage-column column-cb check-column' scope='col'> </th>
|
89 |
-
<th class='manage-column ' scope='col'>Name</th>
|
90 |
-
<th scope='col'>E-mail</th>
|
91 |
-
<th scope='col'>Phone number</th>
|
92 |
-
</tr>
|
93 |
-
</thead>
|
94 |
-
<tfoot>
|
95 |
-
<tr>
|
96 |
-
<th class='manage-column column-cb check-column' scope='col'> </th>
|
97 |
-
<th class='manage-column ' scope='col'>Name</th>
|
98 |
-
<th scope='col'>E-mail</th>
|
99 |
-
<th scope='col'>Phone number</th>
|
100 |
-
</tr>
|
101 |
-
</tfoot>
|
102 |
-
<?php foreach ($EM_People as $EM_Person): ?>
|
103 |
-
<tr>
|
104 |
-
<td> </td>
|
105 |
-
<td><?php echo $EM_Person->name ?></td>
|
106 |
-
<td><?php echo $EM_Person->email ?></td>
|
107 |
-
<td><?php echo $EM_Person->phone ?></td>
|
108 |
-
</tr>
|
109 |
-
<?php endforeach; ?>
|
110 |
-
</table>
|
111 |
-
<?php
|
112 |
-
}
|
113 |
-
?>
|
114 |
-
</div>
|
115 |
-
<?php
|
116 |
-
}
|
117 |
-
|
118 |
function em_printable_booking_report() {
|
119 |
global $EM_Event;
|
120 |
//check that user can access this page
|
121 |
if( isset($_GET['page']) && $_GET['page']=='events-manager-bookings' && isset($_GET['action']) && $_GET['action'] == 'bookings_report' && is_object($EM_Event)){
|
122 |
-
if( is_object($EM_Event) && !$EM_Event->can_manage() ){
|
123 |
?>
|
124 |
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this event.','dbem'); ?></p></div>
|
125 |
<?php
|
126 |
return false;
|
127 |
}
|
128 |
-
|
129 |
-
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN"
|
130 |
-
"http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
|
131 |
-
<html>
|
132 |
-
<head>
|
133 |
-
<meta http-equiv="Content-type" content="text/html; charset=utf-8" />
|
134 |
-
<title>Bookings for <?php echo $EM_Event->name; ?></title>
|
135 |
-
<link rel="stylesheet" href="<?php echo bloginfo('wpurl') ?>/wp-content/plugins/events-manager/includes/css/events_manager.css" type="text/css" media="screen" />
|
136 |
-
</head>
|
137 |
-
<body id="printable">
|
138 |
-
<div id="container">
|
139 |
-
<h1>Bookings for <?php echo $EM_Event->name; ?></h1>
|
140 |
-
<p><?php echo $EM_Event->output("#d #M #Y"); ?></p>
|
141 |
-
<p><?php echo $EM_Event->output("#_LOCATION, #_ADDRESS, #_TOWN"); ?></p>
|
142 |
-
<h2><?php _e('Bookings data', 'dbem');?></h2>
|
143 |
-
<table id="bookings-table">
|
144 |
-
<tr>
|
145 |
-
<th scope='col'><?php _e('Name', 'dbem')?></th>
|
146 |
-
<th scope='col'><?php _e('E-mail', 'dbem')?></th>
|
147 |
-
<th scope='col'><?php _e('Phone number', 'dbem')?></th>
|
148 |
-
<th scope='col'><?php _e('Seats', 'dbem')?></th>
|
149 |
-
<th scope='col'><?php _e('Comment', 'dbem')?></th>
|
150 |
-
</tr>
|
151 |
-
<?php foreach($EM_Event->get_bookings()->bookings as $EM_Booking) { ?>
|
152 |
-
<tr>
|
153 |
-
|
154 |
-
<td><?php echo $EM_Booking->person->name ?></td>
|
155 |
-
<td><?php echo $EM_Booking->person->email ?></td>
|
156 |
-
<td><?php echo $EM_Booking->person->phone ?></td>
|
157 |
-
<td class='seats-number'><?php echo $EM_Booking->seats ?></td>
|
158 |
-
<td><?php echo $EM_Booking->comment ?></td>
|
159 |
-
</tr>
|
160 |
-
<?php } ?>
|
161 |
-
<tr id='booked-seats'>
|
162 |
-
<td colspan='3'> </td>
|
163 |
-
<td class='total-label'><?php _e('Booked', 'dbem')?>:</td>
|
164 |
-
<td class='seats-number'><?php echo $EM_Event->get_bookings()->get_booked_seats(); ?></td>
|
165 |
-
</tr>
|
166 |
-
<tr id='available-seats'>
|
167 |
-
<td colspan='3'> </td>
|
168 |
-
<td class='total-label'><?php _e('Available', 'dbem')?>:</td>
|
169 |
-
<td class='seats-number'><?php echo $EM_Event->get_bookings()->get_available_seats(); ?></td>
|
170 |
-
</tr>
|
171 |
-
</table>
|
172 |
-
</div>
|
173 |
-
</body>
|
174 |
-
</html>
|
175 |
-
<?php
|
176 |
die();
|
177 |
}
|
178 |
}
|
1 |
<?php
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
2 |
function em_printable_booking_report() {
|
3 |
global $EM_Event;
|
4 |
//check that user can access this page
|
5 |
if( isset($_GET['page']) && $_GET['page']=='events-manager-bookings' && isset($_GET['action']) && $_GET['action'] == 'bookings_report' && is_object($EM_Event)){
|
6 |
+
if( is_object($EM_Event) && !$EM_Event->can_manage('edit_events','edit_others_events') ){
|
7 |
?>
|
8 |
<div class="wrap"><h2><?php _e('Unauthorized Access','dbem'); ?></h2><p><?php _e('You do not have the rights to manage this event.','dbem'); ?></p></div>
|
9 |
<?php
|
10 |
return false;
|
11 |
}
|
12 |
+
em_locate_template('templates/bookings-event-printable.php', true);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
13 |
die();
|
14 |
}
|
15 |
}
|
buddypress/bp-em-activity.php
ADDED
@@ -0,0 +1,142 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* bp_em_record_activity()
|
4 |
+
*
|
5 |
+
* If the activity stream component is installed, this function will record activity items for your
|
6 |
+
* component.
|
7 |
+
*
|
8 |
+
* You must pass the function an associated array of arguments:
|
9 |
+
*
|
10 |
+
* $args = array(
|
11 |
+
* REQUIRED PARAMS
|
12 |
+
* 'action' => For em: "Andy high-fived John", "Andy posted a new update".
|
13 |
+
* 'type' => The type of action being carried out, for em 'new_friendship', 'joined_group'. This should be unique within your component.
|
14 |
+
*
|
15 |
+
* OPTIONAL PARAMS
|
16 |
+
* 'id' => The ID of an existing activity item that you want to update.
|
17 |
+
* 'content' => The content of your activity, if it has any, for em a photo, update content or blog post excerpt.
|
18 |
+
* 'component' => The slug of the component.
|
19 |
+
* 'primary_link' => The link for the title of the item when appearing in RSS feeds (defaults to the activity permalink)
|
20 |
+
* 'item_id' => The ID of the main piece of data being recorded, for em a group_id, user_id, forum_post_id - useful for filtering and deleting later on.
|
21 |
+
* 'user_id' => The ID of the user that this activity is being recorded for. Pass false if it's not for a user.
|
22 |
+
* 'recorded_time' => (optional) The time you want to set as when the activity was carried out (defaults to now)
|
23 |
+
* 'hide_sitewide' => Should this activity item appear on the site wide stream?
|
24 |
+
* 'secondary_item_id' => (optional) If the activity is more complex you may need a second ID. For em a group forum post may need the group_id AND the forum_post_id.
|
25 |
+
* )
|
26 |
+
*
|
27 |
+
* Events usage would be:
|
28 |
+
*
|
29 |
+
* bp_em_record_activity( array( 'type' => 'new_highfive', 'action' => 'Andy high-fived John', 'user_id' => $bp->loggedin_user->id, 'item_id' => $bp->displayed_user->id ) );
|
30 |
+
*
|
31 |
+
*/
|
32 |
+
function bp_em_record_activity( $args = '' ) {
|
33 |
+
if ( !function_exists( 'bp_activity_add' ) )
|
34 |
+
return false;
|
35 |
+
|
36 |
+
$defaults = array(
|
37 |
+
'id' => false,
|
38 |
+
'user_id' => '',
|
39 |
+
'action' => '',
|
40 |
+
'content' => '',
|
41 |
+
'primary_link' => '',
|
42 |
+
'component' => 'events-manager',
|
43 |
+
'type' => false,
|
44 |
+
'item_id' => false,
|
45 |
+
'secondary_item_id' => false,
|
46 |
+
'recorded_time' => gmdate( "Y-m-d H:i:s" ),
|
47 |
+
'hide_sitewide' => false
|
48 |
+
);
|
49 |
+
|
50 |
+
$r = wp_parse_args( $args, $defaults );
|
51 |
+
extract( $r );
|
52 |
+
|
53 |
+
return bp_activity_add( array( 'id' => $id, 'user_id' => $user_id, 'action' => $action, 'content' => $content, 'primary_link' => $primary_link, 'component' => $component, 'type' => $type, 'item_id' => $item_id, 'secondary_item_id' => $secondary_item_id, 'recorded_time' => $recorded_time, 'hide_sitewide' => $hide_sitewide ) );
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* Records new events to the activity stream.
|
58 |
+
* @param unknown_type $result
|
59 |
+
* @param unknown_type $EM_Event
|
60 |
+
* @return unknown
|
61 |
+
*/
|
62 |
+
function bp_em_record_activity_event_save( $result, $EM_Event ){
|
63 |
+
if( $result && $EM_Event->status == 1 && ($EM_Event->previous_status == 0 || !empty($EM_Event->is_new)) ){
|
64 |
+
$user = get_userdata($EM_Event->owner);
|
65 |
+
bp_em_record_activity( array(
|
66 |
+
'user_id' => $user->ID,
|
67 |
+
'action' => sprintf(__('%s added the event %s','dbem'), "<a href='".get_bloginfo('wpurl').'/'.BP_MEMBERS_SLUG.'/'.$user->user_login."/'>".$user->display_name."</a>", $EM_Event->output('#_EVENTLINK') ),
|
68 |
+
'primary_link' => $EM_Event->output('#_EVENTURL'),
|
69 |
+
'type' => 'new_event',
|
70 |
+
'item_id' => $EM_Event->id,
|
71 |
+
));
|
72 |
+
//group activity
|
73 |
+
if( !empty($EM_Event->group_id) ){
|
74 |
+
//tis a group event
|
75 |
+
$group = new BP_Groups_Group($EM_Event->group_id);
|
76 |
+
bp_em_record_activity( array(
|
77 |
+
'user_id' => $user->ID,
|
78 |
+
'action' => sprintf(__('%s added the event %s of the %s group.','dbem'), "<a href='".get_bloginfo('wpurl').'/'.BP_MEMBERS_SLUG.'/'.$user->user_login."/'>".$user->display_name."</a>", $EM_Event->output('#_EVENTLINK'), '<a href="'.bp_get_group_permalink($group).'">'.bp_get_group_name($group).'</a>' ),
|
79 |
+
'component' => 'groups',
|
80 |
+
'type' => 'new_event',
|
81 |
+
'item_id' => $EM_Event->group_id,
|
82 |
+
));
|
83 |
+
}
|
84 |
+
}
|
85 |
+
return $result;
|
86 |
+
}
|
87 |
+
add_filter('em_event_save','bp_em_record_activity_event_save', 10, 2);
|
88 |
+
|
89 |
+
/**
|
90 |
+
* @param boolean $result
|
91 |
+
* @param EM_Booking $EM_Booking
|
92 |
+
* @return boolean
|
93 |
+
*/
|
94 |
+
function bp_em_record_activity_booking_save( $result, $EM_Booking ){
|
95 |
+
if( $result ){
|
96 |
+
$user = $EM_Booking->person;
|
97 |
+
$user_link = "<a href='".get_bloginfo('wpurl').'/'.BP_MEMBERS_SLUG.'/'.$user->user_login."/'>".$user->display_name."</a>";
|
98 |
+
$event_link = $EM_Booking->get_event()->output('#_EVENTLINK');
|
99 |
+
$status = $EM_Booking->status;
|
100 |
+
if( $status == 1 || (!get_option('dbem_bookings_approval') && $status < 2) ){
|
101 |
+
$action = sprintf(__('%s is attending %s.','dbem'), $user_link, $event_link );
|
102 |
+
}elseif( ($EM_Booking->previous_status == 1 || (!get_option('dbem_bookings_approval') && $EM_Booking->previous_status < 2)) && ($status > 1 || empty($status) || (!get_option('dbem_bookings_approval') && $status != 1)) ){
|
103 |
+
$action = sprintf(__('%s will not be attending %s anymore.','dbem'), $user_link, $event_link );
|
104 |
+
}
|
105 |
+
$EM_Event = $EM_Booking->get_event();
|
106 |
+
if( !empty($EM_Event->group_id) ){
|
107 |
+
$group = new BP_Groups_Group($EM_Event->group_id);
|
108 |
+
$group_link = '<a href="'.bp_get_group_permalink($group).'">'.bp_get_group_name($group).'</a>';
|
109 |
+
if( $status == 1 || (!get_option('dbem_bookings_approval') && $status < 2) ){
|
110 |
+
$action = sprintf(__('%s is attending %s of the group %s.','dbem'), $user_link, $event_link, $group_link );
|
111 |
+
}elseif( ($EM_Booking->previous_status == 1 || (!get_option('dbem_bookings_approval') && $EM_Booking->previous_status < 2)) && ($status > 1 || empty($status) || (!get_option('dbem_bookings_approval') && $status != 1)) ){
|
112 |
+
$action = sprintf(__('%s will not be attending %s of group %s anymore.','dbem'), $user_link, $event_link, $group_link );
|
113 |
+
}
|
114 |
+
}
|
115 |
+
if( !empty($action) ){
|
116 |
+
bp_em_record_activity( array(
|
117 |
+
'user_id' => $EM_Booking->person->ID,
|
118 |
+
'action' => $action,
|
119 |
+
'primary_link' => $EM_Event->output('#_EVENTURL'),
|
120 |
+
'type' => 'new_booking',
|
121 |
+
'item_id' => $EM_Event->id,
|
122 |
+
'secondary_item_id' => $EM_Booking->id
|
123 |
+
));
|
124 |
+
//group activity
|
125 |
+
if( !empty($EM_Event->group_id) ){
|
126 |
+
//tis a group event
|
127 |
+
bp_em_record_activity( array(
|
128 |
+
'component' => 'groups',
|
129 |
+
'item_id' => $EM_Event->group_id,
|
130 |
+
'user_id' => $EM_Booking->person->ID,
|
131 |
+
'action' => $action,
|
132 |
+
'primary_link' => $EM_Event->output('#_EVENTURL'),
|
133 |
+
'type' => 'new_booking',
|
134 |
+
'secondary_item_id' => $EM_Booking->id
|
135 |
+
));
|
136 |
+
}
|
137 |
+
}
|
138 |
+
}
|
139 |
+
return $result;
|
140 |
+
}
|
141 |
+
add_filter('em_booking_save','bp_em_record_activity_booking_save', 10, 2);
|
142 |
+
add_filter('em_booking_delete','bp_em_record_activity_booking_save', 10, 2);
|
buddypress/bp-em-admin.php
ADDED
@@ -0,0 +1,65 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/***
|
4 |
+
* This file is used to add site administration menus to the WordPress backend.
|
5 |
+
*
|
6 |
+
* If you need to provide configuration options for your component that can only
|
7 |
+
* be modified by a site administrator, this is the best place to do it.
|
8 |
+
*
|
9 |
+
* However, if your component has settings that need to be configured on a user
|
10 |
+
* by user basis - it's best to hook into the front end "Settings" menu.
|
11 |
+
*/
|
12 |
+
|
13 |
+
/**
|
14 |
+
* bp_em_admin()
|
15 |
+
*
|
16 |
+
* Checks for form submission, saves component settings and outputs admin screen HTML.
|
17 |
+
*/
|
18 |
+
function bp_em_admin() {
|
19 |
+
global $bp;
|
20 |
+
|
21 |
+
/* If the form has been submitted and the admin referrer checks out, save the settings */
|
22 |
+
if ( isset( $_POST['submit'] ) && check_admin_referer('em-settings') ) {
|
23 |
+
update_option( 'em-setting-one', $_POST['em-setting-one'] );
|
24 |
+
update_option( 'em-setting-two', $_POST['em-setting-two'] );
|
25 |
+
|
26 |
+
$updated = true;
|
27 |
+
}
|
28 |
+
|
29 |
+
$setting_one = get_option( 'em-setting-one' );
|
30 |
+
$setting_two = get_option( 'em-setting-two' );
|
31 |
+
?>
|
32 |
+
<div class="wrap">
|
33 |
+
<h2><?php _e( 'Events Admin', 'dbem' ) ?></h2>
|
34 |
+
<br />
|
35 |
+
|
36 |
+
<?php if ( isset($updated) ) : ?><?php echo "<div id='message' class='updated fade'><p>" . __( 'Settings Updated.', 'dbem' ) . "</p></div>" ?><?php endif; ?>
|
37 |
+
|
38 |
+
<form action="<?php echo site_url() . '/wp-admin/admin.php?page=bp-em-settings' ?>" name="em-settings-form" id="em-settings-form" method="post">
|
39 |
+
|
40 |
+
<table class="form-table">
|
41 |
+
<tr valign="top">
|
42 |
+
<th scope="row"><label for="target_uri"><?php _e( 'Option One', 'dbem' ) ?></label></th>
|
43 |
+
<td>
|
44 |
+
<input name="em-setting-one" type="text" id="em-setting-one" value="<?php echo attribute_escape( $setting_one ); ?>" size="60" />
|
45 |
+
</td>
|
46 |
+
</tr>
|
47 |
+
<th scope="row"><label for="target_uri"><?php _e( 'Option Two', 'dbem' ) ?></label></th>
|
48 |
+
<td>
|
49 |
+
<input name="em-setting-two" type="text" id="em-setting-two" value="<?php echo attribute_escape( $setting_two ); ?>" size="60" />
|
50 |
+
</td>
|
51 |
+
</tr>
|
52 |
+
</table>
|
53 |
+
<p class="submit">
|
54 |
+
<input type="submit" name="submit" value="<?php _e( 'Save Settings', 'dbem' ) ?>"/>
|
55 |
+
</p>
|
56 |
+
|
57 |
+
<?php
|
58 |
+
/* This is very important, don't leave it out. */
|
59 |
+
wp_nonce_field( 'em-settings' );
|
60 |
+
?>
|
61 |
+
</form>
|
62 |
+
</div>
|
63 |
+
<?php
|
64 |
+
}
|
65 |
+
?>
|
buddypress/bp-em-core.php
ADDED
@@ -0,0 +1,237 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
// Define a slug constant that will be used to view this components pages
|
3 |
+
if ( !defined( 'BP_EM_SLUG' ) )
|
4 |
+
define ( 'BP_EM_SLUG', 'events' );
|
5 |
+
|
6 |
+
//Include component files
|
7 |
+
require ( dirname( __FILE__ ) . '/bp-em-activity.php' ); /* The notifications file should contain functions to send email notifications on specific user actions */
|
8 |
+
require ( dirname( __FILE__ ) . '/bp-em-templatetags.php' ); /* The templatetags file should contain classes and functions designed for use in template files */
|
9 |
+
require ( dirname( __FILE__ ) . '/bp-em-notifications.php' ); /* The notifications file should contain functions to send email notifications on specific user actions */
|
10 |
+
require ( dirname( __FILE__ ) . '/bp-em-groups.php' ); /* The notifications file should contain functions to send email notifications on specific user actions */
|
11 |
+
//Screens
|
12 |
+
include( dirname( __FILE__ ). '/screens/settings.php');
|
13 |
+
include( dirname( __FILE__ ). '/screens/profile.php');
|
14 |
+
include( dirname( __FILE__ ). '/screens/my-events.php');
|
15 |
+
include( dirname( __FILE__ ). '/screens/my-locations.php');
|
16 |
+
include( dirname( __FILE__ ). '/screens/attending.php');
|
17 |
+
include( dirname( __FILE__ ). '/screens/my-bookings.php');
|
18 |
+
include( dirname( __FILE__ ). '/screens/my-group-events.php');
|
19 |
+
include( dirname( __FILE__ ). '/screens/group-events.php');
|
20 |
+
|
21 |
+
|
22 |
+
/**
|
23 |
+
* bp_em_setup_globals()
|
24 |
+
*
|
25 |
+
* Sets up global variables for your component.
|
26 |
+
*/
|
27 |
+
function bp_em_setup_globals() {
|
28 |
+
global $bp, $wpdb;
|
29 |
+
$bp->events = new stdClass();
|
30 |
+
$bp->events->id = 'events';
|
31 |
+
//$bp->events->table_name = $wpdb->base_prefix . 'bp_em';
|
32 |
+
$bp->events->format_notification_function = 'bp_em_format_notifications';
|
33 |
+
$bp->events->slug = BP_EM_SLUG;
|
34 |
+
/* Register this in the active components array */
|
35 |
+
$bp->active_components[$bp->events->slug] = $bp->events->id;
|
36 |
+
//quick link shortcut
|
37 |
+
$bp->events->link = trailingslashit($bp->loggedin_user->domain).'events/';
|
38 |
+
}
|
39 |
+
add_action( 'wp', 'bp_em_setup_globals', 2 );
|
40 |
+
//add_action( 'admin_menu', 'bp_em_setup_globals', 2 );
|
41 |
+
|
42 |
+
/**
|
43 |
+
* bp_em_setup_nav()
|
44 |
+
*
|
45 |
+
* Sets up the user profile navigation items for the component. This adds the top level nav
|
46 |
+
* item and all the sub level nav items to the navigation array. This is then
|
47 |
+
* rendered in the template.
|
48 |
+
*/
|
49 |
+
function bp_em_setup_nav() {
|
50 |
+
global $bp, $blog_id;
|
51 |
+
$count = 0;
|
52 |
+
//check multisite or normal mode for correct permission checking
|
53 |
+
if(is_multisite() && $blog_id != BP_ROOT_BLOG){
|
54 |
+
//FIXME MS mode doesn't seem to recognize cross subsite caps, using the proper functions, for now we use switch_blog.
|
55 |
+
$current_blog = $blog_id;
|
56 |
+
switch_to_blog(BP_ROOT_BLOG);
|
57 |
+
$can_manage_events = current_user_can_for_blog(BP_ROOT_BLOG, 'edit_events');
|
58 |
+
$can_manage_locations = current_user_can_for_blog(BP_ROOT_BLOG, 'edit_locations');
|
59 |
+
$can_manage_bookings = current_user_can_for_blog(BP_ROOT_BLOG, 'manage_bookings');
|
60 |
+
switch_to_blog($current_blog);
|
61 |
+
}else{
|
62 |
+
$can_manage_events = current_user_can('edit_events');
|
63 |
+
$can_manage_locations = current_user_can('edit_locations');
|
64 |
+
$can_manage_bookings = current_user_can('manage_bookings');
|
65 |
+
}
|
66 |
+
if( empty($bp->events) ) bp_em_setup_globals();
|
67 |
+
/* Add 'Events' to the main user profile navigation */
|
68 |
+
bp_core_new_nav_item( array(
|
69 |
+
'name' => __( 'Events', 'dbem' ),
|
70 |
+
'slug' => $bp->events->slug,
|
71 |
+
'position' => 80,
|
72 |
+
'screen_function' => (bp_is_my_profile() && $can_manage_events) ? 'bp_em_my_events':'bp_em_events',
|
73 |
+
'default_subnav_slug' => bp_is_my_profile() ? 'my-events':''
|
74 |
+
) );
|
75 |
+
|
76 |
+
$em_link = $bp->loggedin_user->domain . $bp->events->slug . '/';
|
77 |
+
|
78 |
+
/* Create two sub nav items for this component */
|
79 |
+
bp_core_new_subnav_item( array(
|
80 |
+
'name' => __( 'My Profile', 'dbem' ),
|
81 |
+
'slug' => 'profile',
|
82 |
+
'parent_slug' => $bp->events->slug,
|
83 |
+
'parent_url' => $em_link,
|
84 |
+
'screen_function' => 'bp_em_events',
|
85 |
+
'position' => 10,
|
86 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
87 |
+
) );
|
88 |
+
|
89 |
+
bp_core_new_subnav_item( array(
|
90 |
+
'name' => __( 'Events I\'m Attending', 'dbem' ),
|
91 |
+
'slug' => 'attending',
|
92 |
+
'parent_slug' => $bp->events->slug,
|
93 |
+
'parent_url' => $em_link,
|
94 |
+
'screen_function' => 'bp_em_attending',
|
95 |
+
'position' => 20,
|
96 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
97 |
+
) );
|
98 |
+
|
99 |
+
if( $can_manage_events ){
|
100 |
+
bp_core_new_subnav_item( array(
|
101 |
+
'name' => __( 'My Events', 'dbem' ),
|
102 |
+
'slug' => 'my-events',
|
103 |
+
'parent_slug' => $bp->events->slug,
|
104 |
+
'parent_url' => $em_link,
|
105 |
+
'screen_function' => 'bp_em_my_events',
|
106 |
+
'position' => 30,
|
107 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
108 |
+
) );
|
109 |
+
}
|
110 |
+
|
111 |
+
if( $can_manage_locations ){
|
112 |
+
bp_core_new_subnav_item( array(
|
113 |
+
'name' => __( 'My Locations', 'dbem' ),
|
114 |
+
'slug' => 'my-locations',
|
115 |
+
'parent_slug' => $bp->events->slug,
|
116 |
+
'parent_url' => $em_link,
|
117 |
+
'screen_function' => 'bp_em_my_locations',
|
118 |
+
'position' => 40,
|
119 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
120 |
+
) );
|
121 |
+
}
|
122 |
+
|
123 |
+
if( $can_manage_bookings ){
|
124 |
+
bp_core_new_subnav_item( array(
|
125 |
+
'name' => __( 'My Event Bookings', 'dbem' ),
|
126 |
+
'slug' => 'my-bookings',
|
127 |
+
'parent_slug' => $bp->events->slug,
|
128 |
+
'parent_url' => $em_link,
|
129 |
+
'screen_function' => 'bp_em_my_bookings',
|
130 |
+
'position' => 50,
|
131 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
132 |
+
) );
|
133 |
+
}
|
134 |
+
|
135 |
+
/* Add a nav item for this component under the settings nav item. */
|
136 |
+
bp_core_new_subnav_item( array(
|
137 |
+
'name' => __( 'Events', 'dbem' ),
|
138 |
+
'slug' => 'group-events',
|
139 |
+
'parent_slug' => $bp->groups->slug,
|
140 |
+
'parent_url' => $bp->loggedin_user->domain . $bp->groups->slug . '/',
|
141 |
+
'screen_function' => 'bp_em_my_group_events',
|
142 |
+
'position' => 60,
|
143 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
144 |
+
) );
|
145 |
+
|
146 |
+
/* Add a nav item for this component under the settings nav item. */
|
147 |
+
bp_core_new_subnav_item( array(
|
148 |
+
'name' => __( 'Events', 'dbem' ),
|
149 |
+
'slug' => 'events-settings',
|
150 |
+
'parent_slug' => $bp->settings->slug,
|
151 |
+
'parent_url' => $bp->loggedin_user->domain . $bp->settings->slug . '/',
|
152 |
+
'screen_function' => 'bp_em_screen_settings_menu',
|
153 |
+
'position' => 40,
|
154 |
+
'user_has_access' => bp_is_my_profile() // Only the logged in user can access this on his/her profile
|
155 |
+
) );
|
156 |
+
|
157 |
+
|
158 |
+
/* Create two sub nav items for this component */
|
159 |
+
$user_access = false;
|
160 |
+
$group_link = '';
|
161 |
+
if( !empty($bp->groups->current_group) ){
|
162 |
+
$group_link = $bp->root_domain . '/' . $bp->groups->slug . '/' . $bp->groups->current_group->slug . '/';
|
163 |
+
$user_access = $bp->groups->current_group->user_has_access;
|
164 |
+
if( !empty($bp->current_component) && $bp->current_component == 'groups' ){
|
165 |
+
$count = EM_Events::count(array('group'=>$bp->groups->current_group->id));
|
166 |
+
if( empty($count) ) $count = 0;
|
167 |
+
}
|
168 |
+
bp_core_new_subnav_item( array(
|
169 |
+
'name' => sprintf(__( 'Events (%s)', 'dbem' ), $count),
|
170 |
+
'slug' => 'events',
|
171 |
+
'parent_url' => $group_link,
|
172 |
+
'parent_slug' => $bp->groups->current_group->slug,
|
173 |
+
'screen_function' => 'bp_em_group_events',
|
174 |
+
'position' => 50,
|
175 |
+
'user_has_access' => $user_access,
|
176 |
+
'item_css_id' => 'forums'
|
177 |
+
));
|
178 |
+
}
|
179 |
+
}
|
180 |
+
|
181 |
+
/***
|
182 |
+
* In versions of BuddyPress 1.2.2 and newer you will be able to use:
|
183 |
+
* add_action( 'bp_setup_nav', 'bp_example_setup_nav' );
|
184 |
+
*/
|
185 |
+
add_action( 'wp', 'bp_em_setup_nav', 2 );
|
186 |
+
add_action( 'admin_menu', 'bp_em_setup_nav', 2 );
|
187 |
+
|
188 |
+
|
189 |
+
function em_bp_rewrite_links($replace, $object, $result){
|
190 |
+
global $bp;
|
191 |
+
if( is_object($object) && get_class($object)=='EM_Event' ){
|
192 |
+
switch( $result ){
|
193 |
+
case '#_EDITEVENTURL':
|
194 |
+
case '#_EDITEVENTLINK':
|
195 |
+
if( $object->can_manage('edit_events','edit_others_events') && !is_admin() ){
|
196 |
+
$replace = $bp->events->link.'my-events/edit/?event_id='.$object->id;
|
197 |
+
if($result == '#_EDITEVENTLINK'){
|
198 |
+
$replace = "<a href='".$replace."'>".__('Edit', 'dbem').' '.__('Event', 'dbem')."</a>";
|
199 |
+
}
|
200 |
+
}
|
201 |
+
break;
|
202 |
+
case '#_BOOKINGSLINK':
|
203 |
+
case '#_BOOKINGSURL':
|
204 |
+
if( $object->can_manage('manage_bookings','manage_others_bookings') && !is_admin() ){
|
205 |
+
$replace = $bp->events->link.'my-bookings/?event_id='.$object->id;
|
206 |
+
if($result == '#_BOOKINGSLINK'){
|
207 |
+
$replace = "<a href='{$replace}' title='{$object->name}'>{$object->name}</a>";
|
208 |
+
}
|
209 |
+
}
|
210 |
+
break;
|
211 |
+
}
|
212 |
+
}
|
213 |
+
return $replace;
|
214 |
+
}
|
215 |
+
add_filter('em_event_output_placeholder','em_bp_rewrite_links',10,3);
|
216 |
+
|
217 |
+
/**
|
218 |
+
* Remove a screen notification for a user.
|
219 |
+
*/
|
220 |
+
function bp_em_remove_screen_notifications() {
|
221 |
+
global $bp;
|
222 |
+
bp_core_delete_notifications_for_user_by_type( $bp->loggedin_user->id, $bp->events->slug, 'attending' );
|
223 |
+
}
|
224 |
+
add_action( 'bp_em_my_events', 'bp_em_remove_screen_notifications' );
|
225 |
+
add_action( 'xprofile_screen_display_profile', 'bp_em_remove_screen_notifications' );
|
226 |
+
|
227 |
+
/**
|
228 |
+
* Delete events when you delete a user.
|
229 |
+
*/
|
230 |
+
function bp_em_remove_data( $user_id ) {
|
231 |
+
$EM_Events = EM_Events::get(array('scope'=>'all','owner'=>$user_id, 'status'=>false));
|
232 |
+
EM_Events::delete($EM_Events);
|
233 |
+
}
|
234 |
+
add_action( 'wpmu_delete_user', 'bp_em_remove_data', 1 );
|
235 |
+
add_action( 'delete_user', 'bp_em_remove_data', 1 );
|
236 |
+
|
237 |
+
?>
|
buddypress/bp-em-groups.php
ADDED
@@ -0,0 +1,57 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* @param EM_Event $EM_Event
|
4 |
+
*/
|
5 |
+
function bp_em_group_event_save($EM_Event){
|
6 |
+
if( is_object($EM_Event) && empty($EM_Event->group_id) && !empty($_REQUEST['group_id']) && is_numeric($_REQUEST['group_id']) ){
|
7 |
+
//we have been requested an event creation tied to a group, so does this group exist, and does this person have admin rights to it?
|
8 |
+
if( groups_is_user_admin(get_current_user_id(), $_REQUEST['group_id']) ){
|
9 |
+
$EM_Event->group_id = $_REQUEST['group_id'];
|
10 |
+
}
|
11 |
+
}
|
12 |
+
return $EM_Event;
|
13 |
+
}
|
14 |
+
add_action('em_event_save_pre','bp_em_group_event_save',1,1);
|
15 |
+
|
16 |
+
/**
|
17 |
+
* @param boolean $result
|
18 |
+
* @param EM_Event $EM_Event
|
19 |
+
*/
|
20 |
+
function bp_em_group_event_can_manage( $result, $EM_Event){
|
21 |
+
if( !$result && !empty($EM_Event->group_id) ){ //only override if already false, incase it's true
|
22 |
+
if( groups_is_user_admin(get_current_user_id(),$EM_Event->group_id) && current_user_can('edit_events') ){
|
23 |
+
//This user is an admin of the owner's group, so they can edit this event.
|
24 |
+
return true;
|
25 |
+
}
|
26 |
+
}
|
27 |
+
return $result;
|
28 |
+
}
|
29 |
+
add_action('em_event_can_manage','bp_em_group_event_can_manage',1,2);
|
30 |
+
|
31 |
+
|
32 |
+
function bp_em_group_events_accepted_searches($searches){
|
33 |
+
$searches[] = 'group';
|
34 |
+
return $searches;
|
35 |
+
}
|
36 |
+
add_filter('em_accepted_searches','bp_em_group_events_accepted_searches',1,1);
|
37 |
+
|
38 |
+
function bp_em_group_events_get_default_search($searches, $array){
|
39 |
+
if( !empty($array['group']) && (is_numeric($array['group']) || $array['group'] == 'my') ){
|
40 |
+
$searches['group'] = $array['group'];
|
41 |
+
}
|
42 |
+
return $searches;
|
43 |
+
}
|
44 |
+
add_filter('em_events_get_default_search','bp_em_group_events_get_default_search',1,2);
|
45 |
+
|
46 |
+
function bp_em_group_events_build_sql_conditions( $conditions, $args ){
|
47 |
+
if( !empty($args['group']) && is_numeric($args['group']) ){
|
48 |
+
$conditions['group'] = "( `group_id`={$args['group']} )";
|
49 |
+
}elseif( !empty($args['group']) && $args['group'] == 'my' ){
|
50 |
+
$groups = groups_get_user_groups(get_current_user_id());
|
51 |
+
if( count($groups) > 0 ){
|
52 |
+
$conditions['group'] = "( `group_id` IN (".implode(',',$groups['groups']).") )";
|
53 |
+
}
|
54 |
+
}
|
55 |
+
return $conditions;
|
56 |
+
}
|
57 |
+
add_filter('em_events_build_sql_conditions','bp_em_group_events_build_sql_conditions',1,2);
|
buddypress/bp-em-notifications.php
ADDED
@@ -0,0 +1,135 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/********************************************************************************
|
4 |
+
* Activity & Notification Functions
|
5 |
+
*
|
6 |
+
* These functions handle the recording, deleting and formatting of activity and
|
7 |
+
* notifications for the user and for this specific component.
|
8 |
+
*/
|
9 |
+
/**
|
10 |
+
* bp_em_screen_notification_settings()
|
11 |
+
*
|
12 |
+
* Adds notification settings for the component, so that a user can turn off email
|
13 |
+
* notifications set on specific component actions.
|
14 |
+
*/
|
15 |
+
function bp_em_screen_notification_settings() {
|
16 |
+
global $current_user;
|
17 |
+
|
18 |
+
/**
|
19 |
+
* Under Settings > Notifications within a users profile page they will see
|
20 |
+
* settings to turn off notifications for each component.
|
21 |
+
*
|
22 |
+
* You can plug your custom notification settings into this page, so that when your
|
23 |
+
* component is active, the user will see options to turn off notifications that are
|
24 |
+
* specific to your component.
|
25 |
+
*/
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Each option is stored in a posted array notifications[SETTING_NAME]
|
29 |
+
* When saved, the SETTING_NAME is stored as usermeta for that user.
|
30 |
+
*
|
31 |
+
* For em, notifications[notification_friends_friendship_accepted] could be
|
32 |
+
* used like this:
|
33 |
+
*
|
34 |
+
* if ( 'no' == get_usermeta( $bp['loggedin_userid'], 'notification_friends_friendship_accepted' ) )
|
35 |
+
* // don't send the email notification
|
36 |
+
* else
|
37 |
+
* // send the email notification.
|
38 |
+
*/
|
39 |
+
|
40 |
+
?>
|
41 |
+
<table class="notification-settings" id="bp-em-notification-settings">
|
42 |
+
<tr>
|
43 |
+
<th class="icon"></th>
|
44 |
+
<th class="title"><?php _e( 'Events', 'dbem' ) ?></th>
|
45 |
+
<th class="yes"><?php _e( 'Yes', 'dbem' ) ?></th>
|
46 |
+
<th class="no"><?php _e( 'No', 'dbem' )?></th>
|
47 |
+
</tr>
|
48 |
+
<tr>
|
49 |
+
<td></td>
|
50 |
+
<td><?php _e( 'Action One', 'dbem' ) ?></td>
|
51 |
+
<td class="yes"><input type="radio" name="notifications[notification_em_action_one]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_em_action_one') || 'yes' == get_usermeta( $current_user->id,'notification_em_action_one') ) { ?>checked="checked" <?php } ?>/></td>
|
52 |
+
<td class="no"><input type="radio" name="notifications[notification_em_action_one]" value="no" <?php if ( get_usermeta( $current_user->id,'notification_em_action_one') == 'no' ) { ?>checked="checked" <?php } ?>/></td>
|
53 |
+
</tr>
|
54 |
+
<tr>
|
55 |
+
<td></td>
|
56 |
+
<td><?php _e( 'Action Two', 'dbem' ) ?></td>
|
57 |
+
<td class="yes"><input type="radio" name="notifications[notification_em_action_two]" value="yes" <?php if ( !get_usermeta( $current_user->id,'notification_em_action_two') || 'yes' == get_usermeta( $current_user->id,'notification_em_action_two') ) { ?>checked="checked" <?php } ?>/></td>
|
58 |
+
<td class="no"><input type="radio" name="notifications[notification_em_action_two]" value="no" <?php if ( 'no' == get_usermeta( $current_user->id,'notification_em_action_two') ) { ?>checked="checked" <?php } ?>/></td>
|
59 |
+
</tr>
|
60 |
+
|
61 |
+
<?php do_action( 'bp_em_notification_settings' ); ?>
|
62 |
+
</table>
|
63 |
+
<?php
|
64 |
+
}
|
65 |
+
//add_action( 'bp_notification_settings', 'bp_em_screen_notification_settings' );
|
66 |
+
|
67 |
+
/**
|
68 |
+
* bp_em_format_notifications()
|
69 |
+
*
|
70 |
+
* The format notification function will take DB entries for notifications and format them
|
71 |
+
* so that they can be displayed and read on the screen.
|
72 |
+
*
|
73 |
+
* Notifications are "screen" notifications, that is, they appear on the notifications menu
|
74 |
+
* in the site wide navigation bar. They are not for email notifications.
|
75 |
+
*
|
76 |
+
*
|
77 |
+
* The recording is done by using bp_core_add_notification() which you can search for in this file for
|
78 |
+
* ems of usage.
|
79 |
+
*/
|
80 |
+
function bp_em_format_notifications( $action, $item_id, $secondary_item_id, $total_items ) {
|
81 |
+
global $bp;
|
82 |
+
switch ( $action ) {
|
83 |
+
case 'pending_booking':
|
84 |
+
//Count pending bookings
|
85 |
+
if( get_option('dbem_bookings_approval')){
|
86 |
+
if ( $total_items > 1 ) {
|
87 |
+
return '<a href="' . $bp->loggedin_user->domain . $bp->events->slug . '/my-bookings/" title="' . __( 'My Bookings', 'dbem' ) . '">' . __('You have a pending booking','dbem'). '</a>';
|
88 |
+
} else {
|
89 |
+
return apply_filters( 'bp_em_format_new_booking_notification', '<a href="' . $bp->loggedin_user->domain . $bp->events->slug . '/my-bookings/" title="' . __( 'My Bookings', 'dbem' ) . '">' . sprintf(__('You have %s pending bookings','dbem'), $total_items). '</a>' );
|
90 |
+
}
|
91 |
+
}
|
92 |
+
break;
|
93 |
+
case 'confirmed_booking':
|
94 |
+
//Count pending bookings
|
95 |
+
if ( $total_items > 1 ) {
|
96 |
+
return apply_filters( 'bp_em_format_confirmed_booking_notifications', '<a href="' . $bp->loggedin_user->domain . $bp->events->slug . '/my-bookings/" title="' . __( 'My Bookings', 'dbem' ) . '">' . __('You have a confirmed booking','dbem'). '</a>' );
|
97 |
+
} else {
|
98 |
+
return apply_filters( 'bp_em_format_confirmed_booking_notification', '<a href="' . $bp->loggedin_user->domain . $bp->events->slug . '/my-bookings/" title="' . __( 'My Bookings', 'dbem' ) . '">' . sprintf(__('You have %s confirmed bookings','dbem'), $total_items). '</a>' );
|
99 |
+
}
|
100 |
+
break;
|
101 |
+
case 'cancelled_booking':
|
102 |
+
//Count pending bookings
|
103 |
+
if ( $total_items > 1 ) {
|
104 |
+
return apply_filters( 'bp_em_format_cancelled_booking_notifications', '<a href="' . $bp->loggedin_user->domain . $bp->events->slug . '/my-bookings/" title="' . __( 'My Bookings', 'dbem' ) . '">' . __('A user cancelled a booking','dbem'). '</a>' );
|
105 |
+
} else {
|
106 |
+
return apply_filters( 'bp_em_format_cancelled_booking_notification', '<a href="' . $bp->loggedin_user->domain . $bp->events->slug . '/my-bookings/" title="' . __( 'My Bookings', 'dbem' ) . '">' . sprintf(__('%s users cancelled bookings.','dbem'), $total_items). '</a>' );
|
107 |
+
}
|
108 |
+
break;
|
109 |
+
}
|
110 |
+
do_action( 'bp_em_format_notifications', $action, $item_id, $secondary_item_id, $total_items );
|
111 |
+
|
112 |
+
return false;
|
113 |
+
}
|
114 |
+
|
115 |
+
/**
|
116 |
+
* Catch booking saves and add a BP notification.
|
117 |
+
* @param boolean $result
|
118 |
+
* @param EM_Booking $EM_Booking
|
119 |
+
* @return boolean
|
120 |
+
*/
|
121 |
+
function bp_em_add_booking_notification($result, $EM_Booking){
|
122 |
+
global $bp;
|
123 |
+
if( get_option('dbem_bookings_approval') && $EM_Booking->status == 0 ){
|
124 |
+
$action = 'pending_booking';
|
125 |
+
}elseif( $EM_Booking->status == 1 || (get_option('dbem_bookings_approval') && $EM_Booking->status == 0) ){
|
126 |
+
$action = 'confirmed_booking';
|
127 |
+
}elseif( $EM_Booking->status == 3 ){
|
128 |
+
$action = 'cancelled_booking';
|
129 |
+
}
|
130 |
+
if( !empty($action) ){
|
131 |
+
bp_core_add_notification( $EM_Booking->id, $EM_Booking->get_event()->owner, 'events', $action );
|
132 |
+
}
|
133 |
+
return $result;
|
134 |
+
}
|
135 |
+
add_filter('em_booking_save','bp_em_add_booking_notification',1,2);
|
buddypress/bp-em-templatetags.php
ADDED
@@ -0,0 +1,7 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
/**
|
4 |
+
* In this file you should define template tag functions that end users can add to their template files.
|
5 |
+
* Each template tag function should echo the final data so that it will output the required information
|
6 |
+
* just by calling the function name.
|
7 |
+
*/
|
buddypress/screens/attending.php
ADDED
@@ -0,0 +1,29 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* bp_em_screen_two()
|
4 |
+
*
|
5 |
+
* Sets up and displays the screen output for the sub nav item "em/screen-two"
|
6 |
+
*/
|
7 |
+
function bp_em_attending() {
|
8 |
+
global $bp;
|
9 |
+
/**
|
10 |
+
* If the user has not Accepted or Rejected anything, then the code above will not run,
|
11 |
+
* we can continue and load the template.
|
12 |
+
*/
|
13 |
+
do_action( 'bp_em_attending' );
|
14 |
+
|
15 |
+
add_action( 'bp_template_title', 'bp_em_attending_title' );
|
16 |
+
add_action( 'bp_template_content', 'bp_em_attending_content' );
|
17 |
+
|
18 |
+
/* Finally load the plugin template file. */
|
19 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
20 |
+
}
|
21 |
+
|
22 |
+
function bp_em_attending_title() {
|
23 |
+
_e( 'Events I\'m Attending', 'dbem' );
|
24 |
+
}
|
25 |
+
|
26 |
+
function bp_em_attending_content() {
|
27 |
+
//We can use the same template as the public user interface for non bp sites
|
28 |
+
em_locate_template('templates/my-bookings.php',true);
|
29 |
+
}
|
buddypress/screens/group-events.php
ADDED
@@ -0,0 +1,30 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Controller for the event views in BP (using mvc terms here)
|
4 |
+
*/
|
5 |
+
function bp_em_group_events() {
|
6 |
+
global $bp;
|
7 |
+
do_action( 'bp_em_group_events' );
|
8 |
+
|
9 |
+
//plug into EM admin code (at least for now)
|
10 |
+
include_once(EM_DIR.'/admin/em-admin.php');
|
11 |
+
|
12 |
+
add_action( 'bp_template_title', 'bp_em_group_events_title' );
|
13 |
+
add_action( 'bp_template_content', 'bp_em_group_events_content' );
|
14 |
+
|
15 |
+
/* Finally load the plugin template file. */
|
16 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'groups/single/plugins' ) );
|
17 |
+
}
|
18 |
+
|
19 |
+
function bp_em_group_events_title() {
|
20 |
+
_e( 'Group Events', 'dbem' );
|
21 |
+
}
|
22 |
+
/**
|
23 |
+
* Determines whether to show event page or events page, and saves any updates to the event or events
|
24 |
+
* @return null
|
25 |
+
*/
|
26 |
+
function bp_em_group_events_content() {
|
27 |
+
em_locate_template('buddypress/group-events.php', true);
|
28 |
+
}
|
29 |
+
|
30 |
+
?>
|
buddypress/screens/my-bookings.php
ADDED
@@ -0,0 +1,35 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* bp_em_screen_two()
|
4 |
+
*
|
5 |
+
* Sets up and displays the screen output for the sub nav item "em/screen-two"
|
6 |
+
*/
|
7 |
+
function bp_em_my_bookings() {
|
8 |
+
global $bp, $EM_Event;
|
9 |
+
|
10 |
+
//assume any notifications here are considered viewed via this page
|
11 |
+
bp_core_delete_notifications_for_user_by_type(get_current_user_id(), 'events','pending_booking');
|
12 |
+
bp_core_delete_notifications_for_user_by_type(get_current_user_id(), 'events','confirmed_booking');
|
13 |
+
bp_core_delete_notifications_for_user_by_type(get_current_user_id(), 'events','cancelled_booking');
|
14 |
+
|
15 |
+
em_load_event();
|
16 |
+
/**
|
17 |
+
* If the user has not Accepted or Rejected anything, then the code above will not run,
|
18 |
+
* we can continue and load the template.
|
19 |
+
*/
|
20 |
+
do_action( 'bp_em_my_bookings' );
|
21 |
+
|
22 |
+
add_action( 'bp_template_title', 'bp_em_my_bookings_title' );
|
23 |
+
add_action( 'bp_template_content', 'bp_em_my_bookings_content' );
|
24 |
+
|
25 |
+
/* Finally load the plugin template file. */
|
26 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
27 |
+
}
|
28 |
+
|
29 |
+
function bp_em_my_bookings_title() {
|
30 |
+
_e( 'My Event Bookings', 'dbem' );
|
31 |
+
}
|
32 |
+
|
33 |
+
function bp_em_my_bookings_content() {
|
34 |
+
em_locate_template('buddypress/my-bookings.php',true);
|
35 |
+
}
|
buddypress/screens/my-events.php
ADDED
@@ -0,0 +1,64 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Controller for the event views in BP (using mvc terms here)
|
4 |
+
*/
|
5 |
+
function bp_em_my_events() {
|
6 |
+
global $bp, $EM_Event;
|
7 |
+
if( !is_object($EM_Event) && !empty($_REQUEST['event_id']) ){
|
8 |
+
$EM_Event = new EM_Event($_REQUEST['event_id']);
|
9 |
+
}
|
10 |
+
|
11 |
+
do_action( 'bp_em_my_events' );
|
12 |
+
|
13 |
+
//plug into EM admin code (at least for now)
|
14 |
+
include_once(EM_DIR.'/admin/em-admin.php');
|
15 |
+
em_admin_load_scripts();
|
16 |
+
add_action('wp_head','em_admin_general_script');
|
17 |
+
|
18 |
+
$template_title = 'bp_em_my_events_title';
|
19 |
+
$template_content = 'bp_em_my_events_content';
|
20 |
+
|
21 |
+
if( count($bp->action_variables) > 0 ){
|
22 |
+
if( !empty($bp->action_variables[0]) ){
|
23 |
+
switch($bp->action_variables[0]){
|
24 |
+
case 'edit':
|
25 |
+
$template_title = 'bp_em_my_events_editor_title';
|
26 |
+
$template_content = 'bp_em_my_events_editor';
|
27 |
+
break;
|
28 |
+
}
|
29 |
+
}
|
30 |
+
}
|
31 |
+
|
32 |
+
add_action( 'bp_template_title', $template_title );
|
33 |
+
add_action( 'bp_template_content', $template_content );
|
34 |
+
|
35 |
+
/* Finally load the plugin template file. */
|
36 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
37 |
+
}
|
38 |
+
|
39 |
+
function bp_em_my_events_title() {
|
40 |
+
_e( 'My Events', 'dbem' );
|
41 |
+
}
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Determines whether to show event page or events page, and saves any updates to the event or events
|
45 |
+
* @return null
|
46 |
+
*/
|
47 |
+
function bp_em_my_events_content() {
|
48 |
+
em_locate_template('buddypress/my-events.php', true);
|
49 |
+
}
|
50 |
+
|
51 |
+
function bp_em_my_events_editor_title() {
|
52 |
+
global $EM_Event;
|
53 |
+
if( is_object($EM_Event) ){
|
54 |
+
_e( 'Edit Event', 'dbem' );
|
55 |
+
}else{
|
56 |
+
_e( 'Add Event', 'dbem' );
|
57 |
+
}
|
58 |
+
}
|
59 |
+
|
60 |
+
function bp_em_my_events_editor(){
|
61 |
+
em_locate_template('forms/event-editor.php', true);
|
62 |
+
}
|
63 |
+
|
64 |
+
?>
|
buddypress/screens/my-group-events.php
ADDED
@@ -0,0 +1,27 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Controller for the event views in BP (using mvc terms here)
|
4 |
+
*/
|
5 |
+
function bp_em_my_group_events() {
|
6 |
+
global $bp;
|
7 |
+
do_action( 'bp_em_my_group_events' );
|
8 |
+
|
9 |
+
//plug into EM admin code (at least for now)
|
10 |
+
include_once(EM_DIR.'/admin/em-admin.php');
|
11 |
+
|
12 |
+
add_action( 'bp_template_title', 'bp_em_my_group_events_title' );
|
13 |
+
add_action( 'bp_template_content', 'bp_em_my_group_events_content' );
|
14 |
+
|
15 |
+
/* Finally load the plugin template file. */
|
16 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
17 |
+
}
|
18 |
+
|
19 |
+
function bp_em_my_group_events_title() {
|
20 |
+
_e( 'Group Events', 'dbem' );
|
21 |
+
}
|
22 |
+
|
23 |
+
function bp_em_my_group_events_content(){
|
24 |
+
em_locate_template('buddypress/my-group-events.php', true);
|
25 |
+
}
|
26 |
+
|
27 |
+
?>
|
buddypress/screens/my-locations.php
ADDED
@@ -0,0 +1,71 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Controller for the location views in BP (using mvc terms here)
|
4 |
+
*/
|
5 |
+
function bp_em_my_locations() {
|
6 |
+
global $bp, $EM_Location;
|
7 |
+
if( !is_object($EM_Location) && !empty($_REQUEST['location_id']) ){
|
8 |
+
$EM_Location = new EM_Location($_REQUEST['location_id']);
|
9 |
+
}
|
10 |
+
|
11 |
+
do_action( 'bp_em_my_locations' );
|
12 |
+
|
13 |
+
//plug into EM admin code (at least for now)
|
14 |
+
include_once(EM_DIR.'/admin/em-admin.php');
|
15 |
+
em_admin_load_scripts();
|
16 |
+
add_action('wp_head','em_admin_general_script');
|
17 |
+
|
18 |
+
$template_title = 'bp_em_my_locations_title';
|
19 |
+
$template_content = 'bp_em_my_locations_content';
|
20 |
+
|
21 |
+
if( count($bp->action_variables) > 0 ){
|
22 |
+
if( !empty($bp->action_variables[0]) ){
|
23 |
+
switch($bp->action_variables[0]){
|
24 |
+
case 'edit':
|
25 |
+
$template_title = 'bp_em_my_locations_editor_title';
|
26 |
+
$template_content = 'bp_em_my_locations_editor_content';
|
27 |
+
break;
|
28 |
+
default :
|
29 |
+
$template_title = 'bp_em_my_locations_title';
|
30 |
+
$template_content = 'bp_em_my_locations_content';
|
31 |
+
break;
|
32 |
+
}
|
33 |
+
}else{
|
34 |
+
$template_title = 'bp_em_my_locations_title';
|
35 |
+
$template_content = 'bp_em_my_locations_content';
|
36 |
+
}
|
37 |
+
}
|
38 |
+
|
39 |
+
add_action( 'bp_template_title', $template_title );
|
40 |
+
add_action( 'bp_template_content', $template_content );
|
41 |
+
|
42 |
+
/* Finally load the plugin template file. */
|
43 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
44 |
+
}
|
45 |
+
|
46 |
+
function bp_em_my_locations_title() {
|
47 |
+
_e( 'My Locations', 'dbem' );
|
48 |
+
}
|
49 |
+
|
50 |
+
/**
|
51 |
+
* Determines whether to show location page or locations page, and saves any updates to the location or locations
|
52 |
+
* @return null
|
53 |
+
*/
|
54 |
+
function bp_em_my_locations_content() {
|
55 |
+
em_locate_template('buddypress/my-locations.php', true);
|
56 |
+
}
|
57 |
+
|
58 |
+
function bp_em_my_locations_editor_title() {
|
59 |
+
global $EM_Location;
|
60 |
+
if( is_object($EM_Location) ){
|
61 |
+
_e( 'Edit Location', 'dbem' );
|
62 |
+
}else{
|
63 |
+
_e( 'Add Location', 'dbem' );
|
64 |
+
}
|
65 |
+
}
|
66 |
+
|
67 |
+
function bp_em_my_locations_editor_content(){
|
68 |
+
em_locate_template('forms/location-editor.php', true);
|
69 |
+
}
|
70 |
+
|
71 |
+
?>
|
buddypress/screens/profile.php
ADDED
@@ -0,0 +1,32 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* bp_em_screen_one()
|
4 |
+
*
|
5 |
+
* Sets up and displays the screen output for the sub nav item "em/screen-one"
|
6 |
+
*/
|
7 |
+
function bp_em_events() {
|
8 |
+
global $bp, $EM_Notices;
|
9 |
+
|
10 |
+
if( bp_is_my_profile() ){
|
11 |
+
$EM_Notices->add_info( __('You are currently viewing your public page, this is what other users will see.', 'dbem') );
|
12 |
+
}
|
13 |
+
|
14 |
+
/* Add a do action here, so your component can be extended by others. */
|
15 |
+
do_action( 'bp_em_events' );
|
16 |
+
|
17 |
+
add_action( 'bp_template_title', 'bp_em_events_title' );
|
18 |
+
add_action( 'bp_template_content', 'bp_em_events_content' );
|
19 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
20 |
+
//bp_core_load_template( apply_filters( 'bp_em_template_screen_one', 'em/screen-one' ) );
|
21 |
+
}
|
22 |
+
/***
|
23 |
+
* The second argument of each of the above add_action() calls is a function that will
|
24 |
+
* display the corresponding information. The functions are presented below:
|
25 |
+
*/
|
26 |
+
function bp_em_events_title() {
|
27 |
+
_e( 'Events', 'dbem' );
|
28 |
+
}
|
29 |
+
|
30 |
+
function bp_em_events_content() {
|
31 |
+
em_locate_template('buddypress/profile.php',true);
|
32 |
+
}
|
buddypress/screens/settings.php
ADDED
@@ -0,0 +1,56 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
function bp_em_screen_settings_menu() {
|
3 |
+
global $bp, $current_user, $bp_settings_updated, $pass_error;
|
4 |
+
|
5 |
+
if ( isset( $_POST['submit'] ) ) {
|
6 |
+
/* Check the nonce */
|
7 |
+
check_admin_referer('bp-em-admin');
|
8 |
+
|
9 |
+
$bp_settings_updated = true;
|
10 |
+
|
11 |
+
/**
|
12 |
+
* This is when the user has hit the save button on their settings.
|
13 |
+
* The best place to store these settings is in wp_usermeta.
|
14 |
+
*/
|
15 |
+
update_usermeta( $bp->loggedin_user->id, 'bp-em-option-one', attribute_escape( $_POST['bp-em-option-one'] ) );
|
16 |
+
}
|
17 |
+
|
18 |
+
add_action( 'bp_template_content_header', 'bp_em_screen_settings_menu_header' );
|
19 |
+
add_action( 'bp_template_title', 'bp_em_screen_settings_menu_title' );
|
20 |
+
add_action( 'bp_template_content', 'bp_em_screen_settings_menu_content' );
|
21 |
+
|
22 |
+
bp_core_load_template( apply_filters( 'bp_core_template_plugin', 'members/single/plugins' ) );
|
23 |
+
}
|
24 |
+
|
25 |
+
function bp_em_screen_settings_menu_header() {
|
26 |
+
_e( 'Events Settings Header', 'dbem' );
|
27 |
+
}
|
28 |
+
|
29 |
+
function bp_em_screen_settings_menu_title() {
|
30 |
+
_e( 'Events Settings', 'dbem' );
|
31 |
+
}
|
32 |
+
|
33 |
+
function bp_em_screen_settings_menu_content() {
|
34 |
+
global $bp, $bp_settings_updated; ?>
|
35 |
+
|
36 |
+
<?php if ( $bp_settings_updated ) { ?>
|
37 |
+
<div id="message" class="updated fade">
|
38 |
+
<p><?php _e( 'Changes Saved.', 'dbem' ) ?></p>
|
39 |
+
</div>
|
40 |
+
<?php } ?>
|
41 |
+
|
42 |
+
<form action="<?php echo $bp->loggedin_user->domain . 'settings/events-settings/'; ?>" name="bp-em-admin-form" id="account-delete-form" class="bp-em-admin-form" method="post">
|
43 |
+
|
44 |
+
<input type="checkbox" name="bp-em-option-one" id="bp-em-option-one" value="1"<?php if ( '1' == get_usermeta( $bp->loggedin_user->id, 'bp-em-option-one' ) ) : ?> checked="checked"<?php endif; ?> /> <?php _e( 'Do you love clicking checkboxes?', 'dbem' ); ?>
|
45 |
+
<p class="submit">
|
46 |
+
<input type="submit" value="<?php _e( 'Save Settings', 'dbem' ) ?> »" id="submit" name="submit" />
|
47 |
+
</p>
|
48 |
+
|
49 |
+
<?php
|
50 |
+
/* This is very important, don't leave it out. */
|
51 |
+
wp_nonce_field( 'bp-em-admin' );
|
52 |
+
?>
|
53 |
+
|
54 |
+
</form>
|
55 |
+
<?php
|
56 |
+
}
|
classes/em-booking.php
CHANGED
@@ -1,379 +1,627 @@
|
|
1 |
-
<?php
|
2 |
-
class EM_Booking extends EM_Object{
|
3 |
-
//DB Fields
|
4 |
-
var $id;
|
5 |
-
var $event_id;
|
6 |
-
var $person_id;
|
7 |
-
var $
|
8 |
-
var $
|
9 |
-
var $
|
10 |
-
var $
|
11 |
-
var $
|
12 |
-
|
13 |
-
|
14 |
-
'
|
15 |
-
'
|
16 |
-
'
|
17 |
-
'
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
var $
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
$
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
*
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
);
|
315 |
-
|
316 |
-
|
317 |
-
$
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
$person = $this->
|
374 |
-
$
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
379 |
?>
|
1 |
+
<?php
|
2 |
+
class EM_Booking extends EM_Object{
|
3 |
+
//DB Fields
|
4 |
+
var $id;
|
5 |
+
var $event_id;
|
6 |
+
var $person_id;
|
7 |
+
var $price;
|
8 |
+
var $spaces;
|
9 |
+
var $comment;
|
10 |
+
var $status = 0;
|
11 |
+
var $notes = array();
|
12 |
+
var $meta = array();
|
13 |
+
var $fields = array(
|
14 |
+
'booking_id' => array('name'=>'id','type'=>'%d'),
|
15 |
+
'event_id' => array('name'=>'event_id','type'=>'%d'),
|
16 |
+
'person_id' => array('name'=>'person_id','type'=>'%d'),
|
17 |
+
'booking_price' => array('name'=>'price','type'=>'%d'),
|
18 |
+
'booking_spaces' => array('name'=>'spaces','type'=>'%d'),
|
19 |
+
'booking_comment' => array('name'=>'comment','type'=>'%s'),
|
20 |
+
'booking_status' => array('name'=>'status','type'=>'%d'),
|
21 |
+
'booking_meta' => array('name'=>'meta','type'=>'%s')
|
22 |
+
);
|
23 |
+
//Other Vars
|
24 |
+
var $timestamp;
|
25 |
+
var $person;
|
26 |
+
var $required_fields = array('booking_id', 'event_id', 'person_id', 'booking_spaces');
|
27 |
+
var $feedback_message = "";
|
28 |
+
var $errors = array();
|
29 |
+
/**
|
30 |
+
* Contains an array of custom fields for a booking. This is loaded from em_meta, where the booking_custom name contains arrays of data.
|
31 |
+
* @var array
|
32 |
+
*/
|
33 |
+
var $custom = array();
|
34 |
+
/**
|
35 |
+
* If saved in this instance, you can see what previous approval status was.
|
36 |
+
* @var int
|
37 |
+
*/
|
38 |
+
var $previous_status;
|
39 |
+
/**
|
40 |
+
* The booking approval status number corresponds to a state in this array.
|
41 |
+
* @var unknown_type
|
42 |
+
*/
|
43 |
+
var $status_array = array();
|
44 |
+
/**
|
45 |
+
* @var EM_Tickets
|
46 |
+
*/
|
47 |
+
var $tickets;
|
48 |
+
/**
|
49 |
+
* @var EM_Event
|
50 |
+
*/
|
51 |
+
var $event;
|
52 |
+
/**
|
53 |
+
* @var EM_Tickets_Bookings
|
54 |
+
*/
|
55 |
+
var $tickets_bookings;
|
56 |
+
/**
|
57 |
+
* If set to true, this booking can be managed by any logged in user.
|
58 |
+
* @var EM_Tickets_Bookings
|
59 |
+
*/
|
60 |
+
var $manage_override;
|
61 |
+
|
62 |
+
/**
|
63 |
+
* Creates booking object and retreives booking data (default is a blank booking object). Accepts either array of booking data (from db) or a booking id.
|
64 |
+
* @param mixed $booking_data
|
65 |
+
* @return null
|
66 |
+
*/
|
67 |
+
function EM_Booking( $booking_data = false ){
|
68 |
+
//Get the person for this booking
|
69 |
+
if( $booking_data !== false ){
|
70 |
+
//Load booking data
|
71 |
+
$booking = array();
|
72 |
+
if( is_array($booking_data) ){
|
73 |
+
$booking = $booking_data;
|
74 |
+
}elseif( is_numeric($booking_data) ){
|
75 |
+
//Retreiving from the database
|
76 |
+
global $wpdb;
|
77 |
+
$sql = "SELECT * FROM ". EM_BOOKINGS_TABLE ." LEFT JOIN ". EM_META_TABLE ." ON object_id=booking_id WHERE booking_id ='$booking_data'";
|
78 |
+
$booking = $wpdb->get_row($sql, ARRAY_A);
|
79 |
+
//Custom Fields
|
80 |
+
$custom = $wpdb->get_row("SELECT meta_key, meta_value FROM ". EM_BOOKINGS_TABLE ." LEFT JOIN ". EM_META_TABLE ." ON object_id=booking_id WHERE booking_id ='$booking_data' AND meta_key='booking_custom'");
|
81 |
+
//Booking notes
|
82 |
+
$notes = $wpdb->get_results("SELECT * FROM ". EM_META_TABLE ." WHERE meta_key='booking-note' AND object_id ='$booking_data'", ARRAY_A);
|
83 |
+
foreach($notes as $note){
|
84 |
+
$this->notes[] = unserialize($note['meta_value']);
|
85 |
+
}
|
86 |
+
}
|
87 |
+
//booking meta
|
88 |
+
$booking['booking_meta'] = (!empty($booking['booking_meta'])) ? unserialize($booking['booking_meta']):array();
|
89 |
+
//Save into the object
|
90 |
+
$this->to_object($booking);
|
91 |
+
$this->get_person();
|
92 |
+
$this->timestamp = strtotime($booking['booking_date']);
|
93 |
+
//Add custom booking data
|
94 |
+
if( !empty($custom['meta_key']) && $custom['meta_key'] == 'booking_custom' && is_serialized($custom['meta_value']) ){
|
95 |
+
$this->custom = unserialize($custom['meta_value']);
|
96 |
+
}
|
97 |
+
}
|
98 |
+
//Do it here so things appear in the po file.
|
99 |
+
$this->status_array = array(
|
100 |
+
0 => __('Pending','dbem'),
|
101 |
+
1 => __('Approved','dbem'),
|
102 |
+
2 => __('Rejected','dbem'),
|
103 |
+
3 => __('Cancelled','dbem'),
|
104 |
+
4 => __('Awaiting Online Payment','dbem'),
|
105 |
+
5 => __('Awaiting Payment','dbem')
|
106 |
+
);
|
107 |
+
do_action('em_booking', $this, $booking_data);
|
108 |
+
}
|
109 |
+
|
110 |
+
/**
|
111 |
+
* Saves the booking into the database, whether a new or existing booking
|
112 |
+
* @param $mail whether or not to email the user and contact people
|
113 |
+
* @return boolean
|
114 |
+
*/
|
115 |
+
function save($mail = true){
|
116 |
+
global $wpdb;
|
117 |
+
$table = EM_BOOKINGS_TABLE;
|
118 |
+
do_action('em_booking_save_pre',$this);
|
119 |
+
if( $this->validate() ){
|
120 |
+
if( $this->can_manage() ){
|
121 |
+
$this->person_id = $this->get_person()->ID;
|
122 |
+
//Step 1. Save the booking
|
123 |
+
$data = $this->to_array();
|
124 |
+
$data['booking_meta'] = serialize($data['booking_meta']);
|
125 |
+
if($this->id != ''){
|
126 |
+
$update = true;
|
127 |
+
//update price and spaces
|
128 |
+
$this->get_spaces(true);
|
129 |
+
$this->get_price(true);
|
130 |
+
$where = array( 'booking_id' => $this->id );
|
131 |
+
$result = $wpdb->update($table, $data, $where, $this->get_types($data));
|
132 |
+
$result = ($result !== false);
|
133 |
+
$this->feedback_message = __('Changes saved','dbem');
|
134 |
+
}else{
|
135 |
+
$update = false;
|
136 |
+
$result = $wpdb->insert($table, $data, $this->get_types($data));
|
137 |
+
$this->id = $wpdb->insert_id;
|
138 |
+
$this->feedback_message = __('Your booking has been recorded','dbem');
|
139 |
+
}
|
140 |
+
//Step 2. Insert ticket bookings for this booking id if no errors so far
|
141 |
+
if( $result === false ){
|
142 |
+
$this->feedback_message = __('There was a problem saving the booking.', 'dbem');
|
143 |
+
$this->errors[] = __('There was a problem saving the booking.', 'dbem');
|
144 |
+
}else{
|
145 |
+
$tickets_bookings_result = $this->get_tickets_bookings()->save();
|
146 |
+
if( !$tickets_bookings_result ){
|
147 |
+
if( !$update ){
|
148 |
+
//delete the booking and tickets, instead of a transaction
|
149 |
+
$this->delete();
|
150 |
+
}
|
151 |
+
$this->errors[] = __('There was a problem saving the booking.', 'dbem');
|
152 |
+
$this->add_error( $this->get_tickets_bookings()->get_errors() );
|
153 |
+
}
|
154 |
+
}
|
155 |
+
//Step 3. email if necessary
|
156 |
+
if ( count($this->errors) == 0 && $mail ) {
|
157 |
+
$this->email();
|
158 |
+
}
|
159 |
+
return apply_filters('em_booking_save', ( count($this->errors) == 0 ), $this);
|
160 |
+
}else{
|
161 |
+
$this->feedback_message = __('There was a problem saving the booking.', 'dbem');
|
162 |
+
if( !$this->can_manage() ){
|
163 |
+
$this->feedback_message = sprintf(__('You cannot manage this %s.', 'dbem'),__('Booking','dbem'));
|
164 |
+
}
|
165 |
+
}
|
166 |
+
}else{
|
167 |
+
$this->feedback_message = __('There was a problem saving the booking.', 'dbem');
|
168 |
+
if( !$this->can_manage() ){
|
169 |
+
$this->feedback_message = sprintf(__('You cannot manage this %s.', 'dbem'),__('Booking','dbem'));
|
170 |
+
}
|
171 |
+
}
|
172 |
+
return apply_filters('em_booking_save', false, $this);
|
173 |
+
}
|
174 |
+
|
175 |
+
/**
|
176 |
+
* Load an record into this object by passing an associative array of table criterie to search for.
|
177 |
+
* Returns boolean depending on whether a record is found or not.
|
178 |
+
* @param $search
|
179 |
+
* @return boolean
|
180 |
+
*/
|
181 |
+
function get($search) {
|
182 |
+
global $wpdb;
|
183 |
+
$conds = array();
|
184 |
+
foreach($search as $key => $value) {
|
185 |
+
if( array_key_exists($key, $this->fields) ){
|
186 |
+
$value = $wpdb->escape($value);
|
187 |
+
$conds[] = "`$key`='$value'";
|
188 |
+
}
|
189 |
+
}
|
190 |
+
$sql = "SELECT * FROM ". $wpdb->EM_BOOKINGS_TABLE ." WHERE " . implode(' AND ', $conds) ;
|
191 |
+
$result = $wpdb->get_row($sql, ARRAY_A);
|
192 |
+
if($result){
|
193 |
+
$this->to_object($result);
|
194 |
+
$this->person = new EM_Person($this->person_id);
|
195 |
+
return true;
|
196 |
+
}else{
|
197 |
+
return false;
|
198 |
+
}
|
199 |
+
}
|
200 |
+
|
201 |
+
/**
|
202 |
+
* Get posted data and save it into the object (not db)
|
203 |
+
* @return boolean
|
204 |
+
*/
|
205 |
+
function get_post( $override_availability = false ){
|
206 |
+
$this->tickets_bookings = new EM_Tickets_Bookings($this->id);
|
207 |
+
do_action('em_booking_get_post_pre',$this);
|
208 |
+
$result = array();
|
209 |
+
$this->event_id = $this->get_event()->id;
|
210 |
+
if( isset($_REQUEST['em_tickets']) && is_array($_REQUEST['em_tickets']) && ($_REQUEST['em_tickets'] || $override_availability) ){
|
211 |
+
foreach( $_REQUEST['em_tickets'] as $ticket_id => $values){
|
212 |
+
//make sure ticket exists
|
213 |
+
if( !empty($values['spaces']) || $override_availability ){
|
214 |
+
$args = array('ticket_id'=>$ticket_id, 'ticket_booking_spaces'=>$values['spaces'], 'booking_id'=>$this->id);
|
215 |
+
if($this->get_event()->get_bookings()->ticket_exists($ticket_id)){
|
216 |
+
$EM_Ticket_Booking = new EM_Ticket_Booking($args);
|
217 |
+
$EM_Ticket_Booking->booking = $this;
|
218 |
+
$this->tickets_bookings->add( $EM_Ticket_Booking, $override_availability );
|
219 |
+
}else{
|
220 |
+
$this->errors[]=__('You are trying to book a non-existent ticket for this event.','dbem');
|
221 |
+
}
|
222 |
+
}
|
223 |
+
}
|
224 |
+
$this->comment = (!empty($_REQUEST['booking_comment'])) ? wp_kses_data(stripslashes($_REQUEST['booking_comment'])):'';
|
225 |
+
$this->get_spaces(true);
|
226 |
+
$this->get_price(true, false, false);
|
227 |
+
$this->get_person();
|
228 |
+
}
|
229 |
+
return apply_filters('em_booking_get_post',$this->validate(),$this);
|
230 |
+
}
|
231 |
+
|
232 |
+
function validate(){
|
233 |
+
//step 1, basic info
|
234 |
+
$basic = (
|
235 |
+
(empty($this->event_id) || is_numeric($this->event_id)) &&
|
236 |
+
(empty($this->person_id) || is_numeric($this->person_id)) &&
|
237 |
+
is_numeric($this->spaces) && $this->spaces > 0
|
238 |
+
);
|
239 |
+
//give some errors in step 1
|
240 |
+
if( $this->spaces == 0 ){
|
241 |
+
$this->add_error(get_option('dbem_booking_feedback_min_space'));
|
242 |
+
}
|
243 |
+
//step 2, tickets bookings info
|
244 |
+
if( count($this->get_tickets_bookings()) > 0 ){
|
245 |
+
$ticket_validation = array();
|
246 |
+
foreach($this->get_tickets_bookings()->tickets_bookings as $EM_Ticket_Booking){
|
247 |
+
if ( !$EM_Ticket_Booking->validate() ){
|
248 |
+
$ticket_validation[] = false;
|
249 |
+
$result = $basic && !in_array(false,$ticket_validation);
|
250 |
+
}
|
251 |
+
$this->errors = array_merge($this->errors, $EM_Ticket_Booking->get_errors());
|
252 |
+
}
|
253 |
+
$result = $basic && !in_array(false,$ticket_validation);
|
254 |
+
}else{
|
255 |
+
$result = false;
|
256 |
+
}
|
257 |
+
|
258 |
+
return apply_filters('em_booking_validate',$result,$this);
|
259 |
+
}
|
260 |
+
|
261 |
+
/**
|
262 |
+
* Get the total number of spaces booked in THIS booking. Seting $force_refresh to true will recheck spaces, even if previously done so.
|
263 |
+
* @param unknown_type $force_refresh
|
264 |
+
* @return mixed
|
265 |
+
*/
|
266 |
+
function get_spaces( $force_refresh=false ){
|
267 |
+
if($this->spaces == 0 || $force_refresh == true ){
|
268 |
+
$this->spaces = $this->get_tickets_bookings()->get_spaces($force_refresh);
|
269 |
+
}
|
270 |
+
return apply_filters('em_booking_get_spaces',$this->spaces,$this);
|
271 |
+
}
|
272 |
+
|
273 |
+
/**
|
274 |
+
* Gets the total price for this whole booking. Seting $force_reset to true will recheck spaces, even if previously done so.
|
275 |
+
* @param boolean $force_refresh
|
276 |
+
* @param boolean $format
|
277 |
+
* @param boolean $add_tax
|
278 |
+
* @return float
|
279 |
+
*/
|
280 |
+
function get_price( $force_refresh=false, $format=false, $add_tax='x' ){
|
281 |
+
if($force_refresh || $this->price == 0 || $add_tax !== 'x' || get_option('dbem_bookings_tax_auto_add')){
|
282 |
+
$this->price = $this->get_tickets_bookings()->get_price($force_refresh, false, $add_tax);
|
283 |
+
}
|
284 |
+
if($format){
|
285 |
+
return apply_filters('em_booking_get_price', em_get_currency_symbol().number_format($this->price,2),$this);
|
286 |
+
}
|
287 |
+
return apply_filters('em_booking_get_price',$this->price,$this);
|
288 |
+
}
|
289 |
+
|
290 |
+
/**
|
291 |
+
* Gets the event this booking belongs to and saves a refernece in the event property
|
292 |
+
* @return EM_Event
|
293 |
+
*/
|
294 |
+
function get_event(){
|
295 |
+
global $EM_Event;
|
296 |
+
if( is_object($this->event) && get_class($this->event)=='EM_Event' && $this->event->id == $this->event_id ){
|
297 |
+
return $this->event;
|
298 |
+
}elseif( is_object($EM_Event) && ( (is_object($this->event) &&$this->event->id == $this->event_id) || empty($this->id)) ){
|
299 |
+
$this->event = $EM_Event;
|
300 |
+
}else{
|
301 |
+
$this->event = new EM_Event($this->event_id);
|
302 |
+
}
|
303 |
+
return apply_filters('em_booking_get_event',$this->event);
|
304 |
+
}
|
305 |
+
|
306 |
+
/**
|
307 |
+
* Outdated, use booking meta array. Get custom fields for this booking.
|
308 |
+
* @return array
|
309 |
+
*/
|
310 |
+
function get_custom(){
|
311 |
+
global $wpdb;
|
312 |
+
if( count($this->custom) == 0 ){
|
313 |
+
$sql = "SELECT * FROM ". EM_META_TABLE ." WHERE object_id ='{$this->id}' AND (meta_key='booking_custom' OR meta_key IS NULL)";
|
314 |
+
$booking = $wpdb->get_row($sql, ARRAY_A);
|
315 |
+
//Add custom booking data
|
316 |
+
if( !empty($booking['meta_key']) && $booking['meta_key'] == 'booking_custom' && is_serialized($booking['meta_value']) ){
|
317 |
+
$this->custom = unserialize($booking['meta_value']);
|
318 |
+
}
|
319 |
+
}
|
320 |
+
return $this->custom;
|
321 |
+
}
|
322 |
+
|
323 |
+
/**
|
324 |
+
* Gets the ticket object this booking belongs to, saves a reference in ticket property
|
325 |
+
* @return EM_Tickets
|
326 |
+
*/
|
327 |
+
function get_tickets(){
|
328 |
+
if( is_object($this->tickets) && get_class($this->tickets)=='EM_Tickets' ){
|
329 |
+
return apply_filters('em_booking_get_tickets', $this->tickets, $this);
|
330 |
+
}else{
|
331 |
+
$this->tickets = new EM_Tickets($this);
|
332 |
+
}
|
333 |
+
return apply_filters('em_booking_get_tickets', $this->tickets, $this);
|
334 |
+
}
|
335 |
+
|
336 |
+
/**
|
337 |
+
* Gets the ticket object this booking belongs to, saves a reference in ticket property
|
338 |
+
* @return EM_Tickets_Bookings
|
339 |
+
*/
|
340 |
+
function get_tickets_bookings(){
|
341 |
+
global $wpdb;
|
342 |
+
if( !is_object($this->tickets_bookings) || get_class($this->tickets_bookings)!='EM_Tickets_Bookings'){
|
343 |
+
$this->tickets_bookings = new EM_Tickets_Bookings($this);
|
344 |
+
}
|
345 |
+
return apply_filters('em_booking_get_tickets_bookings', $this->tickets_bookings, $this);
|
346 |
+
}
|
347 |
+
|
348 |
+
function get_person(){
|
349 |
+
global $EM_Person;
|
350 |
+
if( is_object($this->person) && get_class($this->person)=='EM_Person' && ($this->person->ID == $this->person_id || empty($this->person_id) ) ){
|
351 |
+
//This person is already included, so don't do anything
|
352 |
+
}elseif( is_object($EM_Person) && ($EM_Person->ID === $this->person_id || $this->id == '') ){
|
353 |
+
$this->person = $EM_Person;
|
354 |
+
}elseif( is_numeric($this->person_id) ){
|
355 |
+
$this->person = new EM_Person($this->person_id);
|
356 |
+
}else{
|
357 |
+
$this->person = new EM_Person(0);
|
358 |
+
}
|
359 |
+
//if this user is the parent user of disabled registrations, replace user details here:
|
360 |
+
if( get_option('dbem_bookings_registration_disable') && $this->person->ID == get_option('dbem_bookings_registration_user') ){
|
361 |
+
//override any registration data into the person objet
|
362 |
+
if( !empty($this->meta['registration']) ){
|
363 |
+
foreach($this->meta['registration'] as $key => $value){
|
364 |
+
$this->person->$key = $value;
|
365 |
+
}
|
366 |
+
}
|
367 |
+
$this->person->user_email = ( !empty($this->meta['registration']['user_email']) ) ? $this->meta['registration']['user_email']:$this->person->user_email;
|
368 |
+
if( !empty($this->meta['registration']['user_name']) ){
|
369 |
+
$name_string = explode(' ',$this->meta['registration']['user_name']);
|
370 |
+
$this->meta['registration']['first_name'] = array_shift($name_string);
|
371 |
+
$this->meta['registration']['last_name'] = implode(' ', $name_string);
|
372 |
+
}
|
373 |
+
$this->person->user_firstname = ( !empty($this->meta['registration']['first_name']) ) ? $this->meta['registration']['first_name']:__('Guest User','dbem');
|
374 |
+
$this->person->first_name = $this->person->user_firstname;
|
375 |
+
$this->person->user_lastname = ( !empty($this->meta['registration']['last_name']) ) ? $this->meta['registration']['last_name']:'';
|
376 |
+
$this->person->last_name = $this->person->user_lastname;
|
377 |
+
$this->person->phone = ( !empty($this->meta['registration']['dbem_phone']) ) ? $this->meta['registration']['dbem_phone']:__('Not Supplied','dbem');
|
378 |
+
//build display name
|
379 |
+
$full_name = $this->user_firstname . " " . $this->user_lastname ;
|
380 |
+
$full_name = trim($full_name);
|
381 |
+
$display_name = ( empty($full_name) ) ? __('Guest User','dbem'):$full_name;
|
382 |
+
$this->person->display_name = $display_name;
|
383 |
+
}
|
384 |
+
return apply_filters('em_booking_get_person', $this->person, $this);
|
385 |
+
}
|
386 |
+
|
387 |
+
/**
|
388 |
+
* Returns a string representation of the booking's status
|
389 |
+
* @return string
|
390 |
+
*/
|
391 |
+
function get_status(){
|
392 |
+
$status = ($this->status == 0 && !get_option('dbem_bookings_approval') ) ? 1:$this->status;
|
393 |
+
return $this->status_array[$status];
|
394 |
+
}
|
395 |
+
|
396 |
+
/**
|
397 |
+
* I wonder what this does....
|
398 |
+
* @return boolean
|
399 |
+
*/
|
400 |
+
function delete(){
|
401 |
+
global $wpdb;
|
402 |
+
//FIXME ticket logic needed
|
403 |
+
$sql = $wpdb->prepare("DELETE FROM ". EM_BOOKINGS_TABLE . " WHERE booking_id=%d", $this->id);
|
404 |
+
$result = $wpdb->query( $sql );
|
405 |
+
if( $result !== false ){
|
406 |
+
//delete the tickets too
|
407 |
+
$this->get_tickets_bookings()->delete();
|
408 |
+
$this->previous_status = $this->status;
|
409 |
+
$this->status = false;
|
410 |
+
$this->feedback_message = sprintf(__('%s deleted', 'dbem'), __('Booking','dbem'));
|
411 |
+
}else{
|
412 |
+
$this->add_error(sprintf(__('%s could not be deleted', 'dbem'), __('Booking','dbem')));
|
413 |
+
}
|
414 |
+
return apply_filters('em_booking_delete',( $result !== false ), $this);
|
415 |
+
}
|
416 |
+
|
417 |
+
function cancel(){
|
418 |
+
if( $this->person->ID == get_current_user_id() ){
|
419 |
+
$this->manage_override = true; //normally, users can't manage a bookiing, only event owners, so we allow them to mod their booking status in this case only.
|
420 |
+
}
|
421 |
+
return $this->set_status(3);
|
422 |
+
}
|
423 |
+
|
424 |
+
/**
|
425 |
+
* Approve a booking.
|
426 |
+
* @return bool
|
427 |
+
*/
|
428 |
+
function approve(){
|
429 |
+
return $this->set_status(1);
|
430 |
+
}
|
431 |
+
/**
|
432 |
+
* Reject a booking and save
|
433 |
+
* @return bool
|
434 |
+
*/
|
435 |
+
function reject(){
|
436 |
+
return $this->set_status(2);
|
437 |
+
}
|
438 |
+
/**
|
439 |
+
* Unpprove a booking.
|
440 |
+
* @return bool
|
441 |
+
*/
|
442 |
+
function unapprove(){
|
443 |
+
return $this->set_status(0);
|
444 |
+
}
|
445 |
+
|
446 |
+
/**
|
447 |
+
* Change the status of the booking. This will save to the Database too.
|
448 |
+
* @param int $status
|
449 |
+
* @return boolean
|
450 |
+
*/
|
451 |
+
function set_status($status){
|
452 |
+
$action_string = strtolower($this->status_array[$status]);
|
453 |
+
//if we're approving we can't approve a booking if spaces are full, so check before it's approved.
|
454 |
+
if($status == 1){
|
455 |
+
if( $this->get_event()->get_bookings()->get_available_spaces() < $this->get_spaces() && !get_option('dbem_bookings_approval_overbooking') ){
|
456 |
+
$this->feedback_message = sprintf(__('Not approved, spaces full.','dbem'), $action_string);
|
457 |
+
return apply_filters('em_booking_set_status', false, $this);
|
458 |
+
}
|
459 |
+
}
|
460 |
+
$this->previous_status = $this->status;
|
461 |
+
$this->status = $status;
|
462 |
+
$result = $this->save(false);
|
463 |
+
if($result){
|
464 |
+
$this->event = new EM_Event($this->event_id); //force a refresh of event object
|
465 |
+
$this->feedback_message = sprintf(__('Booking %s.','dbem'), $action_string);
|
466 |
+
if( !($this->status == 0 && $this->previous_status > 0) || $this->previous_status == 4 ){
|
467 |
+
if( $this->email() ){
|
468 |
+
$this->feedback_message .= " ".__('Mail Sent.','dbem');
|
469 |
+
}elseif( $this->previous_status == 0 ){
|
470 |
+
//extra errors may be logged by email() in EM_Object
|
471 |
+
$this->feedback_message .= ' <span style="color:red">'.__('ERROR : Mail Not Sent.','dbem').'</span>';
|
472 |
+
$this->add_error(__('ERROR : Mail Not Sent.','dbem'));
|
473 |
+
$result = false;
|
474 |
+
}
|
475 |
+
}
|
476 |
+
}else{
|
477 |
+
//errors should be logged by save()
|
478 |
+
$this->feedback_message = sprintf(__('Booking could not be %s.','dbem'), $action_string);
|
479 |
+
$this->add_error(sprintf(__('Booking could not be %s.','dbem'), $action_string));
|
480 |
+
}
|
481 |
+
return apply_filters('em_booking_set_status', $result, $this);
|
482 |
+
}
|
483 |
+
|
484 |
+
/**
|
485 |
+
* Add a booking note to this booking. returns wpdb result or false if use can't manage this event.
|
486 |
+
* @param string $note
|
487 |
+
* @return mixed
|
488 |
+
*/
|
489 |
+
function add_note( $note_text ){
|
490 |
+
global $wpdb;
|
491 |
+
if( $this->can_manage() ){
|
492 |
+
$note = array('author'=>get_current_user_id(),'note'=>$note_text,'timestamp'=>current_time('timestamp'));
|
493 |
+
$this->notes[] = $note;
|
494 |
+
$this->feedback_message = __('Booking note successfully added.','dbem');
|
495 |
+
return $wpdb->insert(EM_META_TABLE, array('object_id'=>$this->id, 'meta_key'=>'booking-note', 'meta_value'=> serialize($note)),array('%d','%s','%s'));
|
496 |
+
}
|
497 |
+
return false;
|
498 |
+
}
|
499 |
+
|
500 |
+
/**
|
501 |
+
* @param EM_Booking $EM_Booking
|
502 |
+
* @param EM_Event $event
|
503 |
+
* @return boolean
|
504 |
+
*/
|
505 |
+
function email(){
|
506 |
+
global $EM_Mailer;
|
507 |
+
//FIXME ticket logic needed
|
508 |
+
$EM_Event = $this->get_event(); //We NEED event details here.
|
509 |
+
//Make sure event matches booking, and that booking used to be approved.
|
510 |
+
if( !($this->status == 0 && $this->previous_status > 0) || $this->previous_status == 4 ){
|
511 |
+
$contact_id = ( $EM_Event->owner != "") ? $EM_Event->owner : get_option('dbem_default_contact_person');
|
512 |
+
|
513 |
+
$contact_subject = get_option('dbem_bookings_contact_email_subject');
|
514 |
+
$contact_body = get_option('dbem_bookings_contact_email_body');
|
515 |
+
|
516 |
+
if( (get_option('dbem_bookings_approval') == 0 && $this->status < 2) || $this->status == 1 ){
|
517 |
+
$booker_subject = get_option('dbem_bookings_email_confirmed_subject');
|
518 |
+
$booker_body = get_option('dbem_bookings_email_confirmed_body');
|
519 |
+
}elseif( $this->status == 0 || $this->status == 5 || ( $this->status == 0 && ($this->previous_status == 4 || $this->previous_status == 5) ) ){
|
520 |
+
$booker_subject = get_option('dbem_bookings_email_pending_subject');
|
521 |
+
$booker_body = get_option('dbem_bookings_email_pending_body');
|
522 |
+
}elseif( $this->status == 2 ){
|
523 |
+
$booker_subject = get_option('dbem_bookings_email_rejected_subject');
|
524 |
+
$booker_body = get_option('dbem_bookings_email_rejected_body');
|
525 |
+
}elseif( $this->status == 3 ){
|
526 |
+
$booker_subject = get_option('dbem_bookings_email_cancelled_subject');
|
527 |
+
$booker_body = get_option('dbem_bookings_email_cancelled_body');
|
528 |
+
$contact_subject = get_option('dbem_contactperson_email_cancelled_subject');
|
529 |
+
$contact_body = get_option('dbem_contactperson_email_cancelled_body');
|
530 |
+
}else{
|
531 |
+
return true;
|
532 |
+
}
|
533 |
+
|
534 |
+
// email specific placeholders
|
535 |
+
foreach( $this->get_tickets() as $EM_Ticket){ break; }
|
536 |
+
ob_start();
|
537 |
+
em_locate_template('emails/bookingtickets.php', true, array('EM_Booking'=>$this));
|
538 |
+
$tickets = ob_get_clean();
|
539 |
+
$placeholders = apply_filters('em_booking_email_placeholders', array(
|
540 |
+
'#_RESPNAME' => '#_BOOKINGNAME',//Depreciated
|
541 |
+
'#_RESPEMAIL' => '#_BOOKINGEMAIL',//Depreciated
|
542 |
+
'#_RESPPHONE' => '#_BOOKINGPHONE',//Depreciated
|
543 |
+
'#_COMMENT' => '#_BOOKINGCOMMENT',//Depreciated
|
544 |
+
'#_RESERVEDSPACES' => '#_BOOKEDSPACES',//Depreciated
|
545 |
+
'#_BOOKINGID' => $this->id,
|
546 |
+
'#_BOOKINGNAME' => $this->person->get_name(),
|
547 |
+
'#_BOOKINGEMAIL' => $this->person->user_email,
|
548 |
+
'#_BOOKINGPHONE' => $this->person->phone,
|
549 |
+
'#_BOOKINGSPACES' => $this->get_spaces(),
|
550 |
+
'#_BOOKINGLISTURL' => em_get_my_bookings_url(),
|
551 |
+
'#_BOOKINGCOMMENT' => $this->comment,
|
552 |
+
'#_BOOKINGPRICEWITHTAX' => em_get_currency_symbol(true)." ". number_format($this->get_price(false,false,true),2),
|
553 |
+
'#_BOOKINGPRICEWITHOUTTAX' => em_get_currency_symbol(true)." ". number_format($this->get_price(false,false,false),2),
|
554 |
+
'#_BOOKINGPRICETAX' => em_get_currency_symbol(true)." ". number_format($this->get_price(false,false,false)*(get_option('dbem_bookings_tax')/100),2),
|
555 |
+
'#_BOOKINGPRICE' => em_get_currency_symbol(true)." ". number_format($this->get_price(),2),
|
556 |
+
'#_BOOKINGTICKETNAME' => $EM_Ticket->name,
|
557 |
+
'#_BOOKINGTICKETDESCRIPTION' => $EM_Ticket->description,
|
558 |
+
'#_BOOKINGTICKETPRICEWITHTAX' => em_get_currency_symbol(true)." ". number_format($EM_Ticket->get_price(false,true),2),
|
559 |
+
'#_BOOKINGTICKETPRICEWITHOUTTAX' => em_get_currency_symbol(true)." ". number_format($EM_Ticket->get_price(false,false),2),
|
560 |
+
'#_BOOKINGTICKETTAX' => em_get_currency_symbol(true)." ". number_format($EM_Ticket->get_price(false,false)*(get_option('dbem_bookings_tax')/100),2),
|
561 |
+
'#_BOOKINGTICKETPRICE' => em_get_currency_symbol(true)." ". number_format($EM_Ticket->get_price(),2),
|
562 |
+
'#_BOOKINGTICKETS' => $tickets
|
563 |
+
),$this);
|
564 |
+
foreach($placeholders as $key => $value) {
|
565 |
+
$contact_subject = str_replace($key, $value, $contact_subject);
|
566 |
+
$contact_body = str_replace($key, $value, $contact_body);
|
567 |
+
$booker_subject = str_replace($key, $value, $booker_subject);
|
568 |
+
$booker_body = str_replace($key, $value, $booker_body);
|
569 |
+
}
|
570 |
+
$booker_subject = $EM_Event->output($booker_subject, 'email');
|
571 |
+
$booker_body = $EM_Event->output($booker_body, 'email');
|
572 |
+
|
573 |
+
//Send to the person booking
|
574 |
+
if( !$this->email_send( $booker_subject,$booker_body, $this->person->user_email) ){
|
575 |
+
return false;
|
576 |
+
}
|
577 |
+
|
578 |
+
//Send admin/contact emails
|
579 |
+
if( (get_option('dbem_bookings_approval') == 0 || in_array($this->status, array(0,3,4,5)) || (in_array($this->previous_status, array(4)) && $this->status == 1)) && (get_option('dbem_bookings_contact_email') == 1 || get_option('dbem_bookings_notify_admin') != '') ){
|
580 |
+
//Only gets sent if this is a pending booking, unless approvals are disabled.
|
581 |
+
$contact_subject = $EM_Event->output($contact_subject, 'email');
|
582 |
+
$contact_body = $EM_Event->output($contact_body, 'email');
|
583 |
+
|
584 |
+
if( get_option('dbem_bookings_contact_email') == 1 ){
|
585 |
+
if( !$this->email_send( $contact_subject, $contact_body, $EM_Event->contact->user_email) && current_user_can('activate_plugins')){
|
586 |
+
$this->errors[] = __('Confirmation email could not be sent to contact person. Registrant should have gotten their email (only admin see this warning).','dbem');
|
587 |
+
return false;
|
588 |
+
}
|
589 |
+
}
|
590 |
+
|
591 |
+
if( get_option('dbem_bookings_notify_admin') != '' && preg_match('/^[_\.0-9a-z-]+@([0-9a-z][0-9a-z-]+\.)+[a-z]{2,3}$/', get_option('dbem_bookings_notify_admin')) ){
|
592 |
+
if( !$this->email_send( $contact_subject, $contact_body, get_option('dbem_bookings_notify_admin')) ){
|
593 |
+
$this->errors[] = __('Confirmation email could not be sent to admin. Registrant should have gotten their email (only admin see this warning).','dbem');
|
594 |
+
return false;
|
595 |
+
}
|
596 |
+
}
|
597 |
+
}
|
598 |
+
return true;
|
599 |
+
}
|
600 |
+
return false;
|
601 |
+
//TODO need error checking for booking mail send
|
602 |
+
}
|
603 |
+
|
604 |
+
/**
|
605 |
+
* Can the user manage this event?
|
606 |
+
*/
|
607 |
+
function can_manage(){
|
608 |
+
return $this->get_event()->can_manage('manage_bookings','manage_others_bookings') || empty($this->id) || !empty($this->manage_override);
|
609 |
+
}
|
610 |
+
|
611 |
+
/**
|
612 |
+
* Returns this object in the form of an array
|
613 |
+
* @return array
|
614 |
+
*/
|
615 |
+
function to_array($person = false){
|
616 |
+
$booking = array();
|
617 |
+
//Core Data
|
618 |
+
$booking = parent::to_array();
|
619 |
+
//Person Data
|
620 |
+
if($person && is_object($this->person)){
|
621 |
+
$person = $this->person->to_array();
|
622 |
+
$booking = array_merge($booking, $person);
|
623 |
+
}
|
624 |
+
return $booking;
|
625 |
+
}
|
626 |
+
}
|
627 |
?>
|
classes/em-bookings.php
CHANGED
@@ -1,488 +1,583 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Deals with the booking info for an event
|
4 |
-
* @author marcus
|
5 |
-
*
|
6 |
-
*/
|
7 |
-
class EM_Bookings extends EM_Object{
|
8 |
-
|
9 |
-
/**
|
10 |
-
* Array of EM_Booking objects for a specific event
|
11 |
-
* @var array
|
12 |
-
*/
|
13 |
-
var $bookings = array();
|
14 |
-
/**
|
15 |
-
*
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
21 |
-
|
22 |
-
|
23 |
-
|
24 |
-
|
25 |
-
|
26 |
-
var $
|
27 |
-
|
28 |
-
/**
|
29 |
-
* Creates an EM_Bookings instance,
|
30 |
-
* @param EM_Event $event
|
31 |
-
* @return null
|
32 |
-
*/
|
33 |
-
function EM_Bookings( $
|
34 |
-
if( is_object($
|
35 |
-
global $wpdb;
|
36 |
-
$this->
|
37 |
-
$
|
38 |
-
$
|
39 |
-
$bookings
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
return $
|
235 |
-
}
|
236 |
-
|
237 |
-
/**
|
238 |
-
*
|
239 |
-
* @
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
$
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
$
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
$
|
308 |
-
foreach($
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
*
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
$
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
$
|
356 |
-
$
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
$
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
$
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
);
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
$
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
488 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Deals with the booking info for an event
|
4 |
+
* @author marcus
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
class EM_Bookings extends EM_Object implements Iterator{
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Array of EM_Booking objects for a specific event
|
11 |
+
* @var array
|
12 |
+
*/
|
13 |
+
var $bookings = array();
|
14 |
+
/**
|
15 |
+
* @var EM_Tickets
|
16 |
+
*/
|
17 |
+
var $tickets;
|
18 |
+
/**
|
19 |
+
* @var EM_Event
|
20 |
+
*/
|
21 |
+
var $event;
|
22 |
+
/**
|
23 |
+
* How many spaces this event has
|
24 |
+
* @var int
|
25 |
+
*/
|
26 |
+
var $spaces;
|
27 |
+
|
28 |
+
/**
|
29 |
+
* Creates an EM_Bookings instance, currently accepts an EM_Event object (gets all bookings for that event) or array of any EM_Booking objects, which can be manipulated in bulk with helper functions.
|
30 |
+
* @param EM_Event $event
|
31 |
+
* @return null
|
32 |
+
*/
|
33 |
+
function EM_Bookings( $data = false ){
|
34 |
+
if( is_object($data) && get_class($data) == "EM_Event" ){ //Creates a blank bookings object if needed
|
35 |
+
global $wpdb;
|
36 |
+
$this->event = $data;
|
37 |
+
$sql = "SELECT * FROM ". EM_BOOKINGS_TABLE ." WHERE event_id ='{$this->event->id}'";
|
38 |
+
$bookings = $wpdb->get_results($sql, ARRAY_A);
|
39 |
+
foreach ($bookings as $booking){
|
40 |
+
$this->bookings[] = new EM_Booking($booking);
|
41 |
+
}
|
42 |
+
$this->spaces = $this->get_spaces();
|
43 |
+
}elseif( is_array($data) ){
|
44 |
+
foreach( $data as $EM_Booking ){
|
45 |
+
if( get_class($EM_Booking) == 'EM_Booking'){
|
46 |
+
$this->bookings[] = $EM_Booking;
|
47 |
+
}
|
48 |
+
}
|
49 |
+
$this->get_event();
|
50 |
+
}
|
51 |
+
}
|
52 |
+
|
53 |
+
/**
|
54 |
+
* Add a booking into this event (or add spaces if person already booked this), checking that there's enough space for the event
|
55 |
+
* @param EM_Booking $EM_Booking
|
56 |
+
* @return boolean
|
57 |
+
*/
|
58 |
+
function add( $EM_Booking ){
|
59 |
+
global $wpdb,$EM_Mailer;
|
60 |
+
if ( $this->get_available_spaces() >= $EM_Booking->get_spaces(true) ) {
|
61 |
+
//Save the booking
|
62 |
+
$email = false;
|
63 |
+
if( !get_option('dbem_bookings_approval') && $EM_Booking->status < 2 ){
|
64 |
+
$EM_Booking->status = 1;
|
65 |
+
}
|
66 |
+
$result = $EM_Booking->save(false);
|
67 |
+
if($result){
|
68 |
+
//Success
|
69 |
+
$this->bookings[] = $EM_Booking;
|
70 |
+
$email = $EM_Booking->email();
|
71 |
+
if( get_option('dbem_bookings_approval') == 1 && $EM_Booking->status == 0){
|
72 |
+
$this->feedback_message = get_option('dbem_booking_feedback_pending');
|
73 |
+
}else{
|
74 |
+
$this->feedback_message = get_option('dbem_booking_feedback');
|
75 |
+
}
|
76 |
+
if(!$email){
|
77 |
+
$this->feedback_message .= ' '.get_option('dbem_booking_feedback_nomail');
|
78 |
+
if( current_user_can('activate_plugins') ){
|
79 |
+
if( count($EM_Booking->get_errors()) > 0 ){
|
80 |
+
$this->feedback_message .= '<br/><strong>Errors:</strong> (only admins see this message)<br/><ul><li>'. implode('</li><li>', $EM_Booking->get_errors()).'</li></ul>';
|
81 |
+
}else{
|
82 |
+
$this->feedback_message .= '<br/><strong>No errors returned by mailer</strong> (only admins see this message)';
|
83 |
+
}
|
84 |
+
}
|
85 |
+
}
|
86 |
+
return true;
|
87 |
+
}else{
|
88 |
+
//Failure
|
89 |
+
$this->errors[] = "<strong>".get_option('dbem_booking_feedback_error')."</strong><br />". implode('<br />', $EM_Booking->errors);
|
90 |
+
}
|
91 |
+
} else {
|
92 |
+
$this->add_error(get_option('dbem_booking_feedback_full'));
|
93 |
+
}
|
94 |
+
return apply_filters('em_bookings_add', false, $EM_Booking);
|
95 |
+
}
|
96 |
+
|
97 |
+
/**
|
98 |
+
* Get POST data and create a booking for each ticket requested. If successful, a booking object is returned, false if not.
|
99 |
+
* @return false|object
|
100 |
+
*/
|
101 |
+
function add_from_post(){
|
102 |
+
$EM_Booking = new EM_booking();
|
103 |
+
$result = $EM_Booking->get_post();
|
104 |
+
if($result){
|
105 |
+
$result = $this->add($EM_Booking);
|
106 |
+
if($result){
|
107 |
+
$result = $EM_Booking;
|
108 |
+
}
|
109 |
+
$this->feedback_message = sprintf(__('%s created.','dbem'),__('Booking','dbem'));
|
110 |
+
}else{
|
111 |
+
$this->errors = array_merge($this->errors, $EM_Booking->errors);
|
112 |
+
}
|
113 |
+
return apply_filters('em_bookings_add_from_post',$result,$EM_Booking,$this);
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Smart event locator, saves a database read if possible. Note that if an event doesn't exist, a blank object will be created to prevent duplicates.
|
118 |
+
*/
|
119 |
+
function get_event(){
|
120 |
+
if( is_object($this->event) && get_class($this->event) == 'EM_Event' ){
|
121 |
+
return $this->event;
|
122 |
+
}elseif( count($this->bookings) > 0 ){
|
123 |
+
foreach($this->bookings as $EM_Booking){
|
124 |
+
$this->event = $EM_Booking->get_event();
|
125 |
+
return $this->event;
|
126 |
+
}
|
127 |
+
}else{
|
128 |
+
$this->event = new EM_Event();
|
129 |
+
return $this->event;
|
130 |
+
}
|
131 |
+
}
|
132 |
+
|
133 |
+
/**
|
134 |
+
* Retrieve and save the bookings belonging to instance. If called again will return cached version, set $force_reload to true to create a new EM_Tickets object.
|
135 |
+
* @param boolean $force_reload
|
136 |
+
* @return EM_Tickets
|
137 |
+
*/
|
138 |
+
function get_tickets( $force_reload = false ){
|
139 |
+
if( !is_object($this->tickets) || $force_reload ){
|
140 |
+
$this->tickets = new EM_Tickets($this->get_event());
|
141 |
+
}
|
142 |
+
return apply_filters('em_bookings_get_tickets', $this->tickets, $this);
|
143 |
+
}
|
144 |
+
|
145 |
+
/**
|
146 |
+
* Returns EM_Tickets object with available tickets
|
147 |
+
* @return EM_Tickets
|
148 |
+
*/
|
149 |
+
function get_available_tickets(){
|
150 |
+
$tickets = array();
|
151 |
+
$timesamp = current_time('timestamp');
|
152 |
+
foreach ($this->get_tickets() as $EM_Ticket){
|
153 |
+
/* @var EM_Ticket $EM_Ticket */
|
154 |
+
if( $EM_Ticket->is_available() ){
|
155 |
+
//within time range
|
156 |
+
if( $EM_Ticket->get_available_spaces() > 0 ){
|
157 |
+
$tickets[] = $EM_Ticket;
|
158 |
+
}
|
159 |
+
}
|
160 |
+
}
|
161 |
+
$EM_Tickets = new EM_Tickets($tickets);
|
162 |
+
return apply_filters('em_bookings_get_tickets', $EM_Tickets, $this);
|
163 |
+
}
|
164 |
+
|
165 |
+
function get_user_list(){
|
166 |
+
$users = array();
|
167 |
+
foreach( $this->get_bookings()->bookings as $EM_Booking ){
|
168 |
+
$users[$EM_Booking->person->ID] = $EM_Booking->person;
|
169 |
+
}
|
170 |
+
return $users;
|
171 |
+
}
|
172 |
+
|
173 |
+
/**
|
174 |
+
* does this ticket exist?
|
175 |
+
* @return bool
|
176 |
+
*/
|
177 |
+
function ticket_exists($ticket_id){
|
178 |
+
$EM_Tickets = $this->get_tickets();
|
179 |
+
foreach( $EM_Tickets->tickets as $EM_Ticket){
|
180 |
+
if($EM_Ticket->id == $ticket_id){
|
181 |
+
return apply_filters('em_bookings_ticket_exists',true, $EM_Ticket, $this);
|
182 |
+
}
|
183 |
+
}
|
184 |
+
return apply_filters('em_bookings_ticket_exists',false, false,$this);
|
185 |
+
}
|
186 |
+
|
187 |
+
/**
|
188 |
+
* Delete bookings on this id
|
189 |
+
* @return boolean
|
190 |
+
*/
|
191 |
+
function delete(){
|
192 |
+
global $wpdb;
|
193 |
+
$booking_ids = array();
|
194 |
+
//get the booking ids tied to this event
|
195 |
+
foreach( $this->bookings as $EM_Booking ){
|
196 |
+
$booking_ids[] = $EM_Booking->id;
|
197 |
+
}
|
198 |
+
$result_tickets = true;
|
199 |
+
$result = true;
|
200 |
+
if( count($booking_ids) > 0 ){
|
201 |
+
//Delete bookings and ticket bookings
|
202 |
+
$result_tickets = $wpdb->query("DELETE FROM ". EM_TICKETS_BOOKINGS_TABLE ." WHERE booking_id IN (".implode(',',$booking_ids).");");
|
203 |
+
$result = $wpdb->query("DELETE FROM ".EM_BOOKINGS_TABLE." WHERE event_id IN (".implode(',',$booking_ids).")");
|
204 |
+
}
|
205 |
+
return ($result !== false && $result_tickets !== false);
|
206 |
+
}
|
207 |
+
|
208 |
+
|
209 |
+
/**
|
210 |
+
* Will approve all supplied booking ids, which must be in the form of a numeric array or a single number.
|
211 |
+
* @param array|int $booking_ids
|
212 |
+
* @return boolean
|
213 |
+
*/
|
214 |
+
function approve( $booking_ids ){
|
215 |
+
$this->set_status(1, $booking_ids);
|
216 |
+
return false;
|
217 |
+
}
|
218 |
+
|
219 |
+
/**
|
220 |
+
* Will reject all supplied booking ids, which must be in the form of a numeric array or a single number.
|
221 |
+
* @param array|int $booking_ids
|
222 |
+
* @return boolean
|
223 |
+
*/
|
224 |
+
function reject( $booking_ids ){
|
225 |
+
return $this->set_status(2, $booking_ids);
|
226 |
+
}
|
227 |
+
|
228 |
+
/**
|
229 |
+
* Will unapprove all supplied booking ids, which must be in the form of a numeric array or a single number.
|
230 |
+
* @param array|int $booking_ids
|
231 |
+
* @return boolean
|
232 |
+
*/
|
233 |
+
function unapprove( $booking_ids ){
|
234 |
+
return $this->set_status(0, $booking_ids);
|
235 |
+
}
|
236 |
+
|
237 |
+
/**
|
238 |
+
* @param int $status
|
239 |
+
* @param array|int $booking_ids
|
240 |
+
* @return bool
|
241 |
+
*/
|
242 |
+
function set_status($status, $booking_ids){
|
243 |
+
//FIXME status should work with instantiated object
|
244 |
+
//FIXME there is a vulnerability where any user can approve/reject bookings if they know the ID
|
245 |
+
if( $this->array_is_numeric($booking_ids) ){
|
246 |
+
//Get all the bookings
|
247 |
+
$results = array();
|
248 |
+
$mails = array();
|
249 |
+
foreach( $booking_ids as $booking_id ){
|
250 |
+
$EM_Booking = new EM_Booking($booking_id);
|
251 |
+
if( !$EM_Booking->can_manage() ){
|
252 |
+
$this->feedback_message = __('Bookings %s. Mails Sent.', 'dbem');
|
253 |
+
return false;
|
254 |
+
}
|
255 |
+
$results[] = $EM_Booking->set_status($status);
|
256 |
+
}
|
257 |
+
if( !in_array('false',$results) ){
|
258 |
+
$this->feedback_message = __('Bookings %s. Mails Sent.', 'dbem');
|
259 |
+
return true;
|
260 |
+
}else{
|
261 |
+
//TODO Better error handling needed if some bookings fail approval/failure
|
262 |
+
$this->feedback_message = __('An error occurred.', 'dbem');
|
263 |
+
return false;
|
264 |
+
}
|
265 |
+
}elseif( is_numeric($booking_ids) || is_object($booking_ids) ){
|
266 |
+
$EM_Booking = ( is_object($booking_ids) && get_class($booking_ids) == 'EM_Booking') ? $booking_ids : new EM_Booking($booking_ids);
|
267 |
+
$result = $EM_Booking->set_status($status);
|
268 |
+
$this->feedback_message = $EM_Booking->feedback_message;
|
269 |
+
return $result;
|
270 |
+
}
|
271 |
+
return false;
|
272 |
+
}
|
273 |
+
|
274 |
+
|
275 |
+
/**
|
276 |
+
* Get the total number of spaces this event has. This will show the lower value of event global spaces limit or total ticket spaces. Setting $force_refresh to true will recheck spaces, even if previously done so.
|
277 |
+
* @param boolean $force_refresh
|
278 |
+
* @return int
|
279 |
+
*/
|
280 |
+
function get_spaces( $force_refresh=false ){
|
281 |
+
if($force_refresh || $this->spaces == 0){
|
282 |
+
$this->spaces = $this->get_tickets()->get_spaces();
|
283 |
+
}
|
284 |
+
return apply_filters('em_booking_get_spaces',$this->spaces,$this);
|
285 |
+
}
|
286 |
+
|
287 |
+
/**
|
288 |
+
* Returns number of available spaces for this event. If approval of bookings is on, will include pending bookings depending on em option.
|
289 |
+
* @return int
|
290 |
+
*/
|
291 |
+
function get_available_spaces(){
|
292 |
+
$available_spaces = 0;
|
293 |
+
if( get_option('dbem_bookings_approval_reserved') == 1 ){
|
294 |
+
$available_spaces = $this->get_spaces() - $this->get_booked_spaces() - $this->get_pending_spaces();
|
295 |
+
}else{
|
296 |
+
$available_spaces = $this->get_spaces() - $this->get_booked_spaces();
|
297 |
+
}
|
298 |
+
return apply_filters('em_booking_get_available_spaces', $available_spaces, $this);
|
299 |
+
}
|
300 |
+
|
301 |
+
/**
|
302 |
+
* Returns number of booked spaces for this event. If approval of bookings is on, will return number of booked confirmed spaces.
|
303 |
+
* @return int
|
304 |
+
*/
|
305 |
+
function get_booked_spaces($force_refresh = false){
|
306 |
+
$booked_spaces = 0;
|
307 |
+
$EM_Bookings = $this->get_bookings(); //get bookings, automatically filtering approvals etc.
|
308 |
+
foreach ( $EM_Bookings->bookings as $EM_Booking ){
|
309 |
+
//never show cancelled status, nor pending if approvals required
|
310 |
+
$booked_spaces += $EM_Booking->get_spaces($force_refresh);
|
311 |
+
}
|
312 |
+
return $booked_spaces;
|
313 |
+
}
|
314 |
+
|
315 |
+
/**
|
316 |
+
* Gets number of pending spaces awaiting approval. Will return 0 if booking approval is not enabled.
|
317 |
+
* @return int
|
318 |
+
*/
|
319 |
+
function get_pending_spaces(){
|
320 |
+
if( get_option('dbem_bookings_approval') == 0 ){
|
321 |
+
return 0;
|
322 |
+
}
|
323 |
+
$pending = 0;
|
324 |
+
foreach ( $this->bookings as $booking ){
|
325 |
+
if($booking->status == 0){
|
326 |
+
$pending += $booking->get_spaces();
|
327 |
+
}
|
328 |
+
}
|
329 |
+
return apply_filters('em_bookings_get_pending_spaces', $pending, $this);
|
330 |
+
}
|
331 |
+
|
332 |
+
/**
|
333 |
+
* Gets number of bookings (not spaces). If booking approval is enabled, only the number of approved bookings will be shown.
|
334 |
+
* @return EM_Bookings
|
335 |
+
*/
|
336 |
+
function get_bookings(){
|
337 |
+
$confirmed = array();
|
338 |
+
foreach ( $this->bookings as $booking ){
|
339 |
+
if( $booking->status == 1 || (get_option('dbem_bookings_approval') == 0 && in_array($booking->status, array(0,1))) ){
|
340 |
+
$confirmed[] = $booking;
|
341 |
+
}
|
342 |
+
}
|
343 |
+
$EM_Bookings = new EM_Bookings($confirmed);
|
344 |
+
return $EM_Bookings;
|
345 |
+
}
|
346 |
+
|
347 |
+
/**
|
348 |
+
* Get pending bookings. If booking approval is disabled, will return no bookings.
|
349 |
+
* @return EM_Bookings
|
350 |
+
*/
|
351 |
+
function get_pending_bookings(){
|
352 |
+
if( get_option('dbem_bookings_approval') == 0 ){
|
353 |
+
return array();
|
354 |
+
}
|
355 |
+
$pending = array();
|
356 |
+
foreach ( $this->bookings as $booking ){
|
357 |
+
if($booking->status == 0){
|
358 |
+
$pending[] = $booking;
|
359 |
+
}
|
360 |
+
}
|
361 |
+
$EM_Bookings = new EM_Bookings($pending);
|
362 |
+
return $EM_Bookings;
|
363 |
+
}
|
364 |
+
|
365 |
+
/**
|
366 |
+
* Get rejected bookings. If booking approval is disabled, will return no bookings.
|
367 |
+
* @return array EM_Bookings
|
368 |
+
*/
|
369 |
+
function get_rejected_bookings(){
|
370 |
+
$rejected = array();
|
371 |
+
foreach ( $this->bookings as $booking ){
|
372 |
+
if($booking->status == 2){
|
373 |
+
$rejected[] = $booking;
|
374 |
+
}
|
375 |
+
}
|
376 |
+
$EM_Bookings = new EM_Bookings($rejected);
|
377 |
+
return $EM_Bookings;
|
378 |
+
}
|
379 |
+
|
380 |
+
/**
|
381 |
+
* Get cancelled bookings.
|
382 |
+
* @return array EM_Booking
|
383 |
+
*/
|
384 |
+
function get_cancelled_bookings(){
|
385 |
+
$cancelled = array();
|
386 |
+
foreach ( $this->bookings as $booking ){
|
387 |
+
if($booking->status == 3){
|
388 |
+
$cancelled[] = $booking;
|
389 |
+
}
|
390 |
+
}
|
391 |
+
$EM_Bookings = new EM_Bookings($cancelled);
|
392 |
+
return $EM_Bookings;
|
393 |
+
}
|
394 |
+
|
395 |
+
/**
|
396 |
+
* Checks if a person with similar details has booked for this before
|
397 |
+
* @param $person_id
|
398 |
+
* @return EM_Booking
|
399 |
+
*/
|
400 |
+
function find_previous_booking($EM_Booking){
|
401 |
+
//First see if we have a similar person on record that's making this booking
|
402 |
+
$EM_Booking->person->load_similar();
|
403 |
+
//If person exists on record, see if they've booked this event before, if so return the booking.
|
404 |
+
if( is_numeric($EM_Booking->person->ID) && $EM_Booking->person->ID > 0 ){
|
405 |
+
$EM_Booking->person_id = $EM_Booking->person->ID;
|
406 |
+
foreach ($this->bookings as $booking){
|
407 |
+
if( $booking->person_id == $EM_Booking->person->ID ){
|
408 |
+
return $booking;
|
409 |
+
}
|
410 |
+
}
|
411 |
+
}
|
412 |
+
return false;
|
413 |
+
}
|
414 |
+
|
415 |
+
/**
|
416 |
+
* Checks to see if user has a booking for this event
|
417 |
+
* @param unknown_type $user_id
|
418 |
+
*/
|
419 |
+
function has_booking( $user_id = false ){
|
420 |
+
if( $user_id === false ){
|
421 |
+
$user_id = get_current_user_id();
|
422 |
+
}
|
423 |
+
if( is_numeric($user_id) && $user_id > 0 ){
|
424 |
+
foreach ($this->bookings as $EM_Booking){
|
425 |
+
if( $EM_Booking->person->ID == $user_id && $EM_Booking->status != 3 ){
|
426 |
+
return apply_filters('em_bookings_has_booking', $EM_Booking, $this);
|
427 |
+
}
|
428 |
+
}
|
429 |
+
}
|
430 |
+
return apply_filters('em_bookings_has_booking', false, $this);
|
431 |
+
}
|
432 |
+
|
433 |
+
/**
|
434 |
+
* Get bookings that match the array of arguments passed.
|
435 |
+
* @return array
|
436 |
+
* @static
|
437 |
+
*/
|
438 |
+
function get( $args = array() ){
|
439 |
+
global $wpdb,$current_user;
|
440 |
+
$bookings_table = EM_BOOKINGS_TABLE;
|
441 |
+
$events_table = EM_EVENTS_TABLE;
|
442 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
443 |
+
|
444 |
+
//Quick version, we can accept an array of IDs, which is easy to retrieve
|
445 |
+
if( self::array_is_numeric($args) ){ //Array of numbers, assume they are event IDs to retreive
|
446 |
+
//We can just get all the events here and return them
|
447 |
+
$sql = "
|
448 |
+
SELECT * FROM $bookings_table b
|
449 |
+
LEFT JOIN $events_table e ON e.event_id=b.event_id
|
450 |
+
WHERE booking_id".implode(" OR booking_id=", $args);
|
451 |
+
$results = $wpdb->get_results(apply_filters('em_bookings_get_sql',$sql),ARRAY_A);
|
452 |
+
$bookings = array();
|
453 |
+
foreach($results as $result){
|
454 |
+
$bookings[] = new EM_Booking($result);
|
455 |
+
}
|
456 |
+
return $bookings; //We return all the bookings matched as an EM_Booking array.
|
457 |
+
}
|
458 |
+
|
459 |
+
//We assume it's either an empty array or array of search arguments to merge with defaults
|
460 |
+
$args = self::get_default_search($args);
|
461 |
+
$limit = ( $args['limit'] && is_numeric($args['limit'])) ? "LIMIT {$args['limit']}" : '';
|
462 |
+
$offset = ( $limit != "" && is_numeric($args['offset']) ) ? "OFFSET {$args['offset']}" : '';
|
463 |
+
|
464 |
+
//Get the default conditions
|
465 |
+
$conditions = self::build_sql_conditions($args);
|
466 |
+
//Put it all together
|
467 |
+
$where = ( count($conditions) > 0 ) ? " WHERE " . implode ( " AND ", $conditions ):'';
|
468 |
+
|
469 |
+
//Get ordering instructions
|
470 |
+
$EM_Booking = new EM_Booking();
|
471 |
+
$accepted_fields = $EM_Booking->get_fields(true);
|
472 |
+
$orderby = self::build_sql_orderby($args, $accepted_fields);
|
473 |
+
//Now, build orderby sql
|
474 |
+
$orderby_sql = ( count($orderby) > 0 ) ? 'ORDER BY '. implode(', ', $orderby) : '';
|
475 |
+
|
476 |
+
//Create the SQL statement and execute
|
477 |
+
$sql = "
|
478 |
+
SELECT * FROM $bookings_table
|
479 |
+
LEFT JOIN $events_table ON {$events_table}.event_id={$bookings_table}.event_id
|
480 |
+
LEFT JOIN $locations_table ON {$locations_table}.location_id={$events_table}.location_id
|
481 |
+
$where
|
482 |
+
$orderby_sql
|
483 |
+
$limit $offset
|
484 |
+
";
|
485 |
+
$results = $wpdb->get_results( apply_filters('em_events_get_sql',$sql, $args), ARRAY_A);
|
486 |
+
|
487 |
+
//If we want results directly in an array, why not have a shortcut here?
|
488 |
+
if( $args['array'] == true ){
|
489 |
+
return $results;
|
490 |
+
}
|
491 |
+
|
492 |
+
//Make returned results EM_Booking objects
|
493 |
+
$results = (is_array($results)) ? $results:array();
|
494 |
+
$bookings = array();
|
495 |
+
foreach ( $results as $booking ){
|
496 |
+
$bookings[] = new EM_Booking($booking);
|
497 |
+
}
|
498 |
+
$EM_Bookings = new EM_Bookings($bookings);
|
499 |
+
return apply_filters('em_bookings_get', $EM_Bookings);
|
500 |
+
}
|
501 |
+
|
502 |
+
|
503 |
+
//List of patients in the patient database, that a user can choose and go on to edit any previous treatment data, or add a new admission.
|
504 |
+
function export_csv() {
|
505 |
+
global $EM_Event;
|
506 |
+
if($EM_Event->id != $this->event->id ){
|
507 |
+
$event = new EM_Event($this->event->id);
|
508 |
+
$event_name = $event->name;
|
509 |
+
}else{
|
510 |
+
$event_name = $EM_Event->name;
|
511 |
+
}
|
512 |
+
// The name of the file on the user's pc
|
513 |
+
$file_name = sanitize_title($event_name). "-bookings.csv";
|
514 |
+
|
515 |
+
header("Content-Type: application/octet-stream");
|
516 |
+
header("Content-Disposition: Attachment; filename=$file_name");
|
517 |
+
em_locate_template('templates/csv-event-bookings.php', true);
|
518 |
+
exit();
|
519 |
+
}
|
520 |
+
|
521 |
+
/* Overrides EM_Object method to apply a filter to result
|
522 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_conditions()
|
523 |
+
*/
|
524 |
+
function build_sql_conditions( $args = array() ){
|
525 |
+
$conditions = apply_filters( 'em_bookings_build_sql_conditions', parent::build_sql_conditions($args), $args );
|
526 |
+
if( is_numeric($args['status']) ){
|
527 |
+
$conditions['status'] = 'booking_status='.$args['status'];
|
528 |
+
}
|
529 |
+
return apply_filters('em_bookings_build_sql_conditions', $conditions, $args);
|
530 |
+
}
|
531 |
+
|
532 |
+
/* Overrides EM_Object method to apply a filter to result
|
533 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_orderby()
|
534 |
+
*/
|
535 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
536 |
+
return apply_filters( 'em_bookings_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order')), $args, $accepted_fields, $default_order );
|
537 |
+
}
|
538 |
+
|
539 |
+
/*
|
540 |
+
* Adds custom Events search defaults
|
541 |
+
* @param array $array
|
542 |
+
* @return array
|
543 |
+
* @uses EM_Object#get_default_search()
|
544 |
+
*/
|
545 |
+
function get_default_search( $array = array() ){
|
546 |
+
$defaults = array(
|
547 |
+
'status' => false,
|
548 |
+
'person' => true //to add later, search by person's bookings...
|
549 |
+
);
|
550 |
+
if( true || is_admin() ){
|
551 |
+
//figure out default owning permissions
|
552 |
+
if( !current_user_can('edit_others_events') ){
|
553 |
+
$defaults['owner'] = get_current_user_id();
|
554 |
+
}else{
|
555 |
+
$defaults['owner'] = false;
|
556 |
+
}
|
557 |
+
}
|
558 |
+
return apply_filters('em_bookings_get_default_search', parent::get_default_search($defaults,$array), $array, $defaults);
|
559 |
+
}
|
560 |
+
|
561 |
+
//Iterator Implementation
|
562 |
+
public function rewind(){
|
563 |
+
reset($this->bookings);
|
564 |
+
}
|
565 |
+
public function current(){
|
566 |
+
$var = current($this->bookings);
|
567 |
+
return $var;
|
568 |
+
}
|
569 |
+
public function key(){
|
570 |
+
$var = key($this->bookings);
|
571 |
+
return $var;
|
572 |
+
}
|
573 |
+
public function next(){
|
574 |
+
$var = next($this->bookings);
|
575 |
+
return $var;
|
576 |
+
}
|
577 |
+
public function valid(){
|
578 |
+
$key = key($this->bookings);
|
579 |
+
$var = ($key !== NULL && $key !== FALSE);
|
580 |
+
return $var;
|
581 |
+
}
|
582 |
+
}
|
583 |
?>
|
classes/em-calendar.php
CHANGED
@@ -1,366 +1,320 @@
|
|
1 |
-
<?php
|
2 |
-
class EM_Calendar extends EM_Object {
|
3 |
-
|
4 |
-
function init(){
|
5 |
-
|
6 |
-
}
|
7 |
-
|
8 |
-
function
|
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 |
-
case "
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
|
47 |
-
$offset
|
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 |
-
foreach($
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
}
|
319 |
-
|
320 |
-
|
321 |
-
function days_in_month($month, $year) {
|
322 |
-
return date('t', mktime(0,0,0,$month,1,$year));
|
323 |
-
}
|
324 |
-
|
325 |
-
function translate_and_trim($string, $length = 1) {
|
326 |
-
return substr(__($string), 0, $length);
|
327 |
-
}
|
328 |
-
|
329 |
-
/**
|
330 |
-
* Helper function to create a link querystring from array which contains arguments with only values that aren't defuaults.
|
331 |
-
*/
|
332 |
-
function get_link_args($args = array(), $html_entities=true){
|
333 |
-
unset($args['month']); unset($args['year']);
|
334 |
-
$default_args = self::get_default_search(array());
|
335 |
-
foreach($default_args as $arg_key => $arg_value){
|
336 |
-
if( !isset($args[$arg_key]) || $args[$arg_key] == $arg_value ){
|
337 |
-
unset($args[$arg_key]);
|
338 |
-
}
|
339 |
-
}
|
340 |
-
$qs_array = array();
|
341 |
-
foreach($args as $key => $value){
|
342 |
-
if(is_array($value)){
|
343 |
-
$value = implode(',',$value);
|
344 |
-
}
|
345 |
-
$qs_array[] = "$key=".urlencode($value);
|
346 |
-
}
|
347 |
-
return ($html_entities) ? implode('&', $qs_array) : implode('&', $qs_array);
|
348 |
-
}
|
349 |
-
|
350 |
-
|
351 |
-
function get_default_search($array=array()){
|
352 |
-
//These defaults aren't for db queries, but flags for what to display in calendar output
|
353 |
-
$defaults = array(
|
354 |
-
'full' => 0, //Will display a full calendar with event names
|
355 |
-
'long_events' => 0, //Events that last longer than a day
|
356 |
-
'scope' => 'all',
|
357 |
-
'owner' => false
|
358 |
-
);
|
359 |
-
$atts = parent::get_default_search($defaults, $array);
|
360 |
-
$atts['full'] = ($atts['full']==true) ? 1:0;
|
361 |
-
$atts['long_events'] = ($atts['long_events']==true) ? 1:0;
|
362 |
-
return apply_filters('em_calendar_get_default_search', $atts, $array, $defaults);
|
363 |
-
}
|
364 |
-
}
|
365 |
-
add_action('init', array('EM_Calendar', 'init'));
|
366 |
-
?>
|
1 |
+
<?php
|
2 |
+
class EM_Calendar extends EM_Object {
|
3 |
+
|
4 |
+
function init(){
|
5 |
+
//nothing to init anymore
|
6 |
+
}
|
7 |
+
|
8 |
+
function get( $args ){
|
9 |
+
|
10 |
+
global $wpdb;
|
11 |
+
|
12 |
+
$calendar_array = array();
|
13 |
+
$calendar_array['cells'] = array();
|
14 |
+
|
15 |
+
$args = self::get_default_search($args);
|
16 |
+
$full = $args['full']; //For ZDE, don't delete pls
|
17 |
+
$month = $args['month'];
|
18 |
+
$year = $args['year'];
|
19 |
+
$long_events = $args['long_events'];
|
20 |
+
|
21 |
+
$week_starts_on_sunday = get_option('dbem_week_starts_sunday');
|
22 |
+
$start_of_week = get_option('start_of_week');
|
23 |
+
|
24 |
+
if( !(is_numeric($month) && $month <= 12 && $month > 0) ) {
|
25 |
+
$month = date('m');
|
26 |
+
}
|
27 |
+
if( !( is_numeric($year) ) ){
|
28 |
+
$year = date('Y');
|
29 |
+
}
|
30 |
+
|
31 |
+
// Get the first day of the month
|
32 |
+
$month_start = mktime(0,0,0,$month, 1, $year);
|
33 |
+
$calendar_array['month_start'] = $month_start;
|
34 |
+
|
35 |
+
// Get friendly month name
|
36 |
+
$month_name = date('M',$month_start);
|
37 |
+
// Figure out which day of the week
|
38 |
+
// the month starts on.
|
39 |
+
$month_start_day = date('D', $month_start);
|
40 |
+
|
41 |
+
switch($month_start_day){
|
42 |
+
case "Sun": $offset = 0; break;
|
43 |
+
case "Mon": $offset = 1; break;
|
44 |
+
case "Tue": $offset = 2; break;
|
45 |
+
case "Wed": $offset = 3; break;
|
46 |
+
case "Thu": $offset = 4; break;
|
47 |
+
case "Fri": $offset = 5; break;
|
48 |
+
case "Sat": $offset = 6; break;
|
49 |
+
}
|
50 |
+
//We need to go back to the WP defined day when the week started, in case the event day is near the end
|
51 |
+
$offset -= $start_of_week;
|
52 |
+
if($offset<0)
|
53 |
+
$offset += 7;
|
54 |
+
|
55 |
+
// determine how many days are in the last month.
|
56 |
+
$month_last = $month-1;
|
57 |
+
$month_next = $month+1;
|
58 |
+
$calendar_array['month_next'] = $month_next;
|
59 |
+
$year_last = $year;
|
60 |
+
$year_next = $year;
|
61 |
+
$calendar_array['year_next'] = $year_next;
|
62 |
+
|
63 |
+
if($month == 1) {
|
64 |
+
$month_last = 12;
|
65 |
+
$year_last = $year -1;
|
66 |
+
}elseif($month == 12){
|
67 |
+
$month_next = 1;
|
68 |
+
$year_next = $year + 1;
|
69 |
+
}
|
70 |
+
$calendar_array['month_last'] = $month_last;
|
71 |
+
$calendar_array['year_last'] = $year_last;
|
72 |
+
|
73 |
+
$num_days_last = self::days_in_month($month_last, $year_last);
|
74 |
+
|
75 |
+
// determine how many days are in the current month.
|
76 |
+
$num_days_current = self::days_in_month($month, $year);
|
77 |
+
// Build an array for the current days
|
78 |
+
// in the month
|
79 |
+
for($i = 1; $i <= $num_days_current; $i++){
|
80 |
+
$num_days_array[] = mktime(0,0,0,$month, $i, $year);
|
81 |
+
}
|
82 |
+
// Build an array for the number of days
|
83 |
+
// in last month
|
84 |
+
for($i = 1; $i <= $num_days_last; $i++){
|
85 |
+
$num_days_last_array[] = mktime(0,0,0,$month_last, $i, $year_last);
|
86 |
+
}
|
87 |
+
// If the $offset from the starting day of the
|
88 |
+
// week happens to be Sunday, $offset would be 0,
|
89 |
+
// so don't need an offset correction.
|
90 |
+
|
91 |
+
if($offset > 0){
|
92 |
+
$offset_correction = array_slice($num_days_last_array, -$offset, $offset);
|
93 |
+
$new_count = array_merge($offset_correction, $num_days_array);
|
94 |
+
$offset_count = count($offset_correction);
|
95 |
+
} else { // The else statement is to prevent building the $offset array.
|
96 |
+
$offset_count = 0;
|
97 |
+
$new_count = $num_days_array;
|
98 |
+
}
|
99 |
+
// count how many days we have with the two
|
100 |
+
// previous arrays merged together
|
101 |
+
$current_num = count($new_count);
|
102 |
+
|
103 |
+
// Since we will have 5 HTML table rows (TR)
|
104 |
+
// with 7 table data entries (TD)
|
105 |
+
// we need to fill in 35 TDs
|
106 |
+
// so, we will have to figure out
|
107 |
+
// how many days to appened to the end
|
108 |
+
// of the final array to make it 35 days.
|
109 |
+
if($current_num > 35){
|
110 |
+
$num_weeks = 6;
|
111 |
+
$outset = (42 - $current_num);
|
112 |
+
} elseif($current_num < 35){
|
113 |
+
$num_weeks = 5;
|
114 |
+
$outset = (35 - $current_num);
|
115 |
+
}
|
116 |
+
if($current_num == 35){
|
117 |
+
$num_weeks = 5;
|
118 |
+
$outset = 0;
|
119 |
+
}
|
120 |
+
// Outset Correction
|
121 |
+
for($i = 1; $i <= $outset; $i++){
|
122 |
+
$new_count[] = mktime(0,0,0,$month_next, $i, $year_next);
|
123 |
+
}
|
124 |
+
// Now let's "chunk" the $all_days array
|
125 |
+
// into weeks. Each week has 7 days
|
126 |
+
// so we will array_chunk it into 7 days.
|
127 |
+
$weeks = array_chunk($new_count, 7);
|
128 |
+
|
129 |
+
//Get an array of arguments that don't include default valued args
|
130 |
+
$link_args = self::get_link_args($args);
|
131 |
+
|
132 |
+
$previous_url = "?ajaxCalendar=1&month={$month_last}&year={$year_last}&{$link_args}";
|
133 |
+
$next_url = "?ajaxCalendar=1&month={$month_next}&year={$year_next}&{$link_args}";
|
134 |
+
|
135 |
+
$weekdays = array('Sunday','Monday','Tuesday','Wednesday','Thursday','Friday','Saturday');
|
136 |
+
$n = 0 ;
|
137 |
+
while( $n < $start_of_week ) {
|
138 |
+
$last_day = array_shift($weekdays);
|
139 |
+
$weekdays[]= $last_day;
|
140 |
+
$n++;
|
141 |
+
}
|
142 |
+
|
143 |
+
$days_initials_array = array();
|
144 |
+
foreach($weekdays as $weekday) {
|
145 |
+
$days_initials_array[] = self::translate_and_trim($weekday);
|
146 |
+
}
|
147 |
+
|
148 |
+
$calendar_array['links'] = array( 'previous_url'=>$previous_url, 'next_url'=>$next_url);
|
149 |
+
$calendar_array['row_headers'] = $days_initials_array;
|
150 |
+
|
151 |
+
// Now we break each key of the array
|
152 |
+
// into a week and create a new table row for each
|
153 |
+
// week with the days of that week in the table data
|
154 |
+
|
155 |
+
$i = 0;
|
156 |
+
$current_date = date('Y-m-d', current_time('timestamp'));
|
157 |
+
$week_count = 0;
|
158 |
+
foreach ( $weeks as $week ) {
|
159 |
+
foreach ( $week as $d ) {
|
160 |
+
$date = date('Y-m-d', $d);
|
161 |
+
$calendar_array['cells'][$date] = array('date'=>$d); //set it up so we have the exact array of dates to be filled
|
162 |
+
if ($i < $offset_count) { //if it is PREVIOUS month
|
163 |
+
$calendar_array['cells'][$date]['type'] = 'pre';
|
164 |
+
}
|
165 |
+
if (($i >= $offset_count) && ($i < ($num_weeks * 7) - $outset)) { // if it is THIS month
|
166 |
+
if ( $current_date == $date ){
|
167 |
+
$calendar_array['cells'][$date]['type'] = 'today';
|
168 |
+
}
|
169 |
+
} elseif (($outset > 0)) { //if it is NEXT month
|
170 |
+
if (($i >= ($num_weeks * 7) - $outset)) {
|
171 |
+
$calendar_array['cells'][$date]['type'] = 'post';
|
172 |
+
}
|
173 |
+
}
|
174 |
+
$i ++;
|
175 |
+
}
|
176 |
+
$week_count++;
|
177 |
+
}
|
178 |
+
|
179 |
+
// query the database for events in this time span
|
180 |
+
if ($month == 1) {
|
181 |
+
$month_pre=12;
|
182 |
+
$month_post=2;
|
183 |
+
$year_pre=$year-1;
|
184 |
+
$year_post=$year;
|
185 |
+
} elseif($month == 12) {
|
186 |
+
$month_pre=11;
|
187 |
+
$month_post=1;
|
188 |
+
$year_pre=$year;
|
189 |
+
$year_post=$year+1;
|
190 |
+
} else {
|
191 |
+
$month_pre=$month-1;
|
192 |
+
$month_post=$month+1;
|
193 |
+
$year_pre=$year;
|
194 |
+
$year_post=$year;
|
195 |
+
}
|
196 |
+
$args['year'] = array($year_pre, $year_post);
|
197 |
+
$args['month'] = array($month_pre, $month_post);
|
198 |
+
$events = EM_Events::get($args);
|
199 |
+
|
200 |
+
$event_format = get_option('dbem_full_calendar_event_format');
|
201 |
+
$event_title_format = get_option('dbem_small_calendar_event_title_format');
|
202 |
+
$event_title_separator_format = get_option('dbem_small_calendar_event_title_separator');
|
203 |
+
|
204 |
+
$eventful_days= array();
|
205 |
+
if($events){
|
206 |
+
//Go through the events and slot them into the right d-m index
|
207 |
+
foreach($events as $event) {
|
208 |
+
$event = apply_filters('em_calendar_output_loop_start', $event);
|
209 |
+
if( $long_events ){
|
210 |
+
//If $long_events is set then show a date as eventful if there is an multi-day event which runs during that day
|
211 |
+
$event_start_date = mktime(0,0,0,$month_pre,1,$year_pre);
|
212 |
+
$event_end_date = mktime(0,0,0,$month_post,date('t', $event_start_date),$year_post );
|
213 |
+
if( $event_end_date == '' ) $event_end_date = $event_start_date;
|
214 |
+
while( $event_start_date <= $event->end ){
|
215 |
+
//Ensure date is within event dates, if so add to eventful days array
|
216 |
+
if( $event_start_date > $event->start - (86400) ){ //subtract a day since start may be later in day
|
217 |
+
$event_eventful_date = date('Y-m-d', $event_start_date);
|
218 |
+
if( array_key_exists($event_eventful_date, $eventful_days) && is_array($eventful_days[$event_eventful_date]) ){
|
219 |
+
$eventful_days[$event_eventful_date][] = $event;
|
220 |
+
} else {
|
221 |
+
$eventful_days[$event_eventful_date] = array($event);
|
222 |
+
}
|
223 |
+
}
|
224 |
+
$event_start_date += (86400); //add a day
|
225 |
+
}
|
226 |
+
}else{
|
227 |
+
//Only show events on the day that they start
|
228 |
+
if( isset($eventful_days[$event->start_date]) && is_array($eventful_days[$event->start_date]) ){
|
229 |
+
$eventful_days[$event->start_date][] = $event;
|
230 |
+
} else {
|
231 |
+
$eventful_days[$event->start_date] = array($event);
|
232 |
+
}
|
233 |
+
}
|
234 |
+
$event = apply_filters('em_calendar_output_loop_end', $event);
|
235 |
+
}
|
236 |
+
}
|
237 |
+
foreach($eventful_days as $day_key => $events) {
|
238 |
+
if( array_key_exists($day_key, $calendar_array['cells']) ){
|
239 |
+
//Get link title for this date
|
240 |
+
$events_titles = array();
|
241 |
+
foreach($events as $event) {
|
242 |
+
$events_titles[] = $event->output($event_title_format);
|
243 |
+
}
|
244 |
+
$calendar_array['cells'][$day_key]['link_title'] = implode( $event_title_separator_format, $events_titles);
|
245 |
+
|
246 |
+
//Get the link to this calendar day
|
247 |
+
global $wp_rewrite;
|
248 |
+
$event_page_link = trailingslashit(get_permalink(get_option('dbem_events_page'))); //don't use EM_URI here, since ajax calls this before EM_URI is defined.
|
249 |
+
if( $wp_rewrite->using_permalinks() && !defined('EM_DISABLE_PERMALINKS') ){
|
250 |
+
$calendar_array['cells'][$day_key]['link'] = $event_page_link.$day_key."/";
|
251 |
+
}else{
|
252 |
+
$joiner = (stristr($event_page_link, "?")) ? "&" : "?";
|
253 |
+
$calendar_array['cells'][$day_key]['link'] = $event_page_link.$joiner."calendar_day=".$day_key;
|
254 |
+
}
|
255 |
+
//Add events to array
|
256 |
+
$calendar_array['cells'][$day_key]['events'] = $events;
|
257 |
+
}
|
258 |
+
}
|
259 |
+
return apply_filters('em_calendar_get',$calendar_array, $args);
|
260 |
+
}
|
261 |
+
|
262 |
+
function output($args = array()) {
|
263 |
+
$calendar_array = self::get($args);
|
264 |
+
$template = (!empty($args['full'])) ? 'templates/calendar-full.php':'templates/calendar-small.php';
|
265 |
+
ob_start();
|
266 |
+
em_locate_template($template, true, array('calendar'=>$calendar_array,'args'=>$args));
|
267 |
+
$calendar = '<div id="em-calendar-'.rand(100,200).'" class="em-calendar-wrapper">'.ob_get_clean().'</div>';
|
268 |
+
return apply_filters('em_calendar_output', $calendar, $args);
|
269 |
+
}
|
270 |
+
|
271 |
+
|
272 |
+
function days_in_month($month, $year) {
|
273 |
+
return date('t', mktime(0,0,0,$month,1,$year));
|
274 |
+
}
|
275 |
+
|
276 |
+
function translate_and_trim($string, $length = 1) {
|
277 |
+
if(function_exists('mb_substr')){ //fix for diacritic calendar names
|
278 |
+
return mb_substr(__($string), 0, $length);
|
279 |
+
}else{
|
280 |
+
return substr(__($string), 0, $length);
|
281 |
+
}
|
282 |
+
}
|
283 |
+
|
284 |
+
/**
|
285 |
+
* Helper function to create a link querystring from array which contains arguments with only values that aren't defuaults.
|
286 |
+
*/
|
287 |
+
function get_link_args($args = array(), $html_entities=true){
|
288 |
+
unset($args['month']); unset($args['year']);
|
289 |
+
$default_args = self::get_default_search(array());
|
290 |
+
foreach($default_args as $arg_key => $arg_value){
|
291 |
+
if( !isset($args[$arg_key]) || $args[$arg_key] == $arg_value ){
|
292 |
+
unset($args[$arg_key]);
|
293 |
+
}
|
294 |
+
}
|
295 |
+
$qs_array = array();
|
296 |
+
foreach($args as $key => $value){
|
297 |
+
if(is_array($value)){
|
298 |
+
$value = implode(',',$value);
|
299 |
+
}
|
300 |
+
$qs_array[] = "$key=".urlencode($value);
|
301 |
+
}
|
302 |
+
return ($html_entities) ? implode('&', $qs_array) : implode('&', $qs_array);
|
303 |
+
}
|
304 |
+
|
305 |
+
|
306 |
+
function get_default_search($array=array()){
|
307 |
+
//These defaults aren't for db queries, but flags for what to display in calendar output
|
308 |
+
$defaults = array(
|
309 |
+
'full' => 0, //Will display a full calendar with event names
|
310 |
+
'long_events' => 0, //Events that last longer than a day
|
311 |
+
'scope' => 'future',
|
312 |
+
'owner' => false
|
313 |
+
);
|
314 |
+
$atts = parent::get_default_search($defaults, $array);
|
315 |
+
$atts['full'] = ($atts['full']==true) ? 1:0;
|
316 |
+
$atts['long_events'] = ($atts['long_events']==true) ? 1:0;
|
317 |
+
return apply_filters('em_calendar_get_default_search', $atts, $array, $defaults);
|
318 |
+
}
|
319 |
+
}
|
320 |
+
add_action('init', array('EM_Calendar', 'init'));
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/em-categories.php
CHANGED
@@ -1,157 +1,315 @@
|
|
1 |
-
<?php
|
2 |
-
class EM_Categories extends EM_Object {
|
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 |
-
if(
|
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 |
}
|
1 |
+
<?php
|
2 |
+
class EM_Categories extends EM_Object implements Iterator{
|
3 |
+
|
4 |
+
/**
|
5 |
+
* Array of EM_Category objects for a specific event
|
6 |
+
* @var array
|
7 |
+
*/
|
8 |
+
var $categories = array();
|
9 |
+
/**
|
10 |
+
* @var EM_Event
|
11 |
+
*/
|
12 |
+
var $event;
|
13 |
+
|
14 |
+
/**
|
15 |
+
* Creates an EM_Categories instance, currently accepts an EM_Event object (gets all Categories for that event) or array of any EM_Category objects, which can be manipulated in bulk with helper functions.
|
16 |
+
* @param EM_Event $event
|
17 |
+
* @return null
|
18 |
+
*/
|
19 |
+
function EM_Categories( $data = false ){
|
20 |
+
if( is_object($data) && get_class($data) == "EM_Event" ){ //Creates a blank categories object if needed
|
21 |
+
global $wpdb;
|
22 |
+
$this->event = $data;
|
23 |
+
$sql = "SELECT meta_value FROM ". EM_META_TABLE ." WHERE meta_key='event-category' AND object_id ='{$this->event->id}'";
|
24 |
+
$categories = $wpdb->get_results($sql, ARRAY_A);
|
25 |
+
foreach ($categories as $category_data){
|
26 |
+
$this->categories[] = new EM_Category($category_data['meta_value']);
|
27 |
+
}
|
28 |
+
}elseif( is_array($data) && $this->array_is_numeric($data) ){
|
29 |
+
foreach($data as $category_id){
|
30 |
+
$this->categories[] = new EM_Category($category_id);
|
31 |
+
}
|
32 |
+
}elseif( is_array($data) ){
|
33 |
+
foreach( $data as $EM_Category ){
|
34 |
+
if( get_class($EM_Category) == 'EM_Category'){
|
35 |
+
$this->categories[] = $EM_Category;
|
36 |
+
}
|
37 |
+
}
|
38 |
+
$this->get_event();
|
39 |
+
}
|
40 |
+
}
|
41 |
+
|
42 |
+
function get( $args = array() ) {
|
43 |
+
global $wpdb;
|
44 |
+
$categories_table = EM_CATEGORIES_TABLE;
|
45 |
+
$events_table = EM_EVENTS_TABLE;
|
46 |
+
|
47 |
+
//Quick version, we can accept an array of IDs, which is easy to retrieve
|
48 |
+
if( self::array_is_numeric($args) ){ //Array of numbers, assume they are event IDs to retreive
|
49 |
+
//We can just get all the events here and return them
|
50 |
+
$sql = "SELECT * FROM $categories_table WHERE category_id=".implode(" OR category_id=", $args);
|
51 |
+
$results = $wpdb->get_results(apply_filters('em_categories_get_sql',$sql),ARRAY_A);
|
52 |
+
$categories = array();
|
53 |
+
foreach($results as $result){
|
54 |
+
$categories[$result['category_id']] = new EM_Category($result);
|
55 |
+
}
|
56 |
+
return apply_filters('em_categories_get', $categories, $args); //We return all the categories matched as an EM_Event array.
|
57 |
+
}
|
58 |
+
|
59 |
+
//We assume it's either an empty array or array of search arguments to merge with defaults
|
60 |
+
$args = self::get_default_search($args);
|
61 |
+
$limit = ( $args['limit'] && is_numeric($args['limit'])) ? "LIMIT {$args['limit']}" : '';
|
62 |
+
$offset = ( $limit != "" && is_numeric($args['offset']) ) ? "OFFSET {$args['offset']}" : '';
|
63 |
+
|
64 |
+
//Get the default conditions
|
65 |
+
$conditions = self::build_sql_conditions($args);
|
66 |
+
//Put it all together
|
67 |
+
$where = ( count($conditions) > 0 ) ? " WHERE " . implode ( " AND ", $conditions ):'';
|
68 |
+
|
69 |
+
//Get ordering instructions
|
70 |
+
$EM_Category = new EM_Category();
|
71 |
+
$accepted_fields = $EM_Category->get_fields(true);
|
72 |
+
$orderby = self::build_sql_orderby($args, $accepted_fields, get_option('dbem_categories_default_order'));
|
73 |
+
//Now, build orderby sql
|
74 |
+
$orderby_sql = ( count($orderby) > 0 ) ? 'ORDER BY '. implode(', ', $orderby) : '';
|
75 |
+
|
76 |
+
//Create the SQL statement and execute
|
77 |
+
$sql = "
|
78 |
+
SELECT * FROM $categories_table
|
79 |
+
$where
|
80 |
+
GROUP BY category_id
|
81 |
+
$orderby_sql
|
82 |
+
$limit $offset
|
83 |
+
";
|
84 |
+
$results = $wpdb->get_results( apply_filters('em_categories_get_sql',$sql, $args), ARRAY_A);
|
85 |
+
//If we want results directly in an array, why not have a shortcut here?
|
86 |
+
if( $args['array'] == true ){
|
87 |
+
return apply_filters('em_categories_get_array', $results, $args);
|
88 |
+
}
|
89 |
+
|
90 |
+
//Make returned results EM_Event objects
|
91 |
+
$results = (is_array($results)) ? $results:array();
|
92 |
+
$categories = array();
|
93 |
+
foreach ( $results as $category_array ){
|
94 |
+
$categories[$category_array['category_id']] = new EM_Category($category_array);
|
95 |
+
}
|
96 |
+
|
97 |
+
return apply_filters('em_categories_get', $categories, $args);
|
98 |
+
}
|
99 |
+
|
100 |
+
/**
|
101 |
+
* Will delete given an array of category_ids or EM_Event objects
|
102 |
+
* @param unknown_type $id_array
|
103 |
+
*/
|
104 |
+
function delete( $array ){
|
105 |
+
global $wpdb;
|
106 |
+
//Detect array type and generate SQL for event IDs
|
107 |
+
$category_ids = array();
|
108 |
+
if( @get_class(current($array)) == 'EM_Category' ){
|
109 |
+
foreach($array as $EM_Category){
|
110 |
+
$category_ids[] = $EM_Category->id;
|
111 |
+
}
|
112 |
+
}else{
|
113 |
+
$category_ids = $array;
|
114 |
+
}
|
115 |
+
if(self::array_is_numeric($category_ids)){
|
116 |
+
apply_filters('em_categories_delete', $category_ids);
|
117 |
+
$condition = implode(" OR category_id=", $category_ids);
|
118 |
+
//Delete all the categories
|
119 |
+
$result_categories = $wpdb->query("DELETE FROM ". EM_CATEGORIES_TABLE ." WHERE category_id=$condition;");
|
120 |
+
//Now delete the categories
|
121 |
+
$result = $wpdb->query ( "DELETE FROM ". EM_CATEGORIES_TABLE ." WHERE category_id=$condition;" );
|
122 |
+
do_action('em_categories_delete', $category_ids);
|
123 |
+
}
|
124 |
+
//TODO add error detection on categories delete fails
|
125 |
+
return apply_filters('em_categories_delete', true, $category_ids);
|
126 |
+
}
|
127 |
+
|
128 |
+
function output( $args ){
|
129 |
+
global $EM_Category;
|
130 |
+
$EM_Category_old = $EM_Category; //When looping, we can replace EM_Category global with the current event in the loop
|
131 |
+
//Can be either an array for the get search or an array of EM_Category objects
|
132 |
+
if( is_object(current($args)) && get_class((current($args))) == 'EM_Category' ){
|
133 |
+
$func_args = func_get_args();
|
134 |
+
$categories = $func_args[0];
|
135 |
+
$args = (!empty($func_args[1])) ? $func_args[1] : array();
|
136 |
+
$args = apply_filters('em_categories_output_args', self::get_default_search($args), $categories);
|
137 |
+
$limit = ( !empty($args['limit']) && is_numeric($args['limit']) ) ? $args['limit']:false;
|
138 |
+
$offset = ( !empty($args['offset']) && is_numeric($args['offset']) ) ? $args['offset']:0;
|
139 |
+
$page = ( !empty($args['page']) && is_numeric($args['page']) ) ? $args['page']:1;
|
140 |
+
}else{
|
141 |
+
$args = apply_filters('em_categories_output_args', self::get_default_search($args) );
|
142 |
+
$limit = ( !empty($args['limit']) && is_numeric($args['limit']) ) ? $args['limit']:false;
|
143 |
+
$offset = ( !empty($args['offset']) && is_numeric($args['offset']) ) ? $args['offset']:0;
|
144 |
+
$page = ( !empty($args['page']) && is_numeric($args['page']) ) ? $args['page']:1;
|
145 |
+
$args['limit'] = false;
|
146 |
+
$args['offset'] = false;
|
147 |
+
$args['page'] = false;
|
148 |
+
$categories = self::get( $args );
|
149 |
+
}
|
150 |
+
//What format shall we output this to, or use default
|
151 |
+
$format = ( $args['format'] == '' ) ? get_option( 'dbem_categories_list_item_format' ) : $args['format'] ;
|
152 |
+
|
153 |
+
$output = "";
|
154 |
+
$categories_count = count($categories);
|
155 |
+
$categories = apply_filters('em_categories_output_categories', $categories);
|
156 |
+
if ( count($categories) > 0 ) {
|
157 |
+
$category_count = 0;
|
158 |
+
$categories_shown = 0;
|
159 |
+
foreach ( $categories as $EM_Category ) {
|
160 |
+
if( ($categories_shown < $limit || empty($limit)) && ($category_count >= $offset || $offset === 0) ){
|
161 |
+
$output .= $EM_Category->output($format);
|
162 |
+
$categories_shown++;
|
163 |
+
}
|
164 |
+
$category_count++;
|
165 |
+
}
|
166 |
+
//Add headers and footers to output
|
167 |
+
if( $format == get_option ( 'dbem_categories_list_item_format' ) ){
|
168 |
+
$single_event_format_header = get_option ( 'dbem_categories_list_item_format_header' );
|
169 |
+
$single_event_format_header = ( $single_event_format_header != '' ) ? $single_event_format_header : "<ul class='em-categories-list'>";
|
170 |
+
$single_event_format_footer = get_option ( 'dbem_categories_list_item_format_footer' );
|
171 |
+
$single_event_format_footer = ( $single_event_format_footer != '' ) ? $single_event_format_footer : "</ul>";
|
172 |
+
$output = $single_event_format_header . $output . $single_event_format_footer;
|
173 |
+
}
|
174 |
+
//Pagination (if needed/requested)
|
175 |
+
if( !empty($args['pagination']) && !empty($limit) && $categories_count >= $limit ){
|
176 |
+
//Show the pagination links (unless there's less than 10 events, or the custom limit)
|
177 |
+
$page_link_template = preg_replace('/(&|\?)page=\d+/i','',$_SERVER['REQUEST_URI']);
|
178 |
+
$page_link_template = em_add_get_params($page_link_template, array('page'=>'%PAGE%'));
|
179 |
+
$output .= apply_filters('em_events_output_pagination', em_paginate( $page_link_template, $categories_count, $limit, $page), $page_link_template, $categories_count, $limit, $page);
|
180 |
+
}
|
181 |
+
} else {
|
182 |
+
$output = get_option ( 'dbem_no_categories_message' );
|
183 |
+
}
|
184 |
+
//FIXME check if reference is ok when restoring object, due to changes in php5 v 4
|
185 |
+
$EM_Category_old= $EM_Category;
|
186 |
+
return apply_filters('em_categories_output', $output, $categories, $args);
|
187 |
+
}
|
188 |
+
|
189 |
+
/**
|
190 |
+
* If these categories collection are connected with an existing EM_Event object, then we can add categories to this event.
|
191 |
+
*/
|
192 |
+
function save(){
|
193 |
+
if( !empty($this->get_event()->id) ){
|
194 |
+
global $wpdb;
|
195 |
+
$event_id = $this->event->id;
|
196 |
+
//remove old cats
|
197 |
+
$wpdb->query('DELETE FROM '.EM_META_TABLE." WHERE object_id='$event_id' AND meta_key='event-category'");
|
198 |
+
//Now add new ones
|
199 |
+
$inserts = array();
|
200 |
+
foreach($this->get_ids() as $id){
|
201 |
+
$inserts[] = "($event_id,'event-category',$id)";
|
202 |
+
}
|
203 |
+
if( count($inserts) > 0 ){
|
204 |
+
$result = $wpdb->query("INSERT INTO ".EM_META_TABLE." (`object_id`,`meta_key`,`meta_value`) VALUES ".implode(',',$inserts));
|
205 |
+
if( $result === false ){
|
206 |
+
$this->add_error( sprintf(__('Could not save the %s details due to a database error.', 'dbem'),__('category','dbem') ));
|
207 |
+
}
|
208 |
+
}
|
209 |
+
}
|
210 |
+
return apply_filters('em_categories_save', count($this->errors) == 0, $this);
|
211 |
+
}
|
212 |
+
|
213 |
+
function has( $search ){
|
214 |
+
if( is_numeric($search) ){
|
215 |
+
foreach($this->categories as $EM_Category){
|
216 |
+
if($EM_Category->id == $search) return apply_filters('em_categories_has', true, $search, $this);
|
217 |
+
}
|
218 |
+
}
|
219 |
+
return apply_filters('em_categories_has', false, $search, $this);
|
220 |
+
}
|
221 |
+
|
222 |
+
function get_ids(){
|
223 |
+
$ids = array();
|
224 |
+
foreach($this->categories as $EM_Category){
|
225 |
+
if( !empty($EM_Category->id) ){
|
226 |
+
$ids[] = $EM_Category->id;
|
227 |
+
}
|
228 |
+
}
|
229 |
+
return $ids;
|
230 |
+
}
|
231 |
+
|
232 |
+
/**
|
233 |
+
* Gets the event for this object, or a blank event if none exists
|
234 |
+
* @return EM_Event
|
235 |
+
*/
|
236 |
+
function get_event(){
|
237 |
+
if( !( is_object($this->event) && get_class($this->event) == 'EM_Event' ) ){
|
238 |
+
$this->event = new EM_Event();
|
239 |
+
}
|
240 |
+
return apply_filters('em_categories_get_event', $this->event, $this);
|
241 |
+
}
|
242 |
+
|
243 |
+
/* Overrides EM_Object method to apply a filter to result. Categories won't accept many arguments as you tend to search with events for much else.
|
244 |
+
* @see wp-content/plugins/categories-manager/classes/EM_Object#build_sql_conditions()
|
245 |
+
*/
|
246 |
+
function build_sql_conditions( $args = array() ){
|
247 |
+
global $wpdb;
|
248 |
+
$events_table = EM_EVENTS_TABLE;
|
249 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
250 |
+
|
251 |
+
$temp_conditions = parent::build_sql_conditions($args);
|
252 |
+
$conditions = array();
|
253 |
+
if( !empty($temp_conditions['category']) ){
|
254 |
+
$conditions['category'] = $temp_conditions['category'];
|
255 |
+
}
|
256 |
+
return apply_filters( 'em_categories_build_sql_conditions', $conditions, $args );
|
257 |
+
}
|
258 |
+
|
259 |
+
/* Overrides EM_Object method to apply a filter to result
|
260 |
+
* @see wp-content/plugins/categories-manager/classes/EM_Object#build_sql_orderby()
|
261 |
+
*/
|
262 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
263 |
+
return apply_filters( 'em_categories_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_categories_default_order')), $args, $accepted_fields, $default_order );
|
264 |
+
}
|
265 |
+
|
266 |
+
/*
|
267 |
+
* Adds custom categories search defaults
|
268 |
+
* @param array $array
|
269 |
+
* @return array
|
270 |
+
* @uses EM_Object#get_default_search()
|
271 |
+
*/
|
272 |
+
function get_default_search( $array = array() ){
|
273 |
+
return apply_filters('em_categories_get_default_search', parent::get_default_search(array(),$array), $array, array());
|
274 |
+
}
|
275 |
+
|
276 |
+
/**
|
277 |
+
* will return the default search parameter to use according to permission settings
|
278 |
+
* @return string
|
279 |
+
*/
|
280 |
+
function get_default_search_owner(){
|
281 |
+
//by default, we only get categories the owner can manage
|
282 |
+
$defaults = array('owner'=>false);
|
283 |
+
//by default, we only get categories the owner can manage
|
284 |
+
if( !current_user_can('edit_categories') ){
|
285 |
+
$defaults['owner'] = get_current_user_id();
|
286 |
+
break;
|
287 |
+
}else{
|
288 |
+
$defaults['owner'] = false;
|
289 |
+
break;
|
290 |
+
}
|
291 |
+
return $defaults['owner'];
|
292 |
+
}
|
293 |
+
|
294 |
+
//Iterator Implementation
|
295 |
+
public function rewind(){
|
296 |
+
reset($this->categories);
|
297 |
+
}
|
298 |
+
public function current(){
|
299 |
+
$var = current($this->categories);
|
300 |
+
return $var;
|
301 |
+
}
|
302 |
+
public function key(){
|
303 |
+
$var = key($this->categories);
|
304 |
+
return $var;
|
305 |
+
}
|
306 |
+
public function next(){
|
307 |
+
$var = next($this->categories);
|
308 |
+
return $var;
|
309 |
+
}
|
310 |
+
public function valid(){
|
311 |
+
$key = key($this->categories);
|
312 |
+
$var = ($key !== NULL && $key !== FALSE);
|
313 |
+
return $var;
|
314 |
+
}
|
315 |
}
|
classes/em-category.php
CHANGED
@@ -1,152 +1,254 @@
|
|
1 |
-
<?php
|
2 |
-
//TODO expand em_category to be like other classes
|
3 |
-
class EM_Category extends EM_Object {
|
4 |
-
//DB Fields
|
5 |
-
var $id = '';
|
6 |
-
var $
|
7 |
-
var $
|
8 |
-
|
9 |
-
var $
|
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 |
-
return apply_filters('
|
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 |
-
function
|
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 |
?>
|
1 |
+
<?php
|
2 |
+
//TODO expand em_category to be like other classes
|
3 |
+
class EM_Category extends EM_Object {
|
4 |
+
//DB Fields
|
5 |
+
var $id = '';
|
6 |
+
var $slug = '';
|
7 |
+
var $owner = '';
|
8 |
+
var $name = '';
|
9 |
+
var $description = '';
|
10 |
+
//Other Vars
|
11 |
+
var $fields = array(
|
12 |
+
'category_id' => array('name'=>'id','type'=>'%d'),
|
13 |
+
'category_slug' => array('name'=>'slug','type'=>'%s'),
|
14 |
+
'category_owner' => array('name'=>'owner','type'=>'%d'),
|
15 |
+
'category_name' => array('name'=>'name','type'=>'%s'),
|
16 |
+
'category_description' => array('name'=>'description','type'=>'%s')
|
17 |
+
);
|
18 |
+
var $required_fields;
|
19 |
+
var $feedback_message = "";
|
20 |
+
var $errors = array();
|
21 |
+
var $image_url = '';
|
22 |
+
|
23 |
+
/**
|
24 |
+
* Gets data from POST (default), supplied array, or from the database if an ID is supplied
|
25 |
+
* @param $category_data
|
26 |
+
* @return null
|
27 |
+
*/
|
28 |
+
function EM_Category( $category_data = false ) {
|
29 |
+
global $wpdb;
|
30 |
+
//Initialize
|
31 |
+
$this->required_fields = array("name" => __('The category name', 'dbem'));
|
32 |
+
$category = array();
|
33 |
+
if( !empty($category_data) ){
|
34 |
+
//Load category data
|
35 |
+
if( is_array($category_data) && isset($category_data['category_name']) ){
|
36 |
+
$category = $category_data;
|
37 |
+
}elseif( is_numeric($category_data) ){
|
38 |
+
//Retreiving from the database
|
39 |
+
$sql = "SELECT * FROM ". EM_CATEGORIES_TABLE ." WHERE category_id ='{$category_data}'";
|
40 |
+
$category = $wpdb->get_row($sql, ARRAY_A);
|
41 |
+
}else{
|
42 |
+
$sql = "SELECT * FROM ". EM_CATEGORIES_TABLE ." WHERE category_slug ='{$category_data}'";
|
43 |
+
$category = $wpdb->get_row($sql, ARRAY_A);
|
44 |
+
}
|
45 |
+
//Save into the object
|
46 |
+
$this->to_object($category);
|
47 |
+
}
|
48 |
+
$this->get_image_url();
|
49 |
+
add_action('em_category_save',array(&$this, 'image_upload'), 1, 2);
|
50 |
+
do_action('em_category',$this, $category_data);
|
51 |
+
}
|
52 |
+
|
53 |
+
function get_post(){
|
54 |
+
//We are getting the values via POST or GET
|
55 |
+
do_action('em_category_get_post_pre', $this);
|
56 |
+
$category = array();
|
57 |
+
$category['category_id'] = ( !empty($_POST['category_id']) ) ? $_POST['category_id']:'';
|
58 |
+
$category['category_name'] = ( !empty($_POST['category_name']) ) ? stripslashes($_POST['category_name']):'';
|
59 |
+
$category['category_slug'] = ( !empty($_POST['category_slug']) ) ? sanitize_title($_POST['category_slug']) : '' ;
|
60 |
+
$category['category_description'] = ( !empty($_POST['content']) ) ? stripslashes($_POST['content']) : ''; //WP TinyMCE field
|
61 |
+
$category['category_owner'] = ( !empty($_POST['category_owner']) && is_numeric($_POST['category_owner']) ) ? $_POST['category_owner']:get_current_user_id();
|
62 |
+
$this->to_object( apply_filters('em_category_get_post', $category, $this) );
|
63 |
+
return apply_filters('em_category_get_post',$this->validate(), $this);
|
64 |
+
}
|
65 |
+
|
66 |
+
function validate(){
|
67 |
+
//check required fields
|
68 |
+
foreach ( $this->required_fields as $field => $description) {
|
69 |
+
if ( $this->$field == "" ) {
|
70 |
+
$this->add_error($description.__(" is required.", "dbem"));
|
71 |
+
}
|
72 |
+
}
|
73 |
+
$this->image_validate();
|
74 |
+
return apply_filters('em_location_validate', ( count($this->errors) == 0 ), $this);
|
75 |
+
}
|
76 |
+
|
77 |
+
function save(){
|
78 |
+
global $wpdb;
|
79 |
+
$result = false;
|
80 |
+
if( $this->can_manage('edit_categories') ){
|
81 |
+
do_action('em_category_save_pre', $this);
|
82 |
+
$table = EM_CATEGORIES_TABLE;
|
83 |
+
$this->slug = $this->sanitize_title();
|
84 |
+
$data = $this->to_array();
|
85 |
+
unset($data['category_id']);
|
86 |
+
if($this->id != ''){
|
87 |
+
$where = array( 'category_id' => $this->id );
|
88 |
+
$result = $wpdb->update($table, $data, $where, $this->get_types($data));
|
89 |
+
if( $result !== false ){
|
90 |
+
$this->feedback_message = sprintf(__('%s successfully updated.', 'dbem'), __('Category','dbem'));
|
91 |
+
}
|
92 |
+
}else{
|
93 |
+
$wpdb->insert($table, $data, $this->get_types($data));
|
94 |
+
$result = $this->id = $wpdb->insert_id;
|
95 |
+
if( $result !== false ){
|
96 |
+
$this->feedback_message = sprintf(__('%s successfully added.', 'dbem'), __('Category','dbem'));
|
97 |
+
}
|
98 |
+
}
|
99 |
+
}else{
|
100 |
+
$this->add_error( sprintf(__('You do not have permission to create/edit %s.','dbem'), __('categories','dbem')) );
|
101 |
+
}
|
102 |
+
return apply_filters('em_category_save', ($result !== false), $this);
|
103 |
+
}
|
104 |
+
|
105 |
+
/**
|
106 |
+
* Takes the title and gives either a unique slug or returns the currently used slug if this record already has it.
|
107 |
+
* @param unknown_type $title
|
108 |
+
*/
|
109 |
+
function sanitize_title($iteration = 1){
|
110 |
+
global $wpdb;
|
111 |
+
//Generate the slug. If this is a new event, create the slug automatically, if not, verify it is still unique and if not rewrite
|
112 |
+
if( empty($this->slug) ){
|
113 |
+
$this->slug = sanitize_title($this->name);
|
114 |
+
}
|
115 |
+
$slug = $this->slug;
|
116 |
+
$slug_matches = $wpdb->get_results('SELECT category_id FROM '.EM_CATEGORIES_TABLE." WHERE category_slug='{$slug}'", ARRAY_A);
|
117 |
+
if( count($slug_matches) > 0 ){ //we will check that the slug is unique
|
118 |
+
if( $slug_matches[0]['category_id'] != $this->id || count($slug_matches) > 1 ){
|
119 |
+
//we have a conflict, so try another alternative
|
120 |
+
$this->slug = preg_replace('/\-[0-9]+$/', '', $slug).'-'.($iteration+1);
|
121 |
+
$this->sanitize_title($iteration+1);
|
122 |
+
}
|
123 |
+
}
|
124 |
+
return apply_filters('em_category_title', $this->slug, $this);
|
125 |
+
}
|
126 |
+
|
127 |
+
function delete(){
|
128 |
+
global $wpdb;
|
129 |
+
$result = false;
|
130 |
+
if( $this->can_manage('edit_categories') ){
|
131 |
+
do_action('em_category_delete_pre', $this);
|
132 |
+
$table_name = EM_CATEGORIES_TABLE;
|
133 |
+
$sql = "DELETE FROM $table_name WHERE category_id = '{$this->id}';";
|
134 |
+
$result = $wpdb->query($sql);
|
135 |
+
}
|
136 |
+
return apply_filters('em_category_delete', $result, $this);
|
137 |
+
}
|
138 |
+
|
139 |
+
function has_events(){
|
140 |
+
global $wpdb;
|
141 |
+
$events_table = EM_EVENTS_TABLE;
|
142 |
+
$sql = "SELECT count(event_id) as events_no FROM $events_table WHERE category_id = {$this->id}";
|
143 |
+
$affected_events = $wpdb->get_row($sql);
|
144 |
+
return apply_filters('em_category_has_events', (count($affected_events) > 0), $this);
|
145 |
+
}
|
146 |
+
|
147 |
+
function output_single($target = 'html'){
|
148 |
+
$format = get_option ( 'dbem_category_page_format' );
|
149 |
+
return apply_filters('em_category_output_single', $this->output($format, $target), $this, $target);
|
150 |
+
}
|
151 |
+
|
152 |
+
function output($format, $target="html") {
|
153 |
+
preg_match_all('/\{([a-zA-Z0-9_]+)\}([^{]+)\{\/[a-zA-Z0-9_]+\}/', $format, $conditionals);
|
154 |
+
if( count($conditionals[0]) > 0 ){
|
155 |
+
//Check if the language we want exists, if not we take the first language there
|
156 |
+
foreach($conditionals[1] as $key => $condition){
|
157 |
+
$format = str_replace($conditionals[0][$key], apply_filters('em_category_output_condition', '', $condition, $conditionals[0][$key], $this), $format);
|
158 |
+
}
|
159 |
+
}
|
160 |
+
$category_string = $format;
|
161 |
+
preg_match_all("/(#@?_?[A-Za-z0-9]+)({([a-zA-Z0-9,]+)})?/", $format, $placeholders);
|
162 |
+
foreach($placeholders[1] as $key => $result) {
|
163 |
+
$match = true;
|
164 |
+
$replace = '';
|
165 |
+
$full_result = $placeholders[0][$key];
|
166 |
+
switch( $result ){
|
167 |
+
case '#_CATEGORYNAME':
|
168 |
+
$replace = $this->name;
|
169 |
+
break;
|
170 |
+
case '#_CATEGORYID':
|
171 |
+
$replace = $this->id;
|
172 |
+
break;
|
173 |
+
case '#_CATEGORYNOTES':
|
174 |
+
case '#_CATEGORYDESCRIPTION':
|
175 |
+
$replace = $this->description;
|
176 |
+
break;
|
177 |
+
case '#_CATEGORYIMAGE':
|
178 |
+
case '#_CATEGORYIMAGEURL':
|
179 |
+
if( $this->image_url != ''){
|
180 |
+
if($result == '#_CATEGORYIMAGEURL'){
|
181 |
+
$replace = $this->image_url;
|
182 |
+
}else{
|
183 |
+
if( empty($placeholders[3][$key]) ){
|
184 |
+
$replace = "<img src='".esc_url($this->image_url)."' alt='".esc_attr($this->name)."'/>";
|
185 |
+
}else{
|
186 |
+
$image_size = explode(',', $placeholders[3][$key]);
|
187 |
+
if( $this->array_is_numeric($image_size) && count($image_size) > 1 ){
|
188 |
+
$replace = "<img src='".em_get_thumbnail_url($this->image_url, $image_size[0], $image_size[1])."' alt='".esc_attr($this->name)."'/>";
|
189 |
+
}else{
|
190 |
+
$replace = "<img src='".esc_url($this->image_url)."' alt='".esc_attr($this->name)."'/>";
|
191 |
+
}
|
192 |
+
}
|
193 |
+
}
|
194 |
+
}
|
195 |
+
break;
|
196 |
+
case '#_CATEGORYLINK':
|
197 |
+
case '#_CATEGORYURL':
|
198 |
+
$joiner = (stristr(EM_URI, "?")) ? "&" : "?";
|
199 |
+
$link = esc_url(EM_URI.$joiner."category_id=".$this->id);
|
200 |
+
$replace = ($result == '#_CATEGORYURL') ? $link : '<a href="'.$link.'">'.esc_html($this->name).'</a>';
|
201 |
+
break;
|
202 |
+
case '#_CATEGORYEVENTSPAST': //depreciated, erroneous documentation, left for compatability
|
203 |
+
case '#_CATEGORYEVENTSNEXT': //depreciated, erroneous documentation, left for compatability
|
204 |
+
case '#_CATEGORYEVENTSALL': //depreciated, erroneous documentation, left for compatability
|
205 |
+
case '#_CATEGORYPASTEVENTS':
|
206 |
+
case '#_CATEGORYNEXTEVENTS':
|
207 |
+
case '#_CATEGORYALLEVENTS':
|
208 |
+
//convert depreciated placeholders for compatability
|
209 |
+
$result = ($result == '#_CATEGORYEVENTSPAST') ? '#_CATEGORYPASTEVENTS':$result;
|
210 |
+
$result = ($result == '#_CATEGORYEVENTSNEXT') ? '#_CATEGORYNEXTEVENTS':$result;
|
211 |
+
$result = ($result == '#_CATEGORYEVENTSALL') ? '#_CATEGORYALLEVENTS':$result;
|
212 |
+
//forget it ever happened? :/
|
213 |
+
if ($result == '#_CATEGORYPASTEVENTS'){ $scope = 'past'; }
|
214 |
+
elseif ( $result == '#_CATEGORYNEXTEVENTS' ){ $scope = 'future'; }
|
215 |
+
else{ $scope = 'all'; }
|
216 |
+
$events = EM_Events::get( array('category'=>$this->id, 'scope'=>$scope) );
|
217 |
+
if ( count($events) > 0 ){
|
218 |
+
foreach($events as $EM_Event){
|
219 |
+
$replace .= $EM_Event->output(get_option('dbem_category_event_list_item_format'));
|
220 |
+
}
|
221 |
+
} else {
|
222 |
+
$replace = get_option('dbem_category_no_events_message');
|
223 |
+
}
|
224 |
+
break;
|
225 |
+
default:
|
226 |
+
$replace = $full_result;
|
227 |
+
break;
|
228 |
+
}
|
229 |
+
$replace = apply_filters('em_category_output_placeholder', $replace, $this, $full_result, $target); //USE WITH CAUTION! THIS MIGHT GET RENAMED
|
230 |
+
$category_string = str_replace($full_result, $replace , $category_string );
|
231 |
+
}
|
232 |
+
$name_filter = ($target == "html") ? 'dbem_general':'dbem_general_rss'; //TODO remove dbem_ filters
|
233 |
+
$category_string = str_replace('#_CATEGORY', apply_filters($name_filter, $this->name) , $category_string ); //Depreciated
|
234 |
+
return apply_filters('em_category_output', $category_string, $this, $format, $target);
|
235 |
+
}
|
236 |
+
|
237 |
+
function can_manage( $capability_owner = 'edit_categories', $capability_admin = false ){
|
238 |
+
global $em_capabilities_array;
|
239 |
+
//Figure out if this is multisite and require an extra bit of validation
|
240 |
+
$multisite_check = true;
|
241 |
+
$can_manage = current_user_can($capability_owner);
|
242 |
+
//if multisite and supoer admin, just return true
|
243 |
+
if( is_multisite() && is_super_admin() ){ return true; }
|
244 |
+
if( is_multisite() && get_site_option('dbem_ms_global_table') && !is_main_site() ){
|
245 |
+
//User can't admin this bit, as they're on a sub-blog
|
246 |
+
$can_manage = false;
|
247 |
+
if(array_key_exists($capability_owner, $em_capabilities_array) ){
|
248 |
+
$this->add_error( $em_capabilities_array[$capability_owner]);
|
249 |
+
}
|
250 |
+
}
|
251 |
+
return $can_manage;
|
252 |
+
}
|
253 |
+
}
|
254 |
?>
|
classes/em-event.php
CHANGED
@@ -1,1006 +1,1382 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Event Object. This holds all the info pertaining to an event, including location and recurrence info.
|
4 |
-
* An event object can be one of three "types" a recurring event, recurrence of a recurring event, or a single event.
|
5 |
-
* The single event might be part of a set of recurring events, but if loaded by specific event id then any operations and saves are
|
6 |
-
* specifically done on this event. However, if you edit the recurring group, any changes made to single events are overwritten.
|
7 |
-
*
|
8 |
-
* @author marcus
|
9 |
-
*/
|
10 |
-
//TODO Can add more recurring functionality such as "also update all future recurring events" or "edit all events" like google calendar does.
|
11 |
-
//TODO Integrate recurrences into events table
|
12 |
-
//FIXME If you create a super long recurrence timespan, there could be thousands of events... need an upper limit here.
|
13 |
-
class EM_Event extends EM_Object{
|
14 |
-
/**
|
15 |
-
* Assoc array where keys are names of database fields and values are array corresponding object property name, regex, data types, etc.
|
16 |
-
* for use when importing/exporting event data between database and object
|
17 |
-
* @var array
|
18 |
-
*/
|
19 |
-
var $fields = array(
|
20 |
-
'event_id' => array( 'name'=>'id', 'type'=>'%d' ),
|
21 |
-
'
|
22 |
-
'
|
23 |
-
'
|
24 |
-
'
|
25 |
-
'
|
26 |
-
'
|
27 |
-
'
|
28 |
-
'
|
29 |
-
'
|
30 |
-
'
|
31 |
-
'location_id' => array( 'name'=>'location_id', 'type'=>'%d' ),
|
32 |
-
'recurrence_id' => array( 'name'=>'recurrence_id', 'type'=>'%d' ),
|
33 |
-
'
|
34 |
-
'
|
35 |
-
'
|
36 |
-
'
|
37 |
-
'
|
38 |
-
'
|
39 |
-
'
|
40 |
-
'event_date_created' => array( 'name'=>'date_created', 'type'=>'%s' ),
|
41 |
-
'event_date_modified' => array( 'name'=>'date_modified', 'type'=>'%s' )
|
42 |
-
|
43 |
-
|
44 |
-
|
45 |
-
|
46 |
-
var $
|
47 |
-
var $
|
48 |
-
var $
|
49 |
-
var $
|
50 |
-
var $
|
51 |
-
var $
|
52 |
-
var $
|
53 |
-
var $
|
54 |
-
var $
|
55 |
-
var $
|
56 |
-
var $
|
57 |
-
var $
|
58 |
-
var $
|
59 |
-
var $
|
60 |
-
var $
|
61 |
-
var $
|
62 |
-
var $
|
63 |
-
var $
|
64 |
-
var $
|
65 |
-
var $
|
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 |
-
$this->
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
$this->
|
216 |
-
}
|
217 |
-
$
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
$
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
$this->
|
261 |
-
}
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
$this->
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
if(
|
295 |
-
$this->
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
$this->
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
$
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
|
333 |
-
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
$
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
$this->
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
|
400 |
-
|
401 |
-
|
402 |
-
|
403 |
-
|
404 |
-
|
405 |
-
|
406 |
-
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
}
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
$
|
424 |
-
|
425 |
-
|
426 |
-
$
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
$this->
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
*
|
465 |
-
*/
|
466 |
-
function
|
467 |
-
global $wpdb;
|
468 |
-
|
469 |
-
$
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
486 |
-
|
487 |
-
|
488 |
-
|
489 |
-
|
490 |
-
|
491 |
-
|
492 |
-
|
493 |
-
|
494 |
-
|
495 |
-
|
496 |
-
|
497 |
-
|
498 |
-
|
499 |
-
|
500 |
-
|
501 |
-
|
502 |
-
|
503 |
-
|
504 |
-
|
505 |
-
|
506 |
-
|
507 |
-
|
508 |
-
|
509 |
-
return apply_filters('
|
510 |
-
}
|
511 |
-
|
512 |
-
/**
|
513 |
-
*
|
514 |
-
* @
|
515 |
-
|
516 |
-
|
517 |
-
|
518 |
-
|
519 |
-
|
520 |
-
|
521 |
-
|
522 |
-
$
|
523 |
-
|
524 |
-
|
525 |
-
|
526 |
-
|
527 |
-
|
528 |
-
|
529 |
-
|
530 |
-
|
531 |
-
|
532 |
-
|
533 |
-
|
534 |
-
|
535 |
-
|
536 |
-
|
537 |
-
|
538 |
-
|
539 |
-
|
540 |
-
|
541 |
-
|
542 |
-
|
543 |
-
|
544 |
-
|
545 |
-
|
546 |
-
|
547 |
-
|
548 |
-
|
549 |
-
|
550 |
-
|
551 |
-
|
552 |
-
|
553 |
-
|
554 |
-
|
555 |
-
|
556 |
-
|
557 |
-
|
558 |
-
|
559 |
-
|
560 |
-
|
561 |
-
|
562 |
-
|
563 |
-
|
564 |
-
|
565 |
-
|
566 |
-
|
567 |
-
|
568 |
-
|
569 |
-
|
570 |
-
|
571 |
-
|
572 |
-
|
573 |
-
|
574 |
-
|
575 |
-
|
576 |
-
|
577 |
-
|
578 |
-
|
579 |
-
|
580 |
-
|
581 |
-
|
582 |
-
|
583 |
-
|
584 |
-
|
585 |
-
|
586 |
-
|
587 |
-
|
588 |
-
|
589 |
-
|
590 |
-
|
591 |
-
|
592 |
-
|
593 |
-
|
594 |
-
|
595 |
-
|
596 |
-
|
597 |
-
|
598 |
-
|
599 |
-
|
600 |
-
|
601 |
-
|
602 |
-
|
603 |
-
|
604 |
-
|
605 |
-
|
606 |
-
|
607 |
-
|
608 |
-
|
609 |
-
|
610 |
-
|
611 |
-
|
612 |
-
|
613 |
-
|
614 |
-
|
615 |
-
|
616 |
-
|
617 |
-
|
618 |
-
|
619 |
-
|
620 |
-
|
621 |
-
|
622 |
-
|
623 |
-
|
624 |
-
|
625 |
-
|
626 |
-
|
627 |
-
|
628 |
-
|
629 |
-
|
630 |
-
|
631 |
-
|
632 |
-
|
633 |
-
|
634 |
-
|
635 |
-
|
636 |
-
|
637 |
-
|
638 |
-
$
|
639 |
-
}
|
640 |
-
|
641 |
-
|
642 |
-
|
643 |
-
|
644 |
-
|
645 |
-
|
646 |
-
|
647 |
-
|
648 |
-
|
649 |
-
|
650 |
-
|
651 |
-
|
652 |
-
|
653 |
-
|
654 |
-
}
|
655 |
-
|
656 |
-
|
657 |
-
|
658 |
-
|
659 |
-
|
660 |
-
|
661 |
-
|
662 |
-
|
663 |
-
|
664 |
-
|
665 |
-
|
666 |
-
|
667 |
-
|
668 |
-
|
669 |
-
|
670 |
-
|
671 |
-
|
672 |
-
|
673 |
-
|
674 |
-
|
675 |
-
|
676 |
-
|
677 |
-
|
678 |
-
$
|
679 |
-
|
680 |
-
|
681 |
-
|
682 |
-
|
683 |
-
|
684 |
-
|
685 |
-
|
686 |
-
|
687 |
-
|
688 |
-
|
689 |
-
|
690 |
-
|
691 |
-
|
692 |
-
|
693 |
-
|
694 |
-
|
695 |
-
|
696 |
-
*
|
697 |
-
|
698 |
-
|
699 |
-
|
700 |
-
|
701 |
-
|
702 |
-
|
703 |
-
|
704 |
-
|
705 |
-
|
706 |
-
|
707 |
-
|
708 |
-
|
709 |
-
|
710 |
-
|
711 |
-
|
712 |
-
|
713 |
-
|
714 |
-
|
715 |
-
|
716 |
-
|
717 |
-
|
718 |
-
|
719 |
-
|
720 |
-
|
721 |
-
|
722 |
-
$
|
723 |
-
|
724 |
-
|
725 |
-
|
726 |
-
|
727 |
-
|
728 |
-
|
729 |
-
|
730 |
-
|
731 |
-
|
732 |
-
|
733 |
-
|
734 |
-
|
735 |
-
|
736 |
-
|
737 |
-
|
738 |
-
|
739 |
-
|
740 |
-
|
741 |
-
|
742 |
-
|
743 |
-
|
744 |
-
$
|
745 |
-
|
746 |
-
|
747 |
-
|
748 |
-
|
749 |
-
|
750 |
-
|
751 |
-
|
752 |
-
|
753 |
-
|
754 |
-
|
755 |
-
|
756 |
-
|
757 |
-
|
758 |
-
|
759 |
-
|
760 |
-
|
761 |
-
|
762 |
-
|
763 |
-
|
764 |
-
|
765 |
-
|
766 |
-
|
767 |
-
|
768 |
-
|
769 |
-
|
770 |
-
|
771 |
-
|
772 |
-
|
773 |
-
|
774 |
-
|
775 |
-
|
776 |
-
|
777 |
-
|
778 |
-
|
779 |
-
|
780 |
-
|
781 |
-
|
782 |
-
|
783 |
-
|
784 |
-
|
785 |
-
|
786 |
-
|
787 |
-
|
788 |
-
|
789 |
-
|
790 |
-
|
791 |
-
|
792 |
-
|
793 |
-
|
794 |
-
|
795 |
-
|
796 |
-
|
797 |
-
|
798 |
-
|
799 |
-
|
800 |
-
|
801 |
-
|
802 |
-
|
803 |
-
|
804 |
-
|
805 |
-
|
806 |
-
|
807 |
-
|
808 |
-
|
809 |
-
|
810 |
-
|
811 |
-
|
812 |
-
|
813 |
-
|
814 |
-
|
815 |
-
|
816 |
-
|
817 |
-
|
818 |
-
|
819 |
-
|
820 |
-
|
821 |
-
|
822 |
-
|
823 |
-
$
|
824 |
-
|
825 |
-
|
826 |
-
|
827 |
-
|
828 |
-
|
829 |
-
|
830 |
-
|
831 |
-
|
832 |
-
|
833 |
-
|
834 |
-
|
835 |
-
|
836 |
-
|
837 |
-
|
838 |
-
|
839 |
-
}
|
840 |
-
|
841 |
-
|
842 |
-
|
843 |
-
|
844 |
-
|
845 |
-
|
846 |
-
|
847 |
-
$
|
848 |
-
}
|
849 |
-
|
850 |
-
|
851 |
-
|
852 |
-
|
853 |
-
|
854 |
-
|
855 |
-
|
856 |
-
|
857 |
-
|
858 |
-
|
859 |
-
|
860 |
-
|
861 |
-
|
862 |
-
|
863 |
-
|
864 |
-
|
865 |
-
|
866 |
-
|
867 |
-
|
868 |
-
|
869 |
-
|
870 |
-
|
871 |
-
|
872 |
-
|
873 |
-
|
874 |
-
|
875 |
-
|
876 |
-
|
877 |
-
|
878 |
-
|
879 |
-
|
880 |
-
|
881 |
-
}
|
882 |
-
$
|
883 |
-
}
|
884 |
-
break;
|
885 |
-
|
886 |
-
|
887 |
-
|
888 |
-
|
889 |
-
|
890 |
-
|
891 |
-
|
892 |
-
|
893 |
-
|
894 |
-
|
895 |
-
|
896 |
-
|
897 |
-
|
898 |
-
|
899 |
-
|
900 |
-
|
901 |
-
|
902 |
-
|
903 |
-
|
904 |
-
|
905 |
-
|
906 |
-
|
907 |
-
|
908 |
-
|
909 |
-
|
910 |
-
|
911 |
-
|
912 |
-
|
913 |
-
|
914 |
-
|
915 |
-
|
916 |
-
|
917 |
-
|
918 |
-
|
919 |
-
|
920 |
-
|
921 |
-
|
922 |
-
|
923 |
-
|
924 |
-
|
925 |
-
|
926 |
-
|
927 |
-
|
928 |
-
|
929 |
-
|
930 |
-
|
931 |
-
|
932 |
-
|
933 |
-
|
934 |
-
|
935 |
-
|
936 |
-
|
937 |
-
|
938 |
-
|
939 |
-
|
940 |
-
|
941 |
-
|
942 |
-
|
943 |
-
|
944 |
-
|
945 |
-
|
946 |
-
|
947 |
-
|
948 |
-
|
949 |
-
|
950 |
-
|
951 |
-
|
952 |
-
|
953 |
-
|
954 |
-
|
955 |
-
|
956 |
-
|
957 |
-
|
958 |
-
|
959 |
-
|
960 |
-
|
961 |
-
|
962 |
-
|
963 |
-
|
964 |
-
|
965 |
-
|
966 |
-
|
967 |
-
|
968 |
-
|
969 |
-
|
970 |
-
|
971 |
-
|
972 |
-
|
973 |
-
|
974 |
-
|
975 |
-
|
976 |
-
|
977 |
-
|
978 |
-
|
979 |
-
|
980 |
-
|
981 |
-
|
982 |
-
|
983 |
-
|
984 |
-
|
985 |
-
|
986 |
-
|
987 |
-
|
988 |
-
|
989 |
-
|
990 |
-
|
991 |
-
|
992 |
-
|
993 |
-
|
994 |
-
|
995 |
-
|
996 |
-
|
997 |
-
|
998 |
-
|
999 |
-
|
1000 |
-
|
1001 |
-
|
1002 |
-
|
1003 |
-
|
1004 |
-
|
1005 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1006 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Event Object. This holds all the info pertaining to an event, including location and recurrence info.
|
4 |
+
* An event object can be one of three "types" a recurring event, recurrence of a recurring event, or a single event.
|
5 |
+
* The single event might be part of a set of recurring events, but if loaded by specific event id then any operations and saves are
|
6 |
+
* specifically done on this event. However, if you edit the recurring group, any changes made to single events are overwritten.
|
7 |
+
*
|
8 |
+
* @author marcus
|
9 |
+
*/
|
10 |
+
//TODO Can add more recurring functionality such as "also update all future recurring events" or "edit all events" like google calendar does.
|
11 |
+
//TODO Integrate recurrences into events table
|
12 |
+
//FIXME If you create a super long recurrence timespan, there could be thousands of events... need an upper limit here.
|
13 |
+
class EM_Event extends EM_Object{
|
14 |
+
/**
|
15 |
+
* Assoc array where keys are names of database fields and values are array corresponding object property name, regex, data types, etc.
|
16 |
+
* for use when importing/exporting event data between database and object
|
17 |
+
* @var array
|
18 |
+
*/
|
19 |
+
var $fields = array(
|
20 |
+
'event_id' => array( 'name'=>'id', 'type'=>'%d' ),
|
21 |
+
'event_slug' => array( 'name'=>'slug', 'type'=>'%s' ),
|
22 |
+
'event_owner' => array( 'name'=>'owner', 'type'=>'%d' ),
|
23 |
+
'event_name' => array( 'name'=>'name', 'type'=>'%s' ),
|
24 |
+
'event_start_time' => array( 'name'=>'start_time', 'type'=>'%s' ),
|
25 |
+
'event_end_time' => array( 'name'=>'end_time', 'type'=>'%s' ),
|
26 |
+
'event_start_date' => array( 'name'=>'start_date', 'type'=>'%s' ),
|
27 |
+
'event_end_date' => array( 'name'=>'end_date', 'type'=>'%s' ),
|
28 |
+
'event_notes' => array( 'name'=>'notes', 'type'=>'%s' ),
|
29 |
+
'event_rsvp' => array( 'name'=>'rsvp', 'type'=>'%d' ),
|
30 |
+
//'event_spaces' => array( 'name'=>'spaces', 'type'=>'%d' ),
|
31 |
+
'location_id' => array( 'name'=>'location_id', 'type'=>'%d' ),
|
32 |
+
'recurrence_id' => array( 'name'=>'recurrence_id', 'type'=>'%d' ),
|
33 |
+
'event_attributes' => array( 'name'=>'attributes', 'type'=>'%s' ),
|
34 |
+
'recurrence' => array( 'name'=>'recurrence', 'type'=>'%d' ),
|
35 |
+
'recurrence_interval' => array( 'name'=>'interval', 'type'=>'%d' ), //every x day(s)/week(s)/month(s)
|
36 |
+
'recurrence_freq' => array( 'name'=>'freq', 'type'=>'%s' ), //daily,weekly,monthly?
|
37 |
+
'recurrence_byday' => array( 'name'=>'byday', 'type'=>'%s' ), //if weekly or monthly, what days of the week?
|
38 |
+
'recurrence_byweekno' => array( 'name'=>'byweekno', 'type'=>'%d' ), //if monthly which week (-1 is last)
|
39 |
+
'event_status' => array( 'name'=>'status', 'type'=>'%d' ), //if monthly which week (-1 is last)
|
40 |
+
'event_date_created' => array( 'name'=>'date_created', 'type'=>'%s' ),
|
41 |
+
'event_date_modified' => array( 'name'=>'date_modified', 'type'=>'%s' ),
|
42 |
+
'blog_id' => array( 'name'=>'blog_id', 'type'=>'%d' ),
|
43 |
+
'group_id' => array( 'name'=>'group_id', 'type'=>'%d' )
|
44 |
+
);
|
45 |
+
/* Field Names - see above for matching DB field names and other field meta data */
|
46 |
+
var $id;
|
47 |
+
var $slug;
|
48 |
+
var $owner;
|
49 |
+
var $name;
|
50 |
+
var $start_time;
|
51 |
+
var $end_time;
|
52 |
+
var $start_date;
|
53 |
+
var $end_date;
|
54 |
+
var $notes;
|
55 |
+
var $rsvp;
|
56 |
+
//var $spaces;
|
57 |
+
var $location_id;
|
58 |
+
var $recurrence_id;
|
59 |
+
var $category_id;
|
60 |
+
var $attributes = array();
|
61 |
+
var $recurrence;
|
62 |
+
var $interval;
|
63 |
+
var $freq;
|
64 |
+
var $byday;
|
65 |
+
var $byweekno;
|
66 |
+
var $status;
|
67 |
+
var $date_created;
|
68 |
+
var $date_modified;
|
69 |
+
var $blog_id;
|
70 |
+
var $group_id;
|
71 |
+
|
72 |
+
var $image_url = '';
|
73 |
+
/**
|
74 |
+
* Timestamp of start date/time
|
75 |
+
* @var int
|
76 |
+
*/
|
77 |
+
var $start;
|
78 |
+
/**
|
79 |
+
* Timestamp of end date/time
|
80 |
+
* @var int
|
81 |
+
*/
|
82 |
+
var $end;
|
83 |
+
/**
|
84 |
+
* Created on timestamp, taken from DB, converted to TS
|
85 |
+
* @var int
|
86 |
+
*/
|
87 |
+
var $created;
|
88 |
+
/**
|
89 |
+
* Created on timestamp, taken from DB, converted to TS
|
90 |
+
* @var int
|
91 |
+
*/
|
92 |
+
var $modified;
|
93 |
+
|
94 |
+
/**
|
95 |
+
* @var EM_Location
|
96 |
+
*/
|
97 |
+
var $location;
|
98 |
+
/**
|
99 |
+
* @var EM_Bookings
|
100 |
+
*/
|
101 |
+
var $bookings;
|
102 |
+
/**
|
103 |
+
* The contact person for this event
|
104 |
+
* @var WP_User
|
105 |
+
*/
|
106 |
+
var $contact;
|
107 |
+
/**
|
108 |
+
* The category object
|
109 |
+
* @var EM_Category
|
110 |
+
*/
|
111 |
+
var $category;
|
112 |
+
/**
|
113 |
+
* If there are any errors, they will be added here.
|
114 |
+
* @var array
|
115 |
+
*/
|
116 |
+
var $errors = array();
|
117 |
+
/**
|
118 |
+
* If something was successful, a feedback message might be supplied here.
|
119 |
+
* @var string
|
120 |
+
*/
|
121 |
+
var $feedback_message;
|
122 |
+
/**
|
123 |
+
* Any warnings about an event (e.g. bad data, recurring/recurrence, etc.)
|
124 |
+
* @var string
|
125 |
+
*/
|
126 |
+
var $warnings;
|
127 |
+
/**
|
128 |
+
* Array of dbem_event field names required to create an event
|
129 |
+
* @var array
|
130 |
+
*/
|
131 |
+
var $required_fields = array('event_name', 'event_start_date');
|
132 |
+
var $mime_types = array(1 => 'gif', 2 => 'jpg', 3 => 'png');
|
133 |
+
|
134 |
+
/**
|
135 |
+
* Initialize an event. You can provide event data in an associative array (using database table field names), an id number, or false (default) to create empty event.
|
136 |
+
* @param mixed $event_data
|
137 |
+
* @return null
|
138 |
+
*/
|
139 |
+
function EM_Event($event_data = false) {
|
140 |
+
global $wpdb, $EM_Recurrences;
|
141 |
+
//TODO Change the way we deal with time, maybe revert to timestamps for manipulation, and worry about output in html and db writes?
|
142 |
+
if( $event_data !== false ){
|
143 |
+
$event = array();
|
144 |
+
if( is_array($event_data) ){
|
145 |
+
//Accepts a raw array that'll just be imported directly into the object with no DB lookups (same for event and recurrence)
|
146 |
+
$event = $event_data;
|
147 |
+
if($event['location_name']){
|
148 |
+
$this->location = new EM_Location( $event );
|
149 |
+
}
|
150 |
+
}elseif( !empty($event_data) ) {
|
151 |
+
if( is_numeric($event_data) && $event_data > 0 ){
|
152 |
+
$cond = "event_id = $event_data";
|
153 |
+
}else{
|
154 |
+
$cond = "event_slug = '".$wpdb->escape($event_data)."'";
|
155 |
+
}
|
156 |
+
//Retreiving from the database
|
157 |
+
$events_table = EM_EVENTS_TABLE;
|
158 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
159 |
+
$categories_table = EM_CATEGORIES_TABLE;
|
160 |
+
$sql = "
|
161 |
+
SELECT * FROM $events_table
|
162 |
+
LEFT JOIN $locations_table ON {$locations_table}.location_id={$events_table}.location_id
|
163 |
+
WHERE $cond
|
164 |
+
"; //We get event and location data here to avoid extra queries
|
165 |
+
$event = $wpdb->get_row ( $sql, ARRAY_A );
|
166 |
+
//Sort Location
|
167 |
+
$this->location = new EM_Location ( $event );
|
168 |
+
}
|
169 |
+
//Sort out attributes
|
170 |
+
if( !empty($event['event_attributes']) ){
|
171 |
+
if( is_serialized($event['event_attributes']) ){
|
172 |
+
$event['event_attributes'] = @unserialize($event['event_attributes']);
|
173 |
+
}
|
174 |
+
$event['event_attributes'] = (!is_array($event['event_attributes'])) ? array() : $event['event_attributes'] ;
|
175 |
+
}
|
176 |
+
$event['recurrence_byday'] = ( empty($event['recurrence_byday']) || $event['recurrence_byday'] == 7 ) ? 0:$event['recurrence_byday']; //Backward compatibility (since 3.0.3), using 0 makes more sense due to date() function
|
177 |
+
$this->to_object($event, true);
|
178 |
+
$this->blog_id = (!empty($event['blog_id'])) ? $event['blog_id']:0;
|
179 |
+
|
180 |
+
//Start/End times should be available as timestamp
|
181 |
+
$this->start = strtotime($this->start_date." ".$this->start_time);
|
182 |
+
$this->end = strtotime($this->end_date." ".$this->end_time);
|
183 |
+
$this->modified = ( !empty($event['event_date_modified']) ) ? strtotime($event['event_date_modified']):time();
|
184 |
+
$this->created = ( !empty($event['event_date_created']) ) ? strtotime($event['event_date_created']):time();
|
185 |
+
|
186 |
+
//Add Owner as Contact Person
|
187 |
+
if($this->owner && $this->owner > 0){
|
188 |
+
$this->contact = new EM_Person($this->owner);
|
189 |
+
}
|
190 |
+
if( !is_object($this->contact) ){
|
191 |
+
$this->owner = get_option('dbem_default_contact_person');
|
192 |
+
$this->contact = new EM_Person($this->owner);
|
193 |
+
}
|
194 |
+
if( is_object($this->contact) ){
|
195 |
+
$this->contact->phone = get_metadata('user', $this->contact->ID, 'dbem_phone', true);
|
196 |
+
}
|
197 |
+
//Now, if this is a recurrence, get the recurring for caching to the $EM_Recurrences
|
198 |
+
if( $this->is_recurrence() && is_array($EM_Recurrences) && !array_key_exists($this->recurrence_id, $EM_Recurrences) ){
|
199 |
+
$EM_Recurrences[$this->recurrence_id] = new EM_Event($this->recurrence_id);
|
200 |
+
}
|
201 |
+
}else{
|
202 |
+
$this->location = new EM_Location(); //blank location
|
203 |
+
}
|
204 |
+
$this->get_location();
|
205 |
+
//Do it here so things appear in the po file.
|
206 |
+
$this->status_array = array(
|
207 |
+
0 => __('Pending','dbem'),
|
208 |
+
1 => __('Approved','dbem')
|
209 |
+
);
|
210 |
+
|
211 |
+
//Set up some warning meta
|
212 |
+
if ( $this->is_recurring() ) {
|
213 |
+
$this->warnings['recurring'] = __( 'WARNING: This is a recurring event.', 'dbem' )."<br />". __( 'Modifications to this event will cause all recurrences of this event to be deleted and recreated and previous bookings will be deleted! You can edit individual recurrences and disassociate them with this recurring event.', 'dbem' );
|
214 |
+
} elseif ( $this->is_recurrence() ) {
|
215 |
+
$this->warnings['recurrence'] = __('WARNING: This is a recurrence in a set of recurring events.', 'dbem')."<br />". __('If you update this event data and save, it will become an independent event, and will not be deleted or modified automatically if you reschedule the original recurring event details.', 'dbem' );
|
216 |
+
}elseif( !empty($this->group_id) && function_exists('groups_get_group') ){
|
217 |
+
$group = groups_get_group(array('group_id'=>$this->group_id));
|
218 |
+
$this->warnings['group'] = sprintf(__('WARNING: This is a event belonging to the group "%s". Other group admins can also modify this event.', 'dbem'), $group->name);
|
219 |
+
}
|
220 |
+
$this->get_image_url();
|
221 |
+
add_filter('em_event_save',array(&$this, 'image_upload'), 1, 2);
|
222 |
+
do_action('em_event', $this, $event_data);
|
223 |
+
}
|
224 |
+
|
225 |
+
/**
|
226 |
+
* Retrieve event, location and recurring information via POST
|
227 |
+
* @return boolean
|
228 |
+
*/
|
229 |
+
function get_post(){
|
230 |
+
//Build Event Array
|
231 |
+
do_action('em_event_get_post_pre', $this);
|
232 |
+
$this->name = ( !empty($_POST['event_name']) ) ? stripslashes($_POST['event_name']) : '' ;
|
233 |
+
$this->slug = ( !empty($_POST['event_slug']) ) ? sanitize_title($_POST['event_slug']) : '' ;
|
234 |
+
$this->start_date = ( !empty($_POST['event_start_date']) ) ? $_POST['event_start_date'] : '';
|
235 |
+
$this->end_date = ( !empty($_POST['event_end_date']) ) ? $_POST['event_end_date'] : $this->start_date;
|
236 |
+
$this->rsvp = ( !empty($_POST['event_rsvp']) ) ? 1:0;
|
237 |
+
//$this->spaces = ( !empty($_POST['event_spaces']) && is_numeric($_POST['event_spaces']) ) ? $_POST['event_spaces']:0;
|
238 |
+
$this->notes = ( !empty($_POST['content']) ) ? stripslashes($_POST['content']) : ''; //WP TinyMCE field
|
239 |
+
//Sort out time
|
240 |
+
//TODO make time handling less painful
|
241 |
+
$match = array();
|
242 |
+
if( !empty($_POST['event_start_time']) && preg_match ( '/^([01]\d|2[0-3]):([0-5]\d)(AM|PM)?$/', $_POST['event_start_time'], $match ) ){
|
243 |
+
if( !empty($match[3]) && $match[3] == 'PM' && $match[1] != 12 ){
|
244 |
+
$match[1] = 12+$match[1];
|
245 |
+
}elseif( !empty($match[3]) && $match[3] == 'AM' && $match[1] == 12 ){
|
246 |
+
$match[1] = '00';
|
247 |
+
}
|
248 |
+
$this->start_time = $match[1].":".$match[2].":00";
|
249 |
+
}else{
|
250 |
+
$this->start_time = "00:00:00";
|
251 |
+
}
|
252 |
+
if( !empty($_POST['event_end_time']) && preg_match ( '/^([01]\d|2[0-3]):([0-5]\d)(AM|PM)?$/', $_POST['event_end_time'], $match ) ){
|
253 |
+
if( !empty($match[3]) && $match[3] == 'PM' && $match[1] != 12 ){
|
254 |
+
$match[1] = 12+$match[1];
|
255 |
+
}elseif( !empty($match[3]) && $match[3] == 'AM' && $match[1] == 12 ){
|
256 |
+
$match[1] = '00';
|
257 |
+
}
|
258 |
+
$this->end_time = $match[1].":".$match[2].":00";
|
259 |
+
}else{
|
260 |
+
$this->end_time = $this->start_time;
|
261 |
+
}
|
262 |
+
//Start/End times should be available as timestamp
|
263 |
+
$this->start = strtotime($this->start_date." ".$this->start_time);
|
264 |
+
$this->end = strtotime($this->end_date." ".$this->end_time);
|
265 |
+
//owner
|
266 |
+
if( !empty($_REQUEST['event_owner']) && is_numeric($_REQUEST['event_owner']) ){
|
267 |
+
$this->owner = current_user_can('edit_others_events') ? $_REQUEST['event_owner']:get_current_user_id();
|
268 |
+
}
|
269 |
+
//categories
|
270 |
+
if( !empty($_POST['event_categories']) && is_array($_POST['event_categories']) ){
|
271 |
+
$this->categories = new EM_Categories($_POST['event_categories']);
|
272 |
+
}else{
|
273 |
+
$this->categories = new EM_Categories();
|
274 |
+
}
|
275 |
+
//Attributes
|
276 |
+
$event_attributes = array();
|
277 |
+
$post = $_POST;
|
278 |
+
$event_available_attributes = em_get_attributes();
|
279 |
+
if( !empty($_POST['em_attributes']) && is_array($_POST['em_attributes']) ){
|
280 |
+
foreach($_POST['em_attributes'] as $att_key => $att_value ){
|
281 |
+
if( (in_array($att_key, $event_available_attributes['names']) || array_key_exists($att_key, $this->attributes) ) && trim($att_value) != '' ){
|
282 |
+
$att_vals = count($event_available_attributes['values'][$att_key]);
|
283 |
+
if( $att_vals == 0 || ($att_vals > 0 && in_array($att_value, $event_available_attributes['values'][$att_key])) ){
|
284 |
+
$event_attributes[$att_key] = $att_value;
|
285 |
+
}elseif($att_vals > 0){
|
286 |
+
$event_attributes[$att_key] = $event_available_attributes['values'][$att_key][0];
|
287 |
+
}
|
288 |
+
}
|
289 |
+
}
|
290 |
+
}
|
291 |
+
$this->attributes = stripslashes_deep($event_attributes);
|
292 |
+
//Recurrence data
|
293 |
+
$this->recurrence_id = ( !empty($_POST['recurrence_id']) && is_numeric($_POST['recurrence_id']) ) ? $_POST['recurrence_id'] : 0 ;
|
294 |
+
if( !empty($_POST['repeated_event']) ){
|
295 |
+
$this->recurrence = 1;
|
296 |
+
$this->freq = ( !empty($_POST['recurrence_freq']) && in_array($_POST['recurrence_freq'], array('daily','weekly','monthly')) ) ? $_POST['recurrence_freq']:'daily';
|
297 |
+
if( !empty($_POST['recurrence_bydays']) && $this->freq == 'weekly' && self::array_is_numeric($_POST['recurrence_bydays']) ){
|
298 |
+
$this->byday = implode ( ",", $_POST['recurrence_bydays'] );
|
299 |
+
}elseif( !empty($_POST['recurrence_byday']) && $this->freq == 'monthly' ){
|
300 |
+
$this->byday = $_POST['recurrence_byday'];
|
301 |
+
}
|
302 |
+
$this->interval = ( !empty($_POST['recurrence_interval']) ) ? $_POST['recurrence_interval']:1;
|
303 |
+
$this->byweekno = ( !empty($_POST['recurrence_byweekno']) ) ? $_POST['recurrence_byweekno']:'';
|
304 |
+
}
|
305 |
+
|
306 |
+
//Add location information, or just link to previous location, this is a requirement...
|
307 |
+
if( !empty($_POST['location_id']) && is_numeric($_POST['location_id'])) {
|
308 |
+
$this->location_id = $_POST['location_id'];
|
309 |
+
$this->location = new EM_Location($_POST['location_id']);
|
310 |
+
} else {
|
311 |
+
$this->location_id = '';
|
312 |
+
$this->location = new EM_Location();
|
313 |
+
$this->location->get_post();
|
314 |
+
$this->location->description = ''; //otherwise we get the same event details in the location
|
315 |
+
}
|
316 |
+
if( !empty($_REQUEST['event_rsvp']) && $_REQUEST['event_rsvp'] && !$this->get_bookings()->get_tickets()->get_post() ){
|
317 |
+
$this->add_error($this->get_bookings()->get_tickets()->get_errors());
|
318 |
+
}
|
319 |
+
return apply_filters('em_event_get_post', $this->validate(), $this);
|
320 |
+
}
|
321 |
+
|
322 |
+
/**
|
323 |
+
* Will save the current instance into the database, along with location information if a new one was created and return true if successful, false if not.
|
324 |
+
* Will automatically detect what type of event it is (recurrent, recurrence or normal) and whether it's a new or existing event.
|
325 |
+
* @return boolean
|
326 |
+
*/
|
327 |
+
function save(){
|
328 |
+
//FIXME Event doesn't save title when inserting first time
|
329 |
+
global $wpdb, $current_user;
|
330 |
+
if( !$this->can_manage('edit_events', 'edit_others_events') && ( get_option('dbem_events_anonymous_submissions') && empty($this->id)) ){
|
331 |
+
return apply_filters('em_event_save', false, $this);
|
332 |
+
}
|
333 |
+
do_action('em_event_save_pre', $this);
|
334 |
+
get_currentuserinfo();
|
335 |
+
$events_table = EM_EVENTS_TABLE;
|
336 |
+
$request = $_REQUEST;
|
337 |
+
//First let's save the location if location doesn't already exist, no location no event!
|
338 |
+
if ( empty($this->get_location()->id) && !$this->location->save() ){ //shouldn't try to save if location exists
|
339 |
+
$this->errors[] = __('There was a problem saving the location so event was not saved.', 'dbem');
|
340 |
+
return apply_filters('em_event_save', false, $this);
|
341 |
+
}
|
342 |
+
$this->location_id = $this->location->id;
|
343 |
+
//owner person can be anyone the admin wants, but the creator if not.
|
344 |
+
if( current_user_can('edit_others_events') ){
|
345 |
+
$this->owner = ( $this->owner > 0 ) ? $this->owner:0;
|
346 |
+
}elseif( !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') && get_option('dbem_events_anonymous_user') ){
|
347 |
+
$this->owner = get_option('dbem_events_anonymous_user'); //user is anonymous, so give the event
|
348 |
+
}else{
|
349 |
+
//force
|
350 |
+
$this->owner = get_current_user_id();
|
351 |
+
}
|
352 |
+
//Set status of this event, depending on user type
|
353 |
+
if( current_user_can('publish_events') ){
|
354 |
+
//top level can edit and publish any events
|
355 |
+
$this->status = 1;
|
356 |
+
}else{
|
357 |
+
//any updates or additions put the event into pending status
|
358 |
+
$this->status = 0;
|
359 |
+
}
|
360 |
+
$this->slug = $this->sanitize_title();
|
361 |
+
|
362 |
+
//Now save the event
|
363 |
+
if ( !$this->id ) {
|
364 |
+
// Insert New Event
|
365 |
+
if( is_multisite() ){
|
366 |
+
$this->blog_id = get_current_blog_id();
|
367 |
+
}
|
368 |
+
$this->date_created = current_time('mysql');
|
369 |
+
$event = $this->to_array(true);
|
370 |
+
$event['event_attributes'] = serialize($this->attributes);
|
371 |
+
$event['recurrence_id'] = ( is_numeric($this->recurrence_id) ) ? $this->recurrence_id : 0;
|
372 |
+
$event = apply_filters('em_event_save_pre',$event,$this);
|
373 |
+
$result = $wpdb->insert ( $events_table, $event, $this->get_types($event) );
|
374 |
+
if($result !== false){
|
375 |
+
//$event['event_date_created'] = current_time('mysql');
|
376 |
+
$this->id = $wpdb->insert_id;
|
377 |
+
$this->is_new = true;
|
378 |
+
//Add Tickets
|
379 |
+
if( !$this->get_bookings()->get_tickets()->save() ){
|
380 |
+
$this->errors[] = __( 'Something went wrong with creating tickets.', 'dbem' );
|
381 |
+
return apply_filters('em_event_save', false, $this);
|
382 |
+
}
|
383 |
+
//Save Categories
|
384 |
+
if( !$this->get_categories()->save() ){
|
385 |
+
$this->add_error( $this->get_categories()->get_errors() );
|
386 |
+
return apply_filters('em_event_save', false, $this);
|
387 |
+
}
|
388 |
+
//Deal with recurrences
|
389 |
+
if ( $this->is_recurring() ) {
|
390 |
+
//Recurrence master event saved, now Save Events & check errors
|
391 |
+
if( !$this->save_events() ){
|
392 |
+
$this->add_error(__ ( 'Something went wrong with the recurrence update...', 'dbem' ).
|
393 |
+
__ ( 'There was a problem saving the recurring events.', 'dbem' ));
|
394 |
+
$this->delete();
|
395 |
+
return apply_filters('em_event_save', false, $this);
|
396 |
+
}
|
397 |
+
//All good! Event Saved
|
398 |
+
$this->feedback_message = __ ( 'New recurrent event inserted!', 'dbem' );
|
399 |
+
return apply_filters('em_event_save', true, $this);
|
400 |
+
}
|
401 |
+
//Successful individual save
|
402 |
+
$this->feedback_message = __ ( 'New event successfully inserted!', 'dbem' );
|
403 |
+
return apply_filters('em_event_save', true, $this);
|
404 |
+
}else{
|
405 |
+
$this->errors[] = __ ( 'Could not save the event details due to a database error.', 'dbem' );
|
406 |
+
}
|
407 |
+
} else {
|
408 |
+
// Update Event
|
409 |
+
if($this->is_recurrence()){
|
410 |
+
//duplicate the original recurrence image
|
411 |
+
$dir = (EM_IMAGE_DS == '/') ? 'events/event':'event';
|
412 |
+
foreach($this->mime_types as $mime_type) {
|
413 |
+
$file_name = $dir."-{$this->recurrence_id}.$mime_type";
|
414 |
+
if( file_exists( EM_IMAGE_UPLOAD_DIR . $file_name) ) {
|
415 |
+
$replacement = $dir."-{$this->id}.$mime_type";
|
416 |
+
copy(EM_IMAGE_UPLOAD_DIR . $file_name, EM_IMAGE_UPLOAD_DIR . $replacement);
|
417 |
+
}
|
418 |
+
}
|
419 |
+
}
|
420 |
+
$this->recurrence_id = 0; // If it's saved here, it becomes individual
|
421 |
+
$event = $this->to_array();
|
422 |
+
$event['event_attributes'] = serialize($event['event_attributes']);
|
423 |
+
unset($event['event_date_created']);
|
424 |
+
$event['event_date_modified'] = current_time('mysql');
|
425 |
+
$event = apply_filters('em_event_save_pre',$event,$this);
|
426 |
+
$result = $wpdb->update ( $events_table, $event, array('event_id' => $this->id), $this->get_types($event) );
|
427 |
+
if($result !== false){ //Can't just do $result since if you don't make an actual record details change, it'll return 0 for no changes made
|
428 |
+
//Add Tickets
|
429 |
+
$this->feedback_message = "{$this->name} " . __ ( 'updated', 'dbem' ) . "!";
|
430 |
+
if( !$this->get_bookings()->get_tickets()->save() ){
|
431 |
+
$this->errors[] = __( 'Something went wrong with creating tickets.', 'dbem' );
|
432 |
+
return apply_filters('em_event_save', false, $this);
|
433 |
+
}
|
434 |
+
//Save Categories
|
435 |
+
if( !$this->get_categories()->save() ){
|
436 |
+
$this->add_error( $this->get_categories()->get_errors() );
|
437 |
+
return apply_filters('em_event_save', false, $this);
|
438 |
+
}
|
439 |
+
//Deal with recurrences
|
440 |
+
if ( $this->is_recurring() ) {
|
441 |
+
if( !$this->save_events() ){
|
442 |
+
$this->errors[] = __ ( 'Something went wrong with the recurrence update...', 'dbem' ).
|
443 |
+
__ ( 'There was a problem saving the recurring events.', 'dbem' );
|
444 |
+
return apply_filters('em_event_save', false, $this);
|
445 |
+
}
|
446 |
+
$this->feedback_message = __ ( 'Recurrence updated!', 'dbem' );
|
447 |
+
return apply_filters('em_event_save', true, $this);
|
448 |
+
}
|
449 |
+
}else{
|
450 |
+
$this->errors[] = __('Could not save the event details due to a database error.', 'dbem');
|
451 |
+
return apply_filters('em_event_save', false, $this);
|
452 |
+
}
|
453 |
+
//Successful individual or recurrence save
|
454 |
+
$this->feedback_message = "{$this->name} " . __ ( 'updated', 'dbem' ) . "!";
|
455 |
+
if($this->rsvp == 0){
|
456 |
+
$this->delete_bookings();
|
457 |
+
}
|
458 |
+
return apply_filters('em_event_save', true, $this);
|
459 |
+
}
|
460 |
+
}
|
461 |
+
|
462 |
+
/**
|
463 |
+
* Takes the title and gives either a unique slug or returns the currently used slug if this record already has it.
|
464 |
+
* @param unknown_type $title
|
465 |
+
*/
|
466 |
+
function sanitize_title($iteration = 1){
|
467 |
+
global $wpdb;
|
468 |
+
//Generate the slug. If this is a new event, create the slug automatically, if not, verify it is still unique and if not rewrite
|
469 |
+
if( empty($this->slug) ){
|
470 |
+
$this->slug = sanitize_title($this->name);
|
471 |
+
}
|
472 |
+
$slug = $this->slug;
|
473 |
+
$slug_matches = $wpdb->get_results('SELECT event_id FROM '.EM_EVENTS_TABLE." WHERE event_slug='{$slug}'", ARRAY_A);
|
474 |
+
if( count($slug_matches) > 0 ){ //we will check that the slug is unique
|
475 |
+
if( $slug_matches[0]['event_id'] != $this->id || count($slug_matches) > 1 ){
|
476 |
+
//we have a conflict, so try another alternative
|
477 |
+
$this->slug = preg_replace('/\-[0-9]+$/', '', $slug).'-'.($iteration+1);
|
478 |
+
$this->sanitize_title($iteration+1);
|
479 |
+
}
|
480 |
+
}
|
481 |
+
return apply_filters('em_event_sanitize_title', $this->slug, $this);
|
482 |
+
}
|
483 |
+
|
484 |
+
/**
|
485 |
+
* Delete whole event, including recurrence and recurring data
|
486 |
+
* @param $recurrence_id
|
487 |
+
* @return boolean
|
488 |
+
*/
|
489 |
+
function delete(){
|
490 |
+
global $wpdb;
|
491 |
+
do_action('em_event_delete_pre', $this);
|
492 |
+
$result = false;
|
493 |
+
if( $this->can_manage( 'delete_events','delete_others_events' ) ){
|
494 |
+
if( $this->is_recurring() ){
|
495 |
+
//Delete the recurrences then this recurrence event
|
496 |
+
$this->delete_events();
|
497 |
+
}
|
498 |
+
$result = $wpdb->query ( $wpdb->prepare("DELETE FROM ". EM_EVENTS_TABLE ." WHERE event_id=%d", $this->id) );
|
499 |
+
if($result !== false){
|
500 |
+
//delete bookings
|
501 |
+
$result_bookings = $this->get_bookings()->delete();
|
502 |
+
//delete tickets
|
503 |
+
$result_tickets = $this->get_bookings()->get_tickets()->delete();
|
504 |
+
//delete categories
|
505 |
+
$result = $wpdb->query ( $wpdb->prepare("DELETE FROM ". EM_META_TABLE ." WHERE meta_key='event-category' AND object_id=%d", $this->id) );
|
506 |
+
$this->id = false;
|
507 |
+
}
|
508 |
+
}
|
509 |
+
return apply_filters('em_event_delete', $result !== false, $this);
|
510 |
+
}
|
511 |
+
|
512 |
+
/**
|
513 |
+
* approve a booking.
|
514 |
+
* @return bool
|
515 |
+
*/
|
516 |
+
function approve(){
|
517 |
+
$approval = $this->set_status(1);
|
518 |
+
if($approval){
|
519 |
+
//email
|
520 |
+
if( $this->owner == "" ) return $approval;
|
521 |
+
$subject = $this->output(get_option('dbem_event_approved_email_subject'), 'email');
|
522 |
+
$body = $this->output(get_option('dbem_event_approved_email_body'), 'email');
|
523 |
+
|
524 |
+
//Send to the person booking
|
525 |
+
if( !$this->email_send( $subject, $body, $this->contact->user_email) ){
|
526 |
+
return $approval;
|
527 |
+
}
|
528 |
+
}
|
529 |
+
return $approval;
|
530 |
+
}
|
531 |
+
|
532 |
+
/**
|
533 |
+
* Change the status of the event. This will save to the Database too.
|
534 |
+
* @param unknown_type $status
|
535 |
+
* @return string
|
536 |
+
*/
|
537 |
+
function set_status($status){
|
538 |
+
$action_string = strtolower($this->status_array[$status]);
|
539 |
+
$this->previous_status = $this->status;
|
540 |
+
$this->status = $status;
|
541 |
+
$result = $this->save();
|
542 |
+
if($result){
|
543 |
+
$this->feedback_message = sprintf(__('Event %s.','dbem'), $action_string);
|
544 |
+
return true;
|
545 |
+
}else{
|
546 |
+
//errors should be logged by save()
|
547 |
+
$this->feedback_message = sprintf(__('Booking could not be %s.','dbem'), $action_string);
|
548 |
+
return false;
|
549 |
+
}
|
550 |
+
}
|
551 |
+
|
552 |
+
/**
|
553 |
+
* Duplicates this event and returns the duplicated event. Will return false if there is a problem with duplication.
|
554 |
+
* @return EM_Event
|
555 |
+
*/
|
556 |
+
function duplicate(){
|
557 |
+
global $wpdb, $EZSQL_ERROR;
|
558 |
+
//First, duplicate.
|
559 |
+
if( $this->can_manage('edit_events','edit_others_events') ){
|
560 |
+
$event_table_name = EM_EVENTS_TABLE;
|
561 |
+
$eventArray = $this->to_array();
|
562 |
+
unset($eventArray['event_id']);
|
563 |
+
$EM_Event = new EM_Event( $eventArray );
|
564 |
+
if( $EM_Event->save() ){
|
565 |
+
$EM_Event->feedback_message = sprintf(__("%s successfully duplicated.", 'dbem'), __('Event','dbem'));
|
566 |
+
return apply_filters('em_event_duplicate', $EM_Event, $this);
|
567 |
+
}
|
568 |
+
}else{
|
569 |
+
$this->add_error( sprintf(__('You are not allowed to manage this %s.', 'dbem'), __('event','dbem')) );
|
570 |
+
}
|
571 |
+
//TODO add error notifications for duplication failures.
|
572 |
+
return apply_filters('em_event_duplicate', false, $this);;
|
573 |
+
}
|
574 |
+
|
575 |
+
|
576 |
+
/**
|
577 |
+
* Validates the event. Should be run during any form submission or saving operation.
|
578 |
+
* @return boolean
|
579 |
+
*/
|
580 |
+
function validate() {
|
581 |
+
$missing_fields = Array ();
|
582 |
+
foreach ( $this->required_fields as $field ) {
|
583 |
+
$true_field = $this->fields[$field]['name'];
|
584 |
+
if ( $this->$true_field == "") {
|
585 |
+
$missing_fields[] = $field;
|
586 |
+
}
|
587 |
+
}
|
588 |
+
if ( count($missing_fields) > 0){
|
589 |
+
// TODO Create friendly equivelant names for missing fields notice in validation
|
590 |
+
$this->add_error( __( 'Missing fields: ', 'dbem') . implode ( ", ", $missing_fields ) . ". " );
|
591 |
+
}
|
592 |
+
if ( !empty($_POST['repeated_event']) && $_POST['repeated_event'] == "1" && $this->end_date == "" ){
|
593 |
+
$this->add_error( __( 'Since the event is repeated, you must specify an event date.', 'dbem' ));
|
594 |
+
}
|
595 |
+
if( preg_match('/\d{4}-\d{2}-\d{2}/', $this->start_date) && preg_match('/\d{4}-\d{2}-\d{2}/', $this->end_date) ){
|
596 |
+
if( strtotime($this->start_date . $this->start_time) > strtotime($this->end_date . $this->end_time) ){
|
597 |
+
$this->add_error(__('Events cannot start after they end.','dbem'));
|
598 |
+
}
|
599 |
+
}else{
|
600 |
+
$this->add_error(__('Dates must have correct formatting. Please use the date picker provided.','dbem'));
|
601 |
+
}
|
602 |
+
if( $this->get_location()->id == '' && !$this->location->validate() ){
|
603 |
+
$this->errors = array_merge($this->errors, $this->location->errors);
|
604 |
+
}
|
605 |
+
$this->image_validate();
|
606 |
+
|
607 |
+
//TODO validate recurrence during event validate
|
608 |
+
$count = count($this->errors);
|
609 |
+
return apply_filters('em_event_validate', count($this->errors) == 0, $this );
|
610 |
+
}
|
611 |
+
|
612 |
+
/**
|
613 |
+
* Returns an EM_Categories object of the EM_Event instance.
|
614 |
+
* @return EM_Categories
|
615 |
+
*/
|
616 |
+
function get_categories() {
|
617 |
+
global $EM_Categories;
|
618 |
+
if( !empty($this->categories) && is_object($this->categories) && get_class($this->categories)=='EM_Categories' && ( empty($this->categories->event->id) || $this->categories->event->id == $this->id ) ){
|
619 |
+
$this->categories = $this->categories;
|
620 |
+
}elseif( is_object($EM_Categories) && $EM_Categories->get_event()->id == $this->id ){
|
621 |
+
$this->categories = $EM_Categories;
|
622 |
+
}else{
|
623 |
+
$this->categories = new EM_Categories($this);
|
624 |
+
}
|
625 |
+
$this->categories->event = $this;
|
626 |
+
return apply_filters('em_event_get_categories', $this->categories, $this);
|
627 |
+
}
|
628 |
+
|
629 |
+
/**
|
630 |
+
* Returns the location object this event belongs to.
|
631 |
+
* @return EM_Location
|
632 |
+
*/
|
633 |
+
function get_location() {
|
634 |
+
global $EM_location;
|
635 |
+
if( is_object($this->location) && get_class($this->location)=='EM_Location' && ($this->location_id == $this->location->id || empty($this->id)) ){
|
636 |
+
return $this->location;
|
637 |
+
}elseif( is_object($EM_location) && $EM_location->id == $this->location_id ){
|
638 |
+
$this->location = $EM_location;
|
639 |
+
}else{
|
640 |
+
$this->location = new EM_location($this->location_id);
|
641 |
+
}
|
642 |
+
return apply_filters('em_event_get_location', $this->location, $this);
|
643 |
+
}
|
644 |
+
|
645 |
+
/**
|
646 |
+
* Shortcut function for $this->get_bookings()->delete(), because using the EM_Bookings requires loading previous bookings, which isn't neceesary.
|
647 |
+
*/
|
648 |
+
function delete_bookings(){
|
649 |
+
global $wpdb;
|
650 |
+
do_action('em_event_delete_bookings_pre', $this);
|
651 |
+
$result = false;
|
652 |
+
if( $this->can_manage('manage_bookings','manage_others_bookings') ){
|
653 |
+
$result = $wpdb->query( $wpdb->prepare("DELETE FROM ".EM_BOOKINGS_TABLE." WHERE event_id=%d", $this->id) );
|
654 |
+
}
|
655 |
+
return apply_filters('em_event_delete_bookings', $result, $this);
|
656 |
+
}
|
657 |
+
|
658 |
+
/**
|
659 |
+
* Retrieve and save the bookings belonging to instance. If called again will return cached version, set $force_reload to true to create a new EM_Bookings object.
|
660 |
+
* @param boolean $force_reload
|
661 |
+
* @return EM_Bookings
|
662 |
+
*/
|
663 |
+
function get_bookings( $force_reload = false ){
|
664 |
+
if( get_option('dbem_rsvp_enabled') ){
|
665 |
+
if( (!$this->bookings || $force_reload) ){
|
666 |
+
$this->bookings = new EM_Bookings($this);
|
667 |
+
}
|
668 |
+
}else{
|
669 |
+
return new EM_Bookings();
|
670 |
+
}
|
671 |
+
return apply_filters('em_event_get_bookings', $this->bookings, $this);
|
672 |
+
}
|
673 |
+
|
674 |
+
function is_free(){
|
675 |
+
$free = true;
|
676 |
+
if( isset($this->free) ) return $this->free;
|
677 |
+
foreach($this->get_bookings()->get_tickets() as $EM_Ticket){
|
678 |
+
if( $EM_Ticket->price > 0 ){
|
679 |
+
$free = false;
|
680 |
+
}
|
681 |
+
}
|
682 |
+
return apply_filters('em_event_is_free',$free,$this);
|
683 |
+
}
|
684 |
+
|
685 |
+
/**
|
686 |
+
* Gets number of spaces in this event, dependent on ticket spaces or hard limit, whichever is smaller.
|
687 |
+
* @param boolean $force_refresh
|
688 |
+
* @return int
|
689 |
+
*/
|
690 |
+
function get_spaces($force_refresh=false){
|
691 |
+
return $this->get_bookings()->get_spaces($force_refresh);
|
692 |
+
}
|
693 |
+
|
694 |
+
/**
|
695 |
+
* Will output a single event format of this event.
|
696 |
+
* Equivalent of calling EM_Event::output( get_option ( 'dbem_single_event_format' ) )
|
697 |
+
* @param string $target
|
698 |
+
* @return string
|
699 |
+
*/
|
700 |
+
function output_single($target='html'){
|
701 |
+
$format = get_option ( 'dbem_single_event_format' );
|
702 |
+
return apply_filters('em_event_output_single', $this->output($format, $target), $this, $target);
|
703 |
+
}
|
704 |
+
|
705 |
+
/**
|
706 |
+
* Will output a event in the format passed in $format by replacing placeholders within the format.
|
707 |
+
* @param string $format
|
708 |
+
* @param string $target
|
709 |
+
* @return string
|
710 |
+
*/
|
711 |
+
function output($format, $target="html") {
|
712 |
+
$event_string = $format;
|
713 |
+
//Time place holder that doesn't show if empty.
|
714 |
+
//TODO add filter here too
|
715 |
+
preg_match_all('/#@?_\{[A-Za-z0-9 -\/,\.\\\]+\}/', $format, $results);
|
716 |
+
foreach($results[0] as $result) {
|
717 |
+
if(substr($result, 0, 3 ) == "#@_"){
|
718 |
+
$date = 'end_date';
|
719 |
+
$offset = 4;
|
720 |
+
}else{
|
721 |
+
$date = 'start_date';
|
722 |
+
$offset = 3;
|
723 |
+
}
|
724 |
+
if( $date == 'end_date' && $this->end_date == $this->start_date ){
|
725 |
+
$replace = __( apply_filters('em_event_output_placeholder', '', $this, $result, $target) );
|
726 |
+
}else{
|
727 |
+
$replace = __( apply_filters('em_event_output_placeholder', mysql2date(substr($result, $offset, (strlen($result)-($offset+1)) ), $this->$date), $this, $result, $target) );
|
728 |
+
}
|
729 |
+
$event_string = str_replace($result,$replace,$event_string );
|
730 |
+
}
|
731 |
+
//This is for the custom attributes
|
732 |
+
preg_match_all('/#_ATT\{([^}]+)\}(\{([^}]+)\})?/', $format, $results);
|
733 |
+
foreach($results[0] as $resultKey => $result) {
|
734 |
+
//Strip string of placeholder and just leave the reference
|
735 |
+
$attRef = substr( substr($result, 0, strpos($result, '}')), 6 );
|
736 |
+
$attString = '';
|
737 |
+
if( is_array($this->attributes) && array_key_exists($attRef, $this->attributes) ){
|
738 |
+
$attString = $this->attributes[$attRef];
|
739 |
+
}elseif( !empty($results[3][$resultKey]) ){
|
740 |
+
//Check to see if we have a second set of braces;
|
741 |
+
$attString = $results[3][$resultKey];
|
742 |
+
}
|
743 |
+
$attString = apply_filters('em_event_output_placeholder', $attString, $this, $result, $target);
|
744 |
+
$event_string = str_replace($result, $attString ,$event_string );
|
745 |
+
}
|
746 |
+
//First let's do some conditional placeholder removals
|
747 |
+
preg_match_all('/\{([a-zA-Z0-9_]+)\}([^{]+)\{\/\1\}/', $event_string, $conditionals);
|
748 |
+
if( count($conditionals[0]) > 0 ){
|
749 |
+
//Check if the language we want exists, if not we take the first language there
|
750 |
+
foreach($conditionals[1] as $key => $condition){
|
751 |
+
$replacement = $conditionals[0][$key];
|
752 |
+
if ($condition == 'has_bookings') {
|
753 |
+
//check if there's a booking, if not, remove this section of code.
|
754 |
+
if($this->rsvp && get_option('dbem_rsvp_enabled')){
|
755 |
+
$replacement = substr($conditionals[0][$key], 14, strlen($conditionals[0][$key])-29); //29 = (15+14)
|
756 |
+
}else{
|
757 |
+
$replacement = '';
|
758 |
+
}
|
759 |
+
}
|
760 |
+
if ($condition == 'no_bookings') {
|
761 |
+
//check if there's a booking, if not, remove this section of code.
|
762 |
+
if(!$this->rsvp && get_option('dbem_rsvp_enabled')){
|
763 |
+
$replacement = substr($conditionals[0][$key], 13, strlen($conditionals[0][$key])-28); //28 = (13+14)
|
764 |
+
}else{
|
765 |
+
$replacement = '';
|
766 |
+
}
|
767 |
+
str_replace($conditionals[0][$key], $replacement, $format);
|
768 |
+
}
|
769 |
+
$event_string = str_replace($conditionals[0][$key], apply_filters('em_event_output_condition', $replacement, $condition, $conditionals[0][$key], $this), $event_string);
|
770 |
+
}
|
771 |
+
}
|
772 |
+
//Now let's check out the placeholders.
|
773 |
+
preg_match_all("/(#@?_?[A-Za-z0-9]+)({([a-zA-Z0-9,]+)})?/", $format, $placeholders);
|
774 |
+
foreach($placeholders[1] as $key => $result) {
|
775 |
+
$match = true;
|
776 |
+
$replace = '';
|
777 |
+
$full_result = $placeholders[0][$key];
|
778 |
+
switch( $result ){
|
779 |
+
//Event Details
|
780 |
+
case '#_EVENTID':
|
781 |
+
$replace = $this->id;
|
782 |
+
break;
|
783 |
+
case '#_NAME':
|
784 |
+
$replace = $this->name;
|
785 |
+
break;
|
786 |
+
case '#_NOTES':
|
787 |
+
case '#_EXCERPT':
|
788 |
+
//SEE AT BOTTOM OF FILE FOR OLD TARGET FILTERS FROM 2.x
|
789 |
+
$replace = $this->notes;
|
790 |
+
if($result == "#_EXCERPT"){
|
791 |
+
$matches = explode('<!--more', $this->notes);
|
792 |
+
$replace = $matches[0];
|
793 |
+
}
|
794 |
+
break;
|
795 |
+
case '#_EVENTIMAGEURL':
|
796 |
+
case '#_EVENTIMAGE':
|
797 |
+
if($this->image_url != ''){
|
798 |
+
if($result == '#_EVENTIMAGEURL'){
|
799 |
+
$replace = $this->image_url;
|
800 |
+
}else{
|
801 |
+
if( empty($placeholders[3][$key]) ){
|
802 |
+
$replace = "<img src='".$this->image_url."' alt='".esc_attr($this->name)."'/>";
|
803 |
+
}else{
|
804 |
+
$image_size = explode(',', $placeholders[3][$key]);
|
805 |
+
if( $this->array_is_numeric($image_size) && count($image_size) > 1 ){
|
806 |
+
$replace = "<img src='".em_get_thumbnail_url($this->image_url, $image_size[0], $image_size[1])."' alt='".esc_attr($this->name)."'/>";
|
807 |
+
}else{
|
808 |
+
$replace = "<img src='".$this->image_url."' alt='".esc_attr($this->name)."'/>";
|
809 |
+
}
|
810 |
+
}
|
811 |
+
}
|
812 |
+
}
|
813 |
+
break;
|
814 |
+
//Times
|
815 |
+
case '#_24HSTARTTIME':
|
816 |
+
case '#_24HENDTIME':
|
817 |
+
$time = ($result == '#_24HSTARTTIME') ? $this->start_time:$this->end_time;
|
818 |
+
$replace = substr($time, 0,5);
|
819 |
+
break;
|
820 |
+
case '#_12HSTARTTIME':
|
821 |
+
case '#_12HENDTIME':
|
822 |
+
$time = ($result == '#_12HSTARTTIME') ? $this->start_time:$this->end_time;
|
823 |
+
$replace = date('g:i A', strtotime($time));
|
824 |
+
break;
|
825 |
+
//Links
|
826 |
+
case '#_EVENTPAGEURL': //Depreciated
|
827 |
+
case '#_LINKEDNAME': //Depreciated
|
828 |
+
case '#_EVENTURL': //Just the URL
|
829 |
+
case '#_EVENTLINK': //HTML Link
|
830 |
+
//If this event is not of this blog, we need a new URL
|
831 |
+
$EM_URI = EM_URI;
|
832 |
+
if( is_multisite() && get_site_option('dbem_ms_global_events') && get_site_option('dbem_ms_global_events_links') && !empty($this->blog_id) && is_main_site() && $this->blog_id != get_current_blog_id() ){
|
833 |
+
$EM_URI = get_blog_permalink($this->blog_id, get_blog_option($this->blog_id, 'dbem_events_page'));
|
834 |
+
}
|
835 |
+
$joiner = (stristr($EM_URI, "?")) ? "&" : "?";
|
836 |
+
$event_link = esc_url($EM_URI.$joiner."event_id=".$this->id);
|
837 |
+
if($result == '#_LINKEDNAME' || $result == '#_EVENTLINK'){
|
838 |
+
$replace = '<a href="'.$event_link.'" title="'.esc_attr($this->name).'">'.esc_attr($this->name).'</a>';
|
839 |
+
}else{
|
840 |
+
$replace = $event_link;
|
841 |
+
}
|
842 |
+
break;
|
843 |
+
case '#_EDITEVENTURL':
|
844 |
+
case '#_EDITEVENTLINK':
|
845 |
+
if( $this->can_manage('edit_events','edit_others_events') ){
|
846 |
+
if( is_multisite() && get_site_option('dbem_ms_global_events') && get_site_option('dbem_ms_global_events_links') && !empty($this->blog_id) && is_main_site() && $this->blog_id != get_current_blog_id() ){
|
847 |
+
$replace = get_site_url($this->blog_id, "/wp-admin/admin.php?page=events-manager-event&event_id={$this->id}");
|
848 |
+
}else{
|
849 |
+
$replace = esc_url(get_bloginfo('wpurl')."/wp-admin/admin.php?page=events-manager-event&event_id={$this->id}");
|
850 |
+
}
|
851 |
+
if( $result == '#_EDITEVENTLINK'){
|
852 |
+
$replace = '<a href="'.$replace.'">'.esc_html(__('Edit', 'dbem').' '.__('Event', 'dbem')).'</a>';
|
853 |
+
}
|
854 |
+
}
|
855 |
+
break;
|
856 |
+
//Bookings
|
857 |
+
case '#_ADDBOOKINGFORM': //Depreciated
|
858 |
+
case '#_REMOVEBOOKINGFORM': //Depreciated
|
859 |
+
case '#_BOOKINGFORM':
|
860 |
+
if( get_option('dbem_rsvp_enabled')){
|
861 |
+
ob_start();
|
862 |
+
$template = em_locate_template('placeholders/bookingform.php', true, array('EM_Event'=>$this));
|
863 |
+
if( !defined('EM_BOOKING_JS_LOADED') ){
|
864 |
+
//this kicks off the Javascript required by booking forms. This is fired once for all booking forms on a page load and appears at the bottom of the page
|
865 |
+
//your theme must call the wp_footer() function for this to work (as required by many other plugins too)
|
866 |
+
function em_booking_js_footer(){
|
867 |
+
?>
|
868 |
+
<script type="text/javascript">
|
869 |
+
jQuery(document).ready( function($){
|
870 |
+
<?php
|
871 |
+
//we call the segmented JS files and include them here
|
872 |
+
include(WP_PLUGIN_DIR.'/events-manager/includes/js/bookingsform.js');
|
873 |
+
do_action('em_gateway_js');
|
874 |
+
?>
|
875 |
+
});
|
876 |
+
</script>
|
877 |
+
<?php
|
878 |
+
}
|
879 |
+
add_action('wp_footer','em_booking_js_footer');
|
880 |
+
define('EM_BOOKING_JS_LOADED',true);
|
881 |
+
}
|
882 |
+
$replace = ob_get_clean();
|
883 |
+
}
|
884 |
+
break;
|
885 |
+
case '#_BOOKINGBUTTON':
|
886 |
+
if( get_option('dbem_rsvp_enabled')){
|
887 |
+
ob_start();
|
888 |
+
$template = em_locate_template('placeholders/bookingbutton.php', true, array('EM_Event'=>$this));
|
889 |
+
$replace = ob_get_clean();
|
890 |
+
}
|
891 |
+
break;
|
892 |
+
case '#_AVAILABLESEATS': //Depreciated
|
893 |
+
case '#_AVAILABLESPACES':
|
894 |
+
if ($this->rsvp && get_option('dbem_rsvp_enabled')) {
|
895 |
+
$replace = $this->get_bookings()->get_available_spaces();
|
896 |
+
} else {
|
897 |
+
$replace = "0";
|
898 |
+
}
|
899 |
+
break;
|
900 |
+
case '#_BOOKEDSEATS': //Depreciated
|
901 |
+
case '#_BOOKEDSPACES':
|
902 |
+
if ($this->rsvp && get_option('dbem_rsvp_enabled')) {
|
903 |
+
$replace = $this->get_bookings()->get_booked_spaces();
|
904 |
+
} else {
|
905 |
+
$replace = "0";
|
906 |
+
}
|
907 |
+
break;
|
908 |
+
case '#_PENDINGSPACES':
|
909 |
+
if ($this->rsvp && get_option('dbem_rsvp_enabled')) {
|
910 |
+
$replace = $this->get_bookings()->get_pending_spaces();
|
911 |
+
} else {
|
912 |
+
$replace = "0";
|
913 |
+
}
|
914 |
+
break;
|
915 |
+
case '#_SEATS': //Depreciated
|
916 |
+
case '#_SPACES':
|
917 |
+
$replace = $this->get_spaces();
|
918 |
+
break;
|
919 |
+
case '#_BOOKINGSURL':
|
920 |
+
case '#_BOOKINGSLINK':
|
921 |
+
if( $this->can_manage('manage_bookings','manage_others_bookings') ){
|
922 |
+
$bookings_link = esc_url(get_bloginfo ( 'wpurl' )."/wp-admin/admin.php?page=events-manager-bookings&event_id=".$this->id);
|
923 |
+
if($result == '#_BOOKINGSLINK'){
|
924 |
+
$replace = '<a href="'.$bookings_link.'" title="'.esc_attr($bookings_link).'">'.esc_html($this->name).'</a>';
|
925 |
+
}else{
|
926 |
+
$replace = $bookings_link;
|
927 |
+
}
|
928 |
+
}
|
929 |
+
break;
|
930 |
+
//Contact Person
|
931 |
+
case '#_CONTACTNAME':
|
932 |
+
case '#_CONTACTPERSON': //Depreciated (your call, I think name is better)
|
933 |
+
$replace = $this->contact->display_name;
|
934 |
+
break;
|
935 |
+
case '#_CONTACTUSERNAME':
|
936 |
+
$replace = $this->contact->user_login;
|
937 |
+
break;
|
938 |
+
case '#_CONTACTEMAIL':
|
939 |
+
case '#_CONTACTMAIL': //Depreciated
|
940 |
+
$replace = $this->contact->user_email;
|
941 |
+
break;
|
942 |
+
case '#_CONTACTID':
|
943 |
+
$replace = $this->contact->ID;
|
944 |
+
break;
|
945 |
+
case '#_CONTACTPHONE':
|
946 |
+
$replace = ( $this->contact->phone != '') ? $this->contact->phone : __('N/A', 'dbem');
|
947 |
+
break;
|
948 |
+
case '#_CONTACTAVATAR':
|
949 |
+
$replace = get_avatar( $this->contact->ID, $size = '50' );
|
950 |
+
break;
|
951 |
+
case '#_CONTACTPROFILELINK':
|
952 |
+
case '#_CONTACTPROFILEURL':
|
953 |
+
if( function_exists('bp_core_get_user_domain') ){
|
954 |
+
$replace = bp_core_get_user_domain($this->contact->ID);
|
955 |
+
if( $result == '#_CONTACTPROFILELINK' ){
|
956 |
+
$replace = '<a href="'.esc_url($replace).'">'.__('Profile', 'dbem').'</a>';
|
957 |
+
}
|
958 |
+
}
|
959 |
+
break;
|
960 |
+
case '#_CONTACTPROFILELINK':
|
961 |
+
case '#_CONTACTPROFILEURL':
|
962 |
+
if( function_exists('bp_core_get_user_domain') ){
|
963 |
+
$replace = bp_core_get_user_domain($this->contact->ID);
|
964 |
+
if( $result == '#_CONTACTPROFILELINK' ){
|
965 |
+
$replace = '<a href="'.esc_url($replace).'">'.__('Profile', 'dbem').'</a>';
|
966 |
+
}
|
967 |
+
}
|
968 |
+
break;
|
969 |
+
case '#_ATTENDEES':
|
970 |
+
ob_start();
|
971 |
+
$template = em_locate_template('placeholders/attendees.php', true, array('EM_Event'=>$this));
|
972 |
+
$replace = ob_get_clean();
|
973 |
+
break;
|
974 |
+
case '#_CATEGORIES':
|
975 |
+
ob_start();
|
976 |
+
$template = em_locate_template('placeholders/categories.php', true, array('EM_Event'=>$this));
|
977 |
+
$replace = ob_get_clean();
|
978 |
+
break;
|
979 |
+
default:
|
980 |
+
$replace = $full_result;
|
981 |
+
break;
|
982 |
+
}
|
983 |
+
$replace = apply_filters('em_event_output_placeholder', $replace, $this, $full_result, $target );
|
984 |
+
$event_string = str_replace($full_result, $replace , $event_string );
|
985 |
+
}
|
986 |
+
//Time placeholders
|
987 |
+
foreach($placeholders[1] as $result) {
|
988 |
+
// matches all PHP START date and time placeholders
|
989 |
+
if (preg_match('/^#[dDjlNSwzWFmMntLoYyaABgGhHisueIOPTZcrU]$/', $result)) {
|
990 |
+
$replace = date_i18n(ltrim($result, "#"), $this->start);
|
991 |
+
$replace = apply_filters('em_event_output_placeholder', $replace, $this, $result, $target);
|
992 |
+
$event_string = str_replace($result, $replace, $event_string );
|
993 |
+
}
|
994 |
+
// matches all PHP END time placeholders for endtime
|
995 |
+
if (preg_match('/^#@[dDjlNSwzWFmMntLoYyaABgGhHisueIOPTZcrU]$/', $result)) {
|
996 |
+
$replace = date_i18n(ltrim($result, "#@"), $this->end);
|
997 |
+
$replace = apply_filters('em_event_output_placeholder', $replace, $this, $result, $target);
|
998 |
+
$event_string = str_replace($result, $replace, $event_string );
|
999 |
+
}
|
1000 |
+
}
|
1001 |
+
//Now do dependent objects
|
1002 |
+
$event_string = $this->location->output($event_string, $target);
|
1003 |
+
|
1004 |
+
//for backwards compat and easy use, take over the individual category placeholders with the frirst cat in th elist.
|
1005 |
+
$EM_Categories = $this->get_categories();
|
1006 |
+
if( count($EM_Categories->categories) > 0 ){
|
1007 |
+
$EM_Category = $EM_Categories->categories[0];
|
1008 |
+
}
|
1009 |
+
if( empty($EM_Category) ) $EM_Category = new EM_Category();
|
1010 |
+
$event_string = $EM_Category->output($event_string, $target);
|
1011 |
+
|
1012 |
+
return apply_filters('em_event_output', $event_string, $this, $format, $target);
|
1013 |
+
}
|
1014 |
+
|
1015 |
+
/**********************************************************
|
1016 |
+
* RECURRENCE METHODS
|
1017 |
+
***********************************************************/
|
1018 |
+
|
1019 |
+
/**
|
1020 |
+
* Saves events and replaces old ones. Returns true if sucecssful or false if not.
|
1021 |
+
* @return boolean
|
1022 |
+
*/
|
1023 |
+
function save_events() {
|
1024 |
+
if( $this->is_recurring() && $this->can_manage('edit_events','edit_others_events') ){
|
1025 |
+
do_action('em_event_save_events_pre', $this); //actions/filters only run if event is recurring
|
1026 |
+
global $wpdb;
|
1027 |
+
$matching_days = $this->get_recurrence_days(); //Get days where events recur
|
1028 |
+
$this->delete_events(); //Delete old events beforehand
|
1029 |
+
//Make template event (and we just change dates)
|
1030 |
+
$event = $this->to_array();
|
1031 |
+
unset($event['event_id']); //remove id and we have a event template to feed to wpdb insert
|
1032 |
+
$event['event_date_created'] = current_time('mysql'); //since the recurrences are recreated
|
1033 |
+
unset($event['event_date_modified']);
|
1034 |
+
$event['event_attributes'] = serialize($event['event_attributes']);
|
1035 |
+
foreach($event as $key => $value ){ //remove recurrence information
|
1036 |
+
if( substr($key, 0, 10) == 'recurrence' ){
|
1037 |
+
unset($event[$key]);
|
1038 |
+
}
|
1039 |
+
}
|
1040 |
+
$event['recurrence_id'] = $this->id;
|
1041 |
+
//Save event template with different dates
|
1042 |
+
$event_saves = array();
|
1043 |
+
$event_ids = array();
|
1044 |
+
if( count($matching_days) > 0 ){
|
1045 |
+
foreach( $matching_days as $day ) {
|
1046 |
+
$event['event_start_date'] = date("Y-m-d", $day);
|
1047 |
+
$event['event_slug'] = $this->slug.'-'.$event['event_start_date'];
|
1048 |
+
$event['event_end_date'] = $event['event_start_date'];
|
1049 |
+
$event_saves[] = $wpdb->insert(EM_EVENTS_TABLE, $event, $this->get_types($event));
|
1050 |
+
$event_ids[] = $wpdb->insert_id;
|
1051 |
+
//if( EM_DEBUG ){ echo "Entering recurrence " . date("D d M Y", $day)."<br/>"; }
|
1052 |
+
}
|
1053 |
+
//save bookings
|
1054 |
+
if( $this->rsvp ){
|
1055 |
+
$inserts = array();
|
1056 |
+
foreach($this->get_bookings()->get_tickets() as $EM_Ticket){
|
1057 |
+
/* @var $EM_Ticket EM_Ticket */
|
1058 |
+
//get array, modify event id and insert
|
1059 |
+
$ticket = $EM_Ticket->to_array();
|
1060 |
+
unset($ticket['ticket_id']);
|
1061 |
+
//clean up ticket values
|
1062 |
+
foreach($ticket as $k => $v){
|
1063 |
+
if( empty($v) && $k != 'ticket_name' ){
|
1064 |
+
$ticket[$k] = 'NULL';
|
1065 |
+
}else{
|
1066 |
+
$ticket[$k] = "'$v'";
|
1067 |
+
}
|
1068 |
+
}
|
1069 |
+
foreach($event_ids as $event_id){
|
1070 |
+
$ticket['event_id'] = $event_id;
|
1071 |
+
$inserts[] = "(".implode(",",$ticket).")";
|
1072 |
+
}
|
1073 |
+
}
|
1074 |
+
$keys = "(".implode(",",array_keys($ticket)).")";
|
1075 |
+
$values = implode(',',$inserts);
|
1076 |
+
$sql = "INSERT INTO ".EM_TICKETS_TABLE." $keys VALUES $values";
|
1077 |
+
$result = $wpdb->query($sql);
|
1078 |
+
}
|
1079 |
+
//save categories
|
1080 |
+
$category_ids = $this->get_categories()->get_ids();
|
1081 |
+
$inserts = array();
|
1082 |
+
foreach($event_ids as $event_id){
|
1083 |
+
//create the meta inserts for each event
|
1084 |
+
foreach($category_ids as $category_id){
|
1085 |
+
$inserts[] = "($event_id,'event-category', $category_id)";
|
1086 |
+
}
|
1087 |
+
}
|
1088 |
+
if( count($inserts) > 0 ){
|
1089 |
+
$result = $wpdb->query("INSERT INTO ".EM_META_TABLE." (object_id,meta_key,meta_value) VALUES ".implode(',',$inserts));
|
1090 |
+
if($result === false){
|
1091 |
+
$this->add_error('There was a problem adding categories to your recurring events.','dbem');
|
1092 |
+
}
|
1093 |
+
}
|
1094 |
+
}else{
|
1095 |
+
$this->add_error('You have not defined a date range long enough to create a recurrence.','dbem');
|
1096 |
+
$result = false;
|
1097 |
+
}
|
1098 |
+
return apply_filters('em_event_save_events', !in_array(false, $event_saves) && $result !== false, $this, $event_ids);
|
1099 |
+
}
|
1100 |
+
return apply_filters('em_event_save_events', false, $this, $event_ids);
|
1101 |
+
}
|
1102 |
+
|
1103 |
+
/**
|
1104 |
+
* Removes all reoccurring events.
|
1105 |
+
* @param $recurrence_id
|
1106 |
+
* @return null
|
1107 |
+
*/
|
1108 |
+
function delete_events(){
|
1109 |
+
global $wpdb;
|
1110 |
+
do_action('em_event_delete_events_pre', $this);
|
1111 |
+
//So we don't do something we'll regret later, we could just supply the get directly into the delete, but this is safer
|
1112 |
+
$result = false;
|
1113 |
+
if( $this->can_manage('delete_events', 'delete_others_events') ){
|
1114 |
+
$EM_Events = EM_Events::get( array('recurrence_id'=>$this->id, 'scope'=>'all') );
|
1115 |
+
$event_ids = array();
|
1116 |
+
foreach($EM_Events as $EM_Event){
|
1117 |
+
if($EM_Event->recurrence_id == $this->id){
|
1118 |
+
$event_ids[] = $EM_Event->id; //ONLY ADD if id's match - hard coded
|
1119 |
+
}
|
1120 |
+
}
|
1121 |
+
$result = EM_Events::delete( $event_ids );
|
1122 |
+
}
|
1123 |
+
return apply_filters('delete_events', $result, $this, $event_ids);
|
1124 |
+
}
|
1125 |
+
|
1126 |
+
/**
|
1127 |
+
* Returns true if this event is a recurring event, meaning that it's not an individual event,
|
1128 |
+
* but an event that defines many events that recur over a span of time.
|
1129 |
+
* For checking if a specific event is part of a greater set of recurring events, use is_recurrence()
|
1130 |
+
* @return boolean
|
1131 |
+
*/
|
1132 |
+
function is_recurring(){
|
1133 |
+
return ( $this->recurrence );
|
1134 |
+
}
|
1135 |
+
/**
|
1136 |
+
* Will return true if this individual event is part of a set of events that recur
|
1137 |
+
* For checking if this is the "master recurring event", see is_recurring()
|
1138 |
+
* @return boolean
|
1139 |
+
*/
|
1140 |
+
function is_recurrence(){
|
1141 |
+
return ( $this->id > 0 && $this->recurrence_id > 0 );
|
1142 |
+
}
|
1143 |
+
/**
|
1144 |
+
* Returns if this is an individual event and is not recurring or a recurrence
|
1145 |
+
* @return boolean
|
1146 |
+
*/
|
1147 |
+
function is_individual(){
|
1148 |
+
return ( !$this->is_recurring() && !$this->is_recurrence() );
|
1149 |
+
}
|
1150 |
+
|
1151 |
+
/**
|
1152 |
+
* Can the user manage this?
|
1153 |
+
*/
|
1154 |
+
function can_manage( $owner_capability = false, $admin_capability = false ){
|
1155 |
+
if( $owner_capability == 'edit_events' && $this->id == '' && !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') ){
|
1156 |
+
return apply_filters('em_event_can_manage',true, $this);
|
1157 |
+
}
|
1158 |
+
return apply_filters('em_event_can_manage', parent::can_manage($owner_capability, $admin_capability), $this);
|
1159 |
+
}
|
1160 |
+
|
1161 |
+
/**
|
1162 |
+
* Returns the days that match the recurrance array passed (unix timestamps)
|
1163 |
+
* @param array $recurrence
|
1164 |
+
* @return array
|
1165 |
+
*/
|
1166 |
+
function get_recurrence_days(){
|
1167 |
+
if( $this->is_recurring() ){
|
1168 |
+
|
1169 |
+
$start_date = strtotime($this->start_date);
|
1170 |
+
$end_date = strtotime($this->end_date);
|
1171 |
+
|
1172 |
+
$weekdays = explode(",", $this->byday); //what days of the week (or if monthly, one value at index 0)
|
1173 |
+
|
1174 |
+
$matching_days = array();
|
1175 |
+
$aDay = 86400; // a day in seconds
|
1176 |
+
$aWeek = $aDay * 7;
|
1177 |
+
|
1178 |
+
//TODO can this be optimized?
|
1179 |
+
switch ( $this->freq ){
|
1180 |
+
case 'daily':
|
1181 |
+
//If daily, it's simple. Get start date, add interval timestamps to that and create matching day for each interval until end date.
|
1182 |
+
$current_date = $start_date;
|
1183 |
+
while( $current_date <= $end_date ){
|
1184 |
+
$matching_days[] = $current_date;
|
1185 |
+
$current_date = $current_date + ($aDay * $this->interval);
|
1186 |
+
}
|
1187 |
+
break;
|
1188 |
+
case 'weekly':
|
1189 |
+
//sort out week one, get starting days and then days that match time span of event (i.e. remove past events in week 1)
|
1190 |
+
$start_of_week = get_option('start_of_week'); //Start of week depends on wordpress
|
1191 |
+
//first, get the start of this week as timestamp
|
1192 |
+
$event_start_day = date('w', $start_date);
|
1193 |
+
$offset = 0;
|
1194 |
+
if( $event_start_day > $start_of_week ){
|
1195 |
+
$offset = $event_start_day - $start_of_week; //x days backwards
|
1196 |
+
}elseif( $event_start_day < $start_of_week ){
|
1197 |
+
$offset = $start_of_week;
|
1198 |
+
}
|
1199 |
+
$start_week_date = $start_date - ( ($event_start_day - $start_of_week) * $aDay );
|
1200 |
+
//then get the timestamps of weekdays during this first week, regardless if within event range
|
1201 |
+
$start_weekday_dates = array(); //Days in week 1 where there would events, regardless of event date range
|
1202 |
+
for($i = 0; $i < 7; $i++){
|
1203 |
+
$weekday_date = $start_week_date+($aDay*$i); //the date of the weekday we're currently checking
|
1204 |
+
$weekday_day = date('w',$weekday_date); //the day of the week we're checking, taking into account wp start of week setting
|
1205 |
+
if( in_array( $weekday_day, $weekdays) ){
|
1206 |
+
$start_weekday_dates[] = $weekday_date; //it's in our starting week day, so add it
|
1207 |
+
}
|
1208 |
+
}
|
1209 |
+
//for each day of eventful days in week 1, add 7 days * weekly intervals
|
1210 |
+
foreach ($start_weekday_dates as $weekday_date){
|
1211 |
+
//Loop weeks by interval until we reach or surpass end date
|
1212 |
+
while($weekday_date <= $end_date){
|
1213 |
+
if( $weekday_date >= $start_date && $weekday_date <= $end_date ){
|
1214 |
+
$matching_days[] = $weekday_date;
|
1215 |
+
}
|
1216 |
+
$weekday_date = $weekday_date + ($aWeek * $this->interval);
|
1217 |
+
}
|
1218 |
+
}//done!
|
1219 |
+
break;
|
1220 |
+
case 'monthly':
|
1221 |
+
//loop months starting this month by intervals
|
1222 |
+
$current_arr = getdate($start_date);
|
1223 |
+
$end_arr = getdate($end_date);
|
1224 |
+
$end_month_date = strtotime( date('Y-m-t', $end_date) ); //End date on last day of month
|
1225 |
+
$current_date = strtotime( date('Y-m-1', $start_date) ); //Start date on first day of month
|
1226 |
+
while( $current_date <= $end_month_date ){
|
1227 |
+
$last_day_of_month = date('t', $current_date);
|
1228 |
+
//Now find which day we're talking about
|
1229 |
+
$current_week_day = date('w',$current_date);
|
1230 |
+
$matching_month_days = array();
|
1231 |
+
//Loop through days of this years month and save matching days to temp array
|
1232 |
+
for($day = 1; $day <= $last_day_of_month; $day++){
|
1233 |
+
if($current_week_day == $this->byday){
|
1234 |
+
$matching_month_days[] = $day;
|
1235 |
+
}
|
1236 |
+
$current_week_day = ($current_week_day < 6) ? $current_week_day+1 : 0;
|
1237 |
+
}
|
1238 |
+
//Now grab from the array the x day of the month
|
1239 |
+
$matching_day = ($this->byweekno > 0) ? $matching_month_days[$this->byweekno-1] : array_pop($matching_month_days);
|
1240 |
+
$matching_date = strtotime(date('Y-m',$current_date).'-'.$matching_day);
|
1241 |
+
if($matching_date >= $start_date && $matching_date <= $end_date){
|
1242 |
+
$matching_days[] = $matching_date;
|
1243 |
+
}
|
1244 |
+
//add the number of days in this month to make start of next month
|
1245 |
+
$current_arr['mon'] += $this->interval;
|
1246 |
+
if($current_arr['mon'] > 12){
|
1247 |
+
//FIXME this won't work if interval is more than 12
|
1248 |
+
$current_arr['mon'] = $current_arr['mon'] - 12;
|
1249 |
+
$current_arr['year']++;
|
1250 |
+
}
|
1251 |
+
$current_date = strtotime("{$current_arr['year']}-{$current_arr['mon']}-1");
|
1252 |
+
}
|
1253 |
+
break;
|
1254 |
+
}
|
1255 |
+
sort($matching_days);
|
1256 |
+
//TODO delete this after testing
|
1257 |
+
/*Delete*/
|
1258 |
+
$test_dates = array();
|
1259 |
+
foreach($matching_days as $matching_day){
|
1260 |
+
$test_dates[] = date('d/m/Y', $matching_day);
|
1261 |
+
}
|
1262 |
+
/*end delete*/
|
1263 |
+
return $matching_days;
|
1264 |
+
}
|
1265 |
+
}
|
1266 |
+
|
1267 |
+
function get_recurrence(){
|
1268 |
+
global $EM_Recurrences;
|
1269 |
+
if( is_array($EM_Recurrences) && array_key_exists($this->recurrence_id, $EM_Recurrences) && is_object($EM_Recurrences[$this->recurrence_id]) && get_class($EM_Recurrences[$this->recurrence_id]) == 'EM_Event' ){
|
1270 |
+
$recurrence = $EM_Recurrences[$this->recurrence_id];
|
1271 |
+
}else{
|
1272 |
+
//get this recurrence
|
1273 |
+
$recurrence = new EM_Event($this->recurrence_id);
|
1274 |
+
$EM_Recurrences[$this->recurrence_id] = $recurrence;
|
1275 |
+
}
|
1276 |
+
return $recurrence;
|
1277 |
+
}
|
1278 |
+
|
1279 |
+
/**
|
1280 |
+
* Returns a string representation of this recurrence. Will return false if not a recurrence
|
1281 |
+
* @return string
|
1282 |
+
*/
|
1283 |
+
function get_recurrence_description() {
|
1284 |
+
if( $this->is_individual() ) return false;
|
1285 |
+
$recurrence = $this->get_recurrence()->to_array();
|
1286 |
+
$weekdays_name = array(__('Sunday', 'dbem'),__('Monday', 'dbem'),__('Tuesday', 'dbem'),__('Wednesday', 'dbem'),__('Thursday', 'dbem'),__('Friday', 'dbem'),__('Saturday', 'dbem'));
|
1287 |
+
$monthweek_name = array('1' => __('the first %s of the month', 'dbem'),'2' => __('the second %s of the month', 'dbem'), '3' => __('the third %s of the month', 'dbem'), '4' => __('the fourth %s of the month', 'dbem'), '-1' => __('the last %s of the month', 'dbem'));
|
1288 |
+
$output = sprintf (__('From %1$s to %2$s', 'dbem'), $recurrence['event_start_date'], $recurrence['event_end_date']).", ";
|
1289 |
+
if ($recurrence['recurrence_freq'] == 'daily') {
|
1290 |
+
$freq_desc =__('everyday', 'dbem');
|
1291 |
+
if ($recurrence['recurrence_interval'] > 1 ) {
|
1292 |
+
$freq_desc = sprintf (__("every %s days", 'dbem'), $recurrence['recurrence_interval']);
|
1293 |
+
}
|
1294 |
+
}elseif ($recurrence['recurrence_freq'] == 'weekly') {
|
1295 |
+
$weekday_array = explode(",", $recurrence['recurrence_byday']);
|
1296 |
+
$natural_days = array();
|
1297 |
+
foreach($weekday_array as $day){
|
1298 |
+
array_push($natural_days, $weekdays_name[$day]);
|
1299 |
+
}
|
1300 |
+
$output .= implode(" and ", $natural_days);
|
1301 |
+
$freq_desc = ", " . __("every week", 'dbem');
|
1302 |
+
if ($recurrence['recurrence_interval'] > 1 ) {
|
1303 |
+
$freq_desc = ", ".sprintf (__("every %s weeks", 'dbem'), $recurrence['recurrence_interval']);
|
1304 |
+
}
|
1305 |
+
|
1306 |
+
}elseif ($recurrence['recurrence_freq'] == 'monthly') {
|
1307 |
+
$weekday_array = explode(",", $recurrence['recurrence_byday']);
|
1308 |
+
$natural_days = array();
|
1309 |
+
foreach($weekday_array as $day){
|
1310 |
+
array_push($natural_days, $weekdays_name[$day]);
|
1311 |
+
}
|
1312 |
+
$freq_desc = sprintf (($monthweek_name[$recurrence['recurrence_byweekno']]), implode(" and ", $natural_days));
|
1313 |
+
if ($recurrence['recurrence_interval'] > 1 ) {
|
1314 |
+
$freq_desc .= ", ".sprintf (__("every %s months",'dbem'), $recurrence['recurrence_interval']);
|
1315 |
+
}
|
1316 |
+
}else{
|
1317 |
+
$freq_desc = "[ERROR: corrupted database record]";
|
1318 |
+
}
|
1319 |
+
$output .= $freq_desc;
|
1320 |
+
return $output;
|
1321 |
+
}
|
1322 |
+
|
1323 |
+
/**********************************************************
|
1324 |
+
* UTILITIES
|
1325 |
+
***********************************************************/
|
1326 |
+
|
1327 |
+
/**
|
1328 |
+
* Returns this object in the form of an array, useful for saving directly into the wp_dbem_events table.
|
1329 |
+
* @param boolean $for_database
|
1330 |
+
* @return array
|
1331 |
+
*/
|
1332 |
+
function to_array($for_database = false){
|
1333 |
+
$event = array();
|
1334 |
+
//Core Event Data
|
1335 |
+
foreach ( $this->fields as $key => $val ) {
|
1336 |
+
//TODO does it matter if it's for db or not... shouldn't it just not include blanks?
|
1337 |
+
if( !$for_database || $for_database && $this->$val['name'] != '' ){
|
1338 |
+
$event[$key] = $this->$val['name'];
|
1339 |
+
}
|
1340 |
+
}
|
1341 |
+
return $event;
|
1342 |
+
}
|
1343 |
+
}
|
1344 |
+
|
1345 |
+
//TODO placeholder targets filtering could be streamlined better
|
1346 |
+
/**
|
1347 |
+
* This is a temporary filter function which mimicks the old filters in the old 2.x placeholders function
|
1348 |
+
* @param string $result
|
1349 |
+
* @param EM_Event $event
|
1350 |
+
* @param string $placeholder
|
1351 |
+
* @param string $target
|
1352 |
+
* @return mixed
|
1353 |
+
*/
|
1354 |
+
function em_event_output_placeholder($result,$event,$placeholder,$target='html'){
|
1355 |
+
if( ($placeholder == "#_EXCERPT" || $placeholder == "#_LOCATIONEXCERPT") && $target == 'html' ){
|
1356 |
+
$result = apply_filters('dbem_notes_excerpt', $result);
|
1357 |
+
}elseif( $placeholder == '#_CONTACTEMAIL' && $target == 'html' ){
|
1358 |
+
$result = em_ascii_encode($event->contact->user_email);
|
1359 |
+
}elseif( $placeholder == "#_NOTES" || $placeholder == "#_EXCERPT" || $placeholder == "#_LOCATIONEXCERPT" ){
|
1360 |
+
if($target == 'html'){
|
1361 |
+
$result = apply_filters('dbem_notes', $result);
|
1362 |
+
}elseif($target == 'map'){
|
1363 |
+
$result = apply_filters('dbem_notes_map', $result);
|
1364 |
+
}elseif($target == 'ical'){
|
1365 |
+
$result = apply_filters('dbem_notes_ical', $result);
|
1366 |
+
}else{
|
1367 |
+
$result = apply_filters('dbem_notes_rss', $result);
|
1368 |
+
$result = apply_filters('the_content_rss', $result);
|
1369 |
+
}
|
1370 |
+
}elseif( in_array($placeholder, array("#_NAME",'#_ADDRESS','#_LOCATION','#_TOWN')) ){
|
1371 |
+
if ($target == "html"){
|
1372 |
+
$result = apply_filters('dbem_general', $result);
|
1373 |
+
}elseif ($target == "ical"){
|
1374 |
+
$result = apply_filters('dbem_general_ical', $result);
|
1375 |
+
}else{
|
1376 |
+
$result = apply_filters('dbem_general_rss', $result);
|
1377 |
+
}
|
1378 |
+
}
|
1379 |
+
return $result;
|
1380 |
+
}
|
1381 |
+
add_filter('em_event_output_placeholder','em_event_output_placeholder',1,4);
|
1382 |
?>
|
classes/em-events.php
CHANGED
@@ -1,254 +1,371 @@
|
|
1 |
-
<?php
|
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 |
-
$output =
|
196 |
-
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
'
|
238 |
-
|
239 |
-
if(
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
254 |
?>
|
1 |
+
<?php
|
2 |
+
//TODO EM_Events is currently static, better we make this non-static so we can loop sets of events, and standardize with other objects.
|
3 |
+
/**
|
4 |
+
* Use this class to query and manipulate sets of events. If dealing with more than one event, you probably want to use this class in some way.
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
class EM_Events extends EM_Object implements Iterator {
|
8 |
+
/**
|
9 |
+
* Array of EM_Event objects
|
10 |
+
* @var array EM_Event
|
11 |
+
*/
|
12 |
+
var $events = array();
|
13 |
+
|
14 |
+
function EM_Events( $args = array() ){
|
15 |
+
if( is_array($args) ){
|
16 |
+
if( is_object(current($args)) && get_class(current($args)) == 'EM_Event' ){
|
17 |
+
$this->events = $args;
|
18 |
+
}else{
|
19 |
+
$this->events = EM_Events::get($args);
|
20 |
+
}
|
21 |
+
}else{
|
22 |
+
$this->events = EM_Events::get();
|
23 |
+
}
|
24 |
+
do_action('em_events',$this);
|
25 |
+
}
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Returns an array of EM_Events that match the given specs in the argument, or returns a list of future evetnts in future
|
29 |
+
* (see EM_Events::get_default_search() ) for explanation of possible search array values. You can also supply a numeric array
|
30 |
+
* containing the ids of the events you'd like to obtain
|
31 |
+
*
|
32 |
+
* @param array $args
|
33 |
+
* @return EM_Event array()
|
34 |
+
*/
|
35 |
+
function get( $args = array(), $count=false ) {
|
36 |
+
global $wpdb;
|
37 |
+
$events_table = EM_EVENTS_TABLE;
|
38 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
39 |
+
|
40 |
+
//Quick version, we can accept an array of IDs, which is easy to retrieve
|
41 |
+
if( self::array_is_numeric($args) ){ //Array of numbers, assume they are event IDs to retreive
|
42 |
+
//We can just get all the events here and return them
|
43 |
+
$sql = "
|
44 |
+
SELECT * FROM $events_table
|
45 |
+
LEFT JOIN $locations_table ON {$locations_table}.location_id={$events_table}.location_id
|
46 |
+
WHERE event_id=".implode(" OR event_id=", $args)."
|
47 |
+
";
|
48 |
+
$results = $wpdb->get_results(apply_filters('em_events_get_sql',$sql),ARRAY_A);
|
49 |
+
$events = array();
|
50 |
+
foreach($results as $result){
|
51 |
+
$events[$result['event_id']] = new EM_Event($result);
|
52 |
+
}
|
53 |
+
return $events; //We return all the events matched as an EM_Event array.
|
54 |
+
}
|
55 |
+
|
56 |
+
//We assume it's either an empty array or array of search arguments to merge with defaults
|
57 |
+
$args = self::get_default_search($args);
|
58 |
+
$limit = ( $args['limit'] && is_numeric($args['limit'])) ? "LIMIT {$args['limit']}" : '';
|
59 |
+
$offset = ( $limit != "" && is_numeric($args['offset']) ) ? "OFFSET {$args['offset']}" : '';
|
60 |
+
|
61 |
+
//Get the default conditions
|
62 |
+
$conditions = self::build_sql_conditions($args);
|
63 |
+
//Put it all together
|
64 |
+
$where = ( count($conditions) > 0 ) ? " WHERE " . implode ( " AND ", $conditions ):'';
|
65 |
+
|
66 |
+
//Get ordering instructions
|
67 |
+
$EM_Event = new EM_Event();
|
68 |
+
$accepted_fields = $EM_Event->get_fields(true);
|
69 |
+
$orderby = self::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order'));
|
70 |
+
//Now, build orderby sql
|
71 |
+
$orderby_sql = ( count($orderby) > 0 ) ? 'ORDER BY '. implode(', ', $orderby) : '';
|
72 |
+
|
73 |
+
//Create the SQL statement and execute
|
74 |
+
$selectors = ( $count ) ? 'COUNT(*)':'*';
|
75 |
+
$sql = "
|
76 |
+
SELECT $selectors FROM $events_table
|
77 |
+
LEFT JOIN $locations_table ON {$locations_table}.location_id={$events_table}.location_id
|
78 |
+
$where
|
79 |
+
$orderby_sql
|
80 |
+
$limit $offset
|
81 |
+
";
|
82 |
+
|
83 |
+
//If we're only counting results, return the number of results
|
84 |
+
if( $count ){
|
85 |
+
return apply_filters('em_events_get_count', $wpdb->get_var($sql), $args);
|
86 |
+
}
|
87 |
+
$results = $wpdb->get_results( apply_filters('em_events_get_sql',$sql, $args), ARRAY_A);
|
88 |
+
|
89 |
+
//If we want results directly in an array, why not have a shortcut here?
|
90 |
+
if( $args['array'] == true ){
|
91 |
+
return apply_filters('em_events_get_array',$results, $args);
|
92 |
+
}
|
93 |
+
|
94 |
+
//Make returned results EM_Event objects
|
95 |
+
$results = (is_array($results)) ? $results:array();
|
96 |
+
$events = array();
|
97 |
+
foreach ( $results as $event ){
|
98 |
+
$events[] = new EM_Event($event);
|
99 |
+
}
|
100 |
+
|
101 |
+
return apply_filters('em_events_get', $events, $args);
|
102 |
+
}
|
103 |
+
|
104 |
+
/**
|
105 |
+
* Returns the number of events on a given date
|
106 |
+
* @param $date
|
107 |
+
* @return int
|
108 |
+
*/
|
109 |
+
function count_date($date){
|
110 |
+
global $wpdb;
|
111 |
+
$table_name = EM_EVENTS_TABLE;
|
112 |
+
$sql = "SELECT COUNT(*) FROM $table_name WHERE (event_start_date like '$date') OR (event_start_date <= '$date' AND event_end_date >= '$date');";
|
113 |
+
return apply_filters('em_events_count_date', $wpdb->get_var($sql));
|
114 |
+
}
|
115 |
+
|
116 |
+
function count( $args = array() ){
|
117 |
+
return apply_filters('em_events_count', self::get($args, true), $args);
|
118 |
+
}
|
119 |
+
|
120 |
+
/**
|
121 |
+
* Will delete given an array of event_ids or EM_Event objects
|
122 |
+
* @param unknown_type $id_array
|
123 |
+
*/
|
124 |
+
function delete( $array ){
|
125 |
+
//TODO add better cap checks in bulk actions
|
126 |
+
global $wpdb;
|
127 |
+
//Detect array type and generate SQL for event IDs
|
128 |
+
$event_ids = array();
|
129 |
+
if( @get_class(current($array)) == 'EM_Event' ){
|
130 |
+
foreach($array as $EM_Event){
|
131 |
+
$event_ids[] = $EM_Event->id;
|
132 |
+
}
|
133 |
+
}else{
|
134 |
+
$event_ids = $array;
|
135 |
+
}
|
136 |
+
if(self::array_is_numeric($event_ids)){
|
137 |
+
//First we have to check that they're all deletable by this user.
|
138 |
+
if ( self::can_manage($event_ids) ) {
|
139 |
+
apply_filters('em_events_delete_pre', $event_ids);
|
140 |
+
$condition = "event_id IN (". implode(',',$event_ids).")";
|
141 |
+
//Delete all tickets bookings
|
142 |
+
$result_tickets_bookings = $wpdb->query("DELETE FROM ".EM_TICKETS_BOOKINGS_TABLE." WHERE booking_id IN (SELECT booking_id FROM ". EM_BOOKINGS_TABLE ." WHERE $condition)");
|
143 |
+
//Delete all tickets
|
144 |
+
$result_tickets = $wpdb->query("DELETE FROM ". EM_TICKETS_TABLE ." WHERE $condition;");
|
145 |
+
//Delete all the bookings
|
146 |
+
$result_bookings = $wpdb->query("DELETE FROM ". EM_BOOKINGS_TABLE ." WHERE $condition;");
|
147 |
+
//Now delete the events
|
148 |
+
$result_events = $wpdb->query ( "DELETE FROM ". EM_EVENTS_TABLE ." WHERE $condition;" );
|
149 |
+
//delete category links
|
150 |
+
$result_categories = $wpdb->query('DELETE FROM '.EM_META_TABLE." WHERE meta_key='event-category' AND object_id IN (".implode(',', $event_ids).")");
|
151 |
+
return apply_filters('em_events_delete', true, $event_ids);
|
152 |
+
}else{
|
153 |
+
return apply_filters('em_events_delete', true, $event_ids);
|
154 |
+
}
|
155 |
+
}
|
156 |
+
//TODO add better error feedback on events delete fails
|
157 |
+
return apply_filters('em_events_delete', true, $event_ids);
|
158 |
+
}
|
159 |
+
|
160 |
+
|
161 |
+
/**
|
162 |
+
* Output a set of matched of events. You can pass on an array of EM_Events as well, in this event you can pass args in second param.
|
163 |
+
* Note that you can pass a 'pagination' boolean attribute to enable pagination, default is enabled (true).
|
164 |
+
* @param array $args
|
165 |
+
* @param array $secondary_args
|
166 |
+
* @return string
|
167 |
+
*/
|
168 |
+
function output( $args ){
|
169 |
+
global $EM_Event;
|
170 |
+
$EM_Event_old = $EM_Event; //When looping, we can replace EM_Event global with the current event in the loop
|
171 |
+
//Can be either an array for the get search or an array of EM_Event objects
|
172 |
+
$func_args = func_get_args();
|
173 |
+
if( is_object(current($args)) && get_class((current($args))) == 'EM_Event' ){
|
174 |
+
$func_args = func_get_args();
|
175 |
+
$events = $func_args[0];
|
176 |
+
$args = (!empty($func_args[1]) && is_array($func_args[1])) ? $func_args[1] : array();
|
177 |
+
$args = apply_filters('em_events_output_args', self::get_default_search($args), $events);
|
178 |
+
$limit = ( !empty($args['limit']) && is_numeric($args['limit']) ) ? $args['limit']:false;
|
179 |
+
$offset = ( !empty($args['offset']) && is_numeric($args['offset']) ) ? $args['offset']:0;
|
180 |
+
$page = ( !empty($args['page']) && is_numeric($args['page']) ) ? $args['page']:1;
|
181 |
+
}else{
|
182 |
+
//Firstly, let's check for a limit/offset here, because if there is we need to remove it and manually do this
|
183 |
+
$args = apply_filters('em_events_output_args', self::get_default_search($args) );
|
184 |
+
$limit = ( !empty($args['limit']) && is_numeric($args['limit']) ) ? $args['limit']:false;
|
185 |
+
$offset = ( !empty($args['offset']) && is_numeric($args['offset']) ) ? $args['offset']:0;
|
186 |
+
$page = ( !empty($args['page']) && is_numeric($args['page']) ) ? $args['page']:1;
|
187 |
+
$args['limit'] = false;
|
188 |
+
$args['offset'] = false;
|
189 |
+
$args['page'] = false;
|
190 |
+
$events = self::get( $args );
|
191 |
+
}
|
192 |
+
//What format shall we output this to, or use default
|
193 |
+
$format = ( empty($args['format']) ) ? get_option( 'dbem_event_list_item_format' ) : $args['format'] ;
|
194 |
+
|
195 |
+
$output = "";
|
196 |
+
$events = apply_filters('em_events_output_events', $events);
|
197 |
+
$events_count = count($events);
|
198 |
+
if ( $events_count > 0 ) {
|
199 |
+
$event_count = 0;
|
200 |
+
$events_shown = 0;
|
201 |
+
foreach ( $events as $EM_Event ) {
|
202 |
+
if( ($events_shown < $limit || empty($limit)) && ($event_count >= $offset || $offset === 0) ){
|
203 |
+
$output .= $EM_Event->output($format);
|
204 |
+
$events_shown++;
|
205 |
+
}
|
206 |
+
$event_count++;
|
207 |
+
}
|
208 |
+
//Add headers and footers to output
|
209 |
+
if( $format == get_option ( 'dbem_event_list_item_format' ) ){
|
210 |
+
$format_header = ( get_option( 'dbem_event_list_item_format_header') == '' ) ? '':get_option ( 'dbem_event_list_item_format_header' );
|
211 |
+
$format_footer = ( get_option ( 'dbem_event_list_item_format_footer' ) == '' ) ? '':get_option ( 'dbem_event_list_item_format_footer' );
|
212 |
+
}else{
|
213 |
+
$format_header = ( !empty($args['format_header']) ) ? $args['format_header']:'';
|
214 |
+
$format_footer = ( !empty($args['format_footer']) ) ? $args['format_footer']:'';
|
215 |
+
}
|
216 |
+
$output = $format_header . $output . $format_footer;
|
217 |
+
//Pagination (if needed/requested)
|
218 |
+
if( !empty($args['pagination']) && !empty($limit) && $events_count > $limit ){
|
219 |
+
//Show the pagination links (unless there's less than $limit events)
|
220 |
+
$page_link_template = preg_replace('/(&|\?)page=\d+/i','',$_SERVER['REQUEST_URI']);
|
221 |
+
$page_link_template = em_add_get_params($page_link_template, array('page'=>'%PAGE%'));
|
222 |
+
$output .= apply_filters('em_events_output_pagination', em_paginate( $page_link_template, $events_count, $limit, $page), $page_link_template, $events_count, $limit, $page);
|
223 |
+
}
|
224 |
+
} else {
|
225 |
+
$output = get_option ( 'dbem_no_events_message' );
|
226 |
+
}
|
227 |
+
|
228 |
+
//TODO check if reference is ok when restoring object, due to changes in php5 v 4
|
229 |
+
$EM_Event = $EM_Event_old;
|
230 |
+
$output = apply_filters('em_events_output', $output, $events, $args);
|
231 |
+
return $output;
|
232 |
+
}
|
233 |
+
|
234 |
+
function can_manage($event_ids){
|
235 |
+
global $wpdb;
|
236 |
+
if( current_user_can('edit_others_events') ){
|
237 |
+
return apply_filters('em_events_can_manage', true, $event_ids);
|
238 |
+
}
|
239 |
+
if( EM_Object::array_is_numeric($event_ids) ){
|
240 |
+
$condition = implode(" OR event_id=", $event_ids);
|
241 |
+
//we try to find any of these events that don't belong to this user
|
242 |
+
$results = $wpdb->get_var("SELECT COUNT(*) FROM ". EM_EVENTS_TABLE ." WHERE event_owner != '". get_current_user_id() ."' event_id=$condition;");
|
243 |
+
return apply_filters('em_events_can_manage', ($results == 0), $event_ids);
|
244 |
+
}
|
245 |
+
return apply_filters('em_events_can_manage', false, $event_ids);
|
246 |
+
}
|
247 |
+
|
248 |
+
function get_post_search($args = array()){
|
249 |
+
$accepted_searches = apply_filters('em_accepted_searches', array('scope','search','category','country','state','region','town'), $args);
|
250 |
+
foreach($_REQUEST as $post_key => $post_value){
|
251 |
+
if( in_array($post_key, $accepted_searches) && !empty($post_value) ){
|
252 |
+
if(is_array($post_value)){
|
253 |
+
$post_value = implode(',',$post_value);
|
254 |
+
}
|
255 |
+
if($post_value != ',' ){
|
256 |
+
$args[$post_key] = $post_value;
|
257 |
+
}
|
258 |
+
}
|
259 |
+
}
|
260 |
+
return apply_filters('em_events_get_post_search', $args);
|
261 |
+
}
|
262 |
+
|
263 |
+
/* Overrides EM_Object method to apply a filter to result
|
264 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_conditions()
|
265 |
+
*/
|
266 |
+
function build_sql_conditions( $args = array() ){
|
267 |
+
$conditions = parent::build_sql_conditions($args);
|
268 |
+
if( !empty($args['search']) ){
|
269 |
+
$like_search = array('event_name','event_notes','location_name','location_address','location_town','location_postcode','location_state','location_country');
|
270 |
+
$conditions['search'] = "(".implode(" LIKE '%{$args['search']}%' OR ", $like_search). " LIKE '%{$args['search']}%')";
|
271 |
+
}
|
272 |
+
if( array_key_exists('status',$args) && is_numeric($args['status']) ){
|
273 |
+
$null = ($args['status'] == 0) ? ' OR `event_status` IS NULL':'';
|
274 |
+
$conditions['status'] = "(`event_status`={$args['status']}{$null} )";
|
275 |
+
}
|
276 |
+
if( is_multisite() && array_key_exists('blog',$args) && is_numeric($args['blog']) ){
|
277 |
+
if( is_main_site($args['blog']) ){
|
278 |
+
$conditions['blog'] = "(`blog_id`={$args['blog']} OR blog_id IS NULL)";
|
279 |
+
}else{
|
280 |
+
$conditions['blog'] = "(`blog_id`={$args['blog']})";
|
281 |
+
}
|
282 |
+
}
|
283 |
+
if( $args['bookings'] === 'user' && is_user_logged_in()){
|
284 |
+
//get bookings of user
|
285 |
+
$EM_Person = new EM_Person(get_current_user_id());
|
286 |
+
$booking_ids = $EM_Person->get_bookings(true);
|
287 |
+
if( count($booking_ids) > 0 ){
|
288 |
+
$conditions['bookings'] = "(event_id IN (SELECT event_id FROM ".EM_BOOKINGS_TABLE." WHERE booking_id IN (".implode(',',$booking_ids).")))";
|
289 |
+
}else{
|
290 |
+
$conditions['bookings'] = "(event_id = 0)";
|
291 |
+
}
|
292 |
+
}
|
293 |
+
return apply_filters( 'em_events_build_sql_conditions', $conditions, $args );
|
294 |
+
}
|
295 |
+
|
296 |
+
/* Overrides EM_Object method to apply a filter to result
|
297 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_orderby()
|
298 |
+
*/
|
299 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
300 |
+
return apply_filters( 'em_events_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order')), $args, $accepted_fields, $default_order );
|
301 |
+
}
|
302 |
+
|
303 |
+
/*
|
304 |
+
* Adds custom Events search defaults
|
305 |
+
* @param array $array
|
306 |
+
* @return array
|
307 |
+
* @uses EM_Object#get_default_search()
|
308 |
+
*/
|
309 |
+
function get_default_search( $array = array() ){
|
310 |
+
$defaults = array(
|
311 |
+
'orderby' => get_option('dbem_events_default_orderby'),
|
312 |
+
'order' => get_option('dbem_events_default_order'),
|
313 |
+
'bookings' => false, //if set to true, only events with bookings enabled are returned
|
314 |
+
'status' => 1, //approved events only
|
315 |
+
'format_header' => '', //events can have custom html above the list
|
316 |
+
'format_footer' => '', //events can have custom html below the list
|
317 |
+
'town' => false,
|
318 |
+
'state' => false,
|
319 |
+
'country' => false,
|
320 |
+
'region' => false,
|
321 |
+
'blog' => get_current_blog_id(),
|
322 |
+
);
|
323 |
+
if(is_multisite()){
|
324 |
+
global $bp;
|
325 |
+
//echo "<pre>"; print_r($bp); echo "</pre>";
|
326 |
+
if( !empty($bp->current_component) && $bp->current_component == 'events' && !empty($bp->current_action)){
|
327 |
+
$array['blog'] = false; //This is the buddypress root blog so we also show all event data
|
328 |
+
}elseif( !is_main_site() ){
|
329 |
+
//not the main blog, force single blog search
|
330 |
+
$array['blog'] = get_current_blog_id();
|
331 |
+
}elseif( empty($array['blog']) && get_site_option('dbem_ms_global_events') ) {
|
332 |
+
$array['blog'] = false;
|
333 |
+
}
|
334 |
+
}
|
335 |
+
if( is_admin() ){
|
336 |
+
//figure out default owning permissions
|
337 |
+
$defaults['owner'] = !current_user_can('edit_others_events') ? get_current_user_id() : false;
|
338 |
+
if( !array_key_exists('status', $array) && current_user_can('edit_others_events') ){
|
339 |
+
$defaults['status'] = false; //by default, admins see pending and live events
|
340 |
+
}
|
341 |
+
}
|
342 |
+
return apply_filters('em_events_get_default_search', parent::get_default_search($defaults,$array), $array, $defaults);
|
343 |
+
}
|
344 |
+
|
345 |
+
//TODO Implement object and interators for handling groups of events.
|
346 |
+
public function rewind(){
|
347 |
+
reset($this->events);
|
348 |
+
}
|
349 |
+
|
350 |
+
public function current(){
|
351 |
+
$var = current($this->events);
|
352 |
+
return $var;
|
353 |
+
}
|
354 |
+
|
355 |
+
public function key(){
|
356 |
+
$var = key($this->events);
|
357 |
+
return $var;
|
358 |
+
}
|
359 |
+
|
360 |
+
public function next(){
|
361 |
+
$var = next($this->events);
|
362 |
+
return $var;
|
363 |
+
}
|
364 |
+
|
365 |
+
public function valid(){
|
366 |
+
$key = key($this->events);
|
367 |
+
$var = ($key !== NULL && $key !== FALSE);
|
368 |
+
return $var;
|
369 |
+
}
|
370 |
+
}
|
371 |
?>
|
classes/em-location.php
CHANGED
@@ -1,307 +1,391 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Object that holds location info and related functions
|
4 |
-
* @author marcus
|
5 |
-
*/
|
6 |
-
class EM_Location extends EM_Object {
|
7 |
-
//DB Fields
|
8 |
-
var $id = '';
|
9 |
-
var $
|
10 |
-
var $
|
11 |
-
var $
|
12 |
-
var $
|
13 |
-
var $
|
14 |
-
var $
|
15 |
-
var $
|
16 |
-
var $
|
17 |
-
|
18 |
-
var $
|
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 |
-
if(
|
54 |
-
$location
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
$
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
|
250 |
-
|
251 |
-
|
252 |
-
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
case '#
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
$
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
case '#
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
case '#
|
280 |
-
$replace = $this->
|
281 |
-
break;
|
282 |
-
case '#
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
$replace = $this->
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
$
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
307 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Object that holds location info and related functions
|
4 |
+
* @author marcus
|
5 |
+
*/
|
6 |
+
class EM_Location extends EM_Object {
|
7 |
+
//DB Fields
|
8 |
+
var $id = '';
|
9 |
+
var $slug = '';
|
10 |
+
var $name = '';
|
11 |
+
var $address = '';
|
12 |
+
var $town = '';
|
13 |
+
var $state = '';
|
14 |
+
var $postcode = '';
|
15 |
+
var $region = '';
|
16 |
+
var $country = '';
|
17 |
+
var $latitude = '';
|
18 |
+
var $longitude = '';
|
19 |
+
var $description = '';
|
20 |
+
var $owner = '';
|
21 |
+
//Other Vars
|
22 |
+
var $fields = array(
|
23 |
+
'location_id' => array('name'=>'id','type'=>'%d'),
|
24 |
+
'location_slug' => array('name'=>'slug','type'=>'%s'),
|
25 |
+
'location_name' => array('name'=>'name','type'=>'%s'),
|
26 |
+
'location_address' => array('name'=>'address','type'=>'%s'),
|
27 |
+
'location_town' => array('name'=>'town','type'=>'%s'),
|
28 |
+
'location_state' => array('name'=>'state','type'=>'%s'),
|
29 |
+
'location_postcode' => array('name'=>'postcode','type'=>'%s'),
|
30 |
+
'location_region' => array('name'=>'region','type'=>'%s'),
|
31 |
+
'location_country' => array('name'=>'country','type'=>'%s'),
|
32 |
+
'location_latitude' => array('name'=>'latitude','type'=>'%f'),
|
33 |
+
'location_longitude' => array('name'=>'longitude','type'=>'%f'),
|
34 |
+
'location_description' => array('name'=>'description','type'=>'%s'),
|
35 |
+
'location_owner' => array('name'=>'owner','type'=>'%d')
|
36 |
+
);
|
37 |
+
var $image_url = '';
|
38 |
+
var $required_fields = array();
|
39 |
+
var $feedback_message = "";
|
40 |
+
var $mime_types = array(1 => 'gif', 2 => 'jpg', 3 => 'png');
|
41 |
+
var $errors = array();
|
42 |
+
|
43 |
+
/**
|
44 |
+
* Gets data from POST (default), supplied array, or from the database if an ID is supplied
|
45 |
+
* @param $location_data
|
46 |
+
* @return null
|
47 |
+
*/
|
48 |
+
function EM_Location( $location_data = 0 ) {
|
49 |
+
//Initialize
|
50 |
+
$this->required_fields = array("name" => __('The location name', 'dbem'), "address" => __('The location address', 'dbem'), "town" => __('The location town', 'dbem'), "country" => __('The country', 'dbem'),);
|
51 |
+
if( !empty($location_data) ){
|
52 |
+
//Load location data
|
53 |
+
if( is_array($location_data) && isset($location_data['location_name']) ){
|
54 |
+
$location = $location_data;
|
55 |
+
}elseif( !empty($location_data) ){
|
56 |
+
//Retreiving from the database
|
57 |
+
global $wpdb;
|
58 |
+
if( is_numeric($location_data) ){
|
59 |
+
$sql = "SELECT * FROM ". EM_LOCATIONS_TABLE ." WHERE location_id ='{$location_data}'";
|
60 |
+
$location = $wpdb->get_row($sql, ARRAY_A);
|
61 |
+
}else{
|
62 |
+
$sql = "SELECT * FROM ". EM_LOCATIONS_TABLE ." WHERE location_slug ='{$location_data}'";
|
63 |
+
$location = $wpdb->get_row($sql, ARRAY_A);
|
64 |
+
}
|
65 |
+
}
|
66 |
+
//If gmap is turned off, values may not be returned and set, so we set it here
|
67 |
+
if(empty($location['location_latitude'])) {
|
68 |
+
$location['location_latitude'] = 0;
|
69 |
+
$location['location_longitude'] = 0;
|
70 |
+
}
|
71 |
+
//Save into the object
|
72 |
+
$this->to_object($location, true);
|
73 |
+
$this->get_image_url();
|
74 |
+
add_filter('em_location_save',array(&$this,'image_upload'),1,2);
|
75 |
+
}
|
76 |
+
do_action('em_location', $this, $location_data);
|
77 |
+
}
|
78 |
+
|
79 |
+
function get_post(){
|
80 |
+
//We are getting the values via POST or GET
|
81 |
+
do_action('em_location_get_post_pre', $this);
|
82 |
+
$location = array();
|
83 |
+
$location['location_id'] = ( !empty($_POST['location_id']) ) ? $_POST['location_id']:'';
|
84 |
+
$location['location_name'] = ( !empty($_POST['location_name']) ) ? stripslashes($_POST['location_name']):'';
|
85 |
+
$location['location_slug'] = ( !empty($_POST['location_slug']) ) ? sanitize_title($_POST['location_slug']) : '' ;
|
86 |
+
if( current_user_can('edit_others_events') ){
|
87 |
+
$location['location_owner'] = ( !empty($_POST['location_owner']) && is_numeric($_POST['location_owner']) ) ? $_POST['location_owner']:'';
|
88 |
+
}
|
89 |
+
$location['location_address'] = ( !empty($_POST['location_address']) ) ? stripslashes($_POST['location_address']):'';
|
90 |
+
$location['location_town'] = ( !empty($_POST['location_town']) ) ? stripslashes($_POST['location_town']):'';
|
91 |
+
$location['location_state'] = ( !empty($_POST['location_state']) ) ? stripslashes($_POST['location_state']):'';
|
92 |
+
$location['location_postcode'] = ( !empty($_POST['location_postcode']) ) ? stripslashes($_POST['location_postcode']):'';
|
93 |
+
$location['location_region'] = ( !empty($_POST['location_region']) ) ? stripslashes($_POST['location_region']):'';
|
94 |
+
$location['location_country'] = ( !empty($_POST['location_country']) ) ? stripslashes($_POST['location_country']):'';
|
95 |
+
$location['location_latitude'] = ( !empty($_POST['location_latitude']) ) ? $_POST['location_latitude']:'';
|
96 |
+
$location['location_longitude'] = ( !empty($_POST['location_longitude']) ) ? $_POST['location_longitude']:'';
|
97 |
+
$location['location_description'] = ( !empty($_POST['content']) ) ? stripslashes($_POST['content']):'';
|
98 |
+
$this->to_object( apply_filters('em_location_get_post', $location, $this) );
|
99 |
+
return apply_filters('em_location_get_post',$this->validate(),$this);
|
100 |
+
}
|
101 |
+
|
102 |
+
/**
|
103 |
+
* Validates the location. Should be run during any form submission or saving operation.
|
104 |
+
* @return boolean
|
105 |
+
*/
|
106 |
+
function validate(){
|
107 |
+
//check required fields
|
108 |
+
foreach ( $this->required_fields as $field => $description) {
|
109 |
+
if( $field == 'country' && !array_key_exists($this->country, em_get_countries()) ){
|
110 |
+
//country specific checking
|
111 |
+
$this->add_error( $this->required_fields['country'].__(" is required.", "dbem") );
|
112 |
+
}elseif ( $this->$field == "" ) {
|
113 |
+
$this->add_error( $description.__(" is required.", "dbem") );
|
114 |
+
}
|
115 |
+
}
|
116 |
+
$this->image_validate();
|
117 |
+
return apply_filters('em_location_validate', ( count($this->errors) == 0 ), $this);
|
118 |
+
}
|
119 |
+
|
120 |
+
function save(){
|
121 |
+
global $wpdb, $current_user;
|
122 |
+
$table = EM_LOCATIONS_TABLE;
|
123 |
+
if( $this->validate() ){
|
124 |
+
if( $this->can_manage('edit_locations','edit_others_locations') ){
|
125 |
+
//owner person can be anyone the admin wants, but the creator if not.
|
126 |
+
if( current_user_can('edit_others_events') ){
|
127 |
+
$this->owner = ( $this->owner > 0 ) ? $this->owner:get_current_user_id();
|
128 |
+
}else{
|
129 |
+
//force user id - user is either editing a location or making a new one, as can_manage checks ownership too.
|
130 |
+
$this->owner = get_current_user_id();
|
131 |
+
}
|
132 |
+
get_currentuserinfo();
|
133 |
+
do_action('em_location_save_pre', $this);
|
134 |
+
$this->slug = $this->sanitize_title();
|
135 |
+
$data = $this->to_array();
|
136 |
+
unset($data['location_id']);
|
137 |
+
unset($data['location_image_url']);
|
138 |
+
if($this->id != ''){
|
139 |
+
$where = array( 'location_id' => $this->id );
|
140 |
+
$result = $wpdb->update($table, $data, $where, $this->get_types($data));
|
141 |
+
if( $result !== false ){
|
142 |
+
$this->feedback_message = sprintf(__('%s successfully updated.', 'dbem'), __('Location','dbem'));
|
143 |
+
}else{
|
144 |
+
$this->add_error( sprintf(__('Could not save the %s details due to a database error.', 'dbem'),__('location','dbem') ));
|
145 |
+
}
|
146 |
+
}else{
|
147 |
+
$result = $wpdb->insert($table, $data, $this->get_types($data));
|
148 |
+
$this->id = $wpdb->insert_id;
|
149 |
+
if( $result !== false ){
|
150 |
+
$this->feedback_message = sprintf(__('%s successfully added.', 'dbem'), __('Location','dbem'));
|
151 |
+
}else{
|
152 |
+
$this->add_error( sprintf(__('Could not save the %s details due to a database error.', 'dbem'),__('location','dbem') ));
|
153 |
+
}
|
154 |
+
}
|
155 |
+
return apply_filters('em_location_save', ( $this->id > 0 && count($this->errors) == 0 ), $this);
|
156 |
+
}else{
|
157 |
+
$this->add_error( sprintf(__('You do not have permission to create/edit %s.','dbem'), __('locations','dbem')) );
|
158 |
+
}
|
159 |
+
}
|
160 |
+
return apply_filters('em_location_save', false, $this, false);
|
161 |
+
}
|
162 |
+
|
163 |
+
/**
|
164 |
+
* Takes the title and gives either a unique slug or returns the currently used slug if this record already has it.
|
165 |
+
* @param unknown_type $title
|
166 |
+
*/
|
167 |
+
function sanitize_title($iteration = 1){
|
168 |
+
global $wpdb;
|
169 |
+
//Generate the slug. If this is a new event, create the slug automatically, if not, verify it is still unique and if not rewrite
|
170 |
+
if( empty($this->slug) ){
|
171 |
+
$this->slug = sanitize_title($this->name);
|
172 |
+
}
|
173 |
+
$slug = $this->slug;
|
174 |
+
$slug_matches = $wpdb->get_results('SELECT location_id FROM '.EM_LOCATIONS_TABLE." WHERE location_slug='{$slug}'", ARRAY_A);
|
175 |
+
if( count($slug_matches) > 0 ){ //we will check that the slug is unique
|
176 |
+
if( $slug_matches[0]['location_id'] != $this->id || count($slug_matches) > 1 ){
|
177 |
+
//we have a conflict, so try another alternative
|
178 |
+
$this->slug = preg_replace('/\-[0-9]+$/', '', $slug).'-'.($iteration+1);
|
179 |
+
$this->sanitize_title($iteration+1);
|
180 |
+
}
|
181 |
+
}
|
182 |
+
return apply_filters('em_location_sanitize_title', $this->slug, $this);
|
183 |
+
}
|
184 |
+
|
185 |
+
function delete(){
|
186 |
+
global $wpdb;
|
187 |
+
if( current_user_can('delete_locations') ){
|
188 |
+
do_action('em_location_delete_pre', $this);
|
189 |
+
$table_name = EM_LOCATIONS_TABLE;
|
190 |
+
$sql = "DELETE FROM $table_name WHERE location_id = '{$this->id}';";
|
191 |
+
$result = $wpdb->query($sql);
|
192 |
+
$result = $this->image_delete() && $result;
|
193 |
+
if( $result ){
|
194 |
+
$this->feedback_message = sprintf(__('%s successfully deleted.', 'dbem'), __('Location','dbem')) ;
|
195 |
+
}else{
|
196 |
+
$this->add_error( sprintf(__('%s could not be deleted.', 'dbem'), __('Location','dbem')) );
|
197 |
+
}
|
198 |
+
}else{
|
199 |
+
$this->add_error( sprintf(__('You do not have permission to delete %s.','dbem'), __('locations','dbem')) );
|
200 |
+
$result = false;
|
201 |
+
}
|
202 |
+
return apply_filters('em_location_delete', $result, $this);
|
203 |
+
}
|
204 |
+
|
205 |
+
function load_similar($criteria){
|
206 |
+
global $wpdb;
|
207 |
+
if( !empty($criteria['location_name']) && !empty($criteria['location_name']) && !empty($criteria['location_name']) ){
|
208 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
209 |
+
$prepared_sql = $wpdb->prepare("SELECT * FROM $locations_table WHERE location_name = %s AND location_address = %s AND location_town = %s AND location_state = %s AND location_postcode = %s AND location_country = %s", stripcslashes($criteria['location_name']), stripcslashes($criteria['location_address']), stripcslashes($criteria['location_town']), stripcslashes($criteria['location_state']), stripcslashes($criteria['location_postcode']), stripcslashes($criteria['location_country']) );
|
210 |
+
//$wpdb->show_errors(true);
|
211 |
+
$location = $wpdb->get_row($prepared_sql, ARRAY_A);
|
212 |
+
if( is_array($location) ){
|
213 |
+
$this->to_object($location);
|
214 |
+
}
|
215 |
+
return apply_filters('em_location_load_similar', $location, $this);
|
216 |
+
}
|
217 |
+
return apply_filters('em_location_load_similar', false, $this);
|
218 |
+
}
|
219 |
+
|
220 |
+
function has_events(){
|
221 |
+
global $wpdb;
|
222 |
+
$events_table = EM_EVENTS_TABLE;
|
223 |
+
$sql = "SELECT count(event_id) as events_no FROM $events_table WHERE location_id = {$this->id}";
|
224 |
+
$affected_events = $wpdb->get_row($sql);
|
225 |
+
return apply_filters('em_location_has_events', (count($affected_events) > 0), $this);
|
226 |
+
}
|
227 |
+
|
228 |
+
/**
|
229 |
+
* Can the user manage this location?
|
230 |
+
*/
|
231 |
+
function can_manage( $owner_capability = false, $admin_capability = false ){
|
232 |
+
if( $owner_capability == 'edit_locations' && $this->id == '' && !is_user_logged_in() && get_option('dbem_events_anonymous_submissions') ){
|
233 |
+
return apply_filters('em_event_can_manage',true);
|
234 |
+
}
|
235 |
+
return apply_filters('em_location_can_manage', parent::can_manage($owner_capability, $admin_capability), $this);
|
236 |
+
}
|
237 |
+
|
238 |
+
function output_single($target = 'html'){
|
239 |
+
$format = get_option ( 'dbem_single_location_format' );
|
240 |
+
return apply_filters('em_location_output_single', $this->output($format, $target), $this, $target);
|
241 |
+
}
|
242 |
+
|
243 |
+
function output($format, $target="html") {
|
244 |
+
preg_match_all('/\{([a-zA-Z0-9_]+)\}([^{]+)\{\/[a-zA-Z0-9_]+\}/', $format, $conditionals);
|
245 |
+
if( count($conditionals[0]) > 0 ){
|
246 |
+
//Check if the language we want exists, if not we take the first language there
|
247 |
+
foreach($conditionals[1] as $key => $condition){
|
248 |
+
$format = str_replace($conditionals[0][$key], apply_filters('em_location_output_condition', '', $conditionals[0][$key], $condition, $this), $format);
|
249 |
+
}
|
250 |
+
}
|
251 |
+
$location_string = $format;
|
252 |
+
preg_match_all("/(#@?_?[A-Za-z0-9]+)({([a-zA-Z0-9,]+)})?/", $format, $placeholders);
|
253 |
+
foreach($placeholders[1] as $key => $result) {
|
254 |
+
$match = true;
|
255 |
+
$replace = '';
|
256 |
+
$full_result = $placeholders[0][$key];
|
257 |
+
switch( $result ){
|
258 |
+
case '#_LOCATIONID':
|
259 |
+
$replace = $this->id;
|
260 |
+
break;
|
261 |
+
case '#_NAME': //Depreciated
|
262 |
+
case '#_LOCATIONNAME':
|
263 |
+
$replace = $this->name;
|
264 |
+
break;
|
265 |
+
case '#_ADDRESS': //Depreciated
|
266 |
+
case '#_LOCATIONADDRESS':
|
267 |
+
$replace = $this->address;
|
268 |
+
break;
|
269 |
+
case '#_TOWN': //Depreciated
|
270 |
+
case '#_LOCATIONTOWN':
|
271 |
+
$replace = $this->town;
|
272 |
+
break;
|
273 |
+
case '#_LOCATIONSTATE':
|
274 |
+
$replace = $this->state;
|
275 |
+
break;
|
276 |
+
case '#_LOCATIONPOSTCODE':
|
277 |
+
$replace = $this->postcode;
|
278 |
+
break;
|
279 |
+
case '#_LOCATIONREGION':
|
280 |
+
$replace = $this->region;
|
281 |
+
break;
|
282 |
+
case '#_LOCATIONCOUNTRY':
|
283 |
+
$replace = $this->get_country();
|
284 |
+
break;
|
285 |
+
case '#_LOCATIONFULLLINE':
|
286 |
+
$replace = $this->address.', ';
|
287 |
+
$replace = empty($this->town) ? '':', '.$this->town;
|
288 |
+
$replace = empty($this->state) ? '':', '.$this->state;
|
289 |
+
$replace = empty($this->postcode) ? '':', '.$this->postcode;
|
290 |
+
$replace = empty($this->region) ? '':', '.$this->region;
|
291 |
+
break;
|
292 |
+
case '#_LOCATIONFULLBR':
|
293 |
+
$replace = $this->address.'<br /> ';
|
294 |
+
$replace = empty($this->town) ? '':'<br /> '.$this->town;
|
295 |
+
$replace = empty($this->state) ? '':'<br /> '.$this->state;
|
296 |
+
$replace = empty($this->postcode) ? '':'<br /> '.$this->postcode;
|
297 |
+
$replace = empty($this->region) ? '':'<br /> '.$this->region;
|
298 |
+
break;
|
299 |
+
case '#_MAP': //Depreciated
|
300 |
+
case '#_LOCATIONMAP':
|
301 |
+
ob_start();
|
302 |
+
$template = em_locate_template('placeholders/locationmap.php', true, array('EM_Location'=>$this));
|
303 |
+
$replace = ob_get_clean();
|
304 |
+
break;
|
305 |
+
case '#_DESCRIPTION': //Depreciated
|
306 |
+
case '#_EXCERPT': //Depreciated
|
307 |
+
case '#_LOCATIONNOTES':
|
308 |
+
case '#_LOCATIONEXCERPT':
|
309 |
+
$replace = $this->description;
|
310 |
+
if($result == "#_EXCERPT" || $result == "#_LOCATIONEXCERPT"){
|
311 |
+
$matches = explode('<!--more', $this->description);
|
312 |
+
$replace = $matches[0];
|
313 |
+
}
|
314 |
+
break;
|
315 |
+
case '#_LOCATIONIMAGEURL':
|
316 |
+
case '#_LOCATIONIMAGE':
|
317 |
+
if($this->image_url != ''){
|
318 |
+
if($result == '#_LOCATIONIMAGEURL'){
|
319 |
+
$replace = $this->image_url;
|
320 |
+
}else{
|
321 |
+
if( empty($placeholders[3][$key]) ){
|
322 |
+
$replace = "<img src='".esc_url($this->image_url)."' alt='".esc_attr($this->name)."'/>";
|
323 |
+
}else{
|
324 |
+
$image_size = explode(',', $placeholders[3][$key]);
|
325 |
+
if( $this->array_is_numeric($image_size) && count($image_size) > 1 ){
|
326 |
+
$replace = "<img src='".em_get_thumbnail_url($this->image_url, $image_size[0], $image_size[1])."' alt='".esc_attr($this->name)."'/>";
|
327 |
+
}else{
|
328 |
+
$replace = "<img src='".esc_url($this->image_url)."' alt='".esc_attr($this->name)."'/>";
|
329 |
+
}
|
330 |
+
}
|
331 |
+
}
|
332 |
+
}
|
333 |
+
break;
|
334 |
+
case '#_LOCATIONURL':
|
335 |
+
case '#_LOCATIONLINK':
|
336 |
+
case '#_LOCATIONPAGEURL': //Depreciated
|
337 |
+
$joiner = (stristr(EM_URI, "?")) ? "&" : "?";
|
338 |
+
$link = esc_url(EM_URI.$joiner."location_id=".$this->id);
|
339 |
+
$replace = ($result == '#_LOCATIONURL' || $result == '#_LOCATIONPAGEURL') ? $link : '<a href="'.$link.'" title="'.esc_attr($this->name).'">'.esc_html($this->name).'</a>';
|
340 |
+
break;
|
341 |
+
case '#_PASTEVENTS': //Depreciated
|
342 |
+
case '#_LOCATIONPASTEVENTS':
|
343 |
+
case '#_NEXTEVENTS': //Depreciated
|
344 |
+
case '#_LOCATIONNEXTEVENTS':
|
345 |
+
case '#_ALLEVENTS': //Depreciated
|
346 |
+
case '#_LOCATIONALLEVENTS':
|
347 |
+
//convert depreciated placeholders for compatability
|
348 |
+
$result = ($result == '#_PASTEVENTS') ? '#_LOCATIONPASTEVENTS':$result;
|
349 |
+
$result = ($result == '#_NEXTEVENTS') ? '#_LOCATIONNEXTEVENTS':$result;
|
350 |
+
$result = ($result == '#_ALLEVENTS') ? '#_LOCATIONALLEVENTS':$result;
|
351 |
+
//forget it ever happened? :/
|
352 |
+
if ( $result == '#_LOCATIONPASTEVENTS'){ $scope = 'past'; }
|
353 |
+
elseif ( $result == '#_LOCATIONNEXTEVENTS' ){ $scope = 'future'; }
|
354 |
+
else{ $scope = 'all'; }
|
355 |
+
$events = EM_Events::get( array('location'=>$this->id, 'scope'=>$scope) );
|
356 |
+
if ( count($events) > 0 ){
|
357 |
+
foreach($events as $event){
|
358 |
+
$replace .= $event->output(get_option('dbem_location_event_list_item_format'));
|
359 |
+
}
|
360 |
+
} else {
|
361 |
+
$replace = get_option('dbem_location_no_events_message');
|
362 |
+
}
|
363 |
+
break;
|
364 |
+
default:
|
365 |
+
$match = false;
|
366 |
+
break;
|
367 |
+
}
|
368 |
+
if($match){ //if true, we've got a placeholder that needs replacing
|
369 |
+
$replace = apply_filters('em_location_output_placeholder', $replace, $this, $full_result, $target); //USE WITH CAUTION! THIS MIGHT GET RENAMED
|
370 |
+
$location_string = str_replace($full_result, $replace , $location_string );
|
371 |
+
}else{
|
372 |
+
$custom_replace = apply_filters('em_location_output_placeholder', $replace, $this, $full_result, $target); //USE WITH CAUTION! THIS MIGHT GET RENAMED
|
373 |
+
if($custom_replace != $replace){
|
374 |
+
$location_string = str_replace($full_result, $custom_replace , $location_string );
|
375 |
+
}
|
376 |
+
}
|
377 |
+
}
|
378 |
+
$name_filter = ($target == "html") ? 'dbem_general':'dbem_general_rss'; //TODO remove dbem_ filters
|
379 |
+
$location_string = str_replace('#_LOCATION', apply_filters($name_filter, $this->name) , $location_string ); //Depreciated
|
380 |
+
return apply_filters('em_location_output', $location_string, $this, $format, $target);
|
381 |
+
}
|
382 |
+
|
383 |
+
function get_country(){
|
384 |
+
$countries = em_get_countries();
|
385 |
+
if( !empty($countries[$this->country]) ){
|
386 |
+
return apply_filters('em_location_get_country', $countries[$this->country], $this);
|
387 |
+
}
|
388 |
+
return apply_filters('em_location_get_country', false, $this);
|
389 |
+
|
390 |
+
}
|
391 |
}
|
classes/em-locations.php
CHANGED
@@ -1,213 +1,291 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Static class which will help bulk add/edit/retrieve/manipulate arrays of EM_Location objects.
|
4 |
-
* Optimized for specifically retreiving locations (whether eventful or not). If you want event data AND location information for each event, use EM_Events
|
5 |
-
*
|
6 |
-
*/
|
7 |
-
class EM_Locations extends EM_Object {
|
8 |
-
/**
|
9 |
-
*
|
10 |
-
* @
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
function
|
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 |
-
$locations =
|
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 |
-
if
|
164 |
-
|
165 |
-
|
166 |
-
|
167 |
-
|
168 |
-
|
169 |
-
|
170 |
-
|
171 |
-
|
172 |
-
|
173 |
-
|
174 |
-
return apply_filters(
|
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 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
213 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Static class which will help bulk add/edit/retrieve/manipulate arrays of EM_Location objects.
|
4 |
+
* Optimized for specifically retreiving locations (whether eventful or not). If you want event data AND location information for each event, use EM_Events
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
class EM_Locations extends EM_Object implements Iterator {
|
8 |
+
/**
|
9 |
+
* Array of EM_Location objects
|
10 |
+
* @var array EM_Location
|
11 |
+
*/
|
12 |
+
var $locations = array();
|
13 |
+
|
14 |
+
function EM_Events( $args = array() ){
|
15 |
+
if( is_array($args) ){
|
16 |
+
if( is_object(current($args)) && get_class(current($args)) == 'EM_Event' ){
|
17 |
+
$this->locations = $args;
|
18 |
+
}else{
|
19 |
+
$this->locations = EM_Events::get($args);
|
20 |
+
}
|
21 |
+
}else{
|
22 |
+
$this->locations = EM_Events::get();
|
23 |
+
}
|
24 |
+
do_action('em_events',$this);
|
25 |
+
}
|
26 |
+
/**
|
27 |
+
* Returns an array of EM_Location objects
|
28 |
+
* @param boolean $eventful
|
29 |
+
* @param boolean $return_objects
|
30 |
+
* @return array
|
31 |
+
*/
|
32 |
+
function get( $args = array(), $count=false ){
|
33 |
+
global $wpdb;
|
34 |
+
$events_table = EM_EVENTS_TABLE;
|
35 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
36 |
+
|
37 |
+
//Quick version, we can accept an array of IDs, which is easy to retrieve
|
38 |
+
if( self::array_is_numeric($args) ){ //Array of numbers, assume they are event IDs to retreive
|
39 |
+
//We can just get all the events here and return them
|
40 |
+
$sql = "SELECT * FROM $locations_table WHERE location_id=".implode(" OR location_id=", $args);
|
41 |
+
$results = $wpdb->get_results($sql,ARRAY_A);
|
42 |
+
$events = array();
|
43 |
+
foreach($results as $result){
|
44 |
+
$locations[$result['location_id']] = new EM_Location($result);
|
45 |
+
}
|
46 |
+
return apply_filters('em_locations_get', $locations, $args); //We return all the events matched as an EM_Event array.
|
47 |
+
}elseif( is_numeric($args) ){
|
48 |
+
//return an event in the usual array format
|
49 |
+
return apply_filters('em_locations_get', array(new EM_Location($args)), $args);
|
50 |
+
}elseif( is_array($args) && is_object(current($args)) && get_class((current($args))) == 'EM_Location' ){
|
51 |
+
return apply_filters('em_locations_get', $args, $args);
|
52 |
+
}
|
53 |
+
|
54 |
+
//We assume it's either an empty array or array of search arguments to merge with defaults
|
55 |
+
$args = self::get_default_search($args);
|
56 |
+
$limit = ( $args['limit'] && is_numeric($args['limit'])) ? "LIMIT {$args['limit']}" : '';
|
57 |
+
$offset = ( $limit != "" && is_numeric($args['offset']) ) ? "OFFSET {$args['offset']}" : '';
|
58 |
+
|
59 |
+
//Get the default conditions
|
60 |
+
$conditions = self::build_sql_conditions($args);
|
61 |
+
|
62 |
+
//Put it all together
|
63 |
+
$EM_Location = new EM_Location(0); //Empty class for strict message avoidance
|
64 |
+
$fields = $locations_table .".". implode(", {$locations_table}.", array_keys($EM_Location->fields));
|
65 |
+
$where = ( count($conditions) > 0 ) ? " WHERE " . implode ( " AND ", $conditions ):'';
|
66 |
+
|
67 |
+
//Get ordering instructions
|
68 |
+
$EM_Event = new EM_Event(); //blank event for below
|
69 |
+
$accepted_fields = $EM_Location->get_fields(true);
|
70 |
+
$accepted_fields = array_merge($EM_Event->get_fields(true),$accepted_fields);
|
71 |
+
$orderby = self::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order'));
|
72 |
+
//Now, build orderby sql
|
73 |
+
$orderby_sql = ( count($orderby) > 0 ) ? 'ORDER BY '. implode(', ', $orderby) : '';
|
74 |
+
|
75 |
+
if( $count ){
|
76 |
+
$fields = $locations_table.'.location_id';
|
77 |
+
}
|
78 |
+
//Create the SQL statement and execute
|
79 |
+
$sql = "
|
80 |
+
SELECT $fields FROM $locations_table
|
81 |
+
LEFT JOIN $events_table ON {$locations_table}.location_id={$events_table}.location_id
|
82 |
+
$where
|
83 |
+
GROUP BY {$locations_table}.location_id
|
84 |
+
$orderby_sql
|
85 |
+
$limit $offset
|
86 |
+
";
|
87 |
+
|
88 |
+
//If we're only counting results, return the number of results
|
89 |
+
if( $count ){
|
90 |
+
$results = $wpdb->get_results($sql);
|
91 |
+
return apply_filters('em_locations_get_array', count($results),$results, $args);
|
92 |
+
}
|
93 |
+
$results = $wpdb->get_results($sql, ARRAY_A);
|
94 |
+
|
95 |
+
//If we want results directly in an array, why not have a shortcut here?
|
96 |
+
if( $args['array'] == true ){
|
97 |
+
return apply_filters('em_locations_get_array', $results, $args);
|
98 |
+
}
|
99 |
+
|
100 |
+
$locations = array();
|
101 |
+
foreach ($results as $location){
|
102 |
+
$locations[] = new EM_Location($location);
|
103 |
+
}
|
104 |
+
return apply_filters('em_locations_get', $locations, $args);
|
105 |
+
}
|
106 |
+
|
107 |
+
function count( $args = array() ){
|
108 |
+
return apply_filters('em_locations_count', self::get($args, true), $args);
|
109 |
+
}
|
110 |
+
|
111 |
+
/**
|
112 |
+
* Output a set of matched of events
|
113 |
+
* @param array $args
|
114 |
+
* @return string
|
115 |
+
*/
|
116 |
+
function output( $args ){
|
117 |
+
global $EM_Location;
|
118 |
+
$EM_Location_old = $EM_Location; //When looping, we can replace EM_Location global with the current event in the loop
|
119 |
+
//Can be either an array for the get search or an array of EM_Location objects
|
120 |
+
if( is_object(current($args)) && get_class((current($args))) == 'EM_Location' ){
|
121 |
+
$func_args = func_get_args();
|
122 |
+
$locations = $func_args[0];
|
123 |
+
$args = (!empty($func_args[1])) ? $func_args[1] : array();
|
124 |
+
$args = apply_filters('em_locations_output_args', self::get_default_search($args), $locations);
|
125 |
+
$limit = ( !empty($args['limit']) && is_numeric($args['limit']) ) ? $args['limit']:false;
|
126 |
+
$offset = ( !empty($args['offset']) && is_numeric($args['offset']) ) ? $args['offset']:0;
|
127 |
+
$page = ( !empty($args['page']) && is_numeric($args['page']) ) ? $args['page']:1;
|
128 |
+
}else{
|
129 |
+
$args = apply_filters('em_locations_output_args', self::get_default_search($args) );
|
130 |
+
$limit = ( !empty($args['limit']) && is_numeric($args['limit']) ) ? $args['limit']:false;
|
131 |
+
$offset = ( !empty($args['offset']) && is_numeric($args['offset']) ) ? $args['offset']:0;
|
132 |
+
$page = ( !empty($args['page']) && is_numeric($args['page']) ) ? $args['page']:1;
|
133 |
+
$args['limit'] = false;
|
134 |
+
$args['offset'] = false;
|
135 |
+
$args['page'] = false;
|
136 |
+
$locations = self::get( $args );
|
137 |
+
}
|
138 |
+
//What format shall we output this to, or use default
|
139 |
+
$format = ( $args['format'] == '' ) ? get_option( 'dbem_location_list_item_format' ) : $args['format'] ;
|
140 |
+
|
141 |
+
$output = "";
|
142 |
+
$locations_count = count($locations);
|
143 |
+
$locations = apply_filters('em_locations_output_locations', $locations);
|
144 |
+
if ( count($locations) > 0 ) {
|
145 |
+
$location_count = 0;
|
146 |
+
$locations_shown = 0;
|
147 |
+
foreach ( $locations as $EM_Location ) {
|
148 |
+
if( ($locations_shown < $limit || empty($limit)) && ($location_count >= $offset || $offset === 0) ){
|
149 |
+
$output .= $EM_Location->output($format);
|
150 |
+
$locations_shown++;
|
151 |
+
}
|
152 |
+
$location_count++;
|
153 |
+
}
|
154 |
+
//Add headers and footers to output
|
155 |
+
if( $format == get_option ( 'dbem_location_list_item_format' ) ){
|
156 |
+
$single_event_format_header = get_option ( 'dbem_location_list_item_format_header' );
|
157 |
+
$single_event_format_header = ( $single_event_format_header != '' ) ? $single_event_format_header : "<ul class='em-locations-list'>";
|
158 |
+
$single_event_format_footer = get_option ( 'dbem_location_list_item_format_footer' );
|
159 |
+
$single_event_format_footer = ( $single_event_format_footer != '' ) ? $single_event_format_footer : "</ul>";
|
160 |
+
$output = $single_event_format_header . $output . $single_event_format_footer;
|
161 |
+
}
|
162 |
+
//Pagination (if needed/requested)
|
163 |
+
if( !empty($args['pagination']) && !empty($limit) && $locations_count >= $limit ){
|
164 |
+
//Show the pagination links (unless there's less than 10 events
|
165 |
+
$page_link_template = preg_replace('/(&|\?)page=\d+/i','',$_SERVER['REQUEST_URI']);
|
166 |
+
$page_link_template = em_add_get_params($page_link_template, array('page'=>'%PAGE%'));
|
167 |
+
$output .= apply_filters('em_events_output_pagination', em_paginate( $page_link_template, $locations_count, $limit, $page), $page_link_template, $locations_count, $limit, $page);
|
168 |
+
}
|
169 |
+
} else {
|
170 |
+
$output = get_option ( 'dbem_no_locations_message' );
|
171 |
+
}
|
172 |
+
//FIXME check if reference is ok when restoring object, due to changes in php5 v 4
|
173 |
+
$EM_Location_old= $EM_Location;
|
174 |
+
return apply_filters('em_locations_output', $output, $locations, $args);
|
175 |
+
}
|
176 |
+
|
177 |
+
function delete( $args = array() ){
|
178 |
+
if( !is_object(current($args)) && get_class((current($args))) != 'EM_Location' ){
|
179 |
+
$locations = self::get($args);
|
180 |
+
}else{
|
181 |
+
$locations = $args;
|
182 |
+
}
|
183 |
+
$results = array();
|
184 |
+
foreach ( $locations as $EM_Location ){
|
185 |
+
$results[] = $EM_Location->delete();
|
186 |
+
}
|
187 |
+
return apply_filters('em_locations_delete', in_array(false, $results), $locations);
|
188 |
+
}
|
189 |
+
|
190 |
+
/**
|
191 |
+
* Builds an array of SQL query conditions based on regularly used arguments
|
192 |
+
* @param array $args
|
193 |
+
* @return array
|
194 |
+
*/
|
195 |
+
function build_sql_conditions( $args = array() ){
|
196 |
+
global $wpdb;
|
197 |
+
$events_table = EM_EVENTS_TABLE;
|
198 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
199 |
+
|
200 |
+
$conditions = parent::build_sql_conditions($args);
|
201 |
+
//eventful locations
|
202 |
+
if( true == $args['eventful'] ){
|
203 |
+
$conditions['eventful'] = "{$events_table}.event_id IS NOT NULL";
|
204 |
+
}elseif( true == $args['eventless'] ){
|
205 |
+
$conditions['eventless'] = "{$events_table}.event_id IS NULL";
|
206 |
+
}
|
207 |
+
//owner lookup
|
208 |
+
if( !empty($args['owner']) ){
|
209 |
+
$conditions['owner'] = "location_owner=".$args['owner'];
|
210 |
+
}
|
211 |
+
//blog id in events table
|
212 |
+
if( is_multisite() && array_key_exists('blog',$args) && is_numeric($args['blog']) ){
|
213 |
+
if( is_main_site($args['blog']) ){
|
214 |
+
$conditions['blog'] = "(`blog_id`={$args['blog']} OR blog_id IS NULL)";
|
215 |
+
}else{
|
216 |
+
$conditions['blog'] = "(`blog_id`={$args['blog']})";
|
217 |
+
}
|
218 |
+
}
|
219 |
+
return apply_filters('em_locations_build_sql_conditions', $conditions, $args);
|
220 |
+
}
|
221 |
+
|
222 |
+
/* Overrides EM_Object method to apply a filter to result
|
223 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_orderby()
|
224 |
+
*/
|
225 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
226 |
+
return apply_filters( 'em_locations_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order')), $args, $accepted_fields, $default_order );
|
227 |
+
}
|
228 |
+
|
229 |
+
/*
|
230 |
+
* Generate a search arguments array from defalut and user-defined.
|
231 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object::get_default_search()
|
232 |
+
*/
|
233 |
+
function get_default_search($array = array()){
|
234 |
+
$defaults = array(
|
235 |
+
'eventful' => false, //Locations that have an event (scope will also play a part here
|
236 |
+
'eventless' => false, //Locations WITHOUT events, eventful takes precedence
|
237 |
+
'orderby' => 'name',
|
238 |
+
'town' => false,
|
239 |
+
'state' => false,
|
240 |
+
'country' => false,
|
241 |
+
'region' => false,
|
242 |
+
'scope' => 'all', //we probably want to search all locations by default, not like events
|
243 |
+
'blog' => get_current_blog_id()
|
244 |
+
);
|
245 |
+
if(is_multisite()){
|
246 |
+
global $bp;
|
247 |
+
//echo "<pre>"; print_r($bp); echo "</pre>";
|
248 |
+
if( !empty($bp->current_component) && $bp->current_component == 'events' && !empty($bp->current_action)){
|
249 |
+
$array['blog'] = false; //This is the buddypress root blog so we also show all event data
|
250 |
+
}elseif( !is_main_site() ){
|
251 |
+
//not the main blog, force single blog search
|
252 |
+
$array['blog'] = get_current_blog_id();
|
253 |
+
}elseif( empty($array['blog']) && get_site_option('dbem_ms_global_events') ) {
|
254 |
+
$array['blog'] = false;
|
255 |
+
}
|
256 |
+
}
|
257 |
+
$array['eventful'] = ( !empty($array['eventful']) && $array['eventful'] == true );
|
258 |
+
$array['eventless'] = ( !empty($array['eventless']) && $array['eventless'] == true );
|
259 |
+
if( is_admin() ){
|
260 |
+
$defaults['owner'] = !current_user_can('read_others_locations') ? get_current_user_id():false;
|
261 |
+
}
|
262 |
+
return apply_filters('em_locations_get_default_search', parent::get_default_search($defaults, $array), $array, $defaults);
|
263 |
+
}
|
264 |
+
|
265 |
+
//Iteratior methods
|
266 |
+
public function rewind(){
|
267 |
+
reset($this->locations);
|
268 |
+
}
|
269 |
+
|
270 |
+
public function current(){
|
271 |
+
$var = current($this->locations);
|
272 |
+
return $var;
|
273 |
+
}
|
274 |
+
|
275 |
+
public function key(){
|
276 |
+
$var = key($this->locations);
|
277 |
+
return $var;
|
278 |
+
}
|
279 |
+
|
280 |
+
public function next(){
|
281 |
+
$var = next($this->locations);
|
282 |
+
return $var;
|
283 |
+
}
|
284 |
+
|
285 |
+
public function valid(){
|
286 |
+
$key = key($this->locations);
|
287 |
+
$var = ($key !== NULL && $key !== FALSE);
|
288 |
+
return $var;
|
289 |
+
}
|
290 |
+
}
|
291 |
?>
|
classes/em-mailer.php
CHANGED
@@ -1,80 +1,80 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* phpmailer support
|
4 |
-
*
|
5 |
-
*/
|
6 |
-
class EM_Mailer {
|
7 |
-
|
8 |
-
/**
|
9 |
-
* if any errors crop up, here they are
|
10 |
-
* @var array
|
11 |
-
*/
|
12 |
-
var $errors = array();
|
13 |
-
|
14 |
-
/**
|
15 |
-
* @param $subject
|
16 |
-
* @param $body
|
17 |
-
* @param $receiver
|
18 |
-
*/
|
19 |
-
function send($subject="no title",$body="No message specified", $receiver='') {
|
20 |
-
//TODO add an EM_Error global object, for this sort of error reporting. (@marcus like StatusNotice)
|
21 |
-
global $smtpsettings, $phpmailer, $cformsSettings;
|
22 |
-
|
23 |
-
if( preg_match('/^[_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3}$/i', $receiver) ){
|
24 |
-
$this->load_phpmailer();
|
25 |
-
$mail = new EM_PHPMailer();
|
26 |
-
//$mail->SMTPDebug = true;
|
27 |
-
$mail->ClearAllRecipients();
|
28 |
-
$mail->ClearAddresses();
|
29 |
-
$mail->ClearAttachments();
|
30 |
-
$mail->CharSet = 'utf-8';
|
31 |
-
$mail->SetLanguage('en', dirname(__FILE__).'/');
|
32 |
-
$mail->PluginDir = dirname(__FILE__).'/phpmailer/';
|
33 |
-
$mail->Host = get_option('dbem_smtp_host');
|
34 |
-
$mail->port = get_option('dbem_rsvp_mail_port');
|
35 |
-
$mail->Username = get_option('dbem_smtp_username');
|
36 |
-
$mail->Password = get_option('dbem_smtp_password');
|
37 |
-
$mail->From = get_option('dbem_mail_sender_address');
|
38 |
-
$mail->FromName = get_option('dbem_mail_sender_name'); // This is the from name in the email, you can put anything you like here
|
39 |
-
$mail->Body = $body;
|
40 |
-
$mail->Subject = $subject;
|
41 |
-
$mail->AddAddress($receiver);
|
42 |
-
|
43 |
-
//Protocols
|
44 |
-
if ( get_option('dbem_rsvp_mail_send_method') == 'wp_mail' ){
|
45 |
-
$mail->Mailer = 'wp_mail';
|
46 |
-
$send = wp_mail($receiver, $subject, $body);
|
47 |
-
if(!$send){
|
48 |
-
global $phpmailer;
|
49 |
-
$this->errors[] = $phpmailer->ErrorInfo;
|
50 |
-
}
|
51 |
-
}else{
|
52 |
-
if( get_option('dbem_rsvp_mail_send_method') == 'qmail' ){
|
53 |
-
$mail->IsQmail();
|
54 |
-
}else {
|
55 |
-
$mail->Mailer = get_option('dbem_rsvp_mail_send_method');
|
56 |
-
}
|
57 |
-
if(get_option('dbem_rsvp_mail_SMTPAuth') == '1'){
|
58 |
-
$mail->SMTPAuth = TRUE;
|
59 |
-
}
|
60 |
-
$send = $mail->Send();
|
61 |
-
if(!$send){
|
62 |
-
$this->errors[] = $mail->ErrorInfo;
|
63 |
-
}
|
64 |
-
}
|
65 |
-
return $send;
|
66 |
-
}else{
|
67 |
-
$this->errors = __('Please supply a valid email format.', 'dbem');
|
68 |
-
return false;
|
69 |
-
}
|
70 |
-
}
|
71 |
-
|
72 |
-
/**
|
73 |
-
* load phpmailer classes
|
74 |
-
*/
|
75 |
-
function load_phpmailer(){
|
76 |
-
require_once(dirname(__FILE__) . '/phpmailer/class.phpmailer.php');
|
77 |
-
require_once(dirname(__FILE__) . '/phpmailer/class.smtp.php');
|
78 |
-
}
|
79 |
-
}
|
80 |
?>
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* phpmailer support
|
4 |
+
*
|
5 |
+
*/
|
6 |
+
class EM_Mailer {
|
7 |
+
|
8 |
+
/**
|
9 |
+
* if any errors crop up, here they are
|
10 |
+
* @var array
|
11 |
+
*/
|
12 |
+
var $errors = array();
|
13 |
+
|
14 |
+
/**
|
15 |
+
* @param $subject
|
16 |
+
* @param $body
|
17 |
+
* @param $receiver
|
18 |
+
*/
|
19 |
+
function send($subject="no title",$body="No message specified", $receiver='') {
|
20 |
+
//TODO add an EM_Error global object, for this sort of error reporting. (@marcus like StatusNotice)
|
21 |
+
global $smtpsettings, $phpmailer, $cformsSettings;
|
22 |
+
|
23 |
+
if( preg_match('/^[_.0-9a-z-]+@([0-9a-z][0-9a-z-]+.)+[a-z]{2,3}$/i', $receiver) ){
|
24 |
+
$this->load_phpmailer();
|
25 |
+
$mail = new EM_PHPMailer();
|
26 |
+
//$mail->SMTPDebug = true;
|
27 |
+
$mail->ClearAllRecipients();
|
28 |
+
$mail->ClearAddresses();
|
29 |
+
$mail->ClearAttachments();
|
30 |
+
$mail->CharSet = 'utf-8';
|
31 |
+
$mail->SetLanguage('en', dirname(__FILE__).'/');
|
32 |
+
$mail->PluginDir = dirname(__FILE__).'/phpmailer/';
|
33 |
+
$mail->Host = get_option('dbem_smtp_host');
|
34 |
+
$mail->port = get_option('dbem_rsvp_mail_port');
|
35 |
+
$mail->Username = get_option('dbem_smtp_username');
|
36 |
+
$mail->Password = get_option('dbem_smtp_password');
|
37 |
+
$mail->From = get_option('dbem_mail_sender_address');
|
38 |
+
$mail->FromName = get_option('dbem_mail_sender_name'); // This is the from name in the email, you can put anything you like here
|
39 |
+
$mail->Body = $body;
|
40 |
+
$mail->Subject = $subject;
|
41 |
+
$mail->AddAddress($receiver);
|
42 |
+
|
43 |
+
//Protocols
|
44 |
+
if ( get_option('dbem_rsvp_mail_send_method') == 'wp_mail' ){
|
45 |
+
$mail->Mailer = 'wp_mail';
|
46 |
+
$send = wp_mail($receiver, $subject, $body);
|
47 |
+
if(!$send){
|
48 |
+
global $phpmailer;
|
49 |
+
$this->errors[] = $phpmailer->ErrorInfo;
|
50 |
+
}
|
51 |
+
}else{
|
52 |
+
if( get_option('dbem_rsvp_mail_send_method') == 'qmail' ){
|
53 |
+
$mail->IsQmail();
|
54 |
+
}else {
|
55 |
+
$mail->Mailer = get_option('dbem_rsvp_mail_send_method');
|
56 |
+
}
|
57 |
+
if(get_option('dbem_rsvp_mail_SMTPAuth') == '1'){
|
58 |
+
$mail->SMTPAuth = TRUE;
|
59 |
+
}
|
60 |
+
$send = $mail->Send();
|
61 |
+
if(!$send){
|
62 |
+
$this->errors[] = $mail->ErrorInfo;
|
63 |
+
}
|
64 |
+
}
|
65 |
+
return $send;
|
66 |
+
}else{
|
67 |
+
$this->errors = __('Please supply a valid email format.', 'dbem');
|
68 |
+
return false;
|
69 |
+
}
|
70 |
+
}
|
71 |
+
|
72 |
+
/**
|
73 |
+
* load phpmailer classes
|
74 |
+
*/
|
75 |
+
function load_phpmailer(){
|
76 |
+
require_once(dirname(__FILE__) . '/phpmailer/class.phpmailer.php');
|
77 |
+
require_once(dirname(__FILE__) . '/phpmailer/class.smtp.php');
|
78 |
+
}
|
79 |
+
}
|
80 |
?>
|
classes/em-map.php
DELETED
@@ -1,60 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Obtains the html required to display a google map for given location(s)
|
4 |
-
*
|
5 |
-
*/
|
6 |
-
class EM_Map extends EM_Object {
|
7 |
-
/**
|
8 |
-
* Shortcode for producing a google map with all the locations. Unfinished and undocumented.
|
9 |
-
* @param array $atts
|
10 |
-
* @return string
|
11 |
-
*/
|
12 |
-
function get_global($atts) {
|
13 |
-
//TODO Finish and document this feature, need to add balloons here
|
14 |
-
if (get_option('dbem_gmap_is_active') == '1') {
|
15 |
-
ob_start();
|
16 |
-
$atts['em_ajax'] = true;
|
17 |
-
$atts['query'] = 'GlobalMapData';
|
18 |
-
$rand = substr(md5(rand().rand()),0,5);
|
19 |
-
//build js array of arguments to send to event query
|
20 |
-
?>
|
21 |
-
<div class='em-locations-map' id='em-locations-map-<?php echo $rand; ?>' style='width:<?php echo $atts['width']; ?>px; height:<?php echo $atts['height']; ?>px'><em><?php _e('Loading Map....', 'dbem'); ?></em></div>
|
22 |
-
<div class='em-locations-map-coords' id='em-locations-map-coords-<?php echo $rand; ?>' style="display:none; visibility:hidden;"><?php echo EM_Object::json_encode($atts); ?></div>
|
23 |
-
<?php
|
24 |
-
return apply_filters('em_map_get_global', ob_get_clean());
|
25 |
-
}else{
|
26 |
-
return '';
|
27 |
-
}
|
28 |
-
}
|
29 |
-
|
30 |
-
|
31 |
-
/**
|
32 |
-
* Returns th HTML and JS required to produce a google map in for this location.
|
33 |
-
* @param EM_Location $location
|
34 |
-
* @return string
|
35 |
-
*/
|
36 |
-
function get_single($args) {
|
37 |
-
//TODO do some validation here of defaults
|
38 |
-
//FIXME change baloon to balloon for consistent spelling
|
39 |
-
$location = $args['location'];
|
40 |
-
if ( get_option('dbem_gmap_is_active') && ( is_object($location) && $location->latitude != 0 && $location->longitude != 0 ) ) {
|
41 |
-
$width = (isset($args['width'])) ? $args['width']:'400';
|
42 |
-
$height = (isset($args['height'])) ? $args['height']:'300';
|
43 |
-
ob_start();
|
44 |
-
$rand = substr(md5(rand().rand()),0,5);
|
45 |
-
?>
|
46 |
-
<div class='em-location-map' id='em-location-map-<?php echo $rand ?>' style='background: #CDCDCD; width: <?php echo $width ?>px; height: <?php echo $height ?>px'><?php _e('Loading Map....', 'dbem'); ?></div>
|
47 |
-
<div class='em-location-map-info' id='em-location-map-info-<?php echo $rand ?>' style="display:none; visibility:hidden;"><div class="em-map-balloon" style="font-size:12px;"><div class="em-map-balloon-content" ><?php echo $location->output(get_option('dbem_location_baloon_format')); ?></div></div></div>
|
48 |
-
<div class='em-location-map-coords' id='em-location-map-coords-<?php echo $rand ?>' style="display:none; visibility:hidden;">
|
49 |
-
<span class="lat"><?php echo $location->latitude; ?></span>
|
50 |
-
<span class="lng"><?php echo $location->longitude; ?></span>
|
51 |
-
</div>
|
52 |
-
<?php
|
53 |
-
return ob_get_clean();
|
54 |
-
}elseif( is_object($location) && $location->latitude == 0 && $location->longitude == 0 ){
|
55 |
-
return '<i>'. __('Map Unavailable', 'dbem') .'</i>';
|
56 |
-
}else{
|
57 |
-
return '';
|
58 |
-
}
|
59 |
-
}
|
60 |
-
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/em-notices.php
ADDED
@@ -0,0 +1,174 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
*
|
4 |
+
* @author marcus
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
class EM_Notices implements Iterator {
|
8 |
+
var $notices = array('errors'=>array(), 'infos'=>array(), 'alerts'=>array(), 'confirms'=>array());
|
9 |
+
|
10 |
+
function __construct(){
|
11 |
+
session_start();
|
12 |
+
//Grab from session
|
13 |
+
if( !empty($_SESSION['events-manager']['notices']) && is_serialized($_SESSION['events-manager']['notices']) ){
|
14 |
+
$this->notices = unserialize($_SESSION['events-manager']['notices']);
|
15 |
+
}
|
16 |
+
//Flush notices that weren't made to stay cross-requests, we can do this if initialized immediately.
|
17 |
+
foreach($this->notices as $notice_type => $notices){
|
18 |
+
foreach ($notices as $key => $notice){
|
19 |
+
if( empty($notice['static']) ){
|
20 |
+
unset($this->notices[$notice_type][$key]);
|
21 |
+
}else{
|
22 |
+
unset($this->notices[$notice_type][$key]['static']); //so it gets removed next request
|
23 |
+
}
|
24 |
+
}
|
25 |
+
}
|
26 |
+
add_action('shutdown', array(&$this,'destruct'));
|
27 |
+
add_filter('wp_redirect', array(&$this,'destruct'), 1,1);
|
28 |
+
}
|
29 |
+
|
30 |
+
function destruct($redirect = false){
|
31 |
+
$_SESSION['events-manager']['notices'] = serialize($this->notices);
|
32 |
+
return $redirect;
|
33 |
+
}
|
34 |
+
|
35 |
+
function __toString(){
|
36 |
+
$string = false;
|
37 |
+
if(count($this->notices['errors']) > 0){
|
38 |
+
$string .= "<div class='em-warning em-warning-errors error'>{$this->get_errors()}</div>";
|
39 |
+
}
|
40 |
+
if(count($this->notices['alerts']) > 0){
|
41 |
+
$string .= "<div class='em-warning em-warning-alerts updated'>{$this->get_alerts()}</div>";
|
42 |
+
}
|
43 |
+
if(count($this->notices['infos']) > 0){
|
44 |
+
$string .= "<div class='em-warning em-warning-infos updated'>{$this->get_infos()}</div>";
|
45 |
+
}
|
46 |
+
if(count($this->notices['confirms']) > 0){
|
47 |
+
$string .= "<div class='em-warning em-warning-confirms updated'>{$this->get_confirms()}</div>";
|
48 |
+
}
|
49 |
+
return ($string !== false) ? "<div class='statusnotice'>".$string."</div>" : '';
|
50 |
+
}
|
51 |
+
|
52 |
+
/* General */
|
53 |
+
function add($string, $type, $static = false){
|
54 |
+
if( is_array($string) ){
|
55 |
+
$result = true;
|
56 |
+
foreach($string as $string_item){
|
57 |
+
if( $this->add($string_item, $type, $static) === false ){ $result = false; }
|
58 |
+
}
|
59 |
+
return $result;
|
60 |
+
}
|
61 |
+
if($string != ''){
|
62 |
+
if( isset($this->notices[$type]) ){
|
63 |
+
$notice_key = 0;
|
64 |
+
foreach( $this->notices[$type] as $notice_key => $notice ){
|
65 |
+
if($string == $notice['string']){
|
66 |
+
return $notice_key;
|
67 |
+
}
|
68 |
+
}
|
69 |
+
$i = $notice_key+1;
|
70 |
+
$this->notices[$type][$i]['string'] = $string;
|
71 |
+
if( $static ){
|
72 |
+
$this->notices[$type][$i]['static'] = true;
|
73 |
+
}
|
74 |
+
return $i;
|
75 |
+
}else{
|
76 |
+
return false;
|
77 |
+
}
|
78 |
+
}else{
|
79 |
+
return false;
|
80 |
+
}
|
81 |
+
}
|
82 |
+
function remove($key, $type){
|
83 |
+
if( isset($this->notices[$type]) ){
|
84 |
+
unset($this->notices[$type][$key]);
|
85 |
+
return true;
|
86 |
+
}else{
|
87 |
+
return false;
|
88 |
+
}
|
89 |
+
}
|
90 |
+
function get($type){
|
91 |
+
if( isset($this->notices[$type]) ){
|
92 |
+
$string = '';
|
93 |
+
foreach ($this->notices[$type] as $key => $error){
|
94 |
+
$class = substr($type, 0, (strlen($type)-1));
|
95 |
+
$string .= "<p>{$error['string']}</p>";
|
96 |
+
if( empty($error['static']) || $error['static'] !== true){
|
97 |
+
$this->remove($key, $type);
|
98 |
+
}
|
99 |
+
}
|
100 |
+
return $string;
|
101 |
+
}
|
102 |
+
return false;
|
103 |
+
}
|
104 |
+
|
105 |
+
/* Errors */
|
106 |
+
function add_error($string, $static=false){
|
107 |
+
return $this->add($string, 'errors', $static);
|
108 |
+
}
|
109 |
+
function remove_error($key){
|
110 |
+
return $this->remove($key, 'errors');
|
111 |
+
}
|
112 |
+
function get_errors(){
|
113 |
+
return $this->get('errors');
|
114 |
+
}
|
115 |
+
|
116 |
+
/* Alerts */
|
117 |
+
function add_alert($string, $static=false){
|
118 |
+
return $this->add($string, 'alerts', $static);
|
119 |
+
}
|
120 |
+
function remove_alert($key){
|
121 |
+
return $this->remove($key, 'alerts');
|
122 |
+
}
|
123 |
+
function get_alerts(){
|
124 |
+
return $this->get('alerts');
|
125 |
+
}
|
126 |
+
|
127 |
+
/* Info */
|
128 |
+
function add_info($string, $static=false){
|
129 |
+
return $this->add($string, 'infos', $static);
|
130 |
+
}
|
131 |
+
function remove_info($key){
|
132 |
+
return $this->remove($key, 'infos');
|
133 |
+
}
|
134 |
+
function get_infos(){
|
135 |
+
return $this->get('infos');
|
136 |
+
}
|
137 |
+
|
138 |
+
/* Confirms */
|
139 |
+
function add_confirm($string, $static=false){
|
140 |
+
return $this->add($string, 'confirms', $static);
|
141 |
+
}
|
142 |
+
function remove_confirm($key){
|
143 |
+
return $this->remove($key, 'confirms');
|
144 |
+
}
|
145 |
+
function get_confirms(){
|
146 |
+
return $this->get('confirms');
|
147 |
+
}
|
148 |
+
|
149 |
+
//Iterator Implementation
|
150 |
+
function rewind(){
|
151 |
+
reset($this->bookings);
|
152 |
+
}
|
153 |
+
function current(){
|
154 |
+
$var = current($this->bookings);
|
155 |
+
return $var;
|
156 |
+
}
|
157 |
+
function key(){
|
158 |
+
$var = key($this->bookings);
|
159 |
+
return $var;
|
160 |
+
}
|
161 |
+
function next(){
|
162 |
+
$var = next($this->bookings);
|
163 |
+
return $var;
|
164 |
+
}
|
165 |
+
function valid(){
|
166 |
+
$key = key($this->bookings);
|
167 |
+
$var = ($key !== NULL && $key !== FALSE);
|
168 |
+
return $var;
|
169 |
+
}
|
170 |
+
|
171 |
+
}
|
172 |
+
global $EM_Notices;
|
173 |
+
$EM_Notices = new EM_Notices();
|
174 |
+
?>
|
classes/em-object.php
CHANGED
@@ -1,486 +1,782 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Base class which others extend on. Contains functions shared across all EM objects.
|
4 |
-
*
|
5 |
-
*/
|
6 |
-
class EM_Object {
|
7 |
-
|
8 |
-
var $
|
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 |
-
if( array_key_exists('
|
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 |
-
$defaults['
|
88 |
-
}
|
89 |
-
|
90 |
-
|
91 |
-
|
92 |
-
}
|
93 |
-
|
94 |
-
|
95 |
-
|
96 |
-
|
97 |
-
|
98 |
-
|
99 |
-
|
100 |
-
|
101 |
-
|
102 |
-
|
103 |
-
|
104 |
-
$defaults['
|
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 |
-
$conditions['
|
196 |
-
}
|
197 |
-
|
198 |
-
|
199 |
-
|
200 |
-
$
|
201 |
-
|
202 |
-
|
203 |
-
|
204 |
-
|
205 |
-
|
206 |
-
|
207 |
-
$
|
208 |
-
|
209 |
-
|
210 |
-
|
211 |
-
|
212 |
-
|
213 |
-
|
214 |
-
|
215 |
-
|
216 |
-
|
217 |
-
|
218 |
-
|
219 |
-
|
220 |
-
|
221 |
-
|
222 |
-
|
223 |
-
|
224 |
-
|
225 |
-
|
226 |
-
|
227 |
-
|
228 |
-
|
229 |
-
|
230 |
-
|
231 |
-
|
232 |
-
|
233 |
-
|
234 |
-
|
235 |
-
|
236 |
-
|
237 |
-
|
238 |
-
|
239 |
-
|
240 |
-
|
241 |
-
|
242 |
-
|
243 |
-
|
244 |
-
|
245 |
-
|
246 |
-
|
247 |
-
|
248 |
-
|
249 |
-
}
|
250 |
-
|
251 |
-
|
252 |
-
//
|
253 |
-
|
254 |
-
|
255 |
-
|
256 |
-
|
257 |
-
|
258 |
-
|
259 |
-
|
260 |
-
|
261 |
-
|
262 |
-
|
263 |
-
|
264 |
-
|
265 |
-
|
266 |
-
|
267 |
-
|
268 |
-
|
269 |
-
|
270 |
-
|
271 |
-
|
272 |
-
|
273 |
-
|
274 |
-
|
275 |
-
|
276 |
-
|
277 |
-
|
278 |
-
|
279 |
-
|
280 |
-
|
281 |
-
|
282 |
-
|
283 |
-
|
284 |
-
|
285 |
-
|
286 |
-
|
287 |
-
|
288 |
-
|
289 |
-
|
290 |
-
|
291 |
-
|
292 |
-
|
293 |
-
|
294 |
-
|
295 |
-
|
296 |
-
|
297 |
-
|
298 |
-
|
299 |
-
|
300 |
-
|
301 |
-
|
302 |
-
|
303 |
-
|
304 |
-
|
305 |
-
|
306 |
-
|
307 |
-
|
308 |
-
|
309 |
-
|
310 |
-
|
311 |
-
|
312 |
-
|
313 |
-
|
314 |
-
|
315 |
-
|
316 |
-
}
|
317 |
-
|
318 |
-
|
319 |
-
|
320 |
-
|
321 |
-
|
322 |
-
|
323 |
-
|
324 |
-
|
325 |
-
|
326 |
-
|
327 |
-
|
328 |
-
|
329 |
-
|
330 |
-
|
331 |
-
|
332 |
-
$
|
333 |
-
}
|
334 |
-
|
335 |
-
|
336 |
-
|
337 |
-
|
338 |
-
|
339 |
-
|
340 |
-
|
341 |
-
|
342 |
-
|
343 |
-
|
344 |
-
|
345 |
-
|
346 |
-
|
347 |
-
|
348 |
-
|
349 |
-
|
350 |
-
|
351 |
-
|
352 |
-
|
353 |
-
|
354 |
-
|
355 |
-
|
356 |
-
|
357 |
-
|
358 |
-
|
359 |
-
|
360 |
-
|
361 |
-
|
362 |
-
|
363 |
-
|
364 |
-
|
365 |
-
|
366 |
-
|
367 |
-
|
368 |
-
|
369 |
-
|
370 |
-
|
371 |
-
|
372 |
-
|
373 |
-
|
374 |
-
|
375 |
-
|
376 |
-
|
377 |
-
|
378 |
-
|
379 |
-
|
380 |
-
|
381 |
-
|
382 |
-
|
383 |
-
|
384 |
-
|
385 |
-
|
386 |
-
|
387 |
-
|
388 |
-
|
389 |
-
|
390 |
-
|
391 |
-
|
392 |
-
|
393 |
-
|
394 |
-
|
395 |
-
|
396 |
-
|
397 |
-
|
398 |
-
|
399 |
-
}
|
400 |
-
return
|
401 |
-
}
|
402 |
-
|
403 |
-
/**
|
404 |
-
*
|
405 |
-
*
|
406 |
-
* @
|
407 |
-
|
408 |
-
|
409 |
-
|
410 |
-
|
411 |
-
|
412 |
-
|
413 |
-
|
414 |
-
|
415 |
-
|
416 |
-
|
417 |
-
|
418 |
-
|
419 |
-
|
420 |
-
|
421 |
-
|
422 |
-
|
423 |
-
|
424 |
-
|
425 |
-
|
426 |
-
|
427 |
-
|
428 |
-
|
429 |
-
|
430 |
-
|
431 |
-
|
432 |
-
|
433 |
-
|
434 |
-
|
435 |
-
|
436 |
-
|
437 |
-
|
438 |
-
|
439 |
-
|
440 |
-
|
441 |
-
|
442 |
-
|
443 |
-
|
444 |
-
|
445 |
-
|
446 |
-
|
447 |
-
|
448 |
-
|
449 |
-
|
450 |
-
|
451 |
-
|
452 |
-
|
453 |
-
|
454 |
-
|
455 |
-
|
456 |
-
|
457 |
-
|
458 |
-
|
459 |
-
|
460 |
-
|
461 |
-
|
462 |
-
|
463 |
-
|
464 |
-
|
465 |
-
|
466 |
-
|
467 |
-
|
468 |
-
|
469 |
-
|
470 |
-
|
471 |
-
|
472 |
-
|
473 |
-
|
474 |
-
|
475 |
-
|
476 |
-
|
477 |
-
|
478 |
-
|
479 |
-
|
480 |
-
|
481 |
-
|
482 |
-
|
483 |
-
|
484 |
-
|
485 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
486 |
}
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Base class which others extend on. Contains functions shared across all EM objects.
|
4 |
+
*
|
5 |
+
*/
|
6 |
+
class EM_Object {
|
7 |
+
var $fields = array();
|
8 |
+
var $required_fields = array();
|
9 |
+
var $feedback_message = "";
|
10 |
+
var $errors = array();
|
11 |
+
var $mime_types = array(1 => 'gif', 2 => 'jpg', 3 => 'png');
|
12 |
+
|
13 |
+
/**
|
14 |
+
* Takes the array and provides a clean array of search parameters, along with details
|
15 |
+
* @param array $defaults
|
16 |
+
* @param array $array
|
17 |
+
* @return array
|
18 |
+
*/
|
19 |
+
function get_default_search($defaults=array(), $array = array()){
|
20 |
+
global $wpdb;
|
21 |
+
//TODO accept all objects as search options as well as ids (e.g. location vs. location_id, person vs. person_id)
|
22 |
+
//Create minimal defaults array, merge it with supplied defaults array
|
23 |
+
$super_defaults = array(
|
24 |
+
'limit' => false,
|
25 |
+
'scope' => 'future',
|
26 |
+
'order' => 'ASC', //hard-coded at end of this function
|
27 |
+
'orderby' => false,
|
28 |
+
'format' => '',
|
29 |
+
'category' => 0,
|
30 |
+
'location' => 0,
|
31 |
+
'event' => 0,
|
32 |
+
'offset'=>0,
|
33 |
+
'page'=>1,//basically, if greater than 0, calculates offset at end
|
34 |
+
'recurrence'=>0,
|
35 |
+
'recurring'=>false,
|
36 |
+
'month'=>'',
|
37 |
+
'year'=>'',
|
38 |
+
'pagination'=>false,
|
39 |
+
'array'=>false,
|
40 |
+
'owner'=>false,
|
41 |
+
'rsvp'=>false, //depreciated for bookings
|
42 |
+
'bookings'=>false,
|
43 |
+
'search'=>false
|
44 |
+
);
|
45 |
+
//Return default if nothing passed
|
46 |
+
if( empty($defaults) && empty($array) ){
|
47 |
+
return $super_defaults;
|
48 |
+
}
|
49 |
+
//TODO decide on search defaults shared across all objects and then validate here
|
50 |
+
$defaults = array_merge($super_defaults, $defaults);
|
51 |
+
|
52 |
+
if(is_array($array)){
|
53 |
+
//We are still dealing with recurrence_id, location_id, category_id in some place, so we do a quick replace here just in case
|
54 |
+
if( array_key_exists('recurrence_id', $array) && !array_key_exists('recurrence', $array) ) { $array['recurrence'] = $array['recurrence_id']; }
|
55 |
+
if( array_key_exists('location_id', $array) && !array_key_exists('location', $array) ) { $array['location'] = $array['location_id']; }
|
56 |
+
if( array_key_exists('category_id', $array) && !array_key_exists('category', $array) ) { $array['category'] = $array['category_id']; }
|
57 |
+
|
58 |
+
//Clean all id lists
|
59 |
+
$array = self::clean_id_atts($array, array('location', 'event', 'category'));
|
60 |
+
|
61 |
+
//OrderBy - can be a comma-seperated array of field names to order by (field names of object, not db)
|
62 |
+
if( array_key_exists('orderby', $array)){
|
63 |
+
if( !is_array($array['orderby']) && preg_match('/,/', $array['orderby']) ) {
|
64 |
+
$array['orderby'] = explode(',', $array['orderby']);
|
65 |
+
}
|
66 |
+
}
|
67 |
+
//TODO validate search query array
|
68 |
+
//Clean the supplied array, so we only have allowed keys
|
69 |
+
foreach( array_keys($array) as $key){
|
70 |
+
if( !array_key_exists($key, $defaults) ) unset($array[$key]);
|
71 |
+
}
|
72 |
+
//return clean array
|
73 |
+
$defaults = array_merge ( $defaults, $array ); //No point using WP's cleaning function, we're doing it already.
|
74 |
+
|
75 |
+
}
|
76 |
+
|
77 |
+
//Do some spring cleaning for known values
|
78 |
+
//Month & Year - may be array or single number
|
79 |
+
$month_regex = '/^[0-9]{1,2}$/';
|
80 |
+
$year_regex = '/^[0-9]{4}$/';
|
81 |
+
if( is_array($defaults['month']) ){
|
82 |
+
$defaults['month'] = ( preg_match($month_regex, $defaults['month'][0]) && preg_match($month_regex, $defaults['month'][1]) ) ? $defaults['month']:'';
|
83 |
+
}else{
|
84 |
+
$defaults['month'] = preg_match($month_regex, $defaults['month']) ? $defaults['month']:'';
|
85 |
+
}
|
86 |
+
if( is_array($defaults['year']) ){
|
87 |
+
$defaults['year'] = ( preg_match($year_regex, $defaults['year'][0]) && preg_match($year_regex, $defaults['year'][1]) ) ? $defaults['year']:'';
|
88 |
+
}else{
|
89 |
+
$defaults['year'] = preg_match($year_regex, $defaults['year']) ? $defaults['year']:'';
|
90 |
+
}
|
91 |
+
//Deal with scope and date searches
|
92 |
+
if ( !is_array($defaults['scope']) && preg_match ( "/^[0-9]{4}-[0-9]{2}-[0-9]{2},[0-9]{4}-[0-9]{2}-[0-9]{2}$/", $defaults['scope'] ) ) {
|
93 |
+
//This is to become an array, so let's split it up
|
94 |
+
$defaults['scope'] = explode(',', $defaults['scope']);
|
95 |
+
}
|
96 |
+
if( is_array($defaults['scope']) ){
|
97 |
+
//looking for a date range here, so we'll verify the dates validate, if not get the default.
|
98 |
+
if ( !preg_match("/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/", $defaults['scope'][0]) || !preg_match("/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/", $defaults['scope'][1]) ) {
|
99 |
+
$defaults['scope'] = $super_defaults['scope'];
|
100 |
+
}
|
101 |
+
}
|
102 |
+
//Order - it's either ASC or DESC, so let's just validate
|
103 |
+
if( !is_array($defaults['order']) && preg_match('/,/', $defaults['order']) ) {
|
104 |
+
$defaults['order'] = explode(',', $defaults['order']);
|
105 |
+
}elseif( !in_array($defaults['order'], array('ASC','DESC')) ){
|
106 |
+
$defaults['order'] = $super_defaults['order'];
|
107 |
+
}
|
108 |
+
//ORDER BY, split if an array
|
109 |
+
if( !is_array($defaults['orderby']) && preg_match('/,/', $defaults['orderby']) ) {
|
110 |
+
$defaults['orderby'] = explode(',', $defaults['orderby']);
|
111 |
+
}
|
112 |
+
//TODO should we clean format of malicious code over here and run everything thorugh this?
|
113 |
+
$defaults['array'] = ($defaults['array'] == true);
|
114 |
+
$defaults['pagination'] = ($defaults['pagination'] == true);
|
115 |
+
$defaults['limit'] = (is_numeric($defaults['limit'])) ? $defaults['limit']:$super_defaults['limit'];
|
116 |
+
$defaults['offset'] = (is_numeric($defaults['offset'])) ? $defaults['offset']:$super_defaults['offset'];
|
117 |
+
$defaults['recurring'] = ($defaults['recurring'] == true);
|
118 |
+
$defaults['owner'] = (is_numeric($defaults['owner'])) ? $defaults['owner']:$super_defaults['owner'];
|
119 |
+
$defaults['search'] = ($defaults['search']) ? trim($wpdb->escape(like_escape($defaults['search']))):false;
|
120 |
+
//Calculate offset if event page is set
|
121 |
+
if($defaults['page'] > 1){
|
122 |
+
$defaults['offset'] = $defaults['limit'] * ($defaults['page']-1);
|
123 |
+
}else{
|
124 |
+
$defaults['page'] = ($defaults['limit'] > 0 ) ? floor($defaults['offset']/$defaults['limit']) + 1 : 1;
|
125 |
+
}
|
126 |
+
return apply_filters('em_object_get_default_search', $defaults, $array, $super_defaults);
|
127 |
+
}
|
128 |
+
|
129 |
+
/**
|
130 |
+
* Builds an array of SQL query conditions based on regularly used arguments
|
131 |
+
* @param array $args
|
132 |
+
* @return array
|
133 |
+
*/
|
134 |
+
function build_sql_conditions( $args = array() ){
|
135 |
+
global $wpdb;
|
136 |
+
$events_table = EM_EVENTS_TABLE;
|
137 |
+
$locations_table = EM_LOCATIONS_TABLE;
|
138 |
+
|
139 |
+
$args = apply_filters('em_object_build_sql_conditions_args',$args);
|
140 |
+
|
141 |
+
//Format the arguments passed on
|
142 |
+
$scope = $args['scope'];//undefined variable warnings in ZDE, could just delete this (but dont pls!)
|
143 |
+
$recurring = $args['recurring'];
|
144 |
+
$recurrence = $args['recurrence'];
|
145 |
+
$category = $args['category'];
|
146 |
+
$location = $args['location'];
|
147 |
+
$bookings = $args['rsvp'];
|
148 |
+
$bookings = !empty($args['bookings']) ? $args['bookings']:$bookings;
|
149 |
+
$owner = $args['owner'];
|
150 |
+
$event = $args['event'];
|
151 |
+
$month = $args['month'];
|
152 |
+
$year = $args['year'];
|
153 |
+
$today = date('Y-m-d', current_time('timestamp'));
|
154 |
+
//Create the WHERE statement
|
155 |
+
|
156 |
+
//Recurrences
|
157 |
+
$conditions = array();
|
158 |
+
if( $recurring ){
|
159 |
+
$conditions['recurring'] = "`recurrence`=1";
|
160 |
+
}elseif( $recurrence > 0 ){
|
161 |
+
$conditions['recurrence'] = "`recurrence_id`=$recurrence";
|
162 |
+
}else{
|
163 |
+
$conditions['recurring'] = "(`recurrence`!=1 OR `recurrence` IS NULL)";
|
164 |
+
}
|
165 |
+
//Dates - first check 'month', and 'year', and adjust scope if needed
|
166 |
+
if( !($month=='' && $year=='') ){
|
167 |
+
//Sort out month range, if supplied an array of array(month,month), it'll check between these two months
|
168 |
+
if( self::array_is_numeric($month) ){
|
169 |
+
$date_month_start = $month[0];
|
170 |
+
$date_month_end = $month[1];
|
171 |
+
}else{
|
172 |
+
if( !empty($month) ){
|
173 |
+
$date_month_start = $date_month_end = $month;
|
174 |
+
}else{
|
175 |
+
$date_month_start = 1;
|
176 |
+
$date_month_end = 12;
|
177 |
+
}
|
178 |
+
}
|
179 |
+
//Sort out year range, if supplied an array of array(year,year), it'll check between these two years
|
180 |
+
if( self::array_is_numeric($year) ){
|
181 |
+
$date_year_start = $year[0];
|
182 |
+
$date_year_end = $year[1];
|
183 |
+
}else{
|
184 |
+
$date_year_start = $date_year_end = $year;
|
185 |
+
}
|
186 |
+
$date_start = $date_year_start."-".$date_month_start."-01";
|
187 |
+
$date_end = date('Y-m-t', mktime(0,0,0,$date_month_end,1,$date_year_end));
|
188 |
+
$scope = array($date_start,$date_end); //just modify the scope here
|
189 |
+
}
|
190 |
+
//No date requested, so let's look at scope
|
191 |
+
if ( is_array($scope) ) {
|
192 |
+
//This is an array, let's split it up
|
193 |
+
$date_start = $scope[0];
|
194 |
+
$date_end = $scope[1];
|
195 |
+
$conditions['scope'] = " ( ( event_start_date <= CAST('$date_end' AS DATE) AND event_end_date >= CAST('$date_start' AS DATE) ) OR (event_start_date BETWEEN CAST('$date_start' AS DATE) AND CAST('$date_end' AS DATE)) OR (event_end_date BETWEEN CAST('$date_start' AS DATE) AND CAST('$date_end' AS DATE)) )";
|
196 |
+
} elseif ( preg_match ( "/^[0-9]{4}-[0-9]{2}-[0-9]{2}$/", $scope ) ) {
|
197 |
+
//Scope can also be a specific date. However, if 'day', 'month', or 'year' are set, that will take precedence
|
198 |
+
$conditions['scope'] = " ( event_start_date = CAST('$scope' AS DATE) OR ( event_start_date <= CAST('$scope' AS DATE) AND event_end_date >= CAST('$scope' AS DATE) ) )";
|
199 |
+
} else {
|
200 |
+
if ($scope == "past"){
|
201 |
+
if( get_option('dbem_events_current_are_past') ){
|
202 |
+
$conditions['scope'] = " event_start_date < '$today'";
|
203 |
+
}else{
|
204 |
+
$conditions['scope'] = " event_end_date < '$today'";
|
205 |
+
}
|
206 |
+
}elseif ($scope == "today"){
|
207 |
+
$conditions['scope'] = " (event_start_date = CAST('$today' AS DATE))";
|
208 |
+
if( !get_option('dbem_events_current_are_past') ){
|
209 |
+
$conditions['scope'] .= " OR (event_start_date <= CAST('$today' AS DATE) AND event_end_date >= CAST('$today' AS DATE))";
|
210 |
+
}
|
211 |
+
}elseif ($scope == "tomorrow"){
|
212 |
+
$tomorrow = date('Y-m-d',current_time('timestamp')+60*60*24);
|
213 |
+
$conditions['scope'] = "(event_start_date = CAST('$tomorrow' AS DATE))";
|
214 |
+
if( !get_option('dbem_events_current_are_past') ){
|
215 |
+
$conditions['scope'] .= " OR (event_start_date <= CAST('$tomorrow' AS DATE) AND event_end_date >= CAST('$tomorrow' AS DATE))";
|
216 |
+
}
|
217 |
+
}elseif ($scope == "month"){
|
218 |
+
$start_month = date('Y-m-d',current_time('timestamp'));
|
219 |
+
$end_month = date('Y-m-t',current_time('timestamp'));
|
220 |
+
$conditions['scope'] = " (event_start_date BETWEEN CAST('$start_month' AS DATE) AND CAST('$end_month' AS DATE))";
|
221 |
+
if( !get_option('dbem_events_current_are_past') ){
|
222 |
+
$conditions['scope'] .= " OR (event_start_date < CAST('$start_month' AS DATE) AND event_end_date >= CAST('$start_month' AS DATE))";
|
223 |
+
}
|
224 |
+
}elseif ($scope == "next-month"){
|
225 |
+
$start_month_timestamp = strtotime('+1 month', current_time('timestamp')); //get the end of this month + 1 day
|
226 |
+
$start_month = date('Y-m-1',$start_month_timestamp);
|
227 |
+
$end_month = date('Y-m-t',$start_month_timestamp);
|
228 |
+
$conditions['scope'] = " (event_start_date BETWEEN CAST('$start_month' AS DATE) AND CAST('$end_month' AS DATE))";
|
229 |
+
if( !get_option('dbem_events_current_are_past') ){
|
230 |
+
$conditions['scope'] .= " OR (event_start_date < CAST('$start_month' AS DATE) AND event_end_date >= CAST('$start_month' AS DATE))";
|
231 |
+
}
|
232 |
+
}elseif( preg_match('/(\d\d?)\-months/',$scope,$matches) ){ // next x months means this month (what's left of it), plus the following x months until the end of that month.
|
233 |
+
$months_to_add = $matches[1];
|
234 |
+
$start_month = date('Y-m-d',current_time('timestamp'));
|
235 |
+
$end_month = date('Y-m-t',strtotime("+$months_to_add month", current_time('timestamp')));
|
236 |
+
$conditions['scope'] = " (event_start_date BETWEEN CAST('$start_month' AS DATE) AND CAST('$end_month' AS DATE))";
|
237 |
+
if( !get_option('dbem_events_current_are_past') ){
|
238 |
+
$conditions['scope'] .= " OR (event_start_date < CAST('$start_month' AS DATE) AND event_end_date >= CAST('$start_month' AS DATE))";
|
239 |
+
}
|
240 |
+
}elseif ($scope == "future"){
|
241 |
+
$conditions['scope'] = " event_start_date >= CAST('$today' AS DATE)";
|
242 |
+
if( !get_option('dbem_events_current_are_past') ){
|
243 |
+
$conditions['scope'] .= " OR (event_end_date >= CAST('$today' AS DATE) AND event_end_date != '0000-00-00' AND event_end_date IS NOT NULL)";
|
244 |
+
}
|
245 |
+
}
|
246 |
+
if( !empty($conditions['scope']) ){
|
247 |
+
$conditions['scope'] = '('.$conditions['scope'].')';
|
248 |
+
}
|
249 |
+
}
|
250 |
+
|
251 |
+
//Filter by Location - can be object, array, or id
|
252 |
+
if ( is_numeric($location) && $location > 0 ) { //Location ID takes precedence
|
253 |
+
$conditions['location'] = " {$locations_table}.location_id = $location";
|
254 |
+
}elseif ( self::array_is_numeric($location) ){
|
255 |
+
$conditions['location'] = "( {$locations_table}.location_id = " . implode(" OR {$locations_table}.location_id = ", $location) .' )';
|
256 |
+
}elseif ( is_object($location) && get_class($location)=='EM_Location' ){ //Now we deal with objects
|
257 |
+
$conditions['location'] = " {$locations_table}.location_id = $location->id";
|
258 |
+
}elseif ( is_array($location) && @get_class(current($location)=='EM_Location') ){ //we can accept array of ids or EM_Location objects
|
259 |
+
foreach($location as $EM_Location){
|
260 |
+
$location_ids[] = $EM_Location->id;
|
261 |
+
}
|
262 |
+
$conditions['location'] = "( {$locations_table}.location_id=". implode(" {$locations_table}.location_id=", $location_ids) ." )";
|
263 |
+
}
|
264 |
+
|
265 |
+
//Filter by Event - can be object, array, or id
|
266 |
+
if ( is_numeric($event) && $event > 0 ) { //event ID takes precedence
|
267 |
+
$conditions['event'] = " {$events_table}.event_id = $event";
|
268 |
+
}elseif ( self::array_is_numeric($event) ){ //array of ids
|
269 |
+
$conditions['event'] = "( {$events_table}.event_id = " . implode(" OR {$events_table}.event_id = ", $event) .' )';
|
270 |
+
}elseif ( is_object($event) && get_class($event)=='EM_Event' ){ //Now we deal with objects
|
271 |
+
$conditions['event'] = " {$events_table}.event_id = $event->id";
|
272 |
+
}elseif ( is_array($event) && @get_class(current($event)=='EM_Event') ){ //we can accept array of ids or EM_event objects
|
273 |
+
foreach($event as $EM_Event){
|
274 |
+
$event_ids[] = $EM_Event->id;
|
275 |
+
}
|
276 |
+
$conditions['event'] = "( {$events_table}.event_id=". implode(" {$events_table}.event_id=", $event_ids) ." )";
|
277 |
+
}
|
278 |
+
//Location specific filters
|
279 |
+
//country lookup
|
280 |
+
if( !empty($args['country']) ){
|
281 |
+
$countries = em_get_countries();
|
282 |
+
//we can accept country codes or names
|
283 |
+
if( in_array($args['country'], $countries) ){
|
284 |
+
//we have a country name,
|
285 |
+
$conditions['country'] = "location_country='".array_search($args['country'])."'";
|
286 |
+
}elseif( array_key_exists($args['country'], $countries) ){
|
287 |
+
//we have a country code
|
288 |
+
$conditions['country'] = "location_country='".$args['country']."'";
|
289 |
+
}
|
290 |
+
}
|
291 |
+
//state lookup
|
292 |
+
if( !empty($args['state']) ){
|
293 |
+
$conditions['state'] = $wpdb->prepare('location_state=%s', $args['state']);
|
294 |
+
}
|
295 |
+
//state lookup
|
296 |
+
if( !empty($args['town']) ){
|
297 |
+
$conditions['town'] = $wpdb->prepare('location_town=%s', $args['town']);
|
298 |
+
}
|
299 |
+
//region lookup
|
300 |
+
if( !empty($args['region']) ){
|
301 |
+
$conditions['region'] = $wpdb->prepare('location_region=%s', $args['region']);
|
302 |
+
}
|
303 |
+
|
304 |
+
//Add conditions for category selection
|
305 |
+
//Filter by category, can be id or comma seperated ids
|
306 |
+
//TODO create an exclude category option
|
307 |
+
if ( is_numeric($category) && $category > 0 ){
|
308 |
+
$conditions['category'] = " event_id IN ( SELECT object_id FROM ".EM_META_TABLE." WHERE meta_key='event-category' AND meta_value='$category' ) ";
|
309 |
+
}elseif( self::array_is_numeric($category) ){
|
310 |
+
$conditions['category'] = " event_id IN ( SELECT object_id FROM ".EM_META_TABLE." WHERE meta_key='event-category' AND meta_value IN (".implode(',',$category).") ) ";
|
311 |
+
}
|
312 |
+
|
313 |
+
//If we want rsvped items, we usually check the event
|
314 |
+
if( $bookings == 1 ){
|
315 |
+
$conditions['bookings'] = 'event_rsvp=1';
|
316 |
+
}
|
317 |
+
//Default ownership belongs to an event, child objects can just overwrite this if needed.
|
318 |
+
if( is_numeric($owner) ){
|
319 |
+
$conditions['owner'] = 'event_owner='.$owner;
|
320 |
+
}
|
321 |
+
return apply_filters('em_object_build_sql_conditions', $conditions);
|
322 |
+
}
|
323 |
+
|
324 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
325 |
+
//First, ORDER BY
|
326 |
+
$args = apply_filters('em_object_build_sql_orderby_args', $args);
|
327 |
+
$orderby = array();
|
328 |
+
if(is_array($args['orderby'])){
|
329 |
+
//Clean orderby array so we only have accepted values
|
330 |
+
foreach( $args['orderby'] as $key => $field ){
|
331 |
+
if( array_key_exists($field, $accepted_fields) ){
|
332 |
+
$orderby[] = $accepted_fields[$field];
|
333 |
+
}elseif( in_array($field,$accepted_fields) ){
|
334 |
+
$orderby[] = $field;
|
335 |
+
}else{
|
336 |
+
unset($args['orderby'][$key]);
|
337 |
+
}
|
338 |
+
}
|
339 |
+
}elseif( $args['orderby'] != '' && array_key_exists($args['orderby'], $accepted_fields) ){
|
340 |
+
$orderby[] = $accepted_fields[$args['orderby']];
|
341 |
+
}elseif( $args['orderby'] != '' && in_array($args['orderby'], $accepted_fields) ){
|
342 |
+
$orderby[] = $args['orderby'];
|
343 |
+
}
|
344 |
+
//ORDER
|
345 |
+
//If order is an array, we'll go through the orderby array and match the order values (in order of array) with orderby values
|
346 |
+
//If orders don't match up, or it's not ASC/DESC, the default events search in EM settings/options page will be used.
|
347 |
+
foreach($orderby as $i => $field){
|
348 |
+
$orderby[$i] .= ' ';
|
349 |
+
if(is_array($args['order'])){
|
350 |
+
if( in_array($args['order'][$i], array('ASC','DESC')) ){
|
351 |
+
$orderby[$i] .= $args['order'][$i];
|
352 |
+
}else{
|
353 |
+
$orderby[$i] .= $default_order;
|
354 |
+
}
|
355 |
+
}else{
|
356 |
+
$orderby[$i] .= ( in_array($args['order'], array('ASC','DESC')) ) ? $args['order'] : $default_order;
|
357 |
+
}
|
358 |
+
}
|
359 |
+
return apply_filters('em_object_build_sql_orderby', $orderby);
|
360 |
+
}
|
361 |
+
|
362 |
+
/**
|
363 |
+
* Used by "single" objects, e.g. bookings, events, locations to verify if they have the capability to edit this or someone else's object. Relies on the fact that the object has an owner property with id of user (or admin capability must pass).
|
364 |
+
* @param string $owner_capability If the object has an owner property and the user id matches that, this capability will be checked for.
|
365 |
+
* @param string $admin_capability If the user isn't the owner of the object, this capability will be checked for.
|
366 |
+
* @return boolean
|
367 |
+
*/
|
368 |
+
function can_manage( $owner_capability = false, $admin_capability = false ){
|
369 |
+
global $em_capabilities_array;
|
370 |
+
//if multisite and supoer admin, just return true
|
371 |
+
if( is_multisite() && is_super_admin() ){ return true; }
|
372 |
+
//do they own this?
|
373 |
+
$is_owner = ( $this->owner == get_current_user_id() || empty($this->id) );
|
374 |
+
//now check capability
|
375 |
+
$can_manage = false;
|
376 |
+
if( $is_owner && current_user_can($owner_capability) ){
|
377 |
+
//user owns the object and can therefore manage it
|
378 |
+
$can_manage = true;
|
379 |
+
}elseif( array_key_exists($owner_capability, $em_capabilities_array) ){
|
380 |
+
//currently user is not able to manage as they aren't the owner
|
381 |
+
$error_msg = $em_capabilities_array[$owner_capability];
|
382 |
+
}
|
383 |
+
//admins have special rights
|
384 |
+
if( current_user_can($admin_capability) ){
|
385 |
+
$can_manage = true;
|
386 |
+
}elseif( array_key_exists($admin_capability, $em_capabilities_array) ){
|
387 |
+
$error_msg = $em_capabilities_array[$admin_capability];
|
388 |
+
}
|
389 |
+
//Figure out if this is multisite in global mode and require an extra bit of validation
|
390 |
+
if( !empty($this->id) && is_multisite() && get_site_option('dbem_ms_global_table') ){
|
391 |
+
if( get_class($this) == "EM_Event" ){
|
392 |
+
//Other user-owned events can be modified by admins if it's on the same blog, otherwise it must be an admin on the main site.
|
393 |
+
$can_manage = $this->blog_id == get_current_blog_id() || is_main_site() || (defined('BP_ROOT_BLOG') && get_current_blog_id() == BP_ROOT_BLOG);
|
394 |
+
}
|
395 |
+
}
|
396 |
+
|
397 |
+
if( !$can_manage && !empty($error_msg) ){
|
398 |
+
$this->add_error($error_msg);
|
399 |
+
}
|
400 |
+
return $can_manage;
|
401 |
+
}
|
402 |
+
|
403 |
+
/**
|
404 |
+
* Save an array into this class.
|
405 |
+
* If you provide a record from the database table corresponding to this class type it will add the data to this object.
|
406 |
+
* @param array $array
|
407 |
+
* @return null
|
408 |
+
*/
|
409 |
+
function to_object( $array = array(), $addslashes = false ){
|
410 |
+
//Save core data
|
411 |
+
if( is_array($array) ){
|
412 |
+
$array = apply_filters('em_to_object', $array);
|
413 |
+
foreach ( $this->fields as $key => $val ) {
|
414 |
+
if(array_key_exists($key, $array)){
|
415 |
+
if( !is_object($array[$key]) && !is_array($array[$key]) ){
|
416 |
+
$array[$key] = ($addslashes) ? stripslashes($array[$key]):$array[$key];
|
417 |
+
}elseif( is_array($array[$key]) ){
|
418 |
+
$array[$key] = ($addslashes) ? stripslashes_deep($array[$key]):$array[$key];
|
419 |
+
}
|
420 |
+
$this->$val['name'] = $array[$key];
|
421 |
+
}
|
422 |
+
}
|
423 |
+
}
|
424 |
+
}
|
425 |
+
|
426 |
+
/**
|
427 |
+
* Returns this object in the form of an array, useful for saving directly into a database table.
|
428 |
+
* @return array
|
429 |
+
*/
|
430 |
+
function to_array($db = false){
|
431 |
+
$array = array();
|
432 |
+
foreach ( $this->fields as $key => $val ) {
|
433 |
+
if($db){
|
434 |
+
if( !empty($this->$val['name']) || empty($val['null']) ){
|
435 |
+
$array[$key] = $this->$val['name'];
|
436 |
+
}
|
437 |
+
}else{
|
438 |
+
$array[$key] = $this->$val['name'];
|
439 |
+
}
|
440 |
+
}
|
441 |
+
return apply_filters('em_to_array', $array);
|
442 |
+
}
|
443 |
+
|
444 |
+
|
445 |
+
/**
|
446 |
+
* Function to retreive wpdb types for all fields, or if you supply an assoc array with field names as keys it'll return an equivalent array of wpdb types
|
447 |
+
* @param array $array
|
448 |
+
* @return array:
|
449 |
+
*/
|
450 |
+
function get_types($array = array()){
|
451 |
+
$types = array();
|
452 |
+
if( count($array)>0 ){
|
453 |
+
//So we look at assoc array and find equivalents
|
454 |
+
foreach ($array as $key => $val){
|
455 |
+
$types[] = $this->fields[$key]['type'];
|
456 |
+
}
|
457 |
+
}else{
|
458 |
+
//Blank array, let's assume we're getting a standard list of types
|
459 |
+
foreach ($this->fields as $field){
|
460 |
+
$types[] = $field['type'];
|
461 |
+
}
|
462 |
+
}
|
463 |
+
return apply_filters('em_object_get_types', $types, $this, $array);
|
464 |
+
}
|
465 |
+
|
466 |
+
function get_fields( $inverted_array=false ){
|
467 |
+
if( is_array($this->fields) ){
|
468 |
+
$return = array();
|
469 |
+
foreach($this->fields as $fieldName => $fieldArray){
|
470 |
+
if($inverted_array){
|
471 |
+
$return[$fieldArray['name']] = $fieldName;
|
472 |
+
}else{
|
473 |
+
$return[$fieldName] = $fieldArray['name'];
|
474 |
+
}
|
475 |
+
}
|
476 |
+
return apply_filters('em_object_get_fields', $return, $this, $inverted_array);
|
477 |
+
}
|
478 |
+
return apply_filters('em_object_get_fields', array(), $this, $inverted_array);
|
479 |
+
}
|
480 |
+
|
481 |
+
/**
|
482 |
+
* Sanitize text before inserting into database
|
483 |
+
* @param string $value
|
484 |
+
* @return string
|
485 |
+
*/
|
486 |
+
function sanitize( $value ) {
|
487 |
+
if( get_magic_quotes_gpc() )
|
488 |
+
$value = stripslashes( $value );
|
489 |
+
|
490 |
+
//check if this function exists
|
491 |
+
if( function_exists( "mysql_real_escape_string" ) ) {
|
492 |
+
$value = mysql_real_escape_string( $value );
|
493 |
+
//for PHP version < 4.3.0 use addslashes
|
494 |
+
} else {
|
495 |
+
$value = addslashes( $value );
|
496 |
+
}
|
497 |
+
return apply_filters('em_object_sanitize', $value);
|
498 |
+
}
|
499 |
+
|
500 |
+
/**
|
501 |
+
* Cleans arrays that contain id lists. Takes an array of items and will clean the keys passed in second argument so that if they keep numbers, explode comma-seperated numbers, and unsets the key if there's any other value
|
502 |
+
* @param array $array
|
503 |
+
* @param array $id_atts
|
504 |
+
*/
|
505 |
+
function clean_id_atts( $array = array(), $id_atts = array() ){
|
506 |
+
if( is_array($array) && is_array($id_atts) ){
|
507 |
+
foreach( $array as $key => $string ){
|
508 |
+
if( in_array($key, $id_atts) ){
|
509 |
+
//This is in the list of atts we want cleaned
|
510 |
+
if( is_numeric($string) ){
|
511 |
+
$array[$key] = (int) $string;
|
512 |
+
}elseif( self::array_is_numeric($string) ){
|
513 |
+
$array[$key] = $string;
|
514 |
+
}elseif( !is_array($string) && preg_match('/^([0-9],?)+$/', $string) ){
|
515 |
+
$array[$key] = explode(',', $string);
|
516 |
+
}else{
|
517 |
+
//No format we accept
|
518 |
+
unset($array[$key]);
|
519 |
+
}
|
520 |
+
}
|
521 |
+
}
|
522 |
+
}
|
523 |
+
return $array;
|
524 |
+
}
|
525 |
+
|
526 |
+
/**
|
527 |
+
* Send an email and log errors in this object
|
528 |
+
* @param string $subject
|
529 |
+
* @param string $body
|
530 |
+
* @param string $email
|
531 |
+
* @return string
|
532 |
+
*/
|
533 |
+
function email_send($subject, $body, $email){
|
534 |
+
global $EM_Mailer;
|
535 |
+
if( !$EM_Mailer->send($subject,$body,$email) ){
|
536 |
+
if( is_array($EM_Mailer->errors) ){
|
537 |
+
foreach($EM_Mailer->errors as $error){
|
538 |
+
$this->errors[] = $error;
|
539 |
+
}
|
540 |
+
}else{
|
541 |
+
$this->errors[] = $EM_Mailer->errors;
|
542 |
+
}
|
543 |
+
return false;
|
544 |
+
}
|
545 |
+
return true;
|
546 |
+
}
|
547 |
+
|
548 |
+
/**
|
549 |
+
* Will return true if this is a simple (non-assoc) numeric array, meaning it has at one or more numeric entries and nothing else
|
550 |
+
* @param mixed $array
|
551 |
+
* @return boolean
|
552 |
+
*/
|
553 |
+
function array_is_numeric($array){
|
554 |
+
$results = array();
|
555 |
+
if(is_array($array)){
|
556 |
+
foreach($array as $key => $item){
|
557 |
+
$results[] = (is_numeric($item)&&is_numeric($key));
|
558 |
+
}
|
559 |
+
}
|
560 |
+
return (!in_array(false, $results) && count($results) > 0);
|
561 |
+
}
|
562 |
+
|
563 |
+
/**
|
564 |
+
* Returns an array of errors in this object
|
565 |
+
* @return array
|
566 |
+
*/
|
567 |
+
function get_errors(){
|
568 |
+
if(is_array($this->errors)){
|
569 |
+
return $this->errors;
|
570 |
+
}else{
|
571 |
+
return array();
|
572 |
+
}
|
573 |
+
}
|
574 |
+
|
575 |
+
/**
|
576 |
+
* Adds an error to the object
|
577 |
+
*/
|
578 |
+
function add_error($errors){
|
579 |
+
if(!is_array($errors)){ $errors = array($errors); } //make errors var an array if it isn't already
|
580 |
+
if(!is_array($this->errors)){ $this->errors = array(); } //create empty array if this isn't an array
|
581 |
+
foreach($errors as $error){
|
582 |
+
if( !in_array($error, $this->errors) ){
|
583 |
+
$this->errors[] = $error;
|
584 |
+
}
|
585 |
+
}
|
586 |
+
}
|
587 |
+
|
588 |
+
/**
|
589 |
+
* Converts an array to JSON format, useful for outputting data for AJAX calls. Uses a PHP4 fallback function, given it doesn't support json_encode().
|
590 |
+
* @param array $array
|
591 |
+
* @return string
|
592 |
+
*/
|
593 |
+
function json_encode($array){
|
594 |
+
if( function_exists("json_encode") ){
|
595 |
+
$return = json_encode($array);
|
596 |
+
}else{
|
597 |
+
$return = self::array_to_json($array);
|
598 |
+
}
|
599 |
+
if( isset($_REQUEST['callback']) ){
|
600 |
+
$return = $_REQUEST['callback']."($return)";
|
601 |
+
}
|
602 |
+
return apply_filters('em_object_json_encode', $return, $array);
|
603 |
+
}
|
604 |
+
|
605 |
+
/**
|
606 |
+
* Compatible json encoder function for PHP4
|
607 |
+
* @param array $array
|
608 |
+
* @return string
|
609 |
+
*/
|
610 |
+
function array_to_json($array){
|
611 |
+
//PHP4 Comapatability - This encodes the array into JSON. Thanks go to Andy - http://www.php.net/manual/en/function.json-encode.php#89908
|
612 |
+
if( !is_array( $array ) ){
|
613 |
+
$array = array();
|
614 |
+
}
|
615 |
+
$associative = count( array_diff( array_keys($array), array_keys( array_keys( $array )) ));
|
616 |
+
if( $associative ){
|
617 |
+
$construct = array();
|
618 |
+
foreach( $array as $key => $value ){
|
619 |
+
// We first copy each key/value pair into a staging array,
|
620 |
+
// formatting each key and value properly as we go.
|
621 |
+
// Format the key:
|
622 |
+
if( is_numeric($key) ){
|
623 |
+
$key = "key_$key";
|
624 |
+
}
|
625 |
+
$key = "'".addslashes($key)."'";
|
626 |
+
// Format the value:
|
627 |
+
if( is_array( $value )){
|
628 |
+
$value = $this->array_to_json( $value );
|
629 |
+
}else if( is_bool($value) ) {
|
630 |
+
$value = ($value) ? "true" : "false";
|
631 |
+
}else if( !is_numeric( $value ) || is_string( $value ) ){
|
632 |
+
$value = "'".addslashes($value)."'";
|
633 |
+
}
|
634 |
+
// Add to staging array:
|
635 |
+
$construct[] = "$key: $value";
|
636 |
+
}
|
637 |
+
// Then we collapse the staging array into the JSON form:
|
638 |
+
$result = "{ " . implode( ", ", $construct ) . " }";
|
639 |
+
} else { // If the array is a vector (not associative):
|
640 |
+
$construct = array();
|
641 |
+
foreach( $array as $value ){
|
642 |
+
// Format the value:
|
643 |
+
if( is_array( $value )){
|
644 |
+
$value = $this->array_to_json( $value );
|
645 |
+
} else if( !is_numeric( $value ) || is_string( $value ) ){
|
646 |
+
$value = "'".addslashes($value)."'";
|
647 |
+
}
|
648 |
+
// Add to staging array:
|
649 |
+
$construct[] = $value;
|
650 |
+
}
|
651 |
+
// Then we collapse the staging array into the JSON form:
|
652 |
+
$result = "[ " . implode( ", ", $construct ) . " ]";
|
653 |
+
}
|
654 |
+
return $result;
|
655 |
+
}
|
656 |
+
|
657 |
+
/*
|
658 |
+
* START IMAGE UPlOAD FUNCTIONS
|
659 |
+
* Used for various objects, so shared in one place
|
660 |
+
*/
|
661 |
+
/**
|
662 |
+
* Returns the type of image in lowercase, if $path is true, a base filename is returned which indicates where to store the file from the root upload folder.
|
663 |
+
* @param unknown_type $path
|
664 |
+
* @return mixed|mixed
|
665 |
+
*/
|
666 |
+
function get_image_type($path = false){
|
667 |
+
$type = false;
|
668 |
+
switch( get_class($this) ){
|
669 |
+
case 'EM_Event':
|
670 |
+
$dir = (EM_IMAGE_DS == '/') ? 'events/':'';
|
671 |
+
$type = 'event';
|
672 |
+
break;
|
673 |
+
case 'EM_Location':
|
674 |
+
$dir = (EM_IMAGE_DS == '/') ? 'locations/':'';
|
675 |
+
$type = 'location';
|
676 |
+
break;
|
677 |
+
case 'EM_Category':
|
678 |
+
$dir = (EM_IMAGE_DS == '/') ? 'categories/':'';
|
679 |
+
$type = 'category';
|
680 |
+
break;
|
681 |
+
}
|
682 |
+
if($path){
|
683 |
+
return apply_filters('em_object_get_image_type',$dir.$type, $path, $this);
|
684 |
+
}
|
685 |
+
return apply_filters('em_object_get_image_type',$type, $path, $this);
|
686 |
+
}
|
687 |
+
|
688 |
+
function get_image_url(){
|
689 |
+
if( !empty($this->id) ){
|
690 |
+
$type = $this->get_image_type();
|
691 |
+
$id = ( get_class($this) == "EM_Event" && $this->is_recurrence() ) ? $this->recurrence_id:$this->id; //quick fix for recurrences
|
692 |
+
if( $type ){
|
693 |
+
if($this->image_url == ''){
|
694 |
+
foreach($this->mime_types as $mime_type) {
|
695 |
+
$file_name = $this->get_image_type(true)."-{$id}.$mime_type";
|
696 |
+
if( file_exists( EM_IMAGE_UPLOAD_DIR . $file_name) ) {
|
697 |
+
$this->image_url = EM_IMAGE_UPLOAD_URI.$file_name;
|
698 |
+
}
|
699 |
+
}
|
700 |
+
}
|
701 |
+
}
|
702 |
+
}
|
703 |
+
return apply_filters('em_object_get_image_url', $this->image_url, $this);
|
704 |
+
}
|
705 |
+
|
706 |
+
function image_delete() {
|
707 |
+
$type = $this->get_image_type();
|
708 |
+
if( $type ){
|
709 |
+
if( $this->image_url == '' ){
|
710 |
+
$result = true;
|
711 |
+
}else{
|
712 |
+
$file_name= EM_IMAGE_UPLOAD_DIR.$this->get_image_type(true)."-".$this->id;
|
713 |
+
$result = false;
|
714 |
+
foreach($this->mime_types as $mime_type) {
|
715 |
+
if (file_exists($file_name.".".$mime_type)){
|
716 |
+
$result = unlink($file_name.".".$mime_type);
|
717 |
+
$this->image_url = '';
|
718 |
+
}
|
719 |
+
}
|
720 |
+
}
|
721 |
+
}
|
722 |
+
return apply_filters('em_object_get_image_url', $result, $this);
|
723 |
+
}
|
724 |
+
|
725 |
+
function image_upload($result, $object){
|
726 |
+
//due to php versions and handling of refernece we'll just reference the $object instead of $this, essentially making this a static function
|
727 |
+
$type = $object->get_image_type();
|
728 |
+
if( $result && $type ){
|
729 |
+
do_action('em_object_image_upload_pre', $type, $object);
|
730 |
+
if ( !empty($_FILES[$type.'_image']['size']) && file_exists($_FILES[$type.'_image']['tmp_name'])) {
|
731 |
+
$object->image_delete();
|
732 |
+
list($width, $height, $mime_type, $attr) = getimagesize($_FILES[$type.'_image']['tmp_name']);
|
733 |
+
$image_path = $object->get_image_type(true)."-".$object->id.".".$object->mime_types[$mime_type];
|
734 |
+
if( $object->image_validate()){
|
735 |
+
if ( move_uploaded_file($_FILES[$type.'_image']['tmp_name'], EM_IMAGE_UPLOAD_DIR.$image_path) ){
|
736 |
+
$object->image_url = EM_IMAGE_UPLOAD_URI.$image_path;
|
737 |
+
}else{
|
738 |
+
if($result){
|
739 |
+
$object->feedback_message .= ' '. __('However, the image could not be saved.','dbem');
|
740 |
+
}
|
741 |
+
$object->add_error(__('The image could not be saved','dbem'));
|
742 |
+
}
|
743 |
+
}else{
|
744 |
+
if($result){
|
745 |
+
$object->feedback_message .= ' '. __('However, the image could not be saved:','dbem');
|
746 |
+
$object->feedback_message .= '<p>'.implode('<br />',$object->errors).'</p>';
|
747 |
+
}
|
748 |
+
}
|
749 |
+
}elseif( !empty($_REQUEST[$type.'_image_delete']) ){
|
750 |
+
$object->image_delete();
|
751 |
+
}
|
752 |
+
}
|
753 |
+
return apply_filters('em_object_image_upload', $result, $object);
|
754 |
+
}
|
755 |
+
|
756 |
+
function image_validate(){
|
757 |
+
$type = $this->get_image_type();
|
758 |
+
if( $type ){
|
759 |
+
if ( !empty($_FILES[$type.'_image']) && $_FILES[$type.'_image']['size'] > 0 ) {
|
760 |
+
if (is_uploaded_file($_FILES[$type.'_image']['tmp_name'])) {
|
761 |
+
list($width, $height, $mime_type, $attr) = getimagesize($_FILES[$type.'_image']['tmp_name']);
|
762 |
+
$maximum_size = get_option('dbem_image_max_size');
|
763 |
+
if ($_FILES[$type.'_image']['size'] > $maximum_size){
|
764 |
+
$this->add_error( __('The image file is too big! Maximum size:', 'dbem')." $maximum_size");
|
765 |
+
}
|
766 |
+
$maximum_width = get_option('dbem_image_max_width');
|
767 |
+
$maximum_height = get_option('dbem_image_max_height');
|
768 |
+
if (($width > $maximum_width) || ($height > $maximum_height)) {
|
769 |
+
$this->add_error( __('The image is too big! Maximum size allowed:','dbem')." $maximum_width x $maximum_height");
|
770 |
+
}
|
771 |
+
if ( empty($mime_type) || !array_key_exists($mime_type, $this->mime_types) ){
|
772 |
+
$this->add_error(__('The image is in a wrong format!','dbem'));
|
773 |
+
}
|
774 |
+
}
|
775 |
+
}
|
776 |
+
}
|
777 |
+
return apply_filters('em_object_image_validate', count($this->errors) == 0, $this);
|
778 |
+
}
|
779 |
+
/*
|
780 |
+
* END IMAGE UPlOAD FUNCTIONS
|
781 |
+
*/
|
782 |
}
|
classes/em-people.php
CHANGED
@@ -1,129 +1,85 @@
|
|
1 |
-
<?php
|
2 |
-
class EM_People extends EM_Object {
|
3 |
-
|
4 |
-
/**
|
5 |
-
* Gets all users, if $return_people false an array associative arrays will be returned. If $return_people is true this will return an array of EM_Person objects
|
6 |
-
* @param $return_people
|
7 |
-
* @return array
|
8 |
-
*/
|
9 |
-
function get( $return_people = true ) {
|
10 |
-
global $wpdb;
|
11 |
-
$sql = "SELECT * FROM ".
|
12 |
-
$result = $wpdb->get_results($sql, ARRAY_A);
|
13 |
-
if( $return_people ){
|
14 |
-
//Return people as EM_Person objects
|
15 |
-
$people = array();
|
16 |
-
foreach ($result as $person){
|
17 |
-
$people[] = new EM_Person($person);
|
18 |
-
}
|
19 |
-
return $people;
|
20 |
-
}
|
21 |
-
return $result;
|
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 |
-
function build_sql_conditions( $args = array() ){
|
87 |
-
global $wpdb;
|
88 |
-
//FIXME EM_People doesn't build sql conditions in EM_Object
|
89 |
-
$conditions = array();
|
90 |
-
|
91 |
-
return apply_filters( 'em_people_build_sql_conditions', $conditions, $args );
|
92 |
-
}
|
93 |
-
|
94 |
-
/* Overrides EM_Object method to apply a filter to result
|
95 |
-
* @see wp-content/plugins/people-manager/classes/EM_Object#build_sql_orderby()
|
96 |
-
*/
|
97 |
-
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
98 |
-
return apply_filters( 'em_people_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_people_default_order')), $args, $accepted_fields, $default_order );
|
99 |
-
}
|
100 |
-
|
101 |
-
/*
|
102 |
-
* Adds custom people search defaults
|
103 |
-
* @param array $array
|
104 |
-
* @return array
|
105 |
-
* @uses EM_Object#get_default_search()
|
106 |
-
*/
|
107 |
-
function get_default_search( $array = array() ){
|
108 |
-
$defaults = array(
|
109 |
-
'scope'=>false,
|
110 |
-
'eventful' => false, //cats that have an event (scope will also play a part here
|
111 |
-
'eventless' => false, //cats WITHOUT events, eventful takes precedence
|
112 |
-
);
|
113 |
-
//figure out default owning permissions, but since public is for viewing events, only impose limitations in admin area
|
114 |
-
if( is_admin() ){
|
115 |
-
switch( get_option('dbem_permissions_events') ){
|
116 |
-
case 0:
|
117 |
-
$defaults['owner'] = get_current_user_id();
|
118 |
-
break;
|
119 |
-
case 1:
|
120 |
-
$defaults['owner'] = false;
|
121 |
-
break;
|
122 |
-
}
|
123 |
-
$defaults['owner'] = ( em_verify_admin() ) ? false:$defaults['owner'];
|
124 |
-
}
|
125 |
-
return apply_filters('em_people_get_default_search', parent::get_default_search($defaults,$array), $array, $defaults);
|
126 |
-
}
|
127 |
-
|
128 |
-
}
|
129 |
?>
|
1 |
+
<?php
|
2 |
+
class EM_People extends EM_Object {
|
3 |
+
|
4 |
+
/**
|
5 |
+
* Gets all users, if $return_people false an array associative arrays will be returned. If $return_people is true this will return an array of EM_Person objects
|
6 |
+
* @param $return_people
|
7 |
+
* @return array
|
8 |
+
*/
|
9 |
+
function get( $return_people = true ) {
|
10 |
+
global $wpdb;
|
11 |
+
$sql = "SELECT * FROM ". EM_PEOPLE_TABLE ;
|
12 |
+
$result = $wpdb->get_results($sql, ARRAY_A);
|
13 |
+
if( $return_people ){
|
14 |
+
//Return people as EM_Person objects
|
15 |
+
$people = array();
|
16 |
+
foreach ($result as $person){
|
17 |
+
$people[] = new EM_Person($person);
|
18 |
+
}
|
19 |
+
return $people;
|
20 |
+
}
|
21 |
+
return $result;
|
22 |
+
}
|
23 |
+
|
24 |
+
/* Overrides EM_Object method to apply a filter to result
|
25 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_conditions()
|
26 |
+
*/
|
27 |
+
function build_sql_conditions( $args = array() ){
|
28 |
+
global $wpdb;
|
29 |
+
//FIXME EM_People doesn't build sql conditions in EM_Object
|
30 |
+
$conditions = array();
|
31 |
+
|
32 |
+
//owner lookup
|
33 |
+
//FIXME permissions need tweaking for people, not owned by event owner, but site.
|
34 |
+
/*
|
35 |
+
if( is_numeric($args['owner']) ){
|
36 |
+
$conditions['owner'] = "person_owner=".get_current_user_id();
|
37 |
+
}elseif( preg_match('/^([0-9],?)+$/', $args['owner']) ){
|
38 |
+
$conditions['owner'] = "person_owner IN (".explode(',', $args['owner']).")";
|
39 |
+
}
|
40 |
+
*/
|
41 |
+
return apply_filters( 'em_people_build_sql_conditions', $conditions, $args );
|
42 |
+
}
|
43 |
+
|
44 |
+
/* Overrides EM_Object method to apply a filter to result
|
45 |
+
* @see wp-content/plugins/people-manager/classes/EM_Object#build_sql_orderby()
|
46 |
+
*/
|
47 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
48 |
+
return apply_filters( 'em_people_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_people_default_order')), $args, $accepted_fields, $default_order );
|
49 |
+
}
|
50 |
+
|
51 |
+
/*
|
52 |
+
* Adds custom people search defaults
|
53 |
+
* @param array $array
|
54 |
+
* @return array
|
55 |
+
* @uses EM_Object#get_default_search()
|
56 |
+
*/
|
57 |
+
function get_default_search( $array = array() ){
|
58 |
+
$defaults = array(
|
59 |
+
'scope'=>false,
|
60 |
+
'eventful' => false, //cats that have an event (scope will also play a part here
|
61 |
+
'eventless' => false, //cats WITHOUT events, eventful takes precedence
|
62 |
+
);
|
63 |
+
return apply_filters('em_people_get_default_search', parent::get_default_search($defaults,$array), $array, $defaults);
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* Handles the action of someone being deleted on wordpress
|
68 |
+
* @param int $id
|
69 |
+
*/
|
70 |
+
function user_deleted( $id ){
|
71 |
+
global $wpdb;
|
72 |
+
if( current_user_can('delete_users') ){
|
73 |
+
if( $_REQUEST['delete_option'] == 'reassign' && is_numeric($_REQUEST['reassign_user']) ){
|
74 |
+
$wpdb->update(EM_EVENTS_TABLE, array('event_owner'=>$_REQUEST['reassign_user']), array('event_owner'=>$id));
|
75 |
+
}else{
|
76 |
+
//User is being deleted, so we delete their events and cancel their bookings.
|
77 |
+
$wpdb->query("DELETE FROM ".EM_EVENTS_TABLE." WHERE event_owner=$id");
|
78 |
+
}
|
79 |
+
}
|
80 |
+
//set bookings to cancelled
|
81 |
+
$wpdb->update(EM_BOOKINGS_TABLE, array('booking_status'=>3, 'person_id'=>0, 'booking_comment'=>__('User deleted by administrators','dbem')), array('person_id'=>$id));
|
82 |
+
}
|
83 |
+
}
|
84 |
+
add_action('delete_user', array('EM_People','user_deleted'), 1,10);
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
85 |
?>
|
classes/em-permalinks.php
ADDED
@@ -0,0 +1,226 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
|
3 |
+
if( !class_exists('EM_Permalinks') ){
|
4 |
+
class EM_Permalinks {
|
5 |
+
static $em_queryvars = array(
|
6 |
+
'event_id', 'event_slug',
|
7 |
+
'location_id', 'location_slug',
|
8 |
+
'person_id',
|
9 |
+
'booking_id',
|
10 |
+
'category_id', 'category_slug',
|
11 |
+
'ticket_id',
|
12 |
+
'calendar_day',
|
13 |
+
'book',
|
14 |
+
'rss','ical', 'scope', 'page', 'bookings_page', 'payment_gateway','event_categories','event_locations'
|
15 |
+
);
|
16 |
+
static $scopes = 'today|tomorrow|this\-month|next\-month|past|all|future';
|
17 |
+
|
18 |
+
function init(){
|
19 |
+
add_filter('pre_update_option_dbem_events_page', array('EM_Permalinks','option_update'));
|
20 |
+
add_filter('init', array('EM_Permalinks','flush'));
|
21 |
+
add_filter('rewrite_rules_array',array('EM_Permalinks','rewrite_rules_array'));
|
22 |
+
add_filter('query_vars',array('EM_Permalinks','query_vars'));
|
23 |
+
add_action('template_redirect',array('EM_Permalinks','init_objects'), 1);
|
24 |
+
add_action('template_redirect',array('EM_Permalinks','redirection'), 1);
|
25 |
+
//Add filters to rewrite the URLs
|
26 |
+
add_filter('em_event_output_placeholder',array('EM_Permalinks','rewrite_urls'),1,3);
|
27 |
+
add_filter('em_location_output_placeholder',array('EM_Permalinks','rewrite_urls'),1,3);
|
28 |
+
add_filter('em_category_output_placeholder',array('EM_Permalinks','rewrite_urls'),1,3);
|
29 |
+
if( !defined('EM_EVENT_SLUG') ){ define('EM_EVENT_SLUG','event'); }
|
30 |
+
if( !defined('EM_LOCATION_SLUG') ){ define('EM_LOCATION_SLUG','location'); }
|
31 |
+
if( !defined('EM_LOCATIONS_SLUG') ){ define('EM_LOCATIONS_SLUG','locations'); }
|
32 |
+
if( !defined('EM_CATEGORY_SLUG') ){ define('EM_CATEGORY_SLUG','category'); }
|
33 |
+
if( !defined('EM_CATEGORIES_SLUG') ){ define('EM_CATEGORIES_SLUG','categories'); }
|
34 |
+
}
|
35 |
+
|
36 |
+
function flush(){
|
37 |
+
global $wp_rewrite;
|
38 |
+
if( get_option('dbem_flush_needed') ){
|
39 |
+
$wp_rewrite->flush_rules();
|
40 |
+
delete_option('dbem_flush_needed');
|
41 |
+
}
|
42 |
+
}
|
43 |
+
|
44 |
+
function rewrite_urls($replace, $object, $result){
|
45 |
+
global $wp_query, $wp_rewrite;
|
46 |
+
if( $wp_rewrite->using_permalinks() && !defined('EM_DISABLE_PERMALINKS')){
|
47 |
+
switch( $result ){
|
48 |
+
case '#_EVENTPAGEURL': //Depreciated
|
49 |
+
case '#_LINKEDNAME': //Depreciated
|
50 |
+
case '#_EVENTURL': //Just the URL
|
51 |
+
case '#_EVENTLINK': //HTML Link
|
52 |
+
if( is_object($object) && get_class($object)=='EM_Event' ){
|
53 |
+
$EM_URI = EM_URI;
|
54 |
+
if( is_multisite() && get_site_option('dbem_ms_global_events') && get_site_option('dbem_ms_global_events_links') && !empty($object->blog_id) && is_main_site() && $object->blog_id != get_current_blog_id() ){
|
55 |
+
$EM_URI = get_blog_permalink($object->blog_id, get_blog_option($object->blog_id, 'dbem_events_page'));
|
56 |
+
}
|
57 |
+
$event_link = trailingslashit(trailingslashit($EM_URI).EM_EVENT_SLUG.'/'.$object->slug);
|
58 |
+
if($result == '#_LINKEDNAME' || $result == '#_EVENTLINK'){
|
59 |
+
$replace = "<a href='{$event_link}' title='{$object->name}'>{$object->name}</a>";
|
60 |
+
}else{
|
61 |
+
$replace = $event_link;
|
62 |
+
}
|
63 |
+
}
|
64 |
+
break;
|
65 |
+
case '#_LOCATIONURL':
|
66 |
+
case '#_LOCATIONLINK':
|
67 |
+
case '#_LOCATIONPAGEURL': //Depreciated
|
68 |
+
if( is_object($object) && get_class($object)=='EM_Location' ){
|
69 |
+
$link = trailingslashit(trailingslashit(EM_URI).EM_LOCATION_SLUG.'/'.$object->slug);
|
70 |
+
$replace = ($result == '#_LOCATIONURL' || $result == '#_LOCATIONPAGEURL') ? $link : '<a href="'.$link.'">'.$object->name.'</a>';
|
71 |
+
}
|
72 |
+
break;
|
73 |
+
case '#_CATEGORYLINK':
|
74 |
+
case '#_CATEGORYURL':
|
75 |
+
if( is_object($object) && get_class($object)=='EM_Category' ){
|
76 |
+
$link = trailingslashit(trailingslashit(EM_URI).EM_CATEGORY_SLUG.'/'.$object->slug);
|
77 |
+
$replace = ($result == '#_CATEGORYURL') ? $link : '<a href="'.$link.'">'.$object->name.'</a>';
|
78 |
+
}
|
79 |
+
break;
|
80 |
+
}
|
81 |
+
}
|
82 |
+
return $replace;
|
83 |
+
}
|
84 |
+
|
85 |
+
/**
|
86 |
+
* will redirect old links to new link structures.
|
87 |
+
* @return mixed
|
88 |
+
*/
|
89 |
+
function redirection(){
|
90 |
+
global $wp_rewrite, $post, $wp_query;
|
91 |
+
if( $wp_rewrite->using_permalinks() && !is_admin() && !defined('EM_DISABLE_PERMALINKS') ){
|
92 |
+
//is this a querystring url?
|
93 |
+
$events_page_id = get_option ( 'dbem_events_page' );
|
94 |
+
if ( is_object($post) && $post->ID == $events_page_id && $events_page_id != 0 ) {
|
95 |
+
$page = ( !empty($_GET['page']) && is_numeric($_GET['page']) )? $_GET['page'] : '';
|
96 |
+
if ( !empty($_GET['calendar_day']) ) {
|
97 |
+
//Events for a specific day
|
98 |
+
wp_redirect( self::url($_GET['calendar_day'],$page), 301);
|
99 |
+
exit();
|
100 |
+
} elseif ( !empty($_GET['location_id']) && is_numeric($_GET['location_id']) ) {
|
101 |
+
//Just a single location
|
102 |
+
$EM_Location = new EM_Location($_GET['location_id']);
|
103 |
+
wp_redirect( self::url('location', $EM_Location->slug,$page), 301);
|
104 |
+
exit();
|
105 |
+
} elseif ( !empty($_GET['event_id']) && is_numeric($_GET['event_id']) ) {
|
106 |
+
//single event page
|
107 |
+
$EM_Event = new EM_Event($_GET['event_id']);
|
108 |
+
wp_redirect( self::url(EM_EVENT_SLUG, $EM_Event->slug), 301);
|
109 |
+
exit();
|
110 |
+
}
|
111 |
+
}
|
112 |
+
if( !empty($_GET['dbem_rss']) ){
|
113 |
+
//RSS page
|
114 |
+
wp_redirect( self::url('rss'), 301);
|
115 |
+
exit();
|
116 |
+
}
|
117 |
+
}
|
118 |
+
}
|
119 |
+
// Adding a new rule
|
120 |
+
function rewrite_rules_array($rules){
|
121 |
+
//get the slug of the event page
|
122 |
+
$events_page_id = get_option ( 'dbem_events_page' );
|
123 |
+
$events_page = get_post($events_page_id);
|
124 |
+
$em_rules = array();
|
125 |
+
if( is_object($events_page) ){
|
126 |
+
$events_slug = str_replace(trailingslashit(get_bloginfo('wpurl')),'', get_permalink($events_page->ID));
|
127 |
+
$events_slug = str_replace(trailingslashit(get_bloginfo('url')),'', get_permalink($events_page->ID));
|
128 |
+
$events_slug = preg_replace('/\/$/','',$events_slug);
|
129 |
+
$em_rules[$events_slug.'/('.self::$scopes.')$'] = 'index.php?pagename='.$events_slug.'&scope=$matches[1]'; //events with scope
|
130 |
+
$em_rules[$events_slug.'/(\d{4}-\d{2}-\d{2})$'] = 'index.php?pagename='.$events_slug.'&calendar_day=$matches[1]'; //event calendar date search
|
131 |
+
$em_rules[$events_slug.'/'.EM_EVENT_SLUG.'/(\d*)$'] = 'index.php?pagename='.$events_slug.'&event_id=$matches[1]'; //single event page with id
|
132 |
+
$em_rules[$events_slug.'/my\-bookings$'] = 'index.php?pagename='.$events_slug.'&bookings_page=1'; //page for users to manage bookings
|
133 |
+
$em_rules[$events_slug.'/my\-bookings/(\d+)$'] = 'index.php?pagename='.$events_slug.'&booking_id=$matches[1]'; //page for users to manage bookings
|
134 |
+
$em_rules[$events_slug.'/bookings/(\d+)$'] = 'index.php?pagename='.$events_slug.'&event_id=$matches[1]&book=1'; //single event booking form with id
|
135 |
+
$em_rules[$events_slug.'/bookings/(.+)$'] = 'index.php?pagename='.$events_slug.'&event_slug=$matches[1]&book=1'; //single event booking form with slug
|
136 |
+
$em_rules[$events_slug.'/'.EM_EVENT_SLUG.'/(.+)$'] = 'index.php?pagename='.$events_slug.'&event_slug=$matches[1]'; //single event page with slug
|
137 |
+
$em_rules[$events_slug.'/'.EM_LOCATIONS_SLUG.'$'] = 'index.php?pagename='.$events_slug.'&event_locations=1'; //category list with slug
|
138 |
+
$em_rules[$events_slug.'/'.EM_LOCATION_SLUG.'/(\d+)$'] = 'index.php?pagename='.$events_slug.'&location_id=$matches[1]'; //location page with id
|
139 |
+
$em_rules[$events_slug.'/'.EM_LOCATION_SLUG.'/(.+)$'] = 'index.php?pagename='.$events_slug.'&location_slug=$matches[1]'; //location page with slug
|
140 |
+
$em_rules[$events_slug.'/'.EM_CATEGORIES_SLUG.'$'] = 'index.php?pagename='.$events_slug.'&event_categories=1'; //category list with slug
|
141 |
+
$em_rules[$events_slug.'/'.EM_CATEGORY_SLUG.'/(.+)$'] = 'index.php?pagename='.$events_slug.'&category_slug=$matches[1]'; //category page with slug
|
142 |
+
$em_rules[$events_slug.'/rss$'] = 'index.php?pagename='.$events_slug.'&rss=1'; //rss page
|
143 |
+
$em_rules[$events_slug.'/ical$'] = 'index.php?pagename='.$events_slug.'&ical=1'; //ical page
|
144 |
+
$em_rules[$events_slug.'/payments/(.+)$'] = 'index.php?pagename='.$events_slug.'&payment_gateway=$matches[1]'; //single event booking form with slug
|
145 |
+
$em_rules[$events_slug.'/(\d+)$'] = 'index.php?pagename='.$events_slug.'&page=$matches[1]'; //event pageno
|
146 |
+
}
|
147 |
+
return $em_rules + $rules;
|
148 |
+
}
|
149 |
+
|
150 |
+
/**
|
151 |
+
* Generate a URL. Pass each section of a link as a parameter, e.g. EM_Permalinks::url('event',$event_id); will create an event link.
|
152 |
+
* @param mixed
|
153 |
+
*/
|
154 |
+
function url(){
|
155 |
+
global $wp_rewrite;
|
156 |
+
$args = func_get_args();
|
157 |
+
$em_uri = get_permalink(get_option("dbem_events_page")); //PAGE URI OF EM
|
158 |
+
if ( $wp_rewrite->using_permalinks() && !defined('EM_DISABLE_PERMALINKS') ) {
|
159 |
+
$event_link = trailingslashit(trailingslashit($em_uri). implode('/',$args));
|
160 |
+
}
|
161 |
+
return $event_link;
|
162 |
+
}
|
163 |
+
|
164 |
+
/**
|
165 |
+
* checks if the events page has changed, and sets a flag to flush wp_rewrite.
|
166 |
+
* @param mixed $val
|
167 |
+
* @return mixed
|
168 |
+
*/
|
169 |
+
function option_update( $val ){
|
170 |
+
if( get_option('dbem_events_page') != $val ){
|
171 |
+
update_option('dbem_flush_needed',1);
|
172 |
+
}
|
173 |
+
return $val;
|
174 |
+
}
|
175 |
+
|
176 |
+
// Adding the id var so that WP recognizes it
|
177 |
+
function query_vars($vars){
|
178 |
+
foreach(self::$em_queryvars as $em_queryvar){
|
179 |
+
array_push($vars, $em_queryvar);
|
180 |
+
}
|
181 |
+
return $vars;
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* Not the "WP way" but for now this'll do!
|
186 |
+
*/
|
187 |
+
function init_objects(){
|
188 |
+
//Build permalinks here
|
189 |
+
global $wp_query, $wp_rewrite;
|
190 |
+
if ( $wp_rewrite->using_permalinks() && !defined('EM_DISABLE_PERMALINKS') ) {
|
191 |
+
foreach(self::$em_queryvars as $em_queryvar){
|
192 |
+
if( $wp_query->get($em_queryvar) ) {
|
193 |
+
$_REQUEST[$em_queryvar] = $wp_query->get($em_queryvar);
|
194 |
+
}
|
195 |
+
}
|
196 |
+
}
|
197 |
+
//dirty rss condition
|
198 |
+
if( !empty($_REQUEST['rss']) ){
|
199 |
+
$_REQUEST['rss_main'] = 'main';
|
200 |
+
}
|
201 |
+
}
|
202 |
+
}
|
203 |
+
EM_Permalinks::init();
|
204 |
+
}
|
205 |
+
|
206 |
+
//Specific links that aren't generated by objects
|
207 |
+
|
208 |
+
/**
|
209 |
+
* returns the url of the my bookings page, depending on the settings page and if BP is installed.
|
210 |
+
* @return string
|
211 |
+
*/
|
212 |
+
function em_get_my_bookings_url(){
|
213 |
+
global $bp, $wp_rewrite;
|
214 |
+
if( is_object($bp) ){
|
215 |
+
//get member url
|
216 |
+
return $bp->events->link.'attending/';
|
217 |
+
}elseif( get_option('dbem_bookings_my_page') ){
|
218 |
+
return get_permalink(get_option('dbem_bookings_my_page'));
|
219 |
+
}else{
|
220 |
+
if( $wp_rewrite->using_permalinks() && !defined('EM_DISABLE_PERMALINKS') ){
|
221 |
+
return trailingslashit(EM_URI)."my-bookings/";
|
222 |
+
}else{
|
223 |
+
return preg_match('/\?/',EM_URI) ? EM_URI.'&bookings_page=1':EM_URI.'?bookings_page=1';
|
224 |
+
}
|
225 |
+
}
|
226 |
+
}
|
classes/em-person.php
CHANGED
@@ -1,154 +1,91 @@
|
|
1 |
-
<?php
|
2 |
-
// TODO make person details more secure and integrate with WP user data
|
3 |
-
class EM_Person extends
|
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 |
-
function delete(){
|
94 |
-
global $wpdb;
|
95 |
-
do_action('em_person_delete_pre', $this);
|
96 |
-
$results = array();
|
97 |
-
$results[] = $wpdb->query ( $wpdb->prepare("DELETE FROM ". $wpdb->prefix . EM_PEOPLE_TABLE ." WHERE person_id=%d", $this->id) );
|
98 |
-
$results[] = $wpdb->query ( $wpdb->prepare("DELETE FROM ". $wpdb->prefix . EM_BOOKINGS_TABLE ." WHERE person_id=%d", $this->id) );
|
99 |
-
return apply_filters('em_event_delete', !in_array(false,$results), $this);
|
100 |
-
}
|
101 |
-
|
102 |
-
function validate(){
|
103 |
-
if( !preg_match('/^[A-Za-z0-9._%+-]+@[A-Za-z0-9.-]+\.[A-Za-z]{2,4}$/', $this->email) ){
|
104 |
-
$this->errors[] = __('Please provide a valid email address.', 'dbem');
|
105 |
-
return false;
|
106 |
-
}
|
107 |
-
return true;
|
108 |
-
}
|
109 |
-
|
110 |
-
function get_bookings(){
|
111 |
-
global $wpdb;
|
112 |
-
$results = $wpdb->get_results("SELECT * FROM ".$wpdb->prefix.EM_BOOKINGS_TABLE." WHERE person_id={$this->id}",ARRAY_A);
|
113 |
-
$bookings = array();
|
114 |
-
foreach($results as $booking_data){
|
115 |
-
$bookings[] = new EM_Booking($booking_data);
|
116 |
-
}
|
117 |
-
return $bookings;
|
118 |
-
}
|
119 |
-
|
120 |
-
/**
|
121 |
-
* Checks agains the database to see if this user exists already
|
122 |
-
* @return boolean|int
|
123 |
-
*/
|
124 |
-
function find_similar(){
|
125 |
-
global $wpdb;
|
126 |
-
$sql = "SELECT * FROM ". $wpdb->prefix.EM_PEOPLE_TABLE ." WHERE person_name='%s' AND person_email='%s' AND person_phone='%s'";
|
127 |
-
$row = $wpdb->get_row( $wpdb->prepare($sql, array($this->name, $this->email, $this->phone)), ARRAY_A );
|
128 |
-
if( is_array($row) ){
|
129 |
-
return $row['person_id'];
|
130 |
-
}
|
131 |
-
return false;
|
132 |
-
}
|
133 |
-
|
134 |
-
/**
|
135 |
-
* Checks if a similar record exists (same name, email and phone) and if so it loads
|
136 |
-
* @return boolean
|
137 |
-
*/
|
138 |
-
function load_similar(){
|
139 |
-
$return = $this->find_similar();
|
140 |
-
if( is_numeric($return) ){
|
141 |
-
$this->id = $return;
|
142 |
-
return true;
|
143 |
-
}
|
144 |
-
return false;
|
145 |
-
}
|
146 |
-
|
147 |
-
/**
|
148 |
-
* Can the user manage this event?
|
149 |
-
*/
|
150 |
-
function can_manage(){
|
151 |
-
return ( get_option('dbem_permissions_events') || $this->owner == get_current_user_id() || em_verify_admin() );
|
152 |
-
}
|
153 |
-
}
|
154 |
?>
|
1 |
+
<?php
|
2 |
+
// TODO make person details more secure and integrate with WP user data
|
3 |
+
class EM_Person extends WP_User{
|
4 |
+
|
5 |
+
function EM_Person( $person_id = false, $username = false ){
|
6 |
+
if( is_array($person_id) ){
|
7 |
+
if( array_key_exists('person_id',$person_id) ){
|
8 |
+
$person_id = $person_id['person_id'];
|
9 |
+
}elseif ( array_key_exists('user_id',$person_id) ){
|
10 |
+
$person_id = $person_id['user_id'];
|
11 |
+
}else{
|
12 |
+
$person_id = $person_id['ID'];
|
13 |
+
}
|
14 |
+
}elseif( is_object($person_id) && get_class($person_id) == 'WP_User'){
|
15 |
+
$person_id = $person_id->ID; //create new object if passed a wp_user
|
16 |
+
}
|
17 |
+
if($username){
|
18 |
+
parent::__construct($person_id, $username);
|
19 |
+
}elseif( is_numeric($person_id) && $person_id == 0 ){
|
20 |
+
$this->ID = 0;
|
21 |
+
$this->display_name = 'Non-Registered User';
|
22 |
+
$this->user_email = 'n/a';
|
23 |
+
}else{
|
24 |
+
parent::__construct($person_id);
|
25 |
+
}
|
26 |
+
$this->phone = get_metadata('user', $this->ID, 'dbem_phone', true); //extra field for EM
|
27 |
+
do_action('em_person',$this, $person_id, $username);
|
28 |
+
}
|
29 |
+
|
30 |
+
function get_bookings($ids_only = false){
|
31 |
+
global $wpdb;
|
32 |
+
if( is_multisite() ){
|
33 |
+
if( !is_main_site() ){
|
34 |
+
//not the main blog, force single blog search
|
35 |
+
$blog_condition = "AND e.blog_id=".get_current_blog_id();
|
36 |
+
}elseif(is_main_site() && !get_option('dbem_ms_global_events')){
|
37 |
+
$blog_condition = "AND (e.blog_id=".get_current_blog_id().' OR e.blog_id IS NULL)';
|
38 |
+
}
|
39 |
+
}
|
40 |
+
$EM_Booking = new EM_Booking(); //empty booking for fields
|
41 |
+
$results = $wpdb->get_results("SELECT b.".implode(', b.', array_keys($EM_Booking->fields))." FROM ".EM_BOOKINGS_TABLE." b, ".EM_EVENTS_TABLE." e WHERE e.event_id=b.event_id AND person_id={$this->id} {$blog_condition} ORDER BY event_start_date DESC",ARRAY_A);
|
42 |
+
$bookings = array();
|
43 |
+
if($ids_only){
|
44 |
+
foreach($results as $booking_data){
|
45 |
+
$bookings[] = $booking_data['booking_id'];
|
46 |
+
}
|
47 |
+
return $bookings;
|
48 |
+
}else{
|
49 |
+
foreach($results as $booking_data){
|
50 |
+
$bookings[] = new EM_Booking($booking_data);
|
51 |
+
}
|
52 |
+
return new EM_Bookings($bookings);
|
53 |
+
}
|
54 |
+
}
|
55 |
+
|
56 |
+
/**
|
57 |
+
* @return EM_Events
|
58 |
+
*/
|
59 |
+
function get_events(){
|
60 |
+
global $wpdb;
|
61 |
+
$events = array();
|
62 |
+
foreach( $this->get_bookings()->get_bookings() as $EM_Booking ){
|
63 |
+
$events[$EM_Booking->event_id] = $EM_Booking->get_event();
|
64 |
+
}
|
65 |
+
return $events;
|
66 |
+
}
|
67 |
+
|
68 |
+
function display_summary(){
|
69 |
+
ob_start();
|
70 |
+
?>
|
71 |
+
<table>
|
72 |
+
<tr>
|
73 |
+
<td><?php echo get_avatar($this->ID); ?></td>
|
74 |
+
<td style="padding-left:10px; vertical-align: top;">
|
75 |
+
<strong><?php _e('Name','dbem'); ?></strong> : <a href="<?php bloginfo ( 'wpurl' )?>/wp-admin/admin.php?page=events-manager-bookings&person_id=<?php echo $this->ID; ?>"><?php echo $this->get_name() ?></a><br /><br />
|
76 |
+
<strong><?php _e('Email','dbem'); ?></strong> : <?php echo $this->user_email; ?><br /><br />
|
77 |
+
<strong><?php _e('Phone','dbem'); ?></strong> : <?php echo $this->phone; ?>
|
78 |
+
</td>
|
79 |
+
</tr>
|
80 |
+
</table>
|
81 |
+
<?php
|
82 |
+
return ob_get_clean();
|
83 |
+
}
|
84 |
+
|
85 |
+
function get_name(){
|
86 |
+
$full_name = $this->user_firstname . " " . $this->user_lastname ;
|
87 |
+
$full_name = trim($full_name);
|
88 |
+
return !empty($full_name) ? $full_name : $this->display_name;
|
89 |
+
}
|
90 |
+
}
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
91 |
?>
|
classes/em-recurrence.php
DELETED
@@ -1,89 +0,0 @@
|
|
1 |
-
<?php
|
2 |
-
/**
|
3 |
-
* Object that holds event recurrence info
|
4 |
-
* The EM_Event objects will handle adding / editing / deleting recurrences, this just holds the recurring info
|
5 |
-
* and provides extra functions to obtain related events.
|
6 |
-
* @author marcus
|
7 |
-
*/
|
8 |
-
class EM_Recurrence extends EM_Object{
|
9 |
-
//TODO We NEED to add an author and rsvp to this recurrence.....
|
10 |
-
var $fields = array(
|
11 |
-
'recurrence_id' => 'id',
|
12 |
-
'recurrence_author' => 'author',
|
13 |
-
'recurrence_name' => 'name',
|
14 |
-
'recurrence_start_time' => 'start_time',
|
15 |
-
'recurrence_end_time' => 'end_time',
|
16 |
-
'recurrence_start_date' => 'start_date',
|
17 |
-
'recurrence_end_date' => 'end_date',
|
18 |
-
'recurrence_notes' => 'notes',
|
19 |
-
'recurrence_rsvp' => 'rsvp',
|
20 |
-
'recurrence_seats' => 'seats',
|
21 |
-
'recurrence_contactperson_id' => 'contactperson_id',
|
22 |
-
'location_id' => 'location_id',
|
23 |
-
'recurrence_id' => 'recurrence_id',
|
24 |
-
'recurrence_category_id' => 'category_id',
|
25 |
-
'recurrence_attributes' => 'attributes',
|
26 |
-
'recurrence_interval' => 'interval',
|
27 |
-
'recurrence_freq' => 'freq',
|
28 |
-
'recurrence_byday' => 'byday',
|
29 |
-
'recurrence_byweekno' => 'byweekno',
|
30 |
-
);
|
31 |
-
/**
|
32 |
-
* Array of EM_Event objects
|
33 |
-
* @var array
|
34 |
-
*/
|
35 |
-
var $events = array();
|
36 |
-
|
37 |
-
/**
|
38 |
-
* Initialize object. You can provide event data in an associative array (using database table field names), an id number, or false (default) to create empty event.
|
39 |
-
* If you provide an event array or object, it will convert it into a recurrence (useful if you want to change event data into recurrence).
|
40 |
-
* @param mixed $event_data
|
41 |
-
* @return null
|
42 |
-
*/
|
43 |
-
function EM_Recurrence($event_data = false) {
|
44 |
-
global $wpdb;
|
45 |
-
if( $event_data !== false ){
|
46 |
-
$recurrence = array();
|
47 |
-
if( is_array($event_data) && isset($event_data['recurrence_name']) ){
|
48 |
-
//Directly inserting array of recurrence data
|
49 |
-
$recurrence = $event_data;
|
50 |
-
}elseif( is_numeric($event_data) || isset($event_data['recurrence_id']) ){
|
51 |
-
//$event_data is recurrence_id - Retreiving from the database
|
52 |
-
$recurrence_id = (is_array($event_data)) ? $event_data['recurrence_id']:$event_data;
|
53 |
-
$sql = "SELECT * FROM ". $wpdb->prefix . EM_RECURRENCE_TABLE ." WHERE recurrence_id = $recurrence_id";
|
54 |
-
$result = $wpdb->get_row( $sql, ARRAY_A );
|
55 |
-
if($result){
|
56 |
-
$this->location = new EM_Location ( $recurrence ['location_id'] );
|
57 |
-
$recurrence = $result;
|
58 |
-
}
|
59 |
-
}
|
60 |
-
$this->to_object($recurrence);
|
61 |
-
}
|
62 |
-
}
|
63 |
-
|
64 |
-
/**
|
65 |
-
* Removes recurrence record.
|
66 |
-
* @param $recurrence_id
|
67 |
-
* @return null
|
68 |
-
*/
|
69 |
-
function delete() {
|
70 |
-
global $wpdb;
|
71 |
-
$sql = "DELETE FROM ".$wpdb->prefix.EM_RECURRENCE_TABLE." WHERE recurrence_id = '{$this->id}';";
|
72 |
-
$wpdb->query($sql);
|
73 |
-
}
|
74 |
-
|
75 |
-
/**
|
76 |
-
* Save an array into this class
|
77 |
-
* @param $array
|
78 |
-
* @return null
|
79 |
-
*/
|
80 |
-
function to_object( $array = array() ){
|
81 |
-
//Save event core data
|
82 |
-
parent::to_object($array);
|
83 |
-
//Save location info
|
84 |
-
$this->location = new EM_Location($array['location_id']);
|
85 |
-
//Save contact person info
|
86 |
-
}
|
87 |
-
|
88 |
-
}
|
89 |
-
?>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
classes/em-ticket-booking.php
ADDED
@@ -0,0 +1,221 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class EM_Ticket_Booking extends EM_Object{
|
3 |
+
//DB Fields
|
4 |
+
var $id;
|
5 |
+
var $booking_id;
|
6 |
+
var $ticket_id;
|
7 |
+
var $price;
|
8 |
+
var $spaces;
|
9 |
+
var $fields = array(
|
10 |
+
'ticket_booking_id' => array('name'=>'id','type'=>'%d'),
|
11 |
+
'ticket_id' => array('name'=>'ticket_id','type'=>'%d'),
|
12 |
+
'booking_id' => array('name'=>'booking_id','type'=>'%d'),
|
13 |
+
'ticket_booking_price' => array('name'=>'price','type'=>'%f'),
|
14 |
+
'ticket_booking_spaces' => array('name'=>'spaces','type'=>'%d')
|
15 |
+
);
|
16 |
+
//Other Vars
|
17 |
+
/**
|
18 |
+
* Contains ticket object
|
19 |
+
* @var EM_Ticket
|
20 |
+
*/
|
21 |
+
var $ticket;
|
22 |
+
/**
|
23 |
+
* Contains the booking object of this
|
24 |
+
* @var EM_Booking
|
25 |
+
*/
|
26 |
+
var $booking;
|
27 |
+
var $required_fields = array( 'ticket_id', 'ticket_booking_spaces');
|
28 |
+
|
29 |
+
/**
|
30 |
+
* Creates ticket object and retreives ticket data (default is a blank ticket object). Accepts either array of ticket data (from db) or a ticket id.
|
31 |
+
* @param mixed $ticket_data
|
32 |
+
* @return null
|
33 |
+
*/
|
34 |
+
function EM_Ticket_Booking( $ticket_data = false ){
|
35 |
+
if( $ticket_data !== false ){
|
36 |
+
//Load ticket data
|
37 |
+
$ticket = array();
|
38 |
+
if( is_array($ticket_data) ){
|
39 |
+
$ticket = $ticket_data;
|
40 |
+
}elseif( is_numeric($ticket_data) ){
|
41 |
+
//Retreiving from the database
|
42 |
+
global $wpdb;
|
43 |
+
$sql = "SELECT * FROM ". EM_TICKETS_BOOKINGS_TABLE ." WHERE ticket_booking_id ='$ticket_data'";
|
44 |
+
$ticket = $wpdb->get_row($sql, ARRAY_A);
|
45 |
+
}
|
46 |
+
//Save into the object
|
47 |
+
$this->to_object($ticket);
|
48 |
+
}
|
49 |
+
}
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Saves the ticket into the database, whether a new or existing ticket
|
53 |
+
* @return boolean
|
54 |
+
*/
|
55 |
+
function save(){
|
56 |
+
global $wpdb;
|
57 |
+
$table = EM_TICKETS_BOOKINGS_TABLE;
|
58 |
+
do_action('em_ticket_booking_save_pre',$this);
|
59 |
+
//First the person
|
60 |
+
if($this->validate()){
|
61 |
+
//Now we save the ticket
|
62 |
+
$this->booking_id = $this->get_booking()->id; //event wouldn't exist before save, so refresh id
|
63 |
+
$data = $this->to_array(true); //add the true to remove the nulls
|
64 |
+
if($this->id != ''){
|
65 |
+
if($this->get_spaces() > 0){
|
66 |
+
$where = array( 'ticket_booking_id' => $this->id );
|
67 |
+
$result = $wpdb->update($table, $data, $where, $this->get_types($data));
|
68 |
+
$this->feedback_message = __('Changes saved','dbem');
|
69 |
+
}else{
|
70 |
+
$this->result = $this->delete();
|
71 |
+
}
|
72 |
+
}else{
|
73 |
+
if($this->get_spaces() > 0){
|
74 |
+
//TODO better error handling
|
75 |
+
$result = $wpdb->insert($table, $data, $this->get_types($data));
|
76 |
+
$this->id = $wpdb->insert_id;
|
77 |
+
$this->feedback_message = __('Ticket booking created','dbem');
|
78 |
+
}else{
|
79 |
+
//no point saving a booking with no spaces
|
80 |
+
$result = false;
|
81 |
+
}
|
82 |
+
}
|
83 |
+
if( $result === false ){
|
84 |
+
$this->feedback_message = __('There was a problem saving the ticket booking.', 'dbem');
|
85 |
+
$this->errors[] = __('There was a problem saving the ticket booking.', 'dbem');
|
86 |
+
}
|
87 |
+
return apply_filters('em_ticket_booking_save', ( count($this->errors) == 0 ), $this);
|
88 |
+
}else{
|
89 |
+
$this->feedback_message = __('There was a problem saving the ticket booking.', 'dbem');
|
90 |
+
$this->errors[] = __('There was a problem saving the ticket booking.', 'dbem');
|
91 |
+
return apply_filters('em_ticket_booking_save', false, $this);
|
92 |
+
}
|
93 |
+
return true;
|
94 |
+
}
|
95 |
+
|
96 |
+
|
97 |
+
/**
|
98 |
+
* Validates the ticket for saving. Should be run during any form submission or saving operation.
|
99 |
+
* @return boolean
|
100 |
+
*/
|
101 |
+
function validate(){
|
102 |
+
$missing_fields = Array ();
|
103 |
+
foreach ( $this->required_fields as $field ) {
|
104 |
+
$true_field = $this->fields[$field]['name'];
|
105 |
+
if ( $this->$true_field == "") {
|
106 |
+
$missing_fields[] = $field;
|
107 |
+
}
|
108 |
+
}
|
109 |
+
if ( count($missing_fields) > 0){
|
110 |
+
// TODO Create friendly equivelant names for missing fields notice in validation
|
111 |
+
$this->errors[] = __ ( 'Missing fields: ' ) . implode ( ", ", $missing_fields ) . ". ";
|
112 |
+
}
|
113 |
+
return apply_filters('em_event_validate', count($this->errors) == 0, $this );
|
114 |
+
}
|
115 |
+
|
116 |
+
/**
|
117 |
+
* Get the total number of spaces booked for this ticket within this booking.
|
118 |
+
* @return int
|
119 |
+
*/
|
120 |
+
function get_spaces(){
|
121 |
+
return apply_filters('em_booking_get_spaces',$this->spaces,$this);
|
122 |
+
}
|
123 |
+
|
124 |
+
/**
|
125 |
+
* Gets the total price for this whole booking. Seting $force_reset to true will recheck spaces, even if previously done so.
|
126 |
+
* @param boolean $force_refresh
|
127 |
+
* @return float
|
128 |
+
*/
|
129 |
+
function get_price( $force_refresh=false, $format = false, $add_tax = 'x' ){
|
130 |
+
if( $force_refresh || $this->price == 0 || $add_tax !== 'x' || get_option('dbem_bookings_tax_auto_add') ){
|
131 |
+
//get the ticket, calculate price on spaces
|
132 |
+
$this->price = $this->get_ticket()->get_price(false, $add_tax) * $this->spaces;
|
133 |
+
}
|
134 |
+
if($format){
|
135 |
+
return apply_filters('em_booking_get_prices', em_get_currency_symbol().number_format($this->price,2),$this);
|
136 |
+
}
|
137 |
+
return apply_filters('em_booking_get_prices',$this->price,$this);
|
138 |
+
}
|
139 |
+
|
140 |
+
/**
|
141 |
+
* Smart event locator, saves a database read if possible.
|
142 |
+
*/
|
143 |
+
function get_booking(){
|
144 |
+
global $EM_Booking;
|
145 |
+
if( is_object($this->booking) && get_class($this->booking)=='EM_Booking' && ($this->booking->id == $this->booking_id || (empty($this->id) && empty($this->booking_id))) ){
|
146 |
+
return $this->booking;
|
147 |
+
}elseif( is_object($EM_Booking) && $EM_Booking->id == $this->booking_id ){
|
148 |
+
$this->booking = $EM_Booking;
|
149 |
+
}else{
|
150 |
+
if(is_numeric($this->booking_id)){
|
151 |
+
$this->booking = new EM_Booking($this->booking_id);
|
152 |
+
}else{
|
153 |
+
$this->booking = new EM_Booking();
|
154 |
+
}
|
155 |
+
}
|
156 |
+
return apply_filters('em_ticket_booking_get_booking', $this->booking, $this);;
|
157 |
+
}
|
158 |
+
|
159 |
+
/**
|
160 |
+
* Gets the ticket object this booking belongs to, saves a reference in ticket property
|
161 |
+
* @return EM_Ticket
|
162 |
+
*/
|
163 |
+
function get_ticket(){
|
164 |
+
global $EM_Ticket;
|
165 |
+
if( is_object($this->ticket) && get_class($this->ticket)=='EM_Ticket' && $this->ticket->id == $this->ticket_id ){
|
166 |
+
return $this->ticket;
|
167 |
+
}elseif( is_object($EM_Ticket) && $EM_Ticket->id == $this->ticket_id ){
|
168 |
+
$this->ticket = $EM_Ticket;
|
169 |
+
}else{
|
170 |
+
$this->ticket = new EM_Ticket($this->ticket_id);
|
171 |
+
}
|
172 |
+
return $this->ticket;
|
173 |
+
}
|
174 |
+
|
175 |
+
/**
|
176 |
+
* I wonder what this does....
|
177 |
+
* @return boolean
|
178 |
+
*/
|
179 |
+
function delete(){
|
180 |
+
global $wpdb;
|
181 |
+
$sql = $wpdb->prepare("DELETE FROM ". EM_TICKETS_BOOKINGS_TABLE . " WHERE ticket_booking_id=%d", $this->id);
|
182 |
+
$result = $wpdb->query( $sql );
|
183 |
+
return apply_filters('em_ticket_booking_delete', ($result !== false ), $this);
|
184 |
+
}
|
185 |
+
|
186 |
+
|
187 |
+
/**
|
188 |
+
* Get the html options for quantities to go within a <select> container
|
189 |
+
* @return string
|
190 |
+
*/
|
191 |
+
function get_spaces_options($zero_value = true){
|
192 |
+
$available_spaces = $this->get_available_spaces();
|
193 |
+
if( $available_spaces >= $this->min || ( empty($this->min) && $available_spaces > 0) ) {
|
194 |
+
ob_start();
|
195 |
+
?>
|
196 |
+
<select name="em_tickets[<?php echo $this->id ?>][spaces]">
|
197 |
+
<?php
|
198 |
+
$min = ($this->min > 0) ? $this->min:1;
|
199 |
+
$max = ($this->max > 0) ? $this->max:get_option('dbem_bookings_form_max');
|
200 |
+
?>
|
201 |
+
<?php if($zero_value) : ?><option>0</option><?php endif; ?>
|
202 |
+
<?php for( $i=$min; $i<=$max; $i++ ): ?>
|
203 |
+
<option><?php echo $i ?></option>
|
204 |
+
<?php endfor; ?>
|
205 |
+
</select>
|
206 |
+
<?php
|
207 |
+
return ob_get_clean();
|
208 |
+
}else{
|
209 |
+
return false;
|
210 |
+
}
|
211 |
+
|
212 |
+
}
|
213 |
+
|
214 |
+
/**
|
215 |
+
* Can the user manage this event?
|
216 |
+
*/
|
217 |
+
function can_manage(){
|
218 |
+
return ( $this->get_booking()->can_manage() );
|
219 |
+
}
|
220 |
+
}
|
221 |
+
?>
|
classes/em-ticket.php
ADDED
@@ -0,0 +1,350 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
class EM_Ticket extends EM_Object{
|
3 |
+
//DB Fields
|
4 |
+
var $id;
|
5 |
+
var $event_id;
|
6 |
+
var $name;
|
7 |
+
var $description;
|
8 |
+
var $price;
|
9 |
+
var $start;
|
10 |
+
var $end;
|
11 |
+
var $min;
|
12 |
+
var $max;
|
13 |
+
var $spaces = 10;
|
14 |
+
var $fields = array(
|
15 |
+
'ticket_id' => array('name'=>'id','type'=>'%d'),
|
16 |
+
'event_id' => array('name'=>'event_id','type'=>'%d'),
|
17 |
+
'ticket_name' => array('name'=>'name','type'=>'%s'),
|
18 |
+
'ticket_description' => array('name'=>'description','type'=>'%s','null'=>1),
|
19 |
+
'ticket_price' => array('name'=>'price','type'=>'%f','null'=>1),
|
20 |
+
'ticket_start' => array('name'=>'start','type'=>'%s','null'=>1),
|
21 |
+
'ticket_end' => array('name'=>'end','type'=>'%s','null'=>1),
|
22 |
+
'ticket_min' => array('name'=>'min','type'=>'%s','null'=>1),
|
23 |
+
'ticket_max' => array('name'=>'max','type'=>'%s','null'=>1),
|
24 |
+
'ticket_spaces' => array('name'=>'spaces','type'=>'%s','null'=>1)
|
25 |
+
);
|
26 |
+
//Other Vars
|
27 |
+
/**
|
28 |
+
* @var EM_Event
|
29 |
+
*/
|
30 |
+
var $event;
|
31 |
+
/**
|
32 |
+
* Contains only bookings belonging to this ticket.
|
33 |
+
* @var EM_Booking
|
34 |
+
*/
|
35 |
+
var $bookings = array();
|
36 |
+
var $required_fields = array('ticket_name');
|
37 |
+
var $start_timestamp;
|
38 |
+
var $end_timestamp;
|
39 |
+
/**
|
40 |
+
* is this ticket limited by spaces allotted to this ticket? false if no limit (i.e. the events general limit of seats)
|
41 |
+
* @var unknown_type
|
42 |
+
*/
|
43 |
+
var $spaces_limit = true;
|
44 |
+
|
45 |
+
/**
|
46 |
+
* Creates ticket object and retreives ticket data (default is a blank ticket object). Accepts either array of ticket data (from db) or a ticket id.
|
47 |
+
* @param mixed $ticket_data
|
48 |
+
* @return null
|
49 |
+
*/
|
50 |
+
function EM_Ticket( $ticket_data = false ){
|
51 |
+
$this->name = __('Standard Ticket','dbem');
|
52 |
+
if( $ticket_data !== false ){
|
53 |
+
//Load ticket data
|
54 |
+
$ticket = array();
|
55 |
+
if( is_array($ticket_data) ){
|
56 |
+
$ticket = $ticket_data;
|
57 |
+
}elseif( is_numeric($ticket_data) ){
|
58 |
+
//Retreiving from the database
|
59 |
+
global $wpdb;
|
60 |
+
$sql = "SELECT * FROM ". EM_TICKETS_TABLE ." WHERE ticket_id ='$ticket_data'";
|
61 |
+
$ticket = $wpdb->get_row($sql, ARRAY_A);
|
62 |
+
//Ticket notes
|
63 |
+
$notes = $wpdb->get_results("SELECT * FROM ". EM_META_TABLE ." WHERE meta_key='ticket-note' AND object_id ='$ticket_data'", ARRAY_A);
|
64 |
+
foreach($notes as $note){
|
65 |
+
$this->notes[] = unserialize($note['meta_value']);
|
66 |
+
}
|
67 |
+
}
|
68 |
+
//Save into the object
|
69 |
+
$this->to_object($ticket);
|
70 |
+
$this->start_timestamp = (!empty($ticket['ticket_start'])) ? strtotime($ticket['ticket_start']):false;
|
71 |
+
$this->end_timestamp = (!empty($ticket['ticket_end'])) ? strtotime($ticket['ticket_end']):false;
|
72 |
+
}
|
73 |
+
do_action('em_ticket',$this, $ticket_data);
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Saves the ticket into the database, whether a new or existing ticket
|
78 |
+
* @return boolean
|
79 |
+
*/
|
80 |
+
function save(){
|
81 |
+
global $wpdb;
|
82 |
+
$table = EM_TICKETS_TABLE;
|
83 |
+
do_action('em_ticket_save_pre',$this);
|
84 |
+
//First the person
|
85 |
+
if($this->validate() && $this->can_manage() ){
|
86 |
+
//Now we save the ticket
|
87 |
+
$this->event_id = $this->get_event()->id; //event wouldn't exist before save, so refresh id
|
88 |
+
$data = $this->to_array(true); //add the true to remove the nulls
|
89 |
+
if($this->id != ''){
|
90 |
+
//since currently wpdb calls don't accept null, let's build the sql ourselves.
|
91 |
+
$set_array = array();
|
92 |
+
foreach( $this->fields as $field_name => $field ){
|
93 |
+
if( empty($this->$field['name']) && $field['null'] ){
|
94 |
+
$set_array[] = "{$field_name}=NULL";
|
95 |
+
}else{
|
96 |
+
$set_array[] = "{$field_name}='".$wpdb->escape($this->$field['name'])."'";
|
97 |
+
}
|
98 |
+
}
|
99 |
+
$sql = "UPDATE $table SET ".implode(', ', $set_array)." WHERE ticket_id={$this->id}";
|
100 |
+
$result = $wpdb->query($sql);
|
101 |
+
$this->feedback_message = __('Changes saved','dbem');
|
102 |
+
}else{
|
103 |
+
//TODO better error handling
|
104 |
+
$result = $wpdb->insert($table, $data, $this->get_types($data));
|
105 |
+
$this->id = $wpdb->insert_id;
|
106 |
+
$this->feedback_message = __('Ticket created','dbem');
|
107 |
+
}
|
108 |
+
if( $result === false ){
|
109 |
+
$this->feedback_message = __('There was a problem saving the ticket.', 'dbem');
|
110 |
+
$this->errors[] = __('There was a problem saving the ticket.', 'dbem');
|
111 |
+
}
|
112 |
+
return apply_filters('em_ticket_save', ( count($this->errors) == 0 ), $this);
|
113 |
+
}else{
|
114 |
+
$this->feedback_message = __('There was a problem saving the ticket.', 'dbem');
|
115 |
+
$this->errors[] = __('There was a problem saving the ticket.', 'dbem');
|
116 |
+
return apply_filters('em_ticket_save', false, $this);
|
117 |
+
}
|
118 |
+
return true;
|
119 |
+
}
|
120 |
+
|
121 |
+
/**
|
122 |
+
* Get posted data and save it into the object (not db)
|
123 |
+
* @return boolean
|
124 |
+
*/
|
125 |
+
function get_post(){
|
126 |
+
//We are getting the values via POST or GET
|
127 |
+
global $allowedposttags;
|
128 |
+
do_action('em_location_get_post_pre', $this);
|
129 |
+
$location = array();
|
130 |
+
$location['ticket_id'] = ( !empty($_POST['ticket_id']) ) ? $_POST['ticket_id']:'';
|
131 |
+
$location['event_id'] = ( !empty($_POST['event_id']) ) ? $_POST['event_id']:'';
|
132 |
+
$location['ticket_name'] = ( !empty($_POST['ticket_name']) ) ? wp_kses_data(stripslashes($_POST['ticket_name'])):'';
|
133 |
+
$location['ticket_description'] = ( !empty($_POST['ticket_description']) ) ? wp_kses(stripslashes($_POST['ticket_description'], $allowedposttags)):'';
|
134 |
+
$location['ticket_price'] = ( !empty($_POST['ticket_price']) ) ? $_POST['ticket_price']:'';
|
135 |
+
$location['ticket_start'] = ( !empty($_POST['ticket_start']) ) ? $_POST['ticket_start']:'';
|
136 |
+
$location['ticket_end'] = ( !empty($_POST['ticket_end']) ) ? $_POST['ticket_end']:'';
|
137 |
+
$this->start_timestamp = ( !empty($_POST['ticket_start']) ) ? strtotime($_POST['ticket_start']):'';
|
138 |
+
$this->end_timestamp = ( !empty($_POST['ticket_end']) ) ? strtotime($_POST['ticket_end']):'';
|
139 |
+
$location['ticket_min'] = ( !empty($_POST['ticket_min']) ) ? $_POST['ticket_min']:'';
|
140 |
+
$location['ticket_max'] = ( !empty($_POST['ticket_max']) ) ? $_POST['ticket_max']:'';
|
141 |
+
$location['ticket_spaces'] = ( !empty($_POST['ticket_spaces']) ) ? $_POST['ticket_spaces']:'';
|
142 |
+
$this->to_object( apply_filters('em_location_get_post', $location, $this) );
|
143 |
+
}
|
144 |
+
|
145 |
+
|
146 |
+
/**
|
147 |
+
* Validates the ticket for saving. Should be run during any form submission or saving operation.
|
148 |
+
* @return boolean
|
149 |
+
*/
|
150 |
+
function validate(){
|
151 |
+
$missing_fields = Array ();
|
152 |
+
foreach ( $this->required_fields as $field ) {
|
153 |
+
$true_field = $this->fields[$field]['name'];
|
154 |
+
if ( $this->$true_field == "") {
|
155 |
+
$missing_fields[] = $field;
|
156 |
+
}
|
157 |
+
}
|
158 |
+
if( !is_numeric($this->price) ){
|
159 |
+
$this->add_error(__('Please enter a valid ticket price e.g. 10.50 (no currency signs)','dbem'));
|
160 |
+
}
|
161 |
+
if ( count($missing_fields) > 0){
|
162 |
+
// TODO Create friendly equivelant names for missing fields notice in validation
|
163 |
+
$this->errors[] = __ ( 'Missing fields: ' ) . implode ( ", ", $missing_fields ) . ". ";
|
164 |
+
}
|
165 |
+
return apply_filters('em_event_validate', count($this->errors) == 0, $this );
|
166 |
+
}
|
167 |
+
|
168 |
+
function is_available(){
|
169 |
+
$timestamp = current_time('timestamp');
|
170 |
+
$available_spaces = $this->get_available_spaces();
|
171 |
+
$val = (empty($this->start) || $this->start_timestamp <= $timestamp);
|
172 |
+
$val2 = ($this->end_timestamp >= $timestamp || empty($this->end));
|
173 |
+
$val3 = $this->get_event()->end > current_time('timestamp');
|
174 |
+
|
175 |
+
if( (empty($this->start) || $this->start_timestamp <= $timestamp) && ($this->end_timestamp >= $timestamp || empty($this->end)) && $this->get_event()->end > current_time('timestamp') ){
|
176 |
+
//Time Constraints met, now quantities
|
177 |
+
if( $available_spaces > 0 && ($available_spaces >= $this->min || empty($this->min)) ){
|
178 |
+
return apply_filters('em_ticket_is_available',true,$this);
|
179 |
+
}
|
180 |
+
}
|
181 |
+
return apply_filters('em_ticket_is_available',false,$this);
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* Gets the total price for this ticket.
|
186 |
+
* @return float
|
187 |
+
*/
|
188 |
+
function get_price($format = false, $add_tax = 'x' ){
|
189 |
+
$price = $this->price;
|
190 |
+
if( is_numeric(get_option('dbem_bookings_tax')) && get_option('dbem_bookings_tax') > 0 ){
|
191 |
+
//tax could be added here
|
192 |
+
if( $add_tax === true || ($add_tax !== false && get_option('dbem_bookings_tax_auto_add')) ){
|
193 |
+
$price = $price * (1 + get_option('dbem_bookings_tax')/100);
|
194 |
+
}
|
195 |
+
}
|
196 |
+
if($format){
|
197 |
+
return apply_filters('em_ticket_get_price', em_get_currency_symbol().number_format($price,2),$this);
|
198 |
+
}
|
199 |
+
return apply_filters('em_ticket_get_price',$price,$this);
|
200 |
+
}
|
201 |
+
|
202 |
+
/**
|
203 |
+
* Get the total number of tickets (spaces) available, bearing in mind event-wide maxiumums and ticket priority settings.
|
204 |
+
* @return int
|
205 |
+
*/
|
206 |
+
function get_spaces(){
|
207 |
+
return apply_filters('em_ticket_get_spaces',$this->spaces,$this);
|
208 |
+
}
|
209 |
+
|
210 |
+
/**
|
211 |
+
* Returns the number of available spaces left in this ticket, bearing in mind event-wide restrictions, previous bookings, approvals and other tickets.
|
212 |
+
* @return int
|
213 |
+
*/
|
214 |
+
function get_available_spaces(){
|
215 |
+
$event_available_spaces = $this->get_event()->get_bookings()->get_available_spaces();
|
216 |
+
$ticket_available_spaces = $this->get_spaces() - $this->get_booked_spaces();
|
217 |
+
$return = ($ticket_available_spaces <= $event_available_spaces) ? $ticket_available_spaces:$event_available_spaces;
|
218 |
+
return apply_filters('em_ticket_get_available_spaces', $return, $this);
|
219 |
+
}
|
220 |
+
|
221 |
+
/**
|
222 |
+
* Returns the number of available spaces left in this ticket, bearing in mind event-wide restrictions, previous bookings, approvals and other tickets.
|
223 |
+
* @return int
|
224 |
+
*/
|
225 |
+
function get_booked_spaces($force_reload=false){
|
226 |
+
//get all bookings for this event
|
227 |
+
$spaces = 0;
|
228 |
+
if( is_object($this->bookings) && $force_reload ){
|
229 |
+
return $this->bookings;
|
230 |
+
}
|
231 |
+
foreach( $this->get_bookings()->get_bookings()->bookings as $EM_Booking ){ //get_bookings() is used twice so we get the confirmed (or all if confirmation disabled) bookings of this ticket's total bookings.
|
232 |
+
//foreach booking, get this ticket booking info if found
|
233 |
+
foreach($EM_Booking->get_tickets_bookings()->tickets_bookings as $EM_Ticket_Booking){
|
234 |
+
if( $EM_Ticket_Booking->ticket_id == $this->id ){
|
235 |
+
$spaces += $EM_Ticket_Booking->get_spaces();
|
236 |
+
}
|
237 |
+
}
|
238 |
+
}
|
239 |
+
return apply_filters('em_ticket_get_available_spaces', $spaces, $this);
|
240 |
+
}
|
241 |
+
|
242 |
+
/**
|
243 |
+
* Smart event locator, saves a database read if possible.
|
244 |
+
* @return EM_Event
|
245 |
+
*/
|
246 |
+
function get_event(){
|
247 |
+
global $EM_Event;
|
248 |
+
if( is_object($this->event) && get_class($this->event)=='EM_Event' && ($this->event->id == $this->event_id || empty($this->event_id)) ){
|
249 |
+
return $this->event;
|
250 |
+
}elseif( is_object($EM_Event) && $EM_Event->id == $this->event_id ){
|
251 |
+
$this->event = $EM_Event;
|
252 |
+
}else{
|
253 |
+
$this->event = new EM_Event($this->event_id);
|
254 |
+
}
|
255 |
+
return $this->event;
|
256 |
+
}
|
257 |
+
|
258 |
+
/**
|
259 |
+
* returns array of EM_Booking objects that have this ticket
|
260 |
+
* @return EM_Bookings
|
261 |
+
*/
|
262 |
+
function get_bookings(){
|
263 |
+
$bookings = array();
|
264 |
+
foreach( $this->get_event()->get_bookings()->bookings as $EM_Booking ){
|
265 |
+
foreach($EM_Booking->get_tickets_bookings()->tickets_bookings as $EM_Ticket_Booking){
|
266 |
+
if( $EM_Ticket_Booking->ticket_id == $this->id ){
|
267 |
+
$bookings[$EM_Booking->id] = $EM_Booking;
|
268 |
+
}
|
269 |
+
}
|
270 |
+
}
|
271 |
+
$this->bookings = new EM_Bookings($bookings);
|
272 |
+
return $this->bookings;
|
273 |
+
}
|
274 |
+
|
275 |
+
/**
|
276 |
+
* I wonder what this does....
|
277 |
+
* @return boolean
|
278 |
+
*/
|
279 |
+
function delete(){
|
280 |
+
global $wpdb;
|
281 |
+
$result = false;
|
282 |
+
if( $this->can_manage() ){
|
283 |
+
if( count($this->get_bookings()->bookings) == 0 ){
|
284 |
+
$sql = $wpdb->prepare("DELETE FROM ". EM_TICKETS_TABLE . " WHERE ticket_id=%d", $this->id);
|
285 |
+
$result = $wpdb->query( $sql );
|
286 |
+
}else{
|
287 |
+
$this->feedback_message = __('You cannot delete a ticket that has a booking on it.','dbem');
|
288 |
+
return false;
|
289 |
+
}
|
290 |
+
}
|
291 |
+
return ( $result !== false );
|
292 |
+
}
|
293 |
+
|
294 |
+
/**
|
295 |
+
* Get the html options for quantities to go within a <select> container
|
296 |
+
* @return string
|
297 |
+
*/
|
298 |
+
function get_spaces_options($zero_value = true, $default_value = 0){
|
299 |
+
$available_spaces = $this->get_available_spaces();
|
300 |
+
if( $this->is_available() ) {
|
301 |
+
ob_start();
|
302 |
+
?>
|
303 |
+
<select name="em_tickets[<?php echo $this->id ?>][spaces]" class="em-ticket-select">
|
304 |
+
<?php
|
305 |
+
$min = ($this->min > 0) ? $this->min:1;
|
306 |
+
$max = ($this->max > 0) ? $this->max:get_option('dbem_bookings_form_max');
|
307 |
+
?>
|
308 |
+
<?php if($zero_value) : ?><option>0</option><?php endif; ?>
|
309 |
+
<?php for( $i=$min; $i<=$available_spaces && $i<=$max; $i++ ): ?>
|
310 |
+
<option <?php if($i == $default_value){ echo 'selected="selected"'; $shown_default = true; } ?>><?php echo $i ?></option>
|
311 |
+
<?php endfor; ?>
|
312 |
+
<?php if(empty($shown_default) && $default_value > 0 ): ?><option selected="selected"><?php echo $default_value; ?></option><?php endif; ?>
|
313 |
+
</select>
|
314 |
+
<?php
|
315 |
+
return ob_get_clean();
|
316 |
+
}else{
|
317 |
+
return false;
|
318 |
+
}
|
319 |
+
|
320 |
+
}
|
321 |
+
|
322 |
+
/**
|
323 |
+
* Can the user manage this event?
|
324 |
+
*/
|
325 |
+
function can_manage(){
|
326 |
+
return $this->get_event()->can_manage('manage_bookings','manage_others_bookings');
|
327 |
+
}
|
328 |
+
|
329 |
+
/**
|
330 |
+
* Outputs properties with formatting
|
331 |
+
* @param string $property
|
332 |
+
* @return string
|
333 |
+
*/
|
334 |
+
function output_property($property){
|
335 |
+
switch($property){
|
336 |
+
case 'start':
|
337 |
+
$value = date_i18n( get_option('date_format'), $this->start_timestamp );
|
338 |
+
break;
|
339 |
+
case 'end':
|
340 |
+
$value = date_i18n( get_option('date_format'), $this->end_timestamp );
|
341 |
+
break;
|
342 |
+
break;
|
343 |
+
default:
|
344 |
+
$value = $this->$property;
|
345 |
+
break;
|
346 |
+
}
|
347 |
+
return apply_filters('em_ticket_output_property',$value,$this);
|
348 |
+
}
|
349 |
+
}
|
350 |
+
?>
|
classes/em-tickets-bookings.php
ADDED
@@ -0,0 +1,283 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Deals with the each ticket booked in a single booking
|
4 |
+
* @author marcus
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
class EM_Tickets_Bookings extends EM_Object implements Iterator{
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Array of EM_Ticket_Booking objects for a specific event
|
11 |
+
* @var array
|
12 |
+
*/
|
13 |
+
var $tickets_bookings = array();
|
14 |
+
/**
|
15 |
+
* This object belongs to this booking object
|
16 |
+
* @var EM_Booking
|
17 |
+
*/
|
18 |
+
var $booking;
|
19 |
+
/**
|
20 |
+
* This object belongs to this booking object
|
21 |
+
* @var EM_Ticket
|
22 |
+
*/
|
23 |
+
var $ticket;
|
24 |
+
var $spaces;
|
25 |
+
var $price;
|
26 |
+
|
27 |
+
/**
|
28 |
+
* Creates an EM_Tickets instance,
|
29 |
+
* @param EM_Event $event
|
30 |
+
* @return null
|
31 |
+
*/
|
32 |
+
function EM_Tickets_Bookings( $object = false ){
|
33 |
+
global $wpdb;
|
34 |
+
if($object){
|
35 |
+
if( is_object($object) && get_class($object) == "EM_Booking"){
|
36 |
+
$this->booking = $object;
|
37 |
+
$sql = "SELECT * FROM ". EM_TICKETS_BOOKINGS_TABLE ." bt LEFT JOIN ". EM_BOOKINGS_TABLE ." b ON bt.booking_id=b.booking_id WHERE b.booking_id ='{$this->booking->id}'";
|
38 |
+
}elseif( is_object($object) && get_class($object) == "EM_Ticket"){
|
39 |
+
$this->ticket = $object;
|
40 |
+
$sql = "SELECT * FROM ". EM_TICKETS_BOOKINGS_TABLE ." bt LEFT JOIN ". EM_TICKETS_TABLE ." t ON bt.ticket_id=t.ticket_id WHERE t.ticket_id ='{$this->ticket->id}'";
|
41 |
+
}elseif( is_numeric($object) ){
|
42 |
+
$sql = "SELECT * FROM ". EM_TICKETS_BOOKINGS_TABLE ." bt LEFT JOIN ". EM_BOOKINGS_TABLE ." t ON bt.booking_id=t.booking_id WHERE t.booking_id ='{$object}'";
|
43 |
+
}
|
44 |
+
$tickets_bookings = $wpdb->get_results($sql, ARRAY_A);
|
45 |
+
//Get tickets belonging to this tickets booking.
|
46 |
+
foreach ($tickets_bookings as $ticket_booking){
|
47 |
+
$EM_Ticket_Booking = new EM_Ticket_Booking($ticket_booking);
|
48 |
+
$EM_Ticket_Booking->booking = $this->booking; //save some calls
|
49 |
+
$this->tickets_bookings[] = $EM_Ticket_Booking;
|
50 |
+
}
|
51 |
+
}
|
52 |
+
do_action('em_tickets_bookings',$this, $object);
|
53 |
+
}
|
54 |
+
|
55 |
+
/**
|
56 |
+
* Saves the ticket bookings for this booking into the database, whether a new or existing booking
|
57 |
+
* @return boolean
|
58 |
+
*/
|
59 |
+
function save(){
|
60 |
+
global $wpdb;
|
61 |
+
do_action('em_tickets_bookings_save_pre',$this);
|
62 |
+
foreach( $this->tickets_bookings as $EM_Ticket_Booking ){
|
63 |
+
$result = $EM_Ticket_Booking->save();
|
64 |
+
if(!$result){
|
65 |
+
$this->errors = array_merge($this->errors, $EM_Ticket_Booking->get_errors());
|
66 |
+
}
|
67 |
+
}
|
68 |
+
if( count($this->errors) > 0 ){
|
69 |
+
$this->feedback_message = __('There was a problem saving the booking.', 'dbem');
|
70 |
+
$this->errors[] = __('There was a problem saving the booking.', 'dbem');
|
71 |
+
return apply_filters('em_tickets_bookings_save', false, $this);
|
72 |
+
}
|
73 |
+
return apply_filters('em_tickets_bookings_save', true, $this);
|
74 |
+
}
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Add a booking into this event object, checking that there's enough space for the event
|
78 |
+
* @param EM_Ticket_Booking $EM_Ticket_Booking
|
79 |
+
* @return boolean
|
80 |
+
*/
|
81 |
+
function add( $EM_Ticket_Booking, $override = false ){ //note, $override was a quick fix, not necessarily permanent, so don't depend on it just yet
|
82 |
+
global $wpdb,$EM_Mailer;
|
83 |
+
//Does the ticket we want to book have enough spaeces?
|
84 |
+
if ( $override || $EM_Ticket_Booking->get_ticket()->get_available_spaces() >= $EM_Ticket_Booking->get_spaces() ) {
|
85 |
+
$ticket_booking_key = $this->has_ticket($EM_Ticket_Booking->ticket_id);
|
86 |
+
if( $ticket_booking_key !== false && is_object($this->tickets_bookings[$ticket_booking_key]) ){
|
87 |
+
//previously booked ticket, so let's just replace it
|
88 |
+
$this->tickets_bookings[$ticket_booking_key]->spaces = $EM_Ticket_Booking->get_spaces();
|
89 |
+
$this->tickets_bookings[$ticket_booking_key]->get_price(true);
|
90 |
+
return apply_filters('em_tickets_bookings_add',true,$this);
|
91 |
+
}elseif( $EM_Ticket_Booking->get_spaces() > 0 ){
|
92 |
+
//new ticket in booking
|
93 |
+
$this->tickets_bookings[] = $EM_Ticket_Booking;
|
94 |
+
$this->get_spaces(true);
|
95 |
+
$this->get_price(true);
|
96 |
+
return apply_filters('em_tickets_bookings_add',true,$this);
|
97 |
+
}
|
98 |
+
} else {
|
99 |
+
$this->errors[] = __('Booking cannot be made, not enough spaces available!', 'dbem');
|
100 |
+
return apply_filters('em_tickets_bookings_add',false,$this);
|
101 |
+
}
|
102 |
+
return apply_filters('em_tickets_bookings_add',false,$this);
|
103 |
+
}
|
104 |
+
|
105 |
+
/**
|
106 |
+
* Checks if this set has a specific ticket booked, returning the key of the ticket in the EM_Tickets_Bookings->ticket_bookings array
|
107 |
+
* @param int $ticket_id
|
108 |
+
* @return mixed
|
109 |
+
*/
|
110 |
+
function has_ticket( $ticket_id ){
|
111 |
+
foreach ($this->tickets_bookings as $key => $EM_Ticket_Booking){
|
112 |
+
if( $EM_Ticket_Booking->ticket_id == $ticket_id ){
|
113 |
+
return apply_filters('em_tickets_has_ticket',$key,$this);
|
114 |
+
}
|
115 |
+
}
|
116 |
+
return apply_filters('em_tickets_has_ticket',false,$this);
|
117 |
+
}
|
118 |
+
|
119 |
+
/**
|
120 |
+
* Smart event locator, saves a database read if possible.
|
121 |
+
*/
|
122 |
+
function get_booking(){
|
123 |
+
global $EM_Booking;
|
124 |
+
$booking_id = $this->get_booking_id();
|
125 |
+
if( is_object($this->booking) && get_class($this->booking)=='EM_Booking' && $this->booking->id == $booking_id ){
|
126 |
+
return $this->booking;
|
127 |
+
}elseif( is_object($EM_Booking) && $EM_Booking->id == $booking_id ){
|
128 |
+
$this->booking = $EM_Booking;
|
129 |
+
}else{
|
130 |
+
if(is_numeric($booking_id)){
|
131 |
+
$this->booking = new EM_Booking($booking_id);
|
132 |
+
}else{
|
133 |
+
$this->booking = new EM_Booking();
|
134 |
+
}
|
135 |
+
}
|
136 |
+
return apply_filters('em_tickets_bookings_get_booking', $this->booking, $this);;
|
137 |
+
}
|
138 |
+
|
139 |
+
function get_booking_id(){
|
140 |
+
if( count($this->tickets_bookings) > 0 ){
|
141 |
+
foreach($this->tickets_bookings as $EM_Booking_Ticket){ break; } //get first array item
|
142 |
+
return apply_filters('em_tickets_bookings_get_booking_id', $EM_Booking_Ticket->id, $this);
|
143 |
+
}
|
144 |
+
return apply_filters('em_tickets_bookings_get_booking_id', false, $this);
|
145 |
+
}
|
146 |
+
|
147 |
+
/**
|
148 |
+
* Delete all ticket bookings
|
149 |
+
* @return boolean
|
150 |
+
*/
|
151 |
+
function delete(){
|
152 |
+
global $wpdb;
|
153 |
+
if( $this->get_booking()->can_manage() ){
|
154 |
+
$result = $wpdb->query("DELETE FROM ".EM_TICKETS_BOOKINGS_TABLE." WHERE booking_id='{$this->get_booking()->id}'");
|
155 |
+
//echo "<pre>";print_r($this->get_booking());echo "</pre>";
|
156 |
+
}else{
|
157 |
+
//FIXME ticket bookings
|
158 |
+
$ticket_ids = array();
|
159 |
+
foreach( $this->tickets_bookings as $EM_Ticket_Booking ){
|
160 |
+
if( $EM_Ticket_Booking->can_manage() ){
|
161 |
+
$tickets_bookings_ids[] = $EM_Ticket_Booking->id;
|
162 |
+
}else{
|
163 |
+
$this->errors[] = sprintf(__('You do not have the rights to manage this %s.','dbem'),__('Booking','dbem'));
|
164 |
+
}
|
165 |
+
}
|
166 |
+
if(count($ticket_ids) > 0){
|
167 |
+
$result = $wpdb->query("DELETE FROM ".EM_TICKETS_BOOKINGS_TABLE." WHERE ticket_booking_id IN (".implode(',',$ticket_ids).")");
|
168 |
+
}
|
169 |
+
}
|
170 |
+
return apply_filters('em_tickets_bookings_get_booking_id', ($result == true), $this);
|
171 |
+
}
|
172 |
+
|
173 |
+
/**
|
174 |
+
* Go through the tickets in this object and validate them
|
175 |
+
*/
|
176 |
+
function validate(){
|
177 |
+
$errors = array();
|
178 |
+
foreach($this->tickets_bookings as $EM_Ticket_Booking){
|
179 |
+
$errors[] = $EM_Ticket_Booking->validate();
|
180 |
+
}
|
181 |
+
return apply_filters('em_tickets_bookings_validate', !in_array(false, $errors), $this);
|
182 |
+
}
|
183 |
+
|
184 |
+
/**
|
185 |
+
* Get the total number of spaces booked in this booking. Seting $force_reset to true will recheck spaces, even if previously done so.
|
186 |
+
* @param unknown_type $force_refresh
|
187 |
+
* @return mixed
|
188 |
+
*/
|
189 |
+
function get_spaces( $force_refresh=false ){
|
190 |
+
if($force_refresh || $this->spaces == 0){
|
191 |
+
$spaces = 0;
|
192 |
+
foreach($this->tickets_bookings as $EM_Ticket_Booking){
|
193 |
+
$spaces += $EM_Ticket_Booking->get_spaces();
|
194 |
+
}
|
195 |
+
$this->spaces = $spaces;
|
196 |
+
}
|
197 |
+
return apply_filters('em_booking_get_spaces',$this->spaces,$this);
|
198 |
+
}
|
199 |
+
|
200 |
+
/**
|
201 |
+
* Gets the total price for this whole booking by adding up subtotals of booked tickets. Seting $force_reset to true will recheck spaces, even if previously done so.
|
202 |
+
* @param boolean $force_refresh
|
203 |
+
* @return float
|
204 |
+
*/
|
205 |
+
function get_price( $force_refresh=false, $format = false, $add_tax = 'x' ){
|
206 |
+
$price = 0;
|
207 |
+
if($force_refresh || $this->price == 0 || $add_tax !== 'x' || get_option('dbem_bookings_tax_auto_add')){
|
208 |
+
foreach($this->tickets_bookings as $EM_Ticket_Booking){
|
209 |
+
$price += $EM_Ticket_Booking->get_price($force_refresh, false, $add_tax);
|
210 |
+
}
|
211 |
+
$this->price = $price;
|
212 |
+
}
|
213 |
+
if($format){
|
214 |
+
return apply_filters('em_tickets_bookings_get_prices', em_get_currency_symbol().number_format($this->price,2),$this);
|
215 |
+
}
|
216 |
+
return apply_filters('em_tickets_bookings_get_prices',$this->price,$this);
|
217 |
+
}
|
218 |
+
|
219 |
+
/**
|
220 |
+
* Goes through each ticket and populates it with the bookings made
|
221 |
+
*/
|
222 |
+
function get_ticket_bookings(){
|
223 |
+
foreach( $this->tickets as $EM_Ticket ){
|
224 |
+
$EM_Ticket->get_bookings();
|
225 |
+
}
|
226 |
+
}
|
227 |
+
|
228 |
+
/* Overrides EM_Object method to apply a filter to result
|
229 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_conditions()
|
230 |
+
*/
|
231 |
+
function build_sql_conditions( $args = array() ){
|
232 |
+
$conditions = apply_filters( 'em_tickets_build_sql_conditions', parent::build_sql_conditions($args), $args );
|
233 |
+
if( is_numeric($args['status']) ){
|
234 |
+
$conditions['status'] = 'ticket_status='.$args['status'];
|
235 |
+
}
|
236 |
+
return apply_filters('em_tickets_bookings_build_sql_conditions', $conditions, $args);
|
237 |
+
}
|
238 |
+
|
239 |
+
/* Overrides EM_Object method to apply a filter to result
|
240 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_orderby()
|
241 |
+
*/
|
242 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
243 |
+
return apply_filters( 'em_tickets_bookings_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order')), $args, $accepted_fields, $default_order );
|
244 |
+
}
|
245 |
+
|
246 |
+
/*
|
247 |
+
* Adds custom Events search defaults
|
248 |
+
* @param array $array
|
249 |
+
* @return array
|
250 |
+
* @uses EM_Object#get_default_search()
|
251 |
+
*/
|
252 |
+
function get_default_search( $array = array() ){
|
253 |
+
$defaults = array(
|
254 |
+
'status' => false,
|
255 |
+
'person' => true //to add later, search by person's tickets...
|
256 |
+
);
|
257 |
+
$defaults['owner'] = !current_user_can('manage_others_bookings') ? get_current_user_id():false;
|
258 |
+
return apply_filters('em_tickets_bookings_get_default_search', parent::get_default_search($defaults,$array), $array, $defaults);
|
259 |
+
}
|
260 |
+
|
261 |
+
//Iterator Implementation
|
262 |
+
public function rewind(){
|
263 |
+
reset($this->tickets_bookings);
|
264 |
+
}
|
265 |
+
public function current(){
|
266 |
+
$var = current($this->tickets_bookings);
|
267 |
+
return $var;
|
268 |
+
}
|
269 |
+
public function key(){
|
270 |
+
$var = key($this->tickets_bookings);
|
271 |
+
return $var;
|
272 |
+
}
|
273 |
+
public function next(){
|
274 |
+
$var = next($this->tickets_bookings);
|
275 |
+
return $var;
|
276 |
+
}
|
277 |
+
public function valid(){
|
278 |
+
$key = key($this->tickets_bookings);
|
279 |
+
$var = ($key !== NULL && $key !== FALSE);
|
280 |
+
return $var;
|
281 |
+
}
|
282 |
+
}
|
283 |
+
?>
|
classes/em-tickets.php
ADDED
@@ -0,0 +1,245 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
<?php
|
2 |
+
/**
|
3 |
+
* Deals with the ticket info for an event
|
4 |
+
* @author marcus
|
5 |
+
*
|
6 |
+
*/
|
7 |
+
class EM_Tickets extends EM_Object implements Iterator{
|
8 |
+
|
9 |
+
/**
|
10 |
+
* Array of EM_Ticket objects for a specific event
|
11 |
+
* @var array
|
12 |
+
*/
|
13 |
+
var $tickets = array();
|
14 |
+
/**
|
15 |
+
* Event ID
|
16 |
+
* @var EM_Event
|
17 |
+
*/
|
18 |
+
var $event;
|
19 |
+
/**
|
20 |
+
* @var EM_Booking
|
21 |
+
*/
|
22 |
+
var $booking;
|
23 |
+
var $spaces;
|
24 |
+
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Creates an EM_Tickets instance,
|
28 |
+
* @param EM_Event $event
|
29 |
+
* @return null
|
30 |
+
*/
|
31 |
+
function EM_Tickets( $object = false ){
|
32 |
+
global $wpdb;
|
33 |
+
if( is_object($object) && get_class($object) == "EM_Event" ){ //Creates a blank tickets object if needed
|
34 |
+
$this->event = $object;
|
35 |
+
$sql = "SELECT * FROM ". EM_TICKETS_TABLE ." WHERE event_id ='{$this->event->id}' ORDER BY ".get_option('dbem_bookings_tickets_orderby');
|
36 |
+
$tickets = $wpdb->get_results($sql, ARRAY_A);
|
37 |
+
foreach ($tickets as $ticket){
|
38 |
+
$EM_Ticket = new EM_Ticket($ticket);
|
39 |
+
$EM_Ticket->event = $this->event;
|
40 |
+
$this->tickets[] = $EM_Ticket;
|
41 |
+
}
|
42 |
+
}elseif( is_object($object) && get_class($object) == "EM_Booking"){
|
43 |
+
$this->booking = $object;
|
44 |
+
$this->event = $this->booking->get_event();
|
45 |
+
$sql = "SELECT * FROM ". EM_TICKETS_TABLE ." WHERE event_id ='{$this->event->id}' ORDER BY ".get_option('dbem_bookings_tickets_orderby');
|
46 |
+
$tickets = $wpdb->get_results($sql, ARRAY_A);
|
47 |
+
foreach ($tickets as $ticket){
|
48 |
+
$EM_Ticket = new EM_Ticket($ticket);
|
49 |
+
$EM_Ticket->event = $this->event;
|
50 |
+
$this->tickets[] = $EM_Ticket;
|
51 |
+
}
|
52 |
+
}elseif( is_array($object) ){
|
53 |
+
if( is_object(current($object)) && get_class(current($object)) == 'EM_Ticket' ){
|
54 |
+
$this->tickets = $object;
|
55 |
+
}else{
|
56 |
+
foreach($object as $ticket){
|
57 |
+
$EM_Ticket = new EM_Ticket($ticket);
|
58 |
+
$EM_Ticket->event = $this->event;
|
59 |
+
$this->tickets[] = $EM_Ticket;
|
60 |
+
}
|
61 |
+
}
|
62 |
+
}
|
63 |
+
do_action('em_tickets', $this, $object);
|
64 |
+
}
|
65 |
+
|
66 |
+
/**
|
67 |
+
* @return EM_Event
|
68 |
+
*/
|
69 |
+
function get_event(){
|
70 |
+
return $this->event;
|
71 |
+
}
|
72 |
+
|
73 |
+
/**
|
74 |
+
* Get the first EM_Ticket object in this instance. Returns false if no tickets available.
|
75 |
+
* @return EM_Ticket
|
76 |
+
*/
|
77 |
+
function get_first(){
|
78 |
+
if( count($this->tickets) > 0 ){
|
79 |
+
foreach($this->tickets as $EM_Ticket){
|
80 |
+
return $EM_Ticket;
|
81 |
+
}
|
82 |
+
}else{
|
83 |
+
return false;
|
84 |
+
}
|
85 |
+
}
|
86 |
+
|
87 |
+
/**
|
88 |
+
* Delete tickets in thie object
|
89 |
+
* @return boolean
|
90 |
+
*/
|
91 |
+
function delete(){
|
92 |
+
global $wpdb;
|
93 |
+
//get all the ticket ids
|
94 |
+
$result = false;
|
95 |
+
$ticket_ids = array();
|
96 |
+
foreach( $this->tickets as $EM_Ticket ){
|
97 |
+
$ticket_ids[] = $EM_Ticket->id;
|
98 |
+
}
|
99 |
+
//check that tickets don't have bookings
|
100 |
+
if(count($ticket_ids) > 0){
|
101 |
+
$bookings = $wpdb->get_var("SELECT COUNT(*) FROM ". EM_TICKETS_BOOKINGS_TABLE." WHERE ticket_id IN (".implode(',',$ticket_ids).")");
|
102 |
+
if( $bookings > 0 ){
|
103 |
+
$result = false;
|
104 |
+
$this->add_error(__('You cannot delete tickets if there are any bookings associated with them. Please delete these bookings first.','dbem'));
|
105 |
+
}else{
|
106 |
+
$result = $wpdb->query("DELETE FROM ".EM_TICKETS_TABLE." WHERE event_id IN (".implode(',',$ticket_ids).")");
|
107 |
+
}
|
108 |
+
}
|
109 |
+
return ($result !== false);
|
110 |
+
}
|
111 |
+
|
112 |
+
/**
|
113 |
+
* Retrieve multiple ticket info via POST
|
114 |
+
* @return boolean
|
115 |
+
*/
|
116 |
+
function get_post(){
|
117 |
+
//Build Event Array
|
118 |
+
do_action('em_tickets_get_post_pre', $this);
|
119 |
+
$this->tickets = array(); //clean current tickets out
|
120 |
+
if( !empty($_POST['em_tickets']) && is_array($_POST['em_tickets']) ){
|
121 |
+
//get all ticket data and create objects
|
122 |
+
foreach($_POST['em_tickets'] as $ticket_data){
|
123 |
+
$EM_Ticket = new EM_Ticket($ticket_data);
|
124 |
+
$this->tickets[] = $EM_Ticket;
|
125 |
+
}
|
126 |
+
}elseif( is_object($this->event) ){
|
127 |
+
//we create a blank standard ticket
|
128 |
+
$EM_Ticket = new EM_Ticket(array(
|
129 |
+
'event_id' => $this->event->id,
|
130 |
+
'ticket_name' => __('Standard','dbem')
|
131 |
+
));
|
132 |
+
$this->tickets[] = $EM_Ticket;
|
133 |
+
}
|
134 |
+
return apply_filters('em_tickets_get_post', $this->validate(), $this);
|
135 |
+
}
|
136 |
+
|
137 |
+
/**
|
138 |
+
* Go through the tickets in this object and validate them
|
139 |
+
*/
|
140 |
+
function validate(){
|
141 |
+
foreach($this->tickets as $EM_Ticket){
|
142 |
+
if( !$EM_Ticket->validate() ){
|
143 |
+
$this->add_error($EM_Ticket->get_errors());
|
144 |
+
}
|
145 |
+
}
|
146 |
+
return apply_filters('em_tickets_validate', count($this->errors) == 0, $this);
|
147 |
+
}
|
148 |
+
|
149 |
+
/**
|
150 |
+
* Save tickets into DB
|
151 |
+
*/
|
152 |
+
function save(){
|
153 |
+
$errors = array();
|
154 |
+
foreach( $this->tickets as $EM_Ticket ){
|
155 |
+
$EM_Ticket->event = $this->event; //pass on saved event_data
|
156 |
+
$errors[] = $EM_Ticket->save();
|
157 |
+
}
|
158 |
+
return apply_filters('em_tickets_save', !in_array(false, $errors), $this);
|
159 |
+
}
|
160 |
+
|
161 |
+
/**
|
162 |
+
* Goes through each ticket and populates it with the bookings made
|
163 |
+
*/
|
164 |
+
function get_ticket_bookings(){
|
165 |
+
foreach( $this->tickets as $EM_Ticket ){
|
166 |
+
$EM_Ticket->get_bookings();
|
167 |
+
}
|
168 |
+
}
|
169 |
+
|
170 |
+
/**
|
171 |
+
* Get the total number of spaces this event has. This will show the lower value of event global spaces limit or total ticket spaces. Setting $force_refresh to true will recheck spaces, even if previously done so.
|
172 |
+
* @param boolean $force_refresh
|
173 |
+
* @return int
|
174 |
+
*/
|
175 |
+
function get_spaces( $force_refresh=false ){
|
176 |
+
$spaces = 0;
|
177 |
+
if($force_refresh || $this->spaces == 0){
|
178 |
+
foreach( $this->tickets as $EM_Ticket ){
|
179 |
+
/* @var $EM_Ticket EM_Ticket */
|
180 |
+
$spaces += $EM_Ticket->get_spaces();
|
181 |
+
}
|
182 |
+
$this->spaces = $spaces;
|
183 |
+
}
|
184 |
+
return apply_filters('em_booking_get_spaces',$this->spaces,$this);
|
185 |
+
}
|
186 |
+
|
187 |
+
/* Overrides EM_Object method to apply a filter to result
|
188 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_conditions()
|
189 |
+
*/
|
190 |
+
function build_sql_conditions( $args = array() ){
|
191 |
+
$conditions = apply_filters( 'em_tickets_build_sql_conditions', parent::build_sql_conditions($args), $args );
|
192 |
+
if( is_numeric($args['ticket_status']) ){
|
193 |
+
$conditions['ticket_status'] = 'ticket_status='.$args['status'];
|
194 |
+
}
|
195 |
+
return apply_filters('em_tickets_build_sql_conditions', $conditions, $args);
|
196 |
+
}
|
197 |
+
|
198 |
+
/* Overrides EM_Object method to apply a filter to result
|
199 |
+
* @see wp-content/plugins/events-manager/classes/EM_Object#build_sql_orderby()
|
200 |
+
*/
|
201 |
+
function build_sql_orderby( $args, $accepted_fields, $default_order = 'ASC' ){
|
202 |
+
return apply_filters( 'em_tickets_build_sql_orderby', parent::build_sql_orderby($args, $accepted_fields, get_option('dbem_events_default_order')), $args, $accepted_fields, $default_order );
|
203 |
+
}
|
204 |
+
|
205 |
+
/*
|
206 |
+
* Adds custom Events search defaults
|
207 |
+
* @param array $array
|
208 |
+
* @return array
|
209 |
+
* @uses EM_Object#get_default_search()
|
210 |
+
*/
|
211 |
+
function get_default_search( $array = array() ){
|
212 |
+
$defaults = array(
|
213 |
+
'ticket_status' => false,
|
214 |
+
'person' => true //to add later, search by person's tickets...
|
215 |
+
);
|
216 |
+
if( is_admin() ){
|
217 |
+
//figure out default owning permissions
|
218 |
+
$defaults['owner'] = !current_user_can('manage_others_bookings') ? get_current_user_id():false;
|
219 |
+
}
|
220 |
+
return apply_filters('em_tickets_get_default_search', parent::get_default_search($defaults,$array), $array, $defaults);
|
221 |
+
}
|
222 |
+
|
223 |
+
//Iterator Implementation
|
224 |
+
public function rewind(){
|
225 |
+
reset($this->tickets);
|
226 |
+
}
|
227 |
+
public function current(){
|
228 |
+
$var = current($this->tickets);
|
229 |
+
return $var;
|
230 |
+
}
|
231 |
+
public function key(){
|
232 |
+
$var = key($this->tickets);
|
233 |
+
return $var;
|
234 |
+
}
|
235 |
+
public function next(){
|
236 |
+
$var = next($this->tickets);
|
237 |
+
return $var;
|
238 |
+
}
|
239 |
+
public function valid(){
|
240 |
+
$key = key($this->tickets);
|
241 |
+
$var = ($key !== NULL && $key !== FALSE);
|
242 |
+
return $var;
|
243 |
+
}
|
244 |
+
}
|
245 |
+
?>
|
classes/phpmailer/class.phpmailer.php
CHANGED
@@ -1,1506 +1,1506 @@
|
|
1 |
-
<?php
|
2 |
-
////////////////////////////////////////////////////
|
3 |
-
// PHPMailer - PHP email class
|
4 |
-
//
|
5 |
-
// Class for sending email using either
|
6 |
-
// sendmail, PHP mail(), or SMTP. Methods are
|
7 |
-
// based upon the standard AspEmail(tm) classes.
|
8 |
-
//
|
9 |
-
// Copyright (C) 2001 - 2003 Brent R. Matzelle
|
10 |
-
//
|
11 |
-
// License: LGPL, see LICENSE
|
12 |
-
////////////////////////////////////////////////////
|
13 |
-
|
14 |
-
/**
|
15 |
-
* PHPMailer - PHP email transport class
|
16 |
-
* @package PHPMailer
|
17 |
-
* @author Brent R. Matzelle
|
18 |
-
* @copyright 2001 - 2003 Brent R. Matzelle
|
19 |
-
*/
|
20 |
-
class EM_PHPMailer
|
21 |
-
{
|
22 |
-
/////////////////////////////////////////////////
|
23 |
-
// PUBLIC VARIABLES
|
24 |
-
/////////////////////////////////////////////////
|
25 |
-
|
26 |
-
/**
|
27 |
-
* Email priority (1 = High, 3 = Normal, 5 = low).
|
28 |
-
* @var int
|
29 |
-
*/
|
30 |
-
var $Priority = 3;
|
31 |
-
|
32 |
-
/**
|
33 |
-
* Sets the CharSet of the message.
|
34 |
-
* @var string
|
35 |
-
*/
|
36 |
-
var $CharSet = "iso-8859-1";
|
37 |
-
|
38 |
-
/**
|
39 |
-
* Sets the Content-type of the message.
|
40 |
-
* @var string
|
41 |
-
*/
|
42 |
-
var $ContentType = "text/plain";
|
43 |
-
|
44 |
-
/**
|
45 |
-
* Sets the Encoding of the message. Options for this are "8bit",
|
46 |
-
* "7bit", "binary", "base64", and "quoted-printable".
|
47 |
-
* @var string
|
48 |
-
*/
|
49 |
-
var $Encoding = "8bit";
|
50 |
-
|
51 |
-
/**
|
52 |
-
* Holds the most recent mailer error message.
|
53 |
-
* @var string
|
54 |
-
*/
|
55 |
-
var $ErrorInfo = "";
|
56 |
-
|
57 |
-
/**
|
58 |
-
* Sets the From email address for the message.
|
59 |
-
* @var string
|
60 |
-
*/
|
61 |
-
var $From = "root@localhost";
|
62 |
-
|
63 |
-
/**
|
64 |
-
* Sets the From name of the message.
|
65 |
-
* @var string
|
66 |
-
*/
|
67 |
-
var $FromName = "Root User";
|
68 |
-
|
69 |
-
/**
|
70 |
-
* Sets the Sender email (Return-Path) of the message. If not empty,
|
71 |
-
* will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
|
72 |
-
* @var string
|
73 |
-
*/
|
74 |
-
var $Sender = "";
|
75 |
-
|
76 |
-
/**
|
77 |
-
* Sets the Subject of the message.
|
78 |
-
* @var string
|
79 |
-
*/
|
80 |
-
var $Subject = "";
|
81 |
-
|
82 |
-
/**
|
83 |
-
* Sets the Body of the message. This can be either an HTML or text body.
|
84 |
-
* If HTML then run IsHTML(true).
|
85 |
-
* @var string
|
86 |
-
*/
|
87 |
-
var $Body = "";
|
88 |
-
|
89 |
-
/**
|
90 |
-
* Sets the text-only body of the message. This automatically sets the
|
91 |
-
* email to multipart/alternative. This body can be read by mail
|
92 |
-
* clients that do not have HTML email capability such as mutt. Clients
|
93 |
-
* that can read HTML will view the normal Body.
|
94 |
-
* @var string
|
95 |
-
*/
|
96 |
-
var $AltBody = "";
|
97 |
-
|
98 |
-
/**
|
99 |
-
* Sets word wrapping on the body of the message to a given number of
|
100 |
-
* characters.
|
101 |
-
* @var int
|
102 |
-
*/
|
103 |
-
var $WordWrap = 0;
|
104 |
-
|
105 |
-
/**
|
106 |
-
* Method to send mail: ("mail", "sendmail", or "smtp").
|
107 |
-
* @var string
|
108 |
-
*/
|
109 |
-
var $Mailer = "mail";
|
110 |
-
|
111 |
-
/**
|
112 |
-
* Sets the path of the sendmail program.
|
113 |
-
* @var string
|
114 |
-
*/
|
115 |
-
var $Sendmail = "/usr/sbin/sendmail";
|
116 |
-
|
117 |
-
/**
|
118 |
-
* Path to PHPMailer plugins. This is now only useful if the SMTP class
|
119 |
-
* is in a different directory than the PHP include path.
|
120 |
-
* @var string
|
121 |
-
*/
|
122 |
-
var $PluginDir = "";
|
123 |
-
|
124 |
-
/**
|
125 |
-
* Holds PHPMailer version.
|
126 |
-
* @var string
|
127 |
-
*/
|
128 |
-
var $Version = "1.73";
|
129 |
-
|
130 |
-
/**
|
131 |
-
* Sets the email address that a reading confirmation will be sent.
|
132 |
-
* @var string
|
133 |
-
*/
|
134 |
-
var $ConfirmReadingTo = "";
|
135 |
-
|
136 |
-
/**
|
137 |
-
* Sets the hostname to use in Message-Id and Received headers
|
138 |
-
* and as default HELO string. If empty, the value returned
|
139 |
-
* by SERVER_NAME is used or 'localhost.localdomain'.
|
140 |
-
* @var string
|
141 |
-
*/
|
142 |
-
var $Hostname = "";
|
143 |
-
|
144 |
-
/////////////////////////////////////////////////
|
145 |
-
// SMTP VARIABLES
|
146 |
-
/////////////////////////////////////////////////
|
147 |
-
|
148 |
-
/**
|
149 |
-
* Sets the SMTP hosts. All hosts must be separated by a
|
150 |
-
* semicolon. You can also specify a different port
|
151 |
-
* for each host by using this format: [hostname:port]
|
152 |
-
* (e.g. "smtp1.example.com:25;smtp2.example.com").
|
153 |
-
* Hosts will be tried in order.
|
154 |
-
* @var string
|
155 |
-
*/
|
156 |
-
var $Host = "localhost";
|
157 |
-
|
158 |
-
/**
|
159 |
-
* Sets the default SMTP server port.
|
160 |
-
* @var int
|
161 |
-
*/
|
162 |
-
var $Port = 25;
|
163 |
-
|
164 |
-
/**
|
165 |
-
* Sets the SMTP HELO of the message (Default is $Hostname).
|
166 |
-
* @var string
|
167 |
-
*/
|
168 |
-
var $Helo = "";
|
169 |
-
|
170 |
-
/**
|
171 |
-
* Sets SMTP authentication. Utilizes the Username and Password variables.
|
172 |
-
* @var bool
|
173 |
-
*/
|
174 |
-
var $SMTPAuth = false;
|
175 |
-
|
176 |
-
/**
|
177 |
-
* Sets SMTP username.
|
178 |
-
* @var string
|
179 |
-
*/
|
180 |
-
var $Username = "";
|
181 |
-
|
182 |
-
/**
|
183 |
-
* Sets SMTP password.
|
184 |
-
* @var string
|
185 |
-
*/
|
186 |
-
var $Password = "";
|
187 |
-
|
188 |
-
/**
|
189 |
-
* Sets the SMTP server timeout in seconds. This function will not
|
190 |
-
* work with the win32 version.
|
191 |
-
* @var int
|
192 |
-
*/
|
193 |
-
var $Timeout = 10;
|
194 |
-
|
195 |
-
/**
|
196 |
-
* Sets SMTP class debugging on or off.
|
197 |
-
* @var bool
|
198 |
-
*/
|
199 |
-
var $SMTPDebug = false;
|
200 |
-
|
201 |
-
/**
|
202 |
-
* Prevents the SMTP connection from being closed after each mail
|
203 |
-
* sending. If this is set to true then to close the connection
|
204 |
-
* requires an explicit call to SmtpClose().
|
205 |
-
* @var bool
|
206 |
-
*/
|
207 |
-
var $SMTPKeepAlive = false;
|
208 |
-
|
209 |
-
/**#@+
|
210 |
-
* @access private
|
211 |
-
*/
|
212 |
-
var $smtp = NULL;
|
213 |
-
var $to = array();
|
214 |
-
var $cc = array();
|
215 |
-
var $bcc = array();
|
216 |
-
var $ReplyTo = array();
|
217 |
-
var $attachment = array();
|
218 |
-
var $CustomHeader = array();
|
219 |
-
var $message_type = "";
|
220 |
-
var $boundary = array();
|
221 |
-
var $language = array();
|
222 |
-
var $error_count = 0;
|
223 |
-
var $LE = "\n";
|
224 |
-
/**#@-*/
|
225 |
-
|
226 |
-
/////////////////////////////////////////////////
|
227 |
-
// VARIABLE METHODS
|
228 |
-
/////////////////////////////////////////////////
|
229 |
-
|
230 |
-
/**
|
231 |
-
* Sets message type to HTML.
|
232 |
-
* @param bool $bool
|
233 |
-
* @return void
|
234 |
-
*/
|
235 |
-
function IsHTML($bool) {
|
236 |
-
if($bool == true)
|
237 |
-
$this->ContentType = "text/html";
|
238 |
-
else
|
239 |
-
$this->ContentType = "text/plain";
|
240 |
-
}
|
241 |
-
|
242 |
-
/**
|
243 |
-
* Sets Mailer to send message using SMTP.
|
244 |
-
* @return void
|
245 |
-
*/
|
246 |
-
function IsSMTP() {
|
247 |
-
$this->Mailer = "smtp";
|
248 |
-
}
|
249 |
-
|
250 |
-
/**
|
251 |
-
* Sets Mailer to send message using PHP mail() function.
|
252 |
-
* @return void
|
253 |
-
*/
|
254 |
-
function IsMail() {
|
255 |
-
$this->Mailer = "mail";
|
256 |
-
}
|
257 |
-
|
258 |
-
/**
|
259 |
-
* Sets Mailer to send message using the $Sendmail program.
|
260 |
-
* @return void
|
261 |
-
*/
|
262 |
-
function IsSendmail() {
|
263 |
-
$this->Mailer = "sendmail";
|
264 |
-
}
|
265 |
-
|
266 |
-
/**
|
267 |
-
* Sets Mailer to send message using the qmail MTA.
|
268 |
-
* @return void
|
269 |
-
*/
|
270 |
-
function IsQmail() {
|
271 |
-
$this->Sendmail = "/var/qmail/bin/sendmail";
|
272 |
-
$this->Mailer = "sendmail";
|
273 |
-
}
|
274 |
-
|
275 |
-
|
276 |
-
/////////////////////////////////////////////////
|
277 |
-
// RECIPIENT METHODS
|
278 |
-
/////////////////////////////////////////////////
|
279 |
-
|
280 |
-
/**
|
281 |
-
* Adds a "To" address.
|
282 |
-
* @param string $address
|
283 |
-
* @param string $name
|
284 |
-
* @return void
|
285 |
-
*/
|
286 |
-
function AddAddress($address, $name = "") {
|
287 |
-
$cur = count($this->to);
|
288 |
-
$this->to[$cur][0] = trim($address);
|
289 |
-
$this->to[$cur][1] = $name;
|
290 |
-
}
|
291 |
-
|
292 |
-
/**
|
293 |
-
* Adds a "Cc" address. Note: this function works
|
294 |
-
* with the SMTP mailer on win32, not with the "mail"
|
295 |
-
* mailer.
|
296 |
-
* @param string $address
|
297 |
-
* @param string $name
|
298 |
-
* @return void
|
299 |
-
*/
|
300 |
-
function AddCC($address, $name = "") {
|
301 |
-
$cur = count($this->cc);
|
302 |
-
$this->cc[$cur][0] = trim($address);
|
303 |
-
$this->cc[$cur][1] = $name;
|
304 |
-
}
|
305 |
-
|
306 |
-
/**
|
307 |
-
* Adds a "Bcc" address. Note: this function works
|
308 |
-
* with the SMTP mailer on win32, not with the "mail"
|
309 |
-
* mailer.
|
310 |
-
* @param string $address
|
311 |
-
* @param string $name
|
312 |
-
* @return void
|
313 |
-
*/
|
314 |
-
function AddBCC($address, $name = "") {
|
315 |
-
$cur = count($this->bcc);
|
316 |
-
$this->bcc[$cur][0] = trim($address);
|
317 |
-
$this->bcc[$cur][1] = $name;
|
318 |
-
}
|
319 |
-
|
320 |
-
/**
|
321 |
-
* Adds a "Reply-to" address.
|
322 |
-
* @param string $address
|
323 |
-
* @param string $name
|
324 |
-
* @return void
|
325 |
-
*/
|
326 |
-
function AddReplyTo($address, $name = "") {
|
327 |
-
$cur = count($this->ReplyTo);
|
328 |
-
$this->ReplyTo[$cur][0] = trim($address);
|
329 |
-
$this->ReplyTo[$cur][1] = $name;
|
330 |
-
}
|
331 |
-
|
332 |
-
|
333 |
-
/////////////////////////////////////////////////
|
334 |
-
// MAIL SENDING METHODS
|
335 |
-
/////////////////////////////////////////////////
|
336 |
-
|
337 |
-
/**
|
338 |
-
* Creates message and assigns Mailer. If the message is
|
339 |
-
* not sent successfully then it returns false. Use the ErrorInfo
|
340 |
-
* variable to view description of the error.
|
341 |
-
* @return bool
|
342 |
-
*/
|
343 |
-
function Send() {
|
344 |
-
$header = "";
|
345 |
-
$body = "";
|
346 |
-
$result = true;
|
347 |
-
|
348 |
-
if((count($this->to) + count($this->cc) + count($this->bcc)) < 1)
|
349 |
-
{
|
350 |
-
$this->SetError($this->Lang("provide_address"));
|
351 |
-
return false;
|
352 |
-
}
|
353 |
-
|
354 |
-
// Set whether the message is multipart/alternative
|
355 |
-
if(!empty($this->AltBody))
|
356 |
-
$this->ContentType = "multipart/alternative";
|
357 |
-
|
358 |
-
$this->error_count = 0; // reset errors
|
359 |
-
$this->SetMessageType();
|
360 |
-
$header .= $this->CreateHeader();
|
361 |
-
$body = $this->CreateBody();
|
362 |
-
|
363 |
-
if($body == "") { return false; }
|
364 |
-
|
365 |
-
// Choose the mailer
|
366 |
-
switch($this->Mailer)
|
367 |
-
{
|
368 |
-
case "sendmail":
|
369 |
-
$result = $this->SendmailSend($header, $body);
|
370 |
-
break;
|
371 |
-
case "mail":
|
372 |
-
$result = $this->MailSend($header, $body);
|
373 |
-
break;
|
374 |
-
case "smtp":
|
375 |
-
$result = $this->SmtpSend($header, $body);
|
376 |
-
break;
|
377 |
-
default:
|
378 |
-
$this->SetError($this->Mailer . $this->Lang("mailer_not_supported"));
|
379 |
-
$result = false;
|
380 |
-
break;
|
381 |
-
}
|
382 |
-
|
383 |
-
return $result;
|
384 |
-
}
|
385 |
-
|
386 |
-
/**
|
387 |
-
* Sends mail using the $Sendmail program.
|
388 |
-
* @access private
|
389 |
-
* @return bool
|
390 |
-
*/
|
391 |
-
function SendmailSend($header, $body) {
|
392 |
-
if ($this->Sender != "")
|
393 |
-
$sendmail = sprintf("%s -oi -f %s -t", $this->Sendmail, $this->Sender);
|
394 |
-
else
|
395 |
-
$sendmail = sprintf("%s -oi -t", $this->Sendmail);
|
396 |
-
|
397 |
-
if(!@$mail = popen($sendmail, "w"))
|
398 |
-
{
|
399 |
-
$this->SetError($this->Lang("execute") . $this->Sendmail);
|
400 |
-
return false;
|
401 |
-
}
|
402 |
-
|
403 |
-
fputs($mail, $header);
|
404 |
-
fputs($mail, $body);
|
405 |
-
|
406 |
-
$result = pclose($mail) >> 8 & 0xFF;
|
407 |
-
if($result != 0)
|
408 |
-
{
|
409 |
-
$this->SetError($this->Lang("execute") . $this->Sendmail);
|
410 |
-
return false;
|
411 |
-
}
|
412 |
-
|
413 |
-
return true;
|
414 |
-
}
|
415 |
-
|
416 |
-
/**
|
417 |
-
* Sends mail using the PHP mail() function.
|
418 |
-
* @access private
|
419 |
-
* @return bool
|
420 |
-
*/
|
421 |
-
function MailSend($header, $body) {
|
422 |
-
$to = "";
|
423 |
-
for($i = 0; $i < count($this->to); $i++)
|
424 |
-
{
|
425 |
-
if($i != 0) { $to .= ", "; }
|
426 |
-
$to .= $this->to[$i][0];
|
427 |
-
}
|
428 |
-
|
429 |
-
if ($this->Sender != "" && strlen(ini_get("safe_mode"))< 1)
|
430 |
-
{
|
431 |
-
$old_from = ini_get("sendmail_from");
|
432 |
-
ini_set("sendmail_from", $this->Sender);
|
433 |
-
$params = sprintf("-oi -f %s", $this->Sender);
|
434 |
-
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body,
|
435 |
-
$header, $params);
|
436 |
-
}
|
437 |
-
else
|
438 |
-
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body, $header);
|
439 |
-
|
440 |
-
if (isset($old_from))
|
441 |
-
ini_set("sendmail_from", $old_from);
|
442 |
-
|
443 |
-
if(!$rt)
|
444 |
-
{
|
445 |
-
$this->SetError($this->Lang("instantiate"));
|
446 |
-
return false;
|
447 |
-
}
|
448 |
-
|
449 |
-
return true;
|
450 |
-
}
|
451 |
-
|
452 |
-
/**
|
453 |
-
* Sends mail via SMTP using PhpSMTP (Author:
|
454 |
-
* Chris Ryan). Returns bool. Returns false if there is a
|
455 |
-
* bad MAIL FROM, RCPT, or DATA input.
|
456 |
-
* @access private
|
457 |
-
* @return bool
|
458 |
-
*/
|
459 |
-
function SmtpSend($header, $body) {
|
460 |
-
include_once($this->PluginDir . "class.smtp.php");
|
461 |
-
$error = "";
|
462 |
-
$bad_rcpt = array();
|
463 |
-
|
464 |
-
if(!$this->SmtpConnect())
|
465 |
-
return false;
|
466 |
-
|
467 |
-
$smtp_from = ($this->Sender == "") ? $this->From : $this->Sender;
|
468 |
-
if(!$this->smtp->Mail($smtp_from))
|
469 |
-
{
|
470 |
-
$error = $this->Lang("from_failed") . $smtp_from;
|
471 |
-
$this->SetError($error);
|
472 |
-
$this->smtp->Reset();
|
473 |
-
return false;
|
474 |
-
}
|
475 |
-
|
476 |
-
// Attempt to send attach all recipients
|
477 |
-
for($i = 0; $i < count($this->to); $i++)
|
478 |
-
{
|
479 |
-
if(!$this->smtp->Recipient($this->to[$i][0]))
|
480 |
-
$bad_rcpt[] = $this->to[$i][0];
|
481 |
-
}
|
482 |
-
for($i = 0; $i < count($this->cc); $i++)
|
483 |
-
{
|
484 |
-
if(!$this->smtp->Recipient($this->cc[$i][0]))
|
485 |
-
$bad_rcpt[] = $this->cc[$i][0];
|
486 |
-
}
|
487 |
-
for($i = 0; $i < count($this->bcc); $i++)
|
488 |
-
{
|
489 |
-
if(!$this->smtp->Recipient($this->bcc[$i][0]))
|
490 |
-
$bad_rcpt[] = $this->bcc[$i][0];
|
491 |
-
}
|
492 |
-
|
493 |
-
if(count($bad_rcpt) > 0) // Create error message
|
494 |
-
{
|
495 |
-
for($i = 0; $i < count($bad_rcpt); $i++)
|
496 |
-
{
|
497 |
-
if($i != 0) { $error .= ", "; }
|
498 |
-
$error .= $bad_rcpt[$i];
|
499 |
-
}
|
500 |
-
$error = $this->Lang("recipients_failed") . $error;
|
501 |
-
$this->SetError($error);
|
502 |
-
$this->smtp->Reset();
|
503 |
-
return false;
|
504 |
-
}
|
505 |
-
|
506 |
-
if(!$this->smtp->Data($header . $body))
|
507 |
-
{
|
508 |
-
$this->SetError($this->Lang("data_not_accepted"));
|
509 |
-
$this->smtp->Reset();
|
510 |
-
return false;
|
511 |
-
}
|
512 |
-
if($this->SMTPKeepAlive == true)
|
513 |
-
$this->smtp->Reset();
|
514 |
-
else
|
515 |
-
$this->SmtpClose();
|
516 |
-
|
517 |
-
return true;
|
518 |
-
}
|
519 |
-
|
520 |
-
/**
|
521 |
-
* Initiates a connection to an SMTP server. Returns false if the
|
522 |
-
* operation failed.
|
523 |
-
* @access private
|
524 |
-
* @return bool
|
525 |
-
*/
|
526 |
-
function SmtpConnect() {
|
527 |
-
if($this->smtp == NULL) { $this->smtp = new EM_SMTP(); }
|
528 |
-
|
529 |
-
$this->smtp->do_debug = $this->SMTPDebug;
|
530 |
-
$hosts = explode(";", $this->Host);
|
531 |
-
$index = 0;
|
532 |
-
$connection = ($this->smtp->Connected());
|
533 |
-
|
534 |
-
// Retry while there is no connection
|
535 |
-
while($index < count($hosts) && $connection == false)
|
536 |
-
{
|
537 |
-
if(strstr($hosts[$index], ":"))
|
538 |
-
{
|
539 |
-
$hostA = explode(':', $hosts[$index]);
|
540 |
-
if (is_numeric(end($hostA)))
|
541 |
-
$port = array_pop($hostA);
|
542 |
-
else
|
543 |
-
$port = $this->Port;
|
544 |
-
$host = implode(':', $hostA);
|
545 |
-
}
|
546 |
-
else
|
547 |
-
{
|
548 |
-
$host = $hosts[$index];
|
549 |
-
$port = $this->Port;
|
550 |
-
}
|
551 |
-
|
552 |
-
if($this->smtp->Connect($host, $port, $this->Timeout))
|
553 |
-
{
|
554 |
-
if ($this->Helo != '')
|
555 |
-
$this->smtp->Hello($this->Helo);
|
556 |
-
else
|
557 |
-
$this->smtp->Hello($this->ServerHostname());
|
558 |
-
|
559 |
-
if($this->SMTPAuth)
|
560 |
-
{
|
561 |
-
if(!$this->smtp->Authenticate($this->Username,
|
562 |
-
$this->Password))
|
563 |
-
{
|
564 |
-
$this->SetError($this->Lang("authenticate"));
|
565 |
-
$this->smtp->Reset();
|
566 |
-
$connection = false;
|
567 |
-
}
|
568 |
-
}
|
569 |
-
$connection = true;
|
570 |
-
}
|
571 |
-
$index++;
|
572 |
-
}
|
573 |
-
if(!$connection)
|
574 |
-
$this->SetError($this->Lang("connect_host"));
|
575 |
-
|
576 |
-
return $connection;
|
577 |
-
}
|
578 |
-
|
579 |
-
/**
|
580 |
-
* Closes the active SMTP session if one exists.
|
581 |
-
* @return void
|
582 |
-
*/
|
583 |
-
function SmtpClose() {
|
584 |
-
if($this->smtp != NULL)
|
585 |
-
{
|
586 |
-
if($this->smtp->Connected())
|
587 |
-
{
|
588 |
-
$this->smtp->Quit();
|
589 |
-
$this->smtp->Close();
|
590 |
-
}
|
591 |
-
}
|
592 |
-
}
|
593 |
-
|
594 |
-
/**
|
595 |
-
* Sets the language for all class error messages. Returns false
|
596 |
-
* if it cannot load the language file. The default language type
|
597 |
-
* is English.
|
598 |
-
* @param string $lang_type Type of language (e.g. Portuguese: "br")
|
599 |
-
* @param string $lang_path Path to the language file directory
|
600 |
-
* @access public
|
601 |
-
* @return bool
|
602 |
-
*/
|
603 |
-
function SetLanguage($lang_type, $lang_path = "language/") {
|
604 |
-
if(file_exists($lang_path.'phpmailer.lang-'.$lang_type.'.php'))
|
605 |
-
include($lang_path.'phpmailer.lang-'.$lang_type.'.php');
|
606 |
-
else if(file_exists($lang_path.'phpmailer.lang-en.php'))
|
607 |
-
include($lang_path.'phpmailer.lang-en.php');
|
608 |
-
else
|
609 |
-
{
|
610 |
-
$this->SetError("Could not load language file");
|
611 |
-
return false;
|
612 |
-
}
|
613 |
-
$this->language = $PHPMAILER_LANG;
|
614 |
-
|
615 |
-
return true;
|
616 |
-
}
|
617 |
-
|
618 |
-
/////////////////////////////////////////////////
|
619 |
-
// MESSAGE CREATION METHODS
|
620 |
-
/////////////////////////////////////////////////
|
621 |
-
|
622 |
-
/**
|
623 |
-
* Creates recipient headers.
|
624 |
-
* @access private
|
625 |
-
* @return string
|
626 |
-
*/
|
627 |
-
function AddrAppend($type, $addr) {
|
628 |
-
$addr_str = $type . ": ";
|
629 |
-
$addr_str .= $this->AddrFormat($addr[0]);
|
630 |
-
if(count($addr) > 1)
|
631 |
-
{
|
632 |
-
for($i = 1; $i < count($addr); $i++)
|
633 |
-
$addr_str .= ", " . $this->AddrFormat($addr[$i]);
|
634 |
-
}
|
635 |
-
$addr_str .= $this->LE;
|
636 |
-
|
637 |
-
return $addr_str;
|
638 |
-
}
|
639 |
-
|
640 |
-
/**
|
641 |
-
* Formats an address correctly.
|
642 |
-
* @access private
|
643 |
-
* @return string
|
644 |
-
*/
|
645 |
-
function AddrFormat($addr) {
|
646 |
-
if(empty($addr[1]))
|
647 |
-
$formatted = $addr[0];
|
648 |
-
else
|
649 |
-
{
|
650 |
-
$formatted = $this->EncodeHeader($addr[1], 'phrase') . " <" .
|
651 |
-
$addr[0] . ">";
|
652 |
-
}
|
653 |
-
|
654 |
-
return $formatted;
|
655 |
-
}
|
656 |
-
|
657 |
-
/**
|
658 |
-
* Wraps message for use with mailers that do not
|
659 |
-
* automatically perform wrapping and for quoted-printable.
|
660 |
-
* Original written by philippe.
|
661 |
-
* @access private
|
662 |
-
* @return string
|
663 |
-
*/
|
664 |
-
function WrapText($message, $length, $qp_mode = false) {
|
665 |
-
$soft_break = ($qp_mode) ? sprintf(" =%s", $this->LE) : $this->LE;
|
666 |
-
|
667 |
-
$message = $this->FixEOL($message);
|
668 |
-
if (substr($message, -1) == $this->LE)
|
669 |
-
$message = substr($message, 0, -1);
|
670 |
-
|
671 |
-
$line = explode($this->LE, $message);
|
672 |
-
$message = "";
|
673 |
-
for ($i=0 ;$i < count($line); $i++)
|
674 |
-
{
|
675 |
-
$line_part = explode(" ", $line[$i]);
|
676 |
-
$buf = "";
|
677 |
-
for ($e = 0; $e<count($line_part); $e++)
|
678 |
-
{
|
679 |
-
$word = $line_part[$e];
|
680 |
-
if ($qp_mode and (strlen($word) > $length))
|
681 |
-
{
|
682 |
-
$space_left = $length - strlen($buf) - 1;
|
683 |
-
if ($e != 0)
|
684 |
-
{
|
685 |
-
if ($space_left > 20)
|
686 |
-
{
|
687 |
-
$len = $space_left;
|
688 |
-
if (substr($word, $len - 1, 1) == "=")
|
689 |
-
$len--;
|
690 |
-
elseif (substr($word, $len - 2, 1) == "=")
|
691 |
-
$len -= 2;
|
692 |
-
$part = substr($word, 0, $len);
|
693 |
-
$word = substr($word, $len);
|
694 |
-
$buf .= " " . $part;
|
695 |
-
$message .= $buf . sprintf("=%s", $this->LE);
|
696 |
-
}
|
697 |
-
else
|
698 |
-
{
|
699 |
-
$message .= $buf . $soft_break;
|
700 |
-
}
|
701 |
-
$buf = "";
|
702 |
-
}
|
703 |
-
while (strlen($word) > 0)
|
704 |
-
{
|
705 |
-
$len = $length;
|
706 |
-
if (substr($word, $len - 1, 1) == "=")
|
707 |
-
$len--;
|
708 |
-
elseif (substr($word, $len - 2, 1) == "=")
|
709 |
-
$len -= 2;
|
710 |
-
$part = substr($word, 0, $len);
|
711 |
-
$word = substr($word, $len);
|
712 |
-
|
713 |
-
if (strlen($word) > 0)
|
714 |
-
$message .= $part . sprintf("=%s", $this->LE);
|
715 |
-
else
|
716 |
-
$buf = $part;
|
717 |
-
}
|
718 |
-
}
|
719 |
-
else
|
720 |
-
{
|
721 |
-
$buf_o = $buf;
|
722 |
-
$buf .= ($e == 0) ? $word : (" " . $word);
|
723 |
-
|
724 |
-
if (strlen($buf) > $length and $buf_o != "")
|
725 |
-
{
|
726 |
-
$message .= $buf_o . $soft_break;
|
727 |
-
$buf = $word;
|
728 |
-
}
|
729 |
-
}
|
730 |
-
}
|
731 |
-
$message .= $buf . $this->LE;
|
732 |
-
}
|
733 |
-
|
734 |
-
return $message;
|
735 |
-
}
|
736 |
-
|
737 |
-
/**
|
738 |
-
* Set the body wrapping.
|
739 |
-
* @access private
|
740 |
-
* @return void
|
741 |
-
*/
|
742 |
-
function SetWordWrap() {
|
743 |
-
if($this->WordWrap < 1)
|
744 |
-
return;
|
745 |
-
|
746 |
-
switch($this->message_type)
|
747 |
-
{
|
748 |
-
case "alt":
|
749 |
-
// fall through
|
750 |
-
case "alt_attachments":
|
751 |
-
$this->AltBody = $this->WrapText($this->AltBody, $this->WordWrap);
|
752 |
-
break;
|
753 |
-
default:
|
754 |
-
$this->Body = $this->WrapText($this->Body, $this->WordWrap);
|
755 |
-
break;
|
756 |
-
}
|
757 |
-
}
|
758 |
-
|
759 |
-
/**
|
760 |
-
* Assembles message header.
|
761 |
-
* @access private
|
762 |
-
* @return string
|
763 |
-
*/
|
764 |
-
function CreateHeader() {
|
765 |
-
$result = "";
|
766 |
-
|
767 |
-
// Set the boundaries
|
768 |
-
$uniq_id = md5(uniqid(time()));
|
769 |
-
$this->boundary[1] = "b1_" . $uniq_id;
|
770 |
-
$this->boundary[2] = "b2_" . $uniq_id;
|
771 |
-
|
772 |
-
$result .= $this->HeaderLine("Date", $this->RFCDate());
|
773 |
-
if($this->Sender == "")
|
774 |
-
$result .= $this->HeaderLine("Return-Path", trim($this->From));
|
775 |
-
else
|
776 |
-
$result .= $this->HeaderLine("Return-Path", trim($this->Sender));
|
777 |
-
|
778 |
-
// To be created automatically by mail()
|
779 |
-
if($this->Mailer != "mail")
|
780 |
-
{
|
781 |
-
if(count($this->to) > 0)
|
782 |
-
$result .= $this->AddrAppend("To", $this->to);
|
783 |
-
else if (count($this->cc) == 0)
|
784 |
-
$result .= $this->HeaderLine("To", "undisclosed-recipients:;");
|
785 |
-
if(count($this->cc) > 0)
|
786 |
-
$result .= $this->AddrAppend("Cc", $this->cc);
|
787 |
-
}
|
788 |
-
|
789 |
-
$from = array();
|
790 |
-
$from[0][0] = trim($this->From);
|
791 |
-
$from[0][1] = $this->FromName;
|
792 |
-
$result .= $this->AddrAppend("From", $from);
|
793 |
-
|
794 |
-
// sendmail and mail() extract Bcc from the header before sending
|
795 |
-
if((($this->Mailer == "sendmail") || ($this->Mailer == "mail")) && (count($this->bcc) > 0))
|
796 |
-
$result .= $this->AddrAppend("Bcc", $this->bcc);
|
797 |
-
|
798 |
-
if(count($this->ReplyTo) > 0)
|
799 |
-
$result .= $this->AddrAppend("Reply-to", $this->ReplyTo);
|
800 |
-
|
801 |
-
// mail() sets the subject itself
|
802 |
-
if($this->Mailer != "mail")
|
803 |
-
$result .= $this->HeaderLine("Subject", $this->EncodeHeader(trim($this->Subject)));
|
804 |
-
|
805 |
-
$result .= sprintf("Message-ID: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE);
|
806 |
-
$result .= $this->HeaderLine("X-Priority", $this->Priority);
|
807 |
-
$result .= $this->HeaderLine("X-Mailer", "PHPMailer [version " . $this->Version . "]");
|
808 |
-
|
809 |
-
if($this->ConfirmReadingTo != "")
|
810 |
-
{
|
811 |
-
$result .= $this->HeaderLine("Disposition-Notification-To",
|
812 |
-
"<" . trim($this->ConfirmReadingTo) . ">");
|
813 |
-
}
|
814 |
-
|
815 |
-
// Add custom headers
|
816 |
-
for($index = 0; $index < count($this->CustomHeader); $index++)
|
817 |
-
{
|
818 |
-
$result .= $this->HeaderLine(trim($this->CustomHeader[$index][0]),
|
819 |
-
$this->EncodeHeader(trim($this->CustomHeader[$index][1])));
|
820 |
-
}
|
821 |
-
$result .= $this->HeaderLine("MIME-Version", "1.0");
|
822 |
-
|
823 |
-
switch($this->message_type)
|
824 |
-
{
|
825 |
-
case "plain":
|
826 |
-
$result .= $this->HeaderLine("Content-Transfer-Encoding", $this->Encoding);
|
827 |
-
$result .= sprintf("Content-Type: %s; charset=\"%s\"",
|
828 |
-
$this->ContentType, $this->CharSet);
|
829 |
-
break;
|
830 |
-
case "attachments":
|
831 |
-
// fall through
|
832 |
-
case "alt_attachments":
|
833 |
-
if($this->InlineImageExists())
|
834 |
-
{
|
835 |
-
$result .= sprintf("Content-Type: %s;%s\ttype=\"text/html\";%s\tboundary=\"%s\"%s",
|
836 |
-
"multipart/related", $this->LE, $this->LE,
|
837 |
-
$this->boundary[1], $this->LE);
|
838 |
-
}
|
839 |
-
else
|
840 |
-
{
|
841 |
-
$result .= $this->HeaderLine("Content-Type", "multipart/mixed;");
|
842 |
-
$result .= $this->TextLine("\tboundary=\"" . $this->boundary[1] . '"');
|
843 |
-
}
|
844 |
-
break;
|
845 |
-
case "alt":
|
846 |
-
$result .= $this->HeaderLine("Content-Type", "multipart/alternative;");
|
847 |
-
$result .= $this->TextLine("\tboundary=\"" . $this->boundary[1] . '"');
|
848 |
-
break;
|
849 |
-
}
|
850 |
-
|
851 |
-
if($this->Mailer != "mail")
|
852 |
-
$result .= $this->LE.$this->LE;
|
853 |
-
|
854 |
-
return $result;
|
855 |
-
}
|
856 |
-
|
857 |
-
/**
|
858 |
-
* Assembles the message body. Returns an empty string on failure.
|
859 |
-
* @access private
|
860 |
-
* @return string
|
861 |
-
*/
|
862 |
-
function CreateBody() {
|
863 |
-
$result = "";
|
864 |
-
|
865 |
-
$this->SetWordWrap();
|
866 |
-
|
867 |
-
switch($this->message_type)
|
868 |
-
{
|
869 |
-
case "alt":
|
870 |
-
$result .= $this->GetBoundary($this->boundary[1], "",
|
871 |
-
"text/plain", "");
|
872 |
-
$result .= $this->EncodeString($this->AltBody, $this->Encoding);
|
873 |
-
$result .= $this->LE.$this->LE;
|
874 |
-
$result .= $this->GetBoundary($this->boundary[1], "",
|
875 |
-
"text/html", "");
|
876 |
-
|
877 |
-
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
878 |
-
$result .= $this->LE.$this->LE;
|
879 |
-
|
880 |
-
$result .= $this->EndBoundary($this->boundary[1]);
|
881 |
-
break;
|
882 |
-
case "plain":
|
883 |
-
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
884 |
-
break;
|
885 |
-
case "attachments":
|
886 |
-
$result .= $this->GetBoundary($this->boundary[1], "", "", "");
|
887 |
-
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
888 |
-
$result .= $this->LE;
|
889 |
-
|
890 |
-
$result .= $this->AttachAll();
|
891 |
-
break;
|
892 |
-
case "alt_attachments":
|
893 |
-
$result .= sprintf("--%s%s", $this->boundary[1], $this->LE);
|
894 |
-
$result .= sprintf("Content-Type: %s;%s" .
|
895 |
-
"\tboundary=\"%s\"%s",
|
896 |
-
"multipart/alternative", $this->LE,
|
897 |
-
$this->boundary[2], $this->LE.$this->LE);
|
898 |
-
|
899 |
-
// Create text body
|
900 |
-
$result .= $this->GetBoundary($this->boundary[2], "",
|
901 |
-
"text/plain", "") . $this->LE;
|
902 |
-
|
903 |
-
$result .= $this->EncodeString($this->AltBody, $this->Encoding);
|
904 |
-
$result .= $this->LE.$this->LE;
|
905 |
-
|
906 |
-
// Create the HTML body
|
907 |
-
$result .= $this->GetBoundary($this->boundary[2], "",
|
908 |
-
"text/html", "") . $this->LE;
|
909 |
-
|
910 |
-
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
911 |
-
$result .= $this->LE.$this->LE;
|
912 |
-
|
913 |
-
$result .= $this->EndBoundary($this->boundary[2]);
|
914 |
-
|
915 |
-
$result .= $this->AttachAll();
|
916 |
-
break;
|
917 |
-
}
|
918 |
-
if($this->IsError())
|
919 |
-
$result = "";
|
920 |
-
|
921 |
-
return $result;
|
922 |
-
}
|
923 |
-
|
924 |
-
/**
|
925 |
-
* Returns the start of a message boundary.
|
926 |
-
* @access private
|
927 |
-
*/
|
928 |
-
function GetBoundary($boundary, $charSet, $contentType, $encoding) {
|
929 |
-
$result = "";
|
930 |
-
if($charSet == "") { $charSet = $this->CharSet; }
|
931 |
-
if($contentType == "") { $contentType = $this->ContentType; }
|
932 |
-
if($encoding == "") { $encoding = $this->Encoding; }
|
933 |
-
|
934 |
-
$result .= $this->TextLine("--" . $boundary);
|
935 |
-
$result .= sprintf("Content-Type: %s; charset = \"%s\"",
|
936 |
-
$contentType, $charSet);
|
937 |
-
$result .= $this->LE;
|
938 |
-
$result .= $this->HeaderLine("Content-Transfer-Encoding", $encoding);
|
939 |
-
$result .= $this->LE;
|
940 |
-
|
941 |
-
return $result;
|
942 |
-
}
|
943 |
-
|
944 |
-
/**
|
945 |
-
* Returns the end of a message boundary.
|
946 |
-
* @access private
|
947 |
-
*/
|
948 |
-
function EndBoundary($boundary) {
|
949 |
-
return $this->LE . "--" . $boundary . "--" . $this->LE;
|
950 |
-
}
|
951 |
-
|
952 |
-
/**
|
953 |
-
* Sets the message type.
|
954 |
-
* @access private
|
955 |
-
* @return void
|
956 |
-
*/
|
957 |
-
function SetMessageType() {
|
958 |
-
if(count($this->attachment) < 1 && strlen($this->AltBody) < 1)
|
959 |
-
$this->message_type = "plain";
|
960 |
-
else
|
961 |
-
{
|
962 |
-
if(count($this->attachment) > 0)
|
963 |
-
$this->message_type = "attachments";
|
964 |
-
if(strlen($this->AltBody) > 0 && count($this->attachment) < 1)
|
965 |
-
$this->message_type = "alt";
|
966 |
-
if(strlen($this->AltBody) > 0 && count($this->attachment) > 0)
|
967 |
-
$this->message_type = "alt_attachments";
|
968 |
-
}
|
969 |
-
}
|
970 |
-
|
971 |
-
/**
|
972 |
-
* Returns a formatted header line.
|
973 |
-
* @access private
|
974 |
-
* @return string
|
975 |
-
*/
|
976 |
-
function HeaderLine($name, $value) {
|
977 |
-
return $name . ": " . $value . $this->LE;
|
978 |
-
}
|
979 |
-
|
980 |
-
/**
|
981 |
-
* Returns a formatted mail line.
|
982 |
-
* @access private
|
983 |
-
* @return string
|
984 |
-
*/
|
985 |
-
function TextLine($value) {
|
986 |
-
return $value . $this->LE;
|
987 |
-
}
|
988 |
-
|
989 |
-
/////////////////////////////////////////////////
|
990 |
-
// ATTACHMENT METHODS
|
991 |
-
/////////////////////////////////////////////////
|
992 |
-
|
993 |
-
/**
|
994 |
-
* Adds an attachment from a path on the filesystem.
|
995 |
-
* Returns false if the file could not be found
|
996 |
-
* or accessed.
|
997 |
-
* @param string $path Path to the attachment.
|
998 |
-
* @param string $name Overrides the attachment name.
|
999 |
-
* @param string $encoding File encoding (see $Encoding).
|
1000 |
-
* @param string $type File extension (MIME) type.
|
1001 |
-
* @return bool
|
1002 |
-
*/
|
1003 |
-
function AddAttachment($path, $name = "", $encoding = "base64",
|
1004 |
-
$type = "application/octet-stream") {
|
1005 |
-
if(!@is_file($path))
|
1006 |
-
{
|
1007 |
-
$this->SetError($this->Lang("file_access") . $path);
|
1008 |
-
return false;
|
1009 |
-
}
|
1010 |
-
|
1011 |
-
$filename = basename($path);
|
1012 |
-
if($name == "")
|
1013 |
-
$name = $filename;
|
1014 |
-
|
1015 |
-
$cur = count($this->attachment);
|
1016 |
-
$this->attachment[$cur][0] = $path;
|
1017 |
-
$this->attachment[$cur][1] = $filename;
|
1018 |
-
$this->attachment[$cur][2] = $name;
|
1019 |
-
$this->attachment[$cur][3] = $encoding;
|
1020 |
-
$this->attachment[$cur][4] = $type;
|
1021 |
-
$this->attachment[$cur][5] = false; // isStringAttachment
|
1022 |
-
$this->attachment[$cur][6] = "attachment";
|
1023 |
-
$this->attachment[$cur][7] = 0;
|
1024 |
-
|
1025 |
-
return true;
|
1026 |
-
}
|
1027 |
-
|
1028 |
-
/**
|
1029 |
-
* Attaches all fs, string, and binary attachments to the message.
|
1030 |
-
* Returns an empty string on failure.
|
1031 |
-
* @access private
|
1032 |
-
* @return string
|
1033 |
-
*/
|
1034 |
-
function AttachAll() {
|
1035 |
-
// Return text of body
|
1036 |
-
$mime = array();
|
1037 |
-
|
1038 |
-
// Add all attachments
|
1039 |
-
for($i = 0; $i < count($this->attachment); $i++)
|
1040 |
-
{
|
1041 |
-
// Check for string attachment
|
1042 |
-
$bString = $this->attachment[$i][5];
|
1043 |
-
if ($bString)
|
1044 |
-
$string = $this->attachment[$i][0];
|
1045 |
-
else
|
1046 |
-
$path = $this->attachment[$i][0];
|
1047 |
-
|
1048 |
-
$filename = $this->attachment[$i][1];
|
1049 |
-
$name = $this->attachment[$i][2];
|
1050 |
-
$encoding = $this->attachment[$i][3];
|
1051 |
-
$type = $this->attachment[$i][4];
|
1052 |
-
$disposition = $this->attachment[$i][6];
|
1053 |
-
$cid = $this->attachment[$i][7];
|
1054 |
-
|
1055 |
-
$mime[] = sprintf("--%s%s", $this->boundary[1], $this->LE);
|
1056 |
-
$mime[] = sprintf("Content-Type: %s; name=\"%s\"%s", $type, $name, $this->LE);
|
1057 |
-
$mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE);
|
1058 |
-
|
1059 |
-
if($disposition == "inline")
|
1060 |
-
$mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE);
|
1061 |
-
|
1062 |
-
$mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s",
|
1063 |
-
$disposition, $name, $this->LE.$this->LE);
|
1064 |
-
|
1065 |
-
// Encode as string attachment
|
1066 |
-
if($bString)
|
1067 |
-
{
|
1068 |
-
$mime[] = $this->EncodeString($string, $encoding);
|
1069 |
-
if($this->IsError()) { return ""; }
|
1070 |
-
$mime[] = $this->LE.$this->LE;
|
1071 |
-
}
|
1072 |
-
else
|
1073 |
-
{
|
1074 |
-
$mime[] = $this->EncodeFile($path, $encoding);
|
1075 |
-
if($this->IsError()) { return ""; }
|
1076 |
-
$mime[] = $this->LE.$this->LE;
|
1077 |
-
}
|
1078 |
-
}
|
1079 |
-
|
1080 |
-
$mime[] = sprintf("--%s--%s", $this->boundary[1], $this->LE);
|
1081 |
-
|
1082 |
-
return join("", $mime);
|
1083 |
-
}
|
1084 |
-
|
1085 |
-
/**
|
1086 |
-
* Encodes attachment in requested format. Returns an
|
1087 |
-
* empty string on failure.
|
1088 |
-
* @access private
|
1089 |
-
* @return string
|
1090 |
-
*/
|
1091 |
-
function EncodeFile ($path, $encoding = "base64") {
|
1092 |
-
if(!@$fd = fopen($path, "rb"))
|
1093 |
-
{
|
1094 |
-
$this->SetError($this->Lang("file_open") . $path);
|
1095 |
-
return "";
|
1096 |
-
}
|
1097 |
-
$magic_quotes = get_magic_quotes_runtime();
|
1098 |
-
set_magic_quotes_runtime(0);
|
1099 |
-
$file_buffer = fread($fd, filesize($path));
|
1100 |
-
$file_buffer = $this->EncodeString($file_buffer, $encoding);
|
1101 |
-
fclose($fd);
|
1102 |
-
set_magic_quotes_runtime($magic_quotes);
|
1103 |
-
|
1104 |
-
return $file_buffer;
|
1105 |
-
}
|
1106 |
-
|
1107 |
-
/**
|
1108 |
-
* Encodes string to requested format. Returns an
|
1109 |
-
* empty string on failure.
|
1110 |
-
* @access private
|
1111 |
-
* @return string
|
1112 |
-
*/
|
1113 |
-
function EncodeString ($str, $encoding = "base64") {
|
1114 |
-
$encoded = "";
|
1115 |
-
switch(strtolower($encoding)) {
|
1116 |
-
case "base64":
|
1117 |
-
// chunk_split is found in PHP >= 3.0.6
|
1118 |
-
$encoded = chunk_split(base64_encode($str), 76, $this->LE);
|
1119 |
-
break;
|
1120 |
-
case "7bit":
|
1121 |
-
case "8bit":
|
1122 |
-
$encoded = $this->FixEOL($str);
|
1123 |
-
if (substr($encoded, -(strlen($this->LE))) != $this->LE)
|
1124 |
-
$encoded .= $this->LE;
|
1125 |
-
break;
|
1126 |
-
case "binary":
|
1127 |
-
$encoded = $str;
|
1128 |
-
break;
|
1129 |
-
case "quoted-printable":
|
1130 |
-
$encoded = $this->EncodeQP($str);
|
1131 |
-
break;
|
1132 |
-
default:
|
1133 |
-
$this->SetError($this->Lang("encoding") . $encoding);
|
1134 |
-
break;
|
1135 |
-
}
|
1136 |
-
return $encoded;
|
1137 |
-
}
|
1138 |
-
|
1139 |
-
/**
|
1140 |
-
* Encode a header string to best of Q, B, quoted or none.
|
1141 |
-
* @access private
|
1142 |
-
* @return string
|
1143 |
-
*/
|
1144 |
-
function EncodeHeader ($str, $position = 'text') {
|
1145 |
-
$x = 0;
|
1146 |
-
|
1147 |
-
switch (strtolower($position)) {
|
1148 |
-
case 'phrase':
|
1149 |
-
if (!preg_match('/[\200-\377]/', $str)) {
|
1150 |
-
// Can't use addslashes as we don't know what value has magic_quotes_sybase.
|
1151 |
-
$encoded = addcslashes($str, "\0..\37\177\\\"");
|
1152 |
-
|
1153 |
-
if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str))
|
1154 |
-
return ($encoded);
|
1155 |
-
else
|
1156 |
-
return ("\"$encoded\"");
|
1157 |
-
}
|
1158 |
-
$x = preg_match_all('/[^\040\041\043-\133\135-\176]/', $str, $matches);
|
1159 |
-
break;
|
1160 |
-
case 'comment':
|
1161 |
-
$x = preg_match_all('/[()"]/', $str, $matches);
|
1162 |
-
// Fall-through
|
1163 |
-
case 'text':
|
1164 |
-
default:
|
1165 |
-
$x += preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $str, $matches);
|
1166 |
-
break;
|
1167 |
-
}
|
1168 |
-
|
1169 |
-
if ($x == 0)
|
1170 |
-
return ($str);
|
1171 |
-
|
1172 |
-
$maxlen = 75 - 7 - strlen($this->CharSet);
|
1173 |
-
// Try to select the encoding which should produce the shortest output
|
1174 |
-
if (strlen($str)/3 < $x) {
|
1175 |
-
$encoding = 'B';
|
1176 |
-
$encoded = base64_encode($str);
|
1177 |
-
$maxlen -= $maxlen % 4;
|
1178 |
-
$encoded = trim(chunk_split($encoded, $maxlen, "\n"));
|
1179 |
-
} else {
|
1180 |
-
$encoding = 'Q';
|
1181 |
-
$encoded = $this->EncodeQ($str, $position);
|
1182 |
-
$encoded = $this->WrapText($encoded, $maxlen, true);
|
1183 |
-
$encoded = str_replace("=".$this->LE, "\n", trim($encoded));
|
1184 |
-
}
|
1185 |
-
|
1186 |
-
$encoded = preg_replace('/^(.*)$/m', " =?".$this->CharSet."?$encoding?\\1?=", $encoded);
|
1187 |
-
$encoded = trim(str_replace("\n", $this->LE, $encoded));
|
1188 |
-
|
1189 |
-
return $encoded;
|
1190 |
-
}
|
1191 |
-
|
1192 |
-
/**
|
1193 |
-
* Encode string to quoted-printable.
|
1194 |
-
* @access private
|
1195 |
-
* @return string
|
1196 |
-
*/
|
1197 |
-
function EncodeQP ($str) {
|
1198 |
-
$encoded = $this->FixEOL($str);
|
1199 |
-
if (substr($encoded, -(strlen($this->LE))) != $this->LE)
|
1200 |
-
$encoded .= $this->LE;
|
1201 |
-
|
1202 |
-
// Replace every high ascii, control and = characters
|
1203 |
-
$encoded = preg_replace('/([\000-\010\013\014\016-\037\075\177-\377])/e',
|
1204 |
-
"'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1205 |
-
// Replace every spaces and tabs when it's the last character on a line
|
1206 |
-
$encoded = preg_replace("/([\011\040])".$this->LE."/e",
|
1207 |
-
"'='.sprintf('%02X', ord('\\1')).'".$this->LE."'", $encoded);
|
1208 |
-
|
1209 |
-
// Maximum line length of 76 characters before CRLF (74 + space + '=')
|
1210 |
-
$encoded = $this->WrapText($encoded, 74, true);
|
1211 |
-
|
1212 |
-
return $encoded;
|
1213 |
-
}
|
1214 |
-
|
1215 |
-
/**
|
1216 |
-
* Encode string to q encoding.
|
1217 |
-
* @access private
|
1218 |
-
* @return string
|
1219 |
-
*/
|
1220 |
-
function EncodeQ ($str, $position = "text") {
|
1221 |
-
// There should not be any EOL in the string
|
1222 |
-
$encoded = preg_replace("[\r\n]", "", $str);
|
1223 |
-
|
1224 |
-
switch (strtolower($position)) {
|
1225 |
-
case "phrase":
|
1226 |
-
$encoded = preg_replace("/([^A-Za-z0-9!*+\/ -])/e", "'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1227 |
-
break;
|
1228 |
-
case "comment":
|
1229 |
-
$encoded = preg_replace("/([\(\)\"])/e", "'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1230 |
-
case "text":
|
1231 |
-
default:
|
1232 |
-
// Replace every high ascii, control =, ? and _ characters
|
1233 |
-
$encoded = preg_replace('/([\000-\011\013\014\016-\037\075\077\137\177-\377])/e',
|
1234 |
-
"'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1235 |
-
break;
|
1236 |
-
}
|
1237 |
-
|
1238 |
-
// Replace every spaces to _ (more readable than =20)
|
1239 |
-
$encoded = str_replace(" ", "_", $encoded);
|
1240 |
-
|
1241 |
-
return $encoded;
|
1242 |
-
}
|
1243 |
-
|
1244 |
-
/**
|
1245 |
-
* Adds a string or binary attachment (non-filesystem) to the list.
|
1246 |
-
* This method can be used to attach ascii or binary data,
|
1247 |
-
* such as a BLOB record from a database.
|
1248 |
-
* @param string $string String attachment data.
|
1249 |
-
* @param string $filename Name of the attachment.
|
1250 |
-
* @param string $encoding File encoding (see $Encoding).
|
1251 |
-
* @param string $type File extension (MIME) type.
|
1252 |
-
* @return void
|
1253 |
-
*/
|
1254 |
-
function AddStringAttachment($string, $filename, $encoding = "base64",
|
1255 |
-
$type = "application/octet-stream") {
|
1256 |
-
// Append to $attachment array
|
1257 |
-
$cur = count($this->attachment);
|
1258 |
-
$this->attachment[$cur][0] = $string;
|
1259 |
-
$this->attachment[$cur][1] = $filename;
|
1260 |
-
$this->attachment[$cur][2] = $filename;
|
1261 |
-
$this->attachment[$cur][3] = $encoding;
|
1262 |
-
$this->attachment[$cur][4] = $type;
|
1263 |
-
$this->attachment[$cur][5] = true; // isString
|
1264 |
-
$this->attachment[$cur][6] = "attachment";
|
1265 |
-
$this->attachment[$cur][7] = 0;
|
1266 |
-
}
|
1267 |
-
|
1268 |
-
/**
|
1269 |
-
* Adds an embedded attachment. This can include images, sounds, and
|
1270 |
-
* just about any other document. Make sure to set the $type to an
|
1271 |
-
* image type. For JPEG images use "image/jpeg" and for GIF images
|
1272 |
-
* use "image/gif".
|
1273 |
-
* @param string $path Path to the attachment.
|
1274 |
-
* @param string $cid Content ID of the attachment. Use this to identify
|
1275 |
-
* the Id for accessing the image in an HTML form.
|
1276 |
-
* @param string $name Overrides the attachment name.
|
1277 |
-
* @param string $encoding File encoding (see $Encoding).
|
1278 |
-
* @param string $type File extension (MIME) type.
|
1279 |
-
* @return bool
|
1280 |
-
*/
|
1281 |
-
function AddEmbeddedImage($path, $cid, $name = "", $encoding = "base64",
|
1282 |
-
$type = "application/octet-stream") {
|
1283 |
-
|
1284 |
-
if(!@is_file($path))
|
1285 |
-
{
|
1286 |
-
$this->SetError($this->Lang("file_access") . $path);
|
1287 |
-
return false;
|
1288 |
-
}
|
1289 |
-
|
1290 |
-
$filename = basename($path);
|
1291 |
-
if($name == "")
|
1292 |
-
$name = $filename;
|
1293 |
-
|
1294 |
-
// Append to $attachment array
|
1295 |
-
$cur = count($this->attachment);
|
1296 |
-
$this->attachment[$cur][0] = $path;
|
1297 |
-
$this->attachment[$cur][1] = $filename;
|
1298 |
-
$this->attachment[$cur][2] = $name;
|
1299 |
-
$this->attachment[$cur][3] = $encoding;
|
1300 |
-
$this->attachment[$cur][4] = $type;
|
1301 |
-
$this->attachment[$cur][5] = false; // isStringAttachment
|
1302 |
-
$this->attachment[$cur][6] = "inline";
|
1303 |
-
$this->attachment[$cur][7] = $cid;
|
1304 |
-
|
1305 |
-
return true;
|
1306 |
-
}
|
1307 |
-
|
1308 |
-
/**
|
1309 |
-
* Returns true if an inline attachment is present.
|
1310 |
-
* @access private
|
1311 |
-
* @return bool
|
1312 |
-
*/
|
1313 |
-
function InlineImageExists() {
|
1314 |
-
$result = false;
|
1315 |
-
for($i = 0; $i < count($this->attachment); $i++)
|
1316 |
-
{
|
1317 |
-
if($this->attachment[$i][6] == "inline")
|
1318 |
-
{
|
1319 |
-
$result = true;
|
1320 |
-
break;
|
1321 |
-
}
|
1322 |
-
}
|
1323 |
-
|
1324 |
-
return $result;
|
1325 |
-
}
|
1326 |
-
|
1327 |
-
/////////////////////////////////////////////////
|
1328 |
-
// MESSAGE RESET METHODS
|
1329 |
-
/////////////////////////////////////////////////
|
1330 |
-
|
1331 |
-
/**
|
1332 |
-
* Clears all recipients assigned in the TO array. Returns void.
|
1333 |
-
* @return void
|
1334 |
-
*/
|
1335 |
-
function ClearAddresses() {
|
1336 |
-
$this->to = array();
|
1337 |
-
}
|
1338 |
-
|
1339 |
-
/**
|
1340 |
-
* Clears all recipients assigned in the CC array. Returns void.
|
1341 |
-
* @return void
|
1342 |
-
*/
|
1343 |
-
function ClearCCs() {
|
1344 |
-
$this->cc = array();
|
1345 |
-
}
|
1346 |
-
|
1347 |
-
/**
|
1348 |
-
* Clears all recipients assigned in the BCC array. Returns void.
|
1349 |
-
* @return void
|
1350 |
-
*/
|
1351 |
-
function ClearBCCs() {
|
1352 |
-
$this->bcc = array();
|
1353 |
-
}
|
1354 |
-
|
1355 |
-
/**
|
1356 |
-
* Clears all recipients assigned in the ReplyTo array. Returns void.
|
1357 |
-
* @return void
|
1358 |
-
*/
|
1359 |
-
function ClearReplyTos() {
|
1360 |
-
$this->ReplyTo = array();
|
1361 |
-
}
|
1362 |
-
|
1363 |
-
/**
|
1364 |
-
* Clears all recipients assigned in the TO, CC and BCC
|
1365 |
-
* array. Returns void.
|
1366 |
-
* @return void
|
1367 |
-
*/
|
1368 |
-
function ClearAllRecipients() {
|
1369 |
-
$this->to = array();
|
1370 |
-
$this->cc = array();
|
1371 |
-
$this->bcc = array();
|
1372 |
-
}
|
1373 |
-
|
1374 |
-
/**
|
1375 |
-
* Clears all previously set filesystem, string, and binary
|
1376 |
-
* attachments. Returns void.
|
1377 |
-
* @return void
|
1378 |
-
*/
|
1379 |
-
function ClearAttachments() {
|
1380 |
-
$this->attachment = array();
|
1381 |
-
}
|
1382 |
-
|
1383 |
-
/**
|
1384 |
-
* Clears all custom headers. Returns void.
|
1385 |
-
* @return void
|
1386 |
-
*/
|
1387 |
-
function ClearCustomHeaders() {
|
1388 |
-
$this->CustomHeader = array();
|
1389 |
-
}
|
1390 |
-
|
1391 |
-
|
1392 |
-
/////////////////////////////////////////////////
|
1393 |
-
// MISCELLANEOUS METHODS
|
1394 |
-
/////////////////////////////////////////////////
|
1395 |
-
|
1396 |
-
/**
|
1397 |
-
* Adds the error message to the error container.
|
1398 |
-
* Returns void.
|
1399 |
-
* @access private
|
1400 |
-
* @return void
|
1401 |
-
*/
|
1402 |
-
function SetError($msg) {
|
1403 |
-
$this->error_count++;
|
1404 |
-
$this->ErrorInfo = $msg;
|
1405 |
-
}
|
1406 |
-
|
1407 |
-
/**
|
1408 |
-
* Returns the proper RFC 822 formatted date.
|
1409 |
-
* @access private
|
1410 |
-
* @return string
|
1411 |
-
*/
|
1412 |
-
function RFCDate() {
|
1413 |
-
$tz = date("Z");
|
1414 |
-
$tzs = ($tz < 0) ? "-" : "+";
|
1415 |
-
$tz = abs($tz);
|
1416 |
-
$tz = ($tz/3600)*100 + ($tz%3600)/60;
|
1417 |
-
$result = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
|
1418 |
-
|
1419 |
-
return $result;
|
1420 |
-
}
|
1421 |
-
|
1422 |
-
/**
|
1423 |
-
* Returns the appropriate server variable. Should work with both
|
1424 |
-
* PHP 4.1.0+ as well as older versions. Returns an empty string
|
1425 |
-
* if nothing is found.
|
1426 |
-
* @access private
|
1427 |
-
* @return mixed
|
1428 |
-
*/
|
1429 |
-
function ServerVar($varName) {
|
1430 |
-
global $HTTP_SERVER_VARS;
|
1431 |
-
global $HTTP_ENV_VARS;
|
1432 |
-
|
1433 |
-
if(!isset($_SERVER))
|
1434 |
-
{
|
1435 |
-
$_SERVER = $HTTP_SERVER_VARS;
|
1436 |
-
if(!isset($_SERVER["REMOTE_ADDR"]))
|
1437 |
-
$_SERVER = $HTTP_ENV_VARS; // must be Apache
|
1438 |
-
}
|
1439 |
-
|
1440 |
-
if(isset($_SERVER[$varName]))
|
1441 |
-
return $_SERVER[$varName];
|
1442 |
-
else
|
1443 |
-
return "";
|
1444 |
-
}
|
1445 |
-
|
1446 |
-
/**
|
1447 |
-
* Returns the server hostname or 'localhost.localdomain' if unknown.
|
1448 |
-
* @access private
|
1449 |
-
* @return string
|
1450 |
-
*/
|
1451 |
-
function ServerHostname() {
|
1452 |
-
if ($this->Hostname != "")
|
1453 |
-
$result = $this->Hostname;
|
1454 |
-
elseif ($this->ServerVar('SERVER_NAME') != "")
|
1455 |
-
$result = $this->ServerVar('SERVER_NAME');
|
1456 |
-
else
|
1457 |
-
$result = "localhost.localdomain";
|
1458 |
-
|
1459 |
-
return $result;
|
1460 |
-
}
|
1461 |
-
|
1462 |
-
/**
|
1463 |
-
* Returns a message in the appropriate language.
|
1464 |
-
* @access private
|
1465 |
-
* @return string
|
1466 |
-
*/
|
1467 |
-
function Lang($key) {
|
1468 |
-
if(count($this->language) < 1)
|
1469 |
-
$this->SetLanguage("en"); // set the default language
|
1470 |
-
|
1471 |
-
if(isset($this->language[$key]))
|
1472 |
-
return $this->language[$key];
|
1473 |
-
else
|
1474 |
-
return "Language string failed to load: " . $key;
|
1475 |
-
}
|
1476 |
-
|
1477 |
-
/**
|
1478 |
-
* Returns true if an error occurred.
|
1479 |
-
* @return bool
|
1480 |
-
*/
|
1481 |
-
function IsError() {
|
1482 |
-
return ($this->error_count > 0);
|
1483 |
-
}
|
1484 |
-
|
1485 |
-
/**
|
1486 |
-
* Changes every end of line from CR or LF to CRLF.
|
1487 |
-
* @access private
|
1488 |
-
* @return string
|
1489 |
-
*/
|
1490 |
-
function FixEOL($str) {
|
1491 |
-
$str = str_replace("\r\n", "\n", $str);
|
1492 |
-
$str = str_replace("\r", "\n", $str);
|
1493 |
-
$str = str_replace("\n", $this->LE, $str);
|
1494 |
-
return $str;
|
1495 |
-
}
|
1496 |
-
|
1497 |
-
/**
|
1498 |
-
* Adds a custom header.
|
1499 |
-
* @return void
|
1500 |
-
*/
|
1501 |
-
function AddCustomHeader($custom_header) {
|
1502 |
-
$this->CustomHeader[] = explode(":", $custom_header, 2);
|
1503 |
-
}
|
1504 |
-
}
|
1505 |
-
|
1506 |
-
?>
|
1 |
+
<?php
|
2 |
+
////////////////////////////////////////////////////
|
3 |
+
// PHPMailer - PHP email class
|
4 |
+
//
|
5 |
+
// Class for sending email using either
|
6 |
+
// sendmail, PHP mail(), or SMTP. Methods are
|
7 |
+
// based upon the standard AspEmail(tm) classes.
|
8 |
+
//
|
9 |
+
// Copyright (C) 2001 - 2003 Brent R. Matzelle
|
10 |
+
//
|
11 |
+
// License: LGPL, see LICENSE
|
12 |
+
////////////////////////////////////////////////////
|
13 |
+
|
14 |
+
/**
|
15 |
+
* PHPMailer - PHP email transport class
|
16 |
+
* @package PHPMailer
|
17 |
+
* @author Brent R. Matzelle
|
18 |
+
* @copyright 2001 - 2003 Brent R. Matzelle
|
19 |
+
*/
|
20 |
+
class EM_PHPMailer
|
21 |
+
{
|
22 |
+
/////////////////////////////////////////////////
|
23 |
+
// PUBLIC VARIABLES
|
24 |
+
/////////////////////////////////////////////////
|
25 |
+
|
26 |
+
/**
|
27 |
+
* Email priority (1 = High, 3 = Normal, 5 = low).
|
28 |
+
* @var int
|
29 |
+
*/
|
30 |
+
var $Priority = 3;
|
31 |
+
|
32 |
+
/**
|
33 |
+
* Sets the CharSet of the message.
|
34 |
+
* @var string
|
35 |
+
*/
|
36 |
+
var $CharSet = "iso-8859-1";
|
37 |
+
|
38 |
+
/**
|
39 |
+
* Sets the Content-type of the message.
|
40 |
+
* @var string
|
41 |
+
*/
|
42 |
+
var $ContentType = "text/plain";
|
43 |
+
|
44 |
+
/**
|
45 |
+
* Sets the Encoding of the message. Options for this are "8bit",
|
46 |
+
* "7bit", "binary", "base64", and "quoted-printable".
|
47 |
+
* @var string
|
48 |
+
*/
|
49 |
+
var $Encoding = "8bit";
|
50 |
+
|
51 |
+
/**
|
52 |
+
* Holds the most recent mailer error message.
|
53 |
+
* @var string
|
54 |
+
*/
|
55 |
+
var $ErrorInfo = "";
|
56 |
+
|
57 |
+
/**
|
58 |
+
* Sets the From email address for the message.
|
59 |
+
* @var string
|
60 |
+
*/
|
61 |
+
var $From = "root@localhost";
|
62 |
+
|
63 |
+
/**
|
64 |
+
* Sets the From name of the message.
|
65 |
+
* @var string
|
66 |
+
*/
|
67 |
+
var $FromName = "Root User";
|
68 |
+
|
69 |
+
/**
|
70 |
+
* Sets the Sender email (Return-Path) of the message. If not empty,
|
71 |
+
* will be sent via -f to sendmail or as 'MAIL FROM' in smtp mode.
|
72 |
+
* @var string
|
73 |
+
*/
|
74 |
+
var $Sender = "";
|
75 |
+
|
76 |
+
/**
|
77 |
+
* Sets the Subject of the message.
|
78 |
+
* @var string
|
79 |
+
*/
|
80 |
+
var $Subject = "";
|
81 |
+
|
82 |
+
/**
|
83 |
+
* Sets the Body of the message. This can be either an HTML or text body.
|
84 |
+
* If HTML then run IsHTML(true).
|
85 |
+
* @var string
|
86 |
+
*/
|
87 |
+
var $Body = "";
|
88 |
+
|
89 |
+
/**
|
90 |
+
* Sets the text-only body of the message. This automatically sets the
|
91 |
+
* email to multipart/alternative. This body can be read by mail
|
92 |
+
* clients that do not have HTML email capability such as mutt. Clients
|
93 |
+
* that can read HTML will view the normal Body.
|
94 |
+
* @var string
|
95 |
+
*/
|
96 |
+
var $AltBody = "";
|
97 |
+
|
98 |
+
/**
|
99 |
+
* Sets word wrapping on the body of the message to a given number of
|
100 |
+
* characters.
|
101 |
+
* @var int
|
102 |
+
*/
|
103 |
+
var $WordWrap = 0;
|
104 |
+
|
105 |
+
/**
|
106 |
+
* Method to send mail: ("mail", "sendmail", or "smtp").
|
107 |
+
* @var string
|
108 |
+
*/
|
109 |
+
var $Mailer = "mail";
|
110 |
+
|
111 |
+
/**
|
112 |
+
* Sets the path of the sendmail program.
|
113 |
+
* @var string
|
114 |
+
*/
|
115 |
+
var $Sendmail = "/usr/sbin/sendmail";
|
116 |
+
|
117 |
+
/**
|
118 |
+
* Path to PHPMailer plugins. This is now only useful if the SMTP class
|
119 |
+
* is in a different directory than the PHP include path.
|
120 |
+
* @var string
|
121 |
+
*/
|
122 |
+
var $PluginDir = "";
|
123 |
+
|
124 |
+
/**
|
125 |
+
* Holds PHPMailer version.
|
126 |
+
* @var string
|
127 |
+
*/
|
128 |
+
var $Version = "1.73";
|
129 |
+
|
130 |
+
/**
|
131 |
+
* Sets the email address that a reading confirmation will be sent.
|
132 |
+
* @var string
|
133 |
+
*/
|
134 |
+
var $ConfirmReadingTo = "";
|
135 |
+
|
136 |
+
/**
|
137 |
+
* Sets the hostname to use in Message-Id and Received headers
|
138 |
+
* and as default HELO string. If empty, the value returned
|
139 |
+
* by SERVER_NAME is used or 'localhost.localdomain'.
|
140 |
+
* @var string
|
141 |
+
*/
|
142 |
+
var $Hostname = "";
|
143 |
+
|
144 |
+
/////////////////////////////////////////////////
|
145 |
+
// SMTP VARIABLES
|
146 |
+
/////////////////////////////////////////////////
|
147 |
+
|
148 |
+
/**
|
149 |
+
* Sets the SMTP hosts. All hosts must be separated by a
|
150 |
+
* semicolon. You can also specify a different port
|
151 |
+
* for each host by using this format: [hostname:port]
|
152 |
+
* (e.g. "smtp1.example.com:25;smtp2.example.com").
|
153 |
+
* Hosts will be tried in order.
|
154 |
+
* @var string
|
155 |
+
*/
|
156 |
+
var $Host = "localhost";
|
157 |
+
|
158 |
+
/**
|
159 |
+
* Sets the default SMTP server port.
|
160 |
+
* @var int
|
161 |
+
*/
|
162 |
+
var $Port = 25;
|
163 |
+
|
164 |
+
/**
|
165 |
+
* Sets the SMTP HELO of the message (Default is $Hostname).
|
166 |
+
* @var string
|
167 |
+
*/
|
168 |
+
var $Helo = "";
|
169 |
+
|
170 |
+
/**
|
171 |
+
* Sets SMTP authentication. Utilizes the Username and Password variables.
|
172 |
+
* @var bool
|
173 |
+
*/
|
174 |
+
var $SMTPAuth = false;
|
175 |
+
|
176 |
+
/**
|
177 |
+
* Sets SMTP username.
|
178 |
+
* @var string
|
179 |
+
*/
|
180 |
+
var $Username = "";
|
181 |
+
|
182 |
+
/**
|
183 |
+
* Sets SMTP password.
|
184 |
+
* @var string
|
185 |
+
*/
|
186 |
+
var $Password = "";
|
187 |
+
|
188 |
+
/**
|
189 |
+
* Sets the SMTP server timeout in seconds. This function will not
|
190 |
+
* work with the win32 version.
|
191 |
+
* @var int
|
192 |
+
*/
|
193 |
+
var $Timeout = 10;
|
194 |
+
|
195 |
+
/**
|
196 |
+
* Sets SMTP class debugging on or off.
|
197 |
+
* @var bool
|
198 |
+
*/
|
199 |
+
var $SMTPDebug = false;
|
200 |
+
|
201 |
+
/**
|
202 |
+
* Prevents the SMTP connection from being closed after each mail
|
203 |
+
* sending. If this is set to true then to close the connection
|
204 |
+
* requires an explicit call to SmtpClose().
|
205 |
+
* @var bool
|
206 |
+
*/
|
207 |
+
var $SMTPKeepAlive = false;
|
208 |
+
|
209 |
+
/**#@+
|
210 |
+
* @access private
|
211 |
+
*/
|
212 |
+
var $smtp = NULL;
|
213 |
+
var $to = array();
|
214 |
+
var $cc = array();
|
215 |
+
var $bcc = array();
|
216 |
+
var $ReplyTo = array();
|
217 |
+
var $attachment = array();
|
218 |
+
var $CustomHeader = array();
|
219 |
+
var $message_type = "";
|
220 |
+
var $boundary = array();
|
221 |
+
var $language = array();
|
222 |
+
var $error_count = 0;
|
223 |
+
var $LE = "\n";
|
224 |
+
/**#@-*/
|
225 |
+
|
226 |
+
/////////////////////////////////////////////////
|
227 |
+
// VARIABLE METHODS
|
228 |
+
/////////////////////////////////////////////////
|
229 |
+
|
230 |
+
/**
|
231 |
+
* Sets message type to HTML.
|
232 |
+
* @param bool $bool
|
233 |
+
* @return void
|
234 |
+
*/
|
235 |
+
function IsHTML($bool) {
|
236 |
+
if($bool == true)
|
237 |
+
$this->ContentType = "text/html";
|
238 |
+
else
|
239 |
+
$this->ContentType = "text/plain";
|
240 |
+
}
|
241 |
+
|
242 |
+
/**
|
243 |
+
* Sets Mailer to send message using SMTP.
|
244 |
+
* @return void
|
245 |
+
*/
|
246 |
+
function IsSMTP() {
|
247 |
+
$this->Mailer = "smtp";
|
248 |
+
}
|
249 |
+
|
250 |
+
/**
|
251 |
+
* Sets Mailer to send message using PHP mail() function.
|
252 |
+
* @return void
|
253 |
+
*/
|
254 |
+
function IsMail() {
|
255 |
+
$this->Mailer = "mail";
|
256 |
+
}
|
257 |
+
|
258 |
+
/**
|
259 |
+
* Sets Mailer to send message using the $Sendmail program.
|
260 |
+
* @return void
|
261 |
+
*/
|
262 |
+
function IsSendmail() {
|
263 |
+
$this->Mailer = "sendmail";
|
264 |
+
}
|
265 |
+
|
266 |
+
/**
|
267 |
+
* Sets Mailer to send message using the qmail MTA.
|
268 |
+
* @return void
|
269 |
+
*/
|
270 |
+
function IsQmail() {
|
271 |
+
$this->Sendmail = "/var/qmail/bin/sendmail";
|
272 |
+
$this->Mailer = "sendmail";
|
273 |
+
}
|
274 |
+
|
275 |
+
|
276 |
+
/////////////////////////////////////////////////
|
277 |
+
// RECIPIENT METHODS
|
278 |
+
/////////////////////////////////////////////////
|
279 |
+
|
280 |
+
/**
|
281 |
+
* Adds a "To" address.
|
282 |
+
* @param string $address
|
283 |
+
* @param string $name
|
284 |
+
* @return void
|
285 |
+
*/
|
286 |
+
function AddAddress($address, $name = "") {
|
287 |
+
$cur = count($this->to);
|
288 |
+
$this->to[$cur][0] = trim($address);
|
289 |
+
$this->to[$cur][1] = $name;
|
290 |
+
}
|
291 |
+
|
292 |
+
/**
|
293 |
+
* Adds a "Cc" address. Note: this function works
|
294 |
+
* with the SMTP mailer on win32, not with the "mail"
|
295 |
+
* mailer.
|
296 |
+
* @param string $address
|
297 |
+
* @param string $name
|
298 |
+
* @return void
|
299 |
+
*/
|
300 |
+
function AddCC($address, $name = "") {
|
301 |
+
$cur = count($this->cc);
|
302 |
+
$this->cc[$cur][0] = trim($address);
|
303 |
+
$this->cc[$cur][1] = $name;
|
304 |
+
}
|
305 |
+
|
306 |
+
/**
|
307 |
+
* Adds a "Bcc" address. Note: this function works
|
308 |
+
* with the SMTP mailer on win32, not with the "mail"
|
309 |
+
* mailer.
|
310 |
+
* @param string $address
|
311 |
+
* @param string $name
|
312 |
+
* @return void
|
313 |
+
*/
|
314 |
+
function AddBCC($address, $name = "") {
|
315 |
+
$cur = count($this->bcc);
|
316 |
+
$this->bcc[$cur][0] = trim($address);
|
317 |
+
$this->bcc[$cur][1] = $name;
|
318 |
+
}
|
319 |
+
|
320 |
+
/**
|
321 |
+
* Adds a "Reply-to" address.
|
322 |
+
* @param string $address
|
323 |
+
* @param string $name
|
324 |
+
* @return void
|
325 |
+
*/
|
326 |
+
function AddReplyTo($address, $name = "") {
|
327 |
+
$cur = count($this->ReplyTo);
|
328 |
+
$this->ReplyTo[$cur][0] = trim($address);
|
329 |
+
$this->ReplyTo[$cur][1] = $name;
|
330 |
+
}
|
331 |
+
|
332 |
+
|
333 |
+
/////////////////////////////////////////////////
|
334 |
+
// MAIL SENDING METHODS
|
335 |
+
/////////////////////////////////////////////////
|
336 |
+
|
337 |
+
/**
|
338 |
+
* Creates message and assigns Mailer. If the message is
|
339 |
+
* not sent successfully then it returns false. Use the ErrorInfo
|
340 |
+
* variable to view description of the error.
|
341 |
+
* @return bool
|
342 |
+
*/
|
343 |
+
function Send() {
|
344 |
+
$header = "";
|
345 |
+
$body = "";
|
346 |
+
$result = true;
|
347 |
+
|
348 |
+
if((count($this->to) + count($this->cc) + count($this->bcc)) < 1)
|
349 |
+
{
|
350 |
+
$this->SetError($this->Lang("provide_address"));
|
351 |
+
return false;
|
352 |
+
}
|
353 |
+
|
354 |
+
// Set whether the message is multipart/alternative
|
355 |
+
if(!empty($this->AltBody))
|
356 |
+
$this->ContentType = "multipart/alternative";
|
357 |
+
|
358 |
+
$this->error_count = 0; // reset errors
|
359 |
+
$this->SetMessageType();
|
360 |
+
$header .= $this->CreateHeader();
|
361 |
+
$body = $this->CreateBody();
|
362 |
+
|
363 |
+
if($body == "") { return false; }
|
364 |
+
|
365 |
+
// Choose the mailer
|
366 |
+
switch($this->Mailer)
|
367 |
+
{
|
368 |
+
case "sendmail":
|
369 |
+
$result = $this->SendmailSend($header, $body);
|
370 |
+
break;
|
371 |
+
case "mail":
|
372 |
+
$result = $this->MailSend($header, $body);
|
373 |
+
break;
|
374 |
+
case "smtp":
|
375 |
+
$result = $this->SmtpSend($header, $body);
|
376 |
+
break;
|
377 |
+
default:
|
378 |
+
$this->SetError($this->Mailer . $this->Lang("mailer_not_supported"));
|
379 |
+
$result = false;
|
380 |
+
break;
|
381 |
+
}
|
382 |
+
|
383 |
+
return $result;
|
384 |
+
}
|
385 |
+
|
386 |
+
/**
|
387 |
+
* Sends mail using the $Sendmail program.
|
388 |
+
* @access private
|
389 |
+
* @return bool
|
390 |
+
*/
|
391 |
+
function SendmailSend($header, $body) {
|
392 |
+
if ($this->Sender != "")
|
393 |
+
$sendmail = sprintf("%s -oi -f %s -t", $this->Sendmail, $this->Sender);
|
394 |
+
else
|
395 |
+
$sendmail = sprintf("%s -oi -t", $this->Sendmail);
|
396 |
+
|
397 |
+
if(!@$mail = popen($sendmail, "w"))
|
398 |
+
{
|
399 |
+
$this->SetError($this->Lang("execute") . $this->Sendmail);
|
400 |
+
return false;
|
401 |
+
}
|
402 |
+
|
403 |
+
fputs($mail, $header);
|
404 |
+
fputs($mail, $body);
|
405 |
+
|
406 |
+
$result = pclose($mail) >> 8 & 0xFF;
|
407 |
+
if($result != 0)
|
408 |
+
{
|
409 |
+
$this->SetError($this->Lang("execute") . $this->Sendmail);
|
410 |
+
return false;
|
411 |
+
}
|
412 |
+
|
413 |
+
return true;
|
414 |
+
}
|
415 |
+
|
416 |
+
/**
|
417 |
+
* Sends mail using the PHP mail() function.
|
418 |
+
* @access private
|
419 |
+
* @return bool
|
420 |
+
*/
|
421 |
+
function MailSend($header, $body) {
|
422 |
+
$to = "";
|
423 |
+
for($i = 0; $i < count($this->to); $i++)
|
424 |
+
{
|
425 |
+
if($i != 0) { $to .= ", "; }
|
426 |
+
$to .= $this->to[$i][0];
|
427 |
+
}
|
428 |
+
|
429 |
+
if ($this->Sender != "" && strlen(ini_get("safe_mode"))< 1)
|
430 |
+
{
|
431 |
+
$old_from = ini_get("sendmail_from");
|
432 |
+
ini_set("sendmail_from", $this->Sender);
|
433 |
+
$params = sprintf("-oi -f %s", $this->Sender);
|
434 |
+
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body,
|
435 |
+
$header, $params);
|
436 |
+
}
|
437 |
+
else
|
438 |
+
$rt = @mail($to, $this->EncodeHeader($this->Subject), $body, $header);
|
439 |
+
|
440 |
+
if (isset($old_from))
|
441 |
+
ini_set("sendmail_from", $old_from);
|
442 |
+
|
443 |
+
if(!$rt)
|
444 |
+
{
|
445 |
+
$this->SetError($this->Lang("instantiate"));
|
446 |
+
return false;
|
447 |
+
}
|
448 |
+
|
449 |
+
return true;
|
450 |
+
}
|
451 |
+
|
452 |
+
/**
|
453 |
+
* Sends mail via SMTP using PhpSMTP (Author:
|
454 |
+
* Chris Ryan). Returns bool. Returns false if there is a
|
455 |
+
* bad MAIL FROM, RCPT, or DATA input.
|
456 |
+
* @access private
|
457 |
+
* @return bool
|
458 |
+
*/
|
459 |
+
function SmtpSend($header, $body) {
|
460 |
+
include_once($this->PluginDir . "class.smtp.php");
|
461 |
+
$error = "";
|
462 |
+
$bad_rcpt = array();
|
463 |
+
|
464 |
+
if(!$this->SmtpConnect())
|
465 |
+
return false;
|
466 |
+
|
467 |
+
$smtp_from = ($this->Sender == "") ? $this->From : $this->Sender;
|
468 |
+
if(!$this->smtp->Mail($smtp_from))
|
469 |
+
{
|
470 |
+
$error = $this->Lang("from_failed") . $smtp_from;
|
471 |
+
$this->SetError($error);
|
472 |
+
$this->smtp->Reset();
|
473 |
+
return false;
|
474 |
+
}
|
475 |
+
|
476 |
+
// Attempt to send attach all recipients
|
477 |
+
for($i = 0; $i < count($this->to); $i++)
|
478 |
+
{
|
479 |
+
if(!$this->smtp->Recipient($this->to[$i][0]))
|
480 |
+
$bad_rcpt[] = $this->to[$i][0];
|
481 |
+
}
|
482 |
+
for($i = 0; $i < count($this->cc); $i++)
|
483 |
+
{
|
484 |
+
if(!$this->smtp->Recipient($this->cc[$i][0]))
|
485 |
+
$bad_rcpt[] = $this->cc[$i][0];
|
486 |
+
}
|
487 |
+
for($i = 0; $i < count($this->bcc); $i++)
|
488 |
+
{
|
489 |
+
if(!$this->smtp->Recipient($this->bcc[$i][0]))
|
490 |
+
$bad_rcpt[] = $this->bcc[$i][0];
|
491 |
+
}
|
492 |
+
|
493 |
+
if(count($bad_rcpt) > 0) // Create error message
|
494 |
+
{
|
495 |
+
for($i = 0; $i < count($bad_rcpt); $i++)
|
496 |
+
{
|
497 |
+
if($i != 0) { $error .= ", "; }
|
498 |
+
$error .= $bad_rcpt[$i];
|
499 |
+
}
|
500 |
+
$error = $this->Lang("recipients_failed") . $error;
|
501 |
+
$this->SetError($error);
|
502 |
+
$this->smtp->Reset();
|
503 |
+
return false;
|
504 |
+
}
|
505 |
+
|
506 |
+
if(!$this->smtp->Data($header . $body))
|
507 |
+
{
|
508 |
+
$this->SetError($this->Lang("data_not_accepted"));
|
509 |
+
$this->smtp->Reset();
|
510 |
+
return false;
|
511 |
+
}
|
512 |
+
if($this->SMTPKeepAlive == true)
|
513 |
+
$this->smtp->Reset();
|
514 |
+
else
|
515 |
+
$this->SmtpClose();
|
516 |
+
|
517 |
+
return true;
|
518 |
+
}
|
519 |
+
|
520 |
+
/**
|
521 |
+
* Initiates a connection to an SMTP server. Returns false if the
|
522 |
+
* operation failed.
|
523 |
+
* @access private
|
524 |
+
* @return bool
|
525 |
+
*/
|
526 |
+
function SmtpConnect() {
|
527 |
+
if($this->smtp == NULL) { $this->smtp = new EM_SMTP(); }
|
528 |
+
|
529 |
+
$this->smtp->do_debug = $this->SMTPDebug;
|
530 |
+
$hosts = explode(";", $this->Host);
|
531 |
+
$index = 0;
|
532 |
+
$connection = ($this->smtp->Connected());
|
533 |
+
|
534 |
+
// Retry while there is no connection
|
535 |
+
while($index < count($hosts) && $connection == false)
|
536 |
+
{
|
537 |
+
if(strstr($hosts[$index], ":"))
|
538 |
+
{
|
539 |
+
$hostA = explode(':', $hosts[$index]);
|
540 |
+
if (is_numeric(end($hostA)))
|
541 |
+
$port = array_pop($hostA);
|
542 |
+
else
|
543 |
+
$port = $this->Port;
|
544 |
+
$host = implode(':', $hostA);
|
545 |
+
}
|
546 |
+
else
|
547 |
+
{
|
548 |
+
$host = $hosts[$index];
|
549 |
+
$port = $this->Port;
|
550 |
+
}
|
551 |
+
|
552 |
+
if($this->smtp->Connect($host, $port, $this->Timeout))
|
553 |
+
{
|
554 |
+
if ($this->Helo != '')
|
555 |
+
$this->smtp->Hello($this->Helo);
|
556 |
+
else
|
557 |
+
$this->smtp->Hello($this->ServerHostname());
|
558 |
+
|
559 |
+
if($this->SMTPAuth)
|
560 |
+
{
|
561 |
+
if(!$this->smtp->Authenticate($this->Username,
|
562 |
+
$this->Password))
|
563 |
+
{
|
564 |
+
$this->SetError($this->Lang("authenticate"));
|
565 |
+
$this->smtp->Reset();
|
566 |
+
$connection = false;
|
567 |
+
}
|
568 |
+
}
|
569 |
+
$connection = true;
|
570 |
+
}
|
571 |
+
$index++;
|
572 |
+
}
|
573 |
+
if(!$connection)
|
574 |
+
$this->SetError($this->Lang("connect_host"));
|
575 |
+
|
576 |
+
return $connection;
|
577 |
+
}
|
578 |
+
|
579 |
+
/**
|
580 |
+
* Closes the active SMTP session if one exists.
|
581 |
+
* @return void
|
582 |
+
*/
|
583 |
+
function SmtpClose() {
|
584 |
+
if($this->smtp != NULL)
|
585 |
+
{
|
586 |
+
if($this->smtp->Connected())
|
587 |
+
{
|
588 |
+
$this->smtp->Quit();
|
589 |
+
$this->smtp->Close();
|
590 |
+
}
|
591 |
+
}
|
592 |
+
}
|
593 |
+
|
594 |
+
/**
|
595 |
+
* Sets the language for all class error messages. Returns false
|
596 |
+
* if it cannot load the language file. The default language type
|
597 |
+
* is English.
|
598 |
+
* @param string $lang_type Type of language (e.g. Portuguese: "br")
|
599 |
+
* @param string $lang_path Path to the language file directory
|
600 |
+
* @access public
|
601 |
+
* @return bool
|
602 |
+
*/
|
603 |
+
function SetLanguage($lang_type, $lang_path = "language/") {
|
604 |
+
if(file_exists($lang_path.'phpmailer.lang-'.$lang_type.'.php'))
|
605 |
+
include($lang_path.'phpmailer.lang-'.$lang_type.'.php');
|
606 |
+
else if(file_exists($lang_path.'phpmailer.lang-en.php'))
|
607 |
+
include($lang_path.'phpmailer.lang-en.php');
|
608 |
+
else
|
609 |
+
{
|
610 |
+
$this->SetError("Could not load language file");
|
611 |
+
return false;
|
612 |
+
}
|
613 |
+
$this->language = $PHPMAILER_LANG;
|
614 |
+
|
615 |
+
return true;
|
616 |
+
}
|
617 |
+
|
618 |
+
/////////////////////////////////////////////////
|
619 |
+
// MESSAGE CREATION METHODS
|
620 |
+
/////////////////////////////////////////////////
|
621 |
+
|
622 |
+
/**
|
623 |
+
* Creates recipient headers.
|
624 |
+
* @access private
|
625 |
+
* @return string
|
626 |
+
*/
|
627 |
+
function AddrAppend($type, $addr) {
|
628 |
+
$addr_str = $type . ": ";
|
629 |
+
$addr_str .= $this->AddrFormat($addr[0]);
|
630 |
+
if(count($addr) > 1)
|
631 |
+
{
|
632 |
+
for($i = 1; $i < count($addr); $i++)
|
633 |
+
$addr_str .= ", " . $this->AddrFormat($addr[$i]);
|
634 |
+
}
|
635 |
+
$addr_str .= $this->LE;
|
636 |
+
|
637 |
+
return $addr_str;
|
638 |
+
}
|
639 |
+
|
640 |
+
/**
|
641 |
+
* Formats an address correctly.
|
642 |
+
* @access private
|
643 |
+
* @return string
|
644 |
+
*/
|
645 |
+
function AddrFormat($addr) {
|
646 |
+
if(empty($addr[1]))
|
647 |
+
$formatted = $addr[0];
|
648 |
+
else
|
649 |
+
{
|
650 |
+
$formatted = $this->EncodeHeader($addr[1], 'phrase') . " <" .
|
651 |
+
$addr[0] . ">";
|
652 |
+
}
|
653 |
+
|
654 |
+
return $formatted;
|
655 |
+
}
|
656 |
+
|
657 |
+
/**
|
658 |
+
* Wraps message for use with mailers that do not
|
659 |
+
* automatically perform wrapping and for quoted-printable.
|
660 |
+
* Original written by philippe.
|
661 |
+
* @access private
|
662 |
+
* @return string
|
663 |
+
*/
|
664 |
+
function WrapText($message, $length, $qp_mode = false) {
|
665 |
+
$soft_break = ($qp_mode) ? sprintf(" =%s", $this->LE) : $this->LE;
|
666 |
+
|
667 |
+
$message = $this->FixEOL($message);
|
668 |
+
if (substr($message, -1) == $this->LE)
|
669 |
+
$message = substr($message, 0, -1);
|
670 |
+
|
671 |
+
$line = explode($this->LE, $message);
|
672 |
+
$message = "";
|
673 |
+
for ($i=0 ;$i < count($line); $i++)
|
674 |
+
{
|
675 |
+
$line_part = explode(" ", $line[$i]);
|
676 |
+
$buf = "";
|
677 |
+
for ($e = 0; $e<count($line_part); $e++)
|
678 |
+
{
|
679 |
+
$word = $line_part[$e];
|
680 |
+
if ($qp_mode and (strlen($word) > $length))
|
681 |
+
{
|
682 |
+
$space_left = $length - strlen($buf) - 1;
|
683 |
+
if ($e != 0)
|
684 |
+
{
|
685 |
+
if ($space_left > 20)
|
686 |
+
{
|
687 |
+
$len = $space_left;
|
688 |
+
if (substr($word, $len - 1, 1) == "=")
|
689 |
+
$len--;
|
690 |
+
elseif (substr($word, $len - 2, 1) == "=")
|
691 |
+
$len -= 2;
|
692 |
+
$part = substr($word, 0, $len);
|
693 |
+
$word = substr($word, $len);
|
694 |
+
$buf .= " " . $part;
|
695 |
+
$message .= $buf . sprintf("=%s", $this->LE);
|
696 |
+
}
|
697 |
+
else
|
698 |
+
{
|
699 |
+
$message .= $buf . $soft_break;
|
700 |
+
}
|
701 |
+
$buf = "";
|
702 |
+
}
|
703 |
+
while (strlen($word) > 0)
|
704 |
+
{
|
705 |
+
$len = $length;
|
706 |
+
if (substr($word, $len - 1, 1) == "=")
|
707 |
+
$len--;
|
708 |
+
elseif (substr($word, $len - 2, 1) == "=")
|
709 |
+
$len -= 2;
|
710 |
+
$part = substr($word, 0, $len);
|
711 |
+
$word = substr($word, $len);
|
712 |
+
|
713 |
+
if (strlen($word) > 0)
|
714 |
+
$message .= $part . sprintf("=%s", $this->LE);
|
715 |
+
else
|
716 |
+
$buf = $part;
|
717 |
+
}
|
718 |
+
}
|
719 |
+
else
|
720 |
+
{
|
721 |
+
$buf_o = $buf;
|
722 |
+
$buf .= ($e == 0) ? $word : (" " . $word);
|
723 |
+
|
724 |
+
if (strlen($buf) > $length and $buf_o != "")
|
725 |
+
{
|
726 |
+
$message .= $buf_o . $soft_break;
|
727 |
+
$buf = $word;
|
728 |
+
}
|
729 |
+
}
|
730 |
+
}
|
731 |
+
$message .= $buf . $this->LE;
|
732 |
+
}
|
733 |
+
|
734 |
+
return $message;
|
735 |
+
}
|
736 |
+
|
737 |
+
/**
|
738 |
+
* Set the body wrapping.
|
739 |
+
* @access private
|
740 |
+
* @return void
|
741 |
+
*/
|
742 |
+
function SetWordWrap() {
|
743 |
+
if($this->WordWrap < 1)
|
744 |
+
return;
|
745 |
+
|
746 |
+
switch($this->message_type)
|
747 |
+
{
|
748 |
+
case "alt":
|
749 |
+
// fall through
|
750 |
+
case "alt_attachments":
|
751 |
+
$this->AltBody = $this->WrapText($this->AltBody, $this->WordWrap);
|
752 |
+
break;
|
753 |
+
default:
|
754 |
+
$this->Body = $this->WrapText($this->Body, $this->WordWrap);
|
755 |
+
break;
|
756 |
+
}
|
757 |
+
}
|
758 |
+
|
759 |
+
/**
|
760 |
+
* Assembles message header.
|
761 |
+
* @access private
|
762 |
+
* @return string
|
763 |
+
*/
|
764 |
+
function CreateHeader() {
|
765 |
+
$result = "";
|
766 |
+
|
767 |
+
// Set the boundaries
|
768 |
+
$uniq_id = md5(uniqid(time()));
|
769 |
+
$this->boundary[1] = "b1_" . $uniq_id;
|
770 |
+
$this->boundary[2] = "b2_" . $uniq_id;
|
771 |
+
|
772 |
+
$result .= $this->HeaderLine("Date", $this->RFCDate());
|
773 |
+
if($this->Sender == "")
|
774 |
+
$result .= $this->HeaderLine("Return-Path", trim($this->From));
|
775 |
+
else
|
776 |
+
$result .= $this->HeaderLine("Return-Path", trim($this->Sender));
|
777 |
+
|
778 |
+
// To be created automatically by mail()
|
779 |
+
if($this->Mailer != "mail")
|
780 |
+
{
|
781 |
+
if(count($this->to) > 0)
|
782 |
+
$result .= $this->AddrAppend("To", $this->to);
|
783 |
+
else if (count($this->cc) == 0)
|
784 |
+
$result .= $this->HeaderLine("To", "undisclosed-recipients:;");
|
785 |
+
if(count($this->cc) > 0)
|
786 |
+
$result .= $this->AddrAppend("Cc", $this->cc);
|
787 |
+
}
|
788 |
+
|
789 |
+
$from = array();
|
790 |
+
$from[0][0] = trim($this->From);
|
791 |
+
$from[0][1] = $this->FromName;
|
792 |
+
$result .= $this->AddrAppend("From", $from);
|
793 |
+
|
794 |
+
// sendmail and mail() extract Bcc from the header before sending
|
795 |
+
if((($this->Mailer == "sendmail") || ($this->Mailer == "mail")) && (count($this->bcc) > 0))
|
796 |
+
$result .= $this->AddrAppend("Bcc", $this->bcc);
|
797 |
+
|
798 |
+
if(count($this->ReplyTo) > 0)
|
799 |
+
$result .= $this->AddrAppend("Reply-to", $this->ReplyTo);
|
800 |
+
|
801 |
+
// mail() sets the subject itself
|
802 |
+
if($this->Mailer != "mail")
|
803 |
+
$result .= $this->HeaderLine("Subject", $this->EncodeHeader(trim($this->Subject)));
|
804 |
+
|
805 |
+
$result .= sprintf("Message-ID: <%s@%s>%s", $uniq_id, $this->ServerHostname(), $this->LE);
|
806 |
+
$result .= $this->HeaderLine("X-Priority", $this->Priority);
|
807 |
+
$result .= $this->HeaderLine("X-Mailer", "PHPMailer [version " . $this->Version . "]");
|
808 |
+
|
809 |
+
if($this->ConfirmReadingTo != "")
|
810 |
+
{
|
811 |
+
$result .= $this->HeaderLine("Disposition-Notification-To",
|
812 |
+
"<" . trim($this->ConfirmReadingTo) . ">");
|
813 |
+
}
|
814 |
+
|
815 |
+
// Add custom headers
|
816 |
+
for($index = 0; $index < count($this->CustomHeader); $index++)
|
817 |
+
{
|
818 |
+
$result .= $this->HeaderLine(trim($this->CustomHeader[$index][0]),
|
819 |
+
$this->EncodeHeader(trim($this->CustomHeader[$index][1])));
|
820 |
+
}
|
821 |
+
$result .= $this->HeaderLine("MIME-Version", "1.0");
|
822 |
+
|
823 |
+
switch($this->message_type)
|
824 |
+
{
|
825 |
+
case "plain":
|
826 |
+
$result .= $this->HeaderLine("Content-Transfer-Encoding", $this->Encoding);
|
827 |
+
$result .= sprintf("Content-Type: %s; charset=\"%s\"",
|
828 |
+
$this->ContentType, $this->CharSet);
|
829 |
+
break;
|
830 |
+
case "attachments":
|
831 |
+
// fall through
|
832 |
+
case "alt_attachments":
|
833 |
+
if($this->InlineImageExists())
|
834 |
+
{
|
835 |
+
$result .= sprintf("Content-Type: %s;%s\ttype=\"text/html\";%s\tboundary=\"%s\"%s",
|
836 |
+
"multipart/related", $this->LE, $this->LE,
|
837 |
+
$this->boundary[1], $this->LE);
|
838 |
+
}
|
839 |
+
else
|
840 |
+
{
|
841 |
+
$result .= $this->HeaderLine("Content-Type", "multipart/mixed;");
|
842 |
+
$result .= $this->TextLine("\tboundary=\"" . $this->boundary[1] . '"');
|
843 |
+
}
|
844 |
+
break;
|
845 |
+
case "alt":
|
846 |
+
$result .= $this->HeaderLine("Content-Type", "multipart/alternative;");
|
847 |
+
$result .= $this->TextLine("\tboundary=\"" . $this->boundary[1] . '"');
|
848 |
+
break;
|
849 |
+
}
|
850 |
+
|
851 |
+
if($this->Mailer != "mail")
|
852 |
+
$result .= $this->LE.$this->LE;
|
853 |
+
|
854 |
+
return $result;
|
855 |
+
}
|
856 |
+
|
857 |
+
/**
|
858 |
+
* Assembles the message body. Returns an empty string on failure.
|
859 |
+
* @access private
|
860 |
+
* @return string
|
861 |
+
*/
|
862 |
+
function CreateBody() {
|
863 |
+
$result = "";
|
864 |
+
|
865 |
+
$this->SetWordWrap();
|
866 |
+
|
867 |
+
switch($this->message_type)
|
868 |
+
{
|
869 |
+
case "alt":
|
870 |
+
$result .= $this->GetBoundary($this->boundary[1], "",
|
871 |
+
"text/plain", "");
|
872 |
+
$result .= $this->EncodeString($this->AltBody, $this->Encoding);
|
873 |
+
$result .= $this->LE.$this->LE;
|
874 |
+
$result .= $this->GetBoundary($this->boundary[1], "",
|
875 |
+
"text/html", "");
|
876 |
+
|
877 |
+
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
878 |
+
$result .= $this->LE.$this->LE;
|
879 |
+
|
880 |
+
$result .= $this->EndBoundary($this->boundary[1]);
|
881 |
+
break;
|
882 |
+
case "plain":
|
883 |
+
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
884 |
+
break;
|
885 |
+
case "attachments":
|
886 |
+
$result .= $this->GetBoundary($this->boundary[1], "", "", "");
|
887 |
+
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
888 |
+
$result .= $this->LE;
|
889 |
+
|
890 |
+
$result .= $this->AttachAll();
|
891 |
+
break;
|
892 |
+
case "alt_attachments":
|
893 |
+
$result .= sprintf("--%s%s", $this->boundary[1], $this->LE);
|
894 |
+
$result .= sprintf("Content-Type: %s;%s" .
|
895 |
+
"\tboundary=\"%s\"%s",
|
896 |
+
"multipart/alternative", $this->LE,
|
897 |
+
$this->boundary[2], $this->LE.$this->LE);
|
898 |
+
|
899 |
+
// Create text body
|
900 |
+
$result .= $this->GetBoundary($this->boundary[2], "",
|
901 |
+
"text/plain", "") . $this->LE;
|
902 |
+
|
903 |
+
$result .= $this->EncodeString($this->AltBody, $this->Encoding);
|
904 |
+
$result .= $this->LE.$this->LE;
|
905 |
+
|
906 |
+
// Create the HTML body
|
907 |
+
$result .= $this->GetBoundary($this->boundary[2], "",
|
908 |
+
"text/html", "") . $this->LE;
|
909 |
+
|
910 |
+
$result .= $this->EncodeString($this->Body, $this->Encoding);
|
911 |
+
$result .= $this->LE.$this->LE;
|
912 |
+
|
913 |
+
$result .= $this->EndBoundary($this->boundary[2]);
|
914 |
+
|
915 |
+
$result .= $this->AttachAll();
|
916 |
+
break;
|
917 |
+
}
|
918 |
+
if($this->IsError())
|
919 |
+
$result = "";
|
920 |
+
|
921 |
+
return $result;
|
922 |
+
}
|
923 |
+
|
924 |
+
/**
|
925 |
+
* Returns the start of a message boundary.
|
926 |
+
* @access private
|
927 |
+
*/
|
928 |
+
function GetBoundary($boundary, $charSet, $contentType, $encoding) {
|
929 |
+
$result = "";
|
930 |
+
if($charSet == "") { $charSet = $this->CharSet; }
|
931 |
+
if($contentType == "") { $contentType = $this->ContentType; }
|
932 |
+
if($encoding == "") { $encoding = $this->Encoding; }
|
933 |
+
|
934 |
+
$result .= $this->TextLine("--" . $boundary);
|
935 |
+
$result .= sprintf("Content-Type: %s; charset = \"%s\"",
|
936 |
+
$contentType, $charSet);
|
937 |
+
$result .= $this->LE;
|
938 |
+
$result .= $this->HeaderLine("Content-Transfer-Encoding", $encoding);
|
939 |
+
$result .= $this->LE;
|
940 |
+
|
941 |
+
return $result;
|
942 |
+
}
|
943 |
+
|
944 |
+
/**
|
945 |
+
* Returns the end of a message boundary.
|
946 |
+
* @access private
|
947 |
+
*/
|
948 |
+
function EndBoundary($boundary) {
|
949 |
+
return $this->LE . "--" . $boundary . "--" . $this->LE;
|
950 |
+
}
|
951 |
+
|
952 |
+
/**
|
953 |
+
* Sets the message type.
|
954 |
+
* @access private
|
955 |
+
* @return void
|
956 |
+
*/
|
957 |
+
function SetMessageType() {
|
958 |
+
if(count($this->attachment) < 1 && strlen($this->AltBody) < 1)
|
959 |
+
$this->message_type = "plain";
|
960 |
+
else
|
961 |
+
{
|
962 |
+
if(count($this->attachment) > 0)
|
963 |
+
$this->message_type = "attachments";
|
964 |
+
if(strlen($this->AltBody) > 0 && count($this->attachment) < 1)
|
965 |
+
$this->message_type = "alt";
|
966 |
+
if(strlen($this->AltBody) > 0 && count($this->attachment) > 0)
|
967 |
+
$this->message_type = "alt_attachments";
|
968 |
+
}
|
969 |
+
}
|
970 |
+
|
971 |
+
/**
|
972 |
+
* Returns a formatted header line.
|
973 |
+
* @access private
|
974 |
+
* @return string
|
975 |
+
*/
|
976 |
+
function HeaderLine($name, $value) {
|
977 |
+
return $name . ": " . $value . $this->LE;
|
978 |
+
}
|
979 |
+
|
980 |
+
/**
|
981 |
+
* Returns a formatted mail line.
|
982 |
+
* @access private
|
983 |
+
* @return string
|
984 |
+
*/
|
985 |
+
function TextLine($value) {
|
986 |
+
return $value . $this->LE;
|
987 |
+
}
|
988 |
+
|
989 |
+
/////////////////////////////////////////////////
|
990 |
+
// ATTACHMENT METHODS
|
991 |
+
/////////////////////////////////////////////////
|
992 |
+
|
993 |
+
/**
|
994 |
+
* Adds an attachment from a path on the filesystem.
|
995 |
+
* Returns false if the file could not be found
|
996 |
+
* or accessed.
|
997 |
+
* @param string $path Path to the attachment.
|
998 |
+
* @param string $name Overrides the attachment name.
|
999 |
+
* @param string $encoding File encoding (see $Encoding).
|
1000 |
+
* @param string $type File extension (MIME) type.
|
1001 |
+
* @return bool
|
1002 |
+
*/
|
1003 |
+
function AddAttachment($path, $name = "", $encoding = "base64",
|
1004 |
+
$type = "application/octet-stream") {
|
1005 |
+
if(!@is_file($path))
|
1006 |
+
{
|
1007 |
+
$this->SetError($this->Lang("file_access") . $path);
|
1008 |
+
return false;
|
1009 |
+
}
|
1010 |
+
|
1011 |
+
$filename = basename($path);
|
1012 |
+
if($name == "")
|
1013 |
+
$name = $filename;
|
1014 |
+
|
1015 |
+
$cur = count($this->attachment);
|
1016 |
+
$this->attachment[$cur][0] = $path;
|
1017 |
+
$this->attachment[$cur][1] = $filename;
|
1018 |
+
$this->attachment[$cur][2] = $name;
|
1019 |
+
$this->attachment[$cur][3] = $encoding;
|
1020 |
+
$this->attachment[$cur][4] = $type;
|
1021 |
+
$this->attachment[$cur][5] = false; // isStringAttachment
|
1022 |
+
$this->attachment[$cur][6] = "attachment";
|
1023 |
+
$this->attachment[$cur][7] = 0;
|
1024 |
+
|
1025 |
+
return true;
|
1026 |
+
}
|
1027 |
+
|
1028 |
+
/**
|
1029 |
+
* Attaches all fs, string, and binary attachments to the message.
|
1030 |
+
* Returns an empty string on failure.
|
1031 |
+
* @access private
|
1032 |
+
* @return string
|
1033 |
+
*/
|
1034 |
+
function AttachAll() {
|
1035 |
+
// Return text of body
|
1036 |
+
$mime = array();
|
1037 |
+
|
1038 |
+
// Add all attachments
|
1039 |
+
for($i = 0; $i < count($this->attachment); $i++)
|
1040 |
+
{
|
1041 |
+
// Check for string attachment
|
1042 |
+
$bString = $this->attachment[$i][5];
|
1043 |
+
if ($bString)
|
1044 |
+
$string = $this->attachment[$i][0];
|
1045 |
+
else
|
1046 |
+
$path = $this->attachment[$i][0];
|
1047 |
+
|
1048 |
+
$filename = $this->attachment[$i][1];
|
1049 |
+
$name = $this->attachment[$i][2];
|
1050 |
+
$encoding = $this->attachment[$i][3];
|
1051 |
+
$type = $this->attachment[$i][4];
|
1052 |
+
$disposition = $this->attachment[$i][6];
|
1053 |
+
$cid = $this->attachment[$i][7];
|
1054 |
+
|
1055 |
+
$mime[] = sprintf("--%s%s", $this->boundary[1], $this->LE);
|
1056 |
+
$mime[] = sprintf("Content-Type: %s; name=\"%s\"%s", $type, $name, $this->LE);
|
1057 |
+
$mime[] = sprintf("Content-Transfer-Encoding: %s%s", $encoding, $this->LE);
|
1058 |
+
|
1059 |
+
if($disposition == "inline")
|
1060 |
+
$mime[] = sprintf("Content-ID: <%s>%s", $cid, $this->LE);
|
1061 |
+
|
1062 |
+
$mime[] = sprintf("Content-Disposition: %s; filename=\"%s\"%s",
|
1063 |
+
$disposition, $name, $this->LE.$this->LE);
|
1064 |
+
|
1065 |
+
// Encode as string attachment
|
1066 |
+
if($bString)
|
1067 |
+
{
|
1068 |
+
$mime[] = $this->EncodeString($string, $encoding);
|
1069 |
+
if($this->IsError()) { return ""; }
|
1070 |
+
$mime[] = $this->LE.$this->LE;
|
1071 |
+
}
|
1072 |
+
else
|
1073 |
+
{
|
1074 |
+
$mime[] = $this->EncodeFile($path, $encoding);
|
1075 |
+
if($this->IsError()) { return ""; }
|
1076 |
+
$mime[] = $this->LE.$this->LE;
|
1077 |
+
}
|
1078 |
+
}
|
1079 |
+
|
1080 |
+
$mime[] = sprintf("--%s--%s", $this->boundary[1], $this->LE);
|
1081 |
+
|
1082 |
+
return join("", $mime);
|
1083 |
+
}
|
1084 |
+
|
1085 |
+
/**
|
1086 |
+
* Encodes attachment in requested format. Returns an
|
1087 |
+
* empty string on failure.
|
1088 |
+
* @access private
|
1089 |
+
* @return string
|
1090 |
+
*/
|
1091 |
+
function EncodeFile ($path, $encoding = "base64") {
|
1092 |
+
if(!@$fd = fopen($path, "rb"))
|
1093 |
+
{
|
1094 |
+
$this->SetError($this->Lang("file_open") . $path);
|
1095 |
+
return "";
|
1096 |
+
}
|
1097 |
+
$magic_quotes = get_magic_quotes_runtime();
|
1098 |
+
set_magic_quotes_runtime(0);
|
1099 |
+
$file_buffer = fread($fd, filesize($path));
|
1100 |
+
$file_buffer = $this->EncodeString($file_buffer, $encoding);
|
1101 |
+
fclose($fd);
|
1102 |
+
set_magic_quotes_runtime($magic_quotes);
|
1103 |
+
|
1104 |
+
return $file_buffer;
|
1105 |
+
}
|
1106 |
+
|
1107 |
+
/**
|
1108 |
+
* Encodes string to requested format. Returns an
|
1109 |
+
* empty string on failure.
|
1110 |
+
* @access private
|
1111 |
+
* @return string
|
1112 |
+
*/
|
1113 |
+
function EncodeString ($str, $encoding = "base64") {
|
1114 |
+
$encoded = "";
|
1115 |
+
switch(strtolower($encoding)) {
|
1116 |
+
case "base64":
|
1117 |
+
// chunk_split is found in PHP >= 3.0.6
|
1118 |
+
$encoded = chunk_split(base64_encode($str), 76, $this->LE);
|
1119 |
+
break;
|
1120 |
+
case "7bit":
|
1121 |
+
case "8bit":
|
1122 |
+
$encoded = $this->FixEOL($str);
|
1123 |
+
if (substr($encoded, -(strlen($this->LE))) != $this->LE)
|
1124 |
+
$encoded .= $this->LE;
|
1125 |
+
break;
|
1126 |
+
case "binary":
|
1127 |
+
$encoded = $str;
|
1128 |
+
break;
|
1129 |
+
case "quoted-printable":
|
1130 |
+
$encoded = $this->EncodeQP($str);
|
1131 |
+
break;
|
1132 |
+
default:
|
1133 |
+
$this->SetError($this->Lang("encoding") . $encoding);
|
1134 |
+
break;
|
1135 |
+
}
|
1136 |
+
return $encoded;
|
1137 |
+
}
|
1138 |
+
|
1139 |
+
/**
|
1140 |
+
* Encode a header string to best of Q, B, quoted or none.
|
1141 |
+
* @access private
|
1142 |
+
* @return string
|
1143 |
+
*/
|
1144 |
+
function EncodeHeader ($str, $position = 'text') {
|
1145 |
+
$x = 0;
|
1146 |
+
|
1147 |
+
switch (strtolower($position)) {
|
1148 |
+
case 'phrase':
|
1149 |
+
if (!preg_match('/[\200-\377]/', $str)) {
|
1150 |
+
// Can't use addslashes as we don't know what value has magic_quotes_sybase.
|
1151 |
+
$encoded = addcslashes($str, "\0..\37\177\\\"");
|
1152 |
+
|
1153 |
+
if (($str == $encoded) && !preg_match('/[^A-Za-z0-9!#$%&\'*+\/=?^_`{|}~ -]/', $str))
|
1154 |
+
return ($encoded);
|
1155 |
+
else
|
1156 |
+
return ("\"$encoded\"");
|
1157 |
+
}
|
1158 |
+
$x = preg_match_all('/[^\040\041\043-\133\135-\176]/', $str, $matches);
|
1159 |
+
break;
|
1160 |
+
case 'comment':
|
1161 |
+
$x = preg_match_all('/[()"]/', $str, $matches);
|
1162 |
+
// Fall-through
|
1163 |
+
case 'text':
|
1164 |
+
default:
|
1165 |
+
$x += preg_match_all('/[\000-\010\013\014\016-\037\177-\377]/', $str, $matches);
|
1166 |
+
break;
|
1167 |
+
}
|
1168 |
+
|
1169 |
+
if ($x == 0)
|
1170 |
+
return ($str);
|
1171 |
+
|
1172 |
+
$maxlen = 75 - 7 - strlen($this->CharSet);
|
1173 |
+
// Try to select the encoding which should produce the shortest output
|
1174 |
+
if (strlen($str)/3 < $x) {
|
1175 |
+
$encoding = 'B';
|
1176 |
+
$encoded = base64_encode($str);
|
1177 |
+
$maxlen -= $maxlen % 4;
|
1178 |
+
$encoded = trim(chunk_split($encoded, $maxlen, "\n"));
|
1179 |
+
} else {
|
1180 |
+
$encoding = 'Q';
|
1181 |
+
$encoded = $this->EncodeQ($str, $position);
|
1182 |
+
$encoded = $this->WrapText($encoded, $maxlen, true);
|
1183 |
+
$encoded = str_replace("=".$this->LE, "\n", trim($encoded));
|
1184 |
+
}
|
1185 |
+
|
1186 |
+
$encoded = preg_replace('/^(.*)$/m', " =?".$this->CharSet."?$encoding?\\1?=", $encoded);
|
1187 |
+
$encoded = trim(str_replace("\n", $this->LE, $encoded));
|
1188 |
+
|
1189 |
+
return $encoded;
|
1190 |
+
}
|
1191 |
+
|
1192 |
+
/**
|
1193 |
+
* Encode string to quoted-printable.
|
1194 |
+
* @access private
|
1195 |
+
* @return string
|
1196 |
+
*/
|
1197 |
+
function EncodeQP ($str) {
|
1198 |
+
$encoded = $this->FixEOL($str);
|
1199 |
+
if (substr($encoded, -(strlen($this->LE))) != $this->LE)
|
1200 |
+
$encoded .= $this->LE;
|
1201 |
+
|
1202 |
+
// Replace every high ascii, control and = characters
|
1203 |
+
$encoded = preg_replace('/([\000-\010\013\014\016-\037\075\177-\377])/e',
|
1204 |
+
"'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1205 |
+
// Replace every spaces and tabs when it's the last character on a line
|
1206 |
+
$encoded = preg_replace("/([\011\040])".$this->LE."/e",
|
1207 |
+
"'='.sprintf('%02X', ord('\\1')).'".$this->LE."'", $encoded);
|
1208 |
+
|
1209 |
+
// Maximum line length of 76 characters before CRLF (74 + space + '=')
|
1210 |
+
$encoded = $this->WrapText($encoded, 74, true);
|
1211 |
+
|
1212 |
+
return $encoded;
|
1213 |
+
}
|
1214 |
+
|
1215 |
+
/**
|
1216 |
+
* Encode string to q encoding.
|
1217 |
+
* @access private
|
1218 |
+
* @return string
|
1219 |
+
*/
|
1220 |
+
function EncodeQ ($str, $position = "text") {
|
1221 |
+
// There should not be any EOL in the string
|
1222 |
+
$encoded = preg_replace("[\r\n]", "", $str);
|
1223 |
+
|
1224 |
+
switch (strtolower($position)) {
|
1225 |
+
case "phrase":
|
1226 |
+
$encoded = preg_replace("/([^A-Za-z0-9!*+\/ -])/e", "'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1227 |
+
break;
|
1228 |
+
case "comment":
|
1229 |
+
$encoded = preg_replace("/([\(\)\"])/e", "'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1230 |
+
case "text":
|
1231 |
+
default:
|
1232 |
+
// Replace every high ascii, control =, ? and _ characters
|
1233 |
+
$encoded = preg_replace('/([\000-\011\013\014\016-\037\075\077\137\177-\377])/e',
|
1234 |
+
"'='.sprintf('%02X', ord('\\1'))", $encoded);
|
1235 |
+
break;
|
1236 |
+
}
|
1237 |
+
|
1238 |
+
// Replace every spaces to _ (more readable than =20)
|
1239 |
+
$encoded = str_replace(" ", "_", $encoded);
|
1240 |
+
|
1241 |
+
return $encoded;
|
1242 |
+
}
|
1243 |
+
|
1244 |
+
/**
|
1245 |
+
* Adds a string or binary attachment (non-filesystem) to the list.
|
1246 |
+
* This method can be used to attach ascii or binary data,
|
1247 |
+
* such as a BLOB record from a database.
|
1248 |
+
* @param string $string String attachment data.
|
1249 |
+
* @param string $filename Name of the attachment.
|
1250 |
+
* @param string $encoding File encoding (see $Encoding).
|
1251 |
+
* @param string $type File extension (MIME) type.
|
1252 |
+
* @return void
|
1253 |
+
*/
|
1254 |
+
function AddStringAttachment($string, $filename, $encoding = "base64",
|
1255 |
+
$type = "application/octet-stream") {
|
1256 |
+
// Append to $attachment array
|
1257 |
+
$cur = count($this->attachment);
|
1258 |
+
$this->attachment[$cur][0] = $string;
|
1259 |
+
$this->attachment[$cur][1] = $filename;
|
1260 |
+
$this->attachment[$cur][2] = $filename;
|
1261 |
+
$this->attachment[$cur][3] = $encoding;
|
1262 |
+
$this->attachment[$cur][4] = $type;
|
1263 |
+
$this->attachment[$cur][5] = true; // isString
|
1264 |
+
$this->attachment[$cur][6] = "attachment";
|
1265 |
+
$this->attachment[$cur][7] = 0;
|
1266 |
+
}
|
1267 |
+
|
1268 |
+
/**
|
1269 |
+
* Adds an embedded attachment. This can include images, sounds, and
|
1270 |
+
* just about any other document. Make sure to set the $type to an
|
1271 |
+
* image type. For JPEG images use "image/jpeg" and for GIF images
|
1272 |
+
* use "image/gif".
|
1273 |
+
* @param string $path Path to the attachment.
|
1274 |
+
* @param string $cid Content ID of the attachment. Use this to identify
|
1275 |
+
* the Id for accessing the image in an HTML form.
|
1276 |
+
* @param string $name Overrides the attachment name.
|
1277 |
+
* @param string $encoding File encoding (see $Encoding).
|
1278 |
+
* @param string $type File extension (MIME) type.
|
1279 |
+
* @return bool
|
1280 |
+
*/
|
1281 |
+
function AddEmbeddedImage($path, $cid, $name = "", $encoding = "base64",
|
1282 |
+
$type = "application/octet-stream") {
|
1283 |
+
|
1284 |
+
if(!@is_file($path))
|
1285 |
+
{
|
1286 |
+
$this->SetError($this->Lang("file_access") . $path);
|
1287 |
+
return false;
|
1288 |
+
}
|
1289 |
+
|
1290 |
+
$filename = basename($path);
|
1291 |
+
if($name == "")
|
1292 |
+
$name = $filename;
|
1293 |
+
|
1294 |
+
// Append to $attachment array
|
1295 |
+
$cur = count($this->attachment);
|
1296 |
+
$this->attachment[$cur][0] = $path;
|
1297 |
+
$this->attachment[$cur][1] = $filename;
|
1298 |
+
$this->attachment[$cur][2] = $name;
|
1299 |
+
$this->attachment[$cur][3] = $encoding;
|
1300 |
+
$this->attachment[$cur][4] = $type;
|
1301 |
+
$this->attachment[$cur][5] = false; // isStringAttachment
|
1302 |
+
$this->attachment[$cur][6] = "inline";
|
1303 |
+
$this->attachment[$cur][7] = $cid;
|
1304 |
+
|
1305 |
+
return true;
|
1306 |
+
}
|
1307 |
+
|
1308 |
+
/**
|
1309 |
+
* Returns true if an inline attachment is present.
|
1310 |
+
* @access private
|
1311 |
+
* @return bool
|
1312 |
+
*/
|
1313 |
+
function InlineImageExists() {
|
1314 |
+
$result = false;
|
1315 |
+
for($i = 0; $i < count($this->attachment); $i++)
|
1316 |
+
{
|
1317 |
+
if($this->attachment[$i][6] == "inline")
|
1318 |
+
{
|
1319 |
+
$result = true;
|
1320 |
+
break;
|
1321 |
+
}
|
1322 |
+
}
|
1323 |
+
|
1324 |
+
return $result;
|
1325 |
+
}
|
1326 |
+
|
1327 |
+
/////////////////////////////////////////////////
|
1328 |
+
// MESSAGE RESET METHODS
|
1329 |
+
/////////////////////////////////////////////////
|
1330 |
+
|
1331 |
+
/**
|
1332 |
+
* Clears all recipients assigned in the TO array. Returns void.
|
1333 |
+
* @return void
|
1334 |
+
*/
|
1335 |
+
function ClearAddresses() {
|
1336 |
+
$this->to = array();
|
1337 |
+
}
|
1338 |
+
|
1339 |
+
/**
|
1340 |
+
* Clears all recipients assigned in the CC array. Returns void.
|
1341 |
+
* @return void
|
1342 |
+
*/
|
1343 |
+
function ClearCCs() {
|
1344 |
+
$this->cc = array();
|
1345 |
+
}
|
1346 |
+
|
1347 |
+
/**
|
1348 |
+
* Clears all recipients assigned in the BCC array. Returns void.
|
1349 |
+
* @return void
|
1350 |
+
*/
|
1351 |
+
function ClearBCCs() {
|
1352 |
+
$this->bcc = array();
|
1353 |
+
}
|
1354 |
+
|
1355 |
+
/**
|
1356 |
+
* Clears all recipients assigned in the ReplyTo array. Returns void.
|
1357 |
+
* @return void
|
1358 |
+
*/
|
1359 |
+
function ClearReplyTos() {
|
1360 |
+
$this->ReplyTo = array();
|
1361 |
+
}
|
1362 |
+
|
1363 |
+
/**
|
1364 |
+
* Clears all recipients assigned in the TO, CC and BCC
|
1365 |
+
* array. Returns void.
|
1366 |
+
* @return void
|
1367 |
+
*/
|
1368 |
+
function ClearAllRecipients() {
|
1369 |
+
$this->to = array();
|
1370 |
+
$this->cc = array();
|
1371 |
+
$this->bcc = array();
|
1372 |
+
}
|
1373 |
+
|
1374 |
+
/**
|
1375 |
+
* Clears all previously set filesystem, string, and binary
|
1376 |
+
* attachments. Returns void.
|
1377 |
+
* @return void
|
1378 |
+
*/
|
1379 |
+
function ClearAttachments() {
|
1380 |
+
$this->attachment = array();
|
1381 |
+
}
|
1382 |
+
|
1383 |
+
/**
|
1384 |
+
* Clears all custom headers. Returns void.
|
1385 |
+
* @return void
|
1386 |
+
*/
|
1387 |
+
function ClearCustomHeaders() {
|
1388 |
+
$this->CustomHeader = array();
|
1389 |
+
}
|
1390 |
+
|
1391 |
+
|
1392 |
+
/////////////////////////////////////////////////
|
1393 |
+
// MISCELLANEOUS METHODS
|
1394 |
+
/////////////////////////////////////////////////
|
1395 |
+
|
1396 |
+
/**
|
1397 |
+
* Adds the error message to the error container.
|
1398 |
+
* Returns void.
|
1399 |
+
* @access private
|
1400 |
+
* @return void
|
1401 |
+
*/
|
1402 |
+
function SetError($msg) {
|
1403 |
+
$this->error_count++;
|
1404 |
+
$this->ErrorInfo = $msg;
|
1405 |
+
}
|
1406 |
+
|
1407 |
+
/**
|
1408 |
+
* Returns the proper RFC 822 formatted date.
|
1409 |
+
* @access private
|
1410 |
+
* @return string
|
1411 |
+
*/
|
1412 |
+
function RFCDate() {
|
1413 |
+
$tz = date("Z");
|
1414 |
+
$tzs = ($tz < 0) ? "-" : "+";
|
1415 |
+
$tz = abs($tz);
|
1416 |
+
$tz = ($tz/3600)*100 + ($tz%3600)/60;
|
1417 |
+
$result = sprintf("%s %s%04d", date("D, j M Y H:i:s"), $tzs, $tz);
|
1418 |
+
|
1419 |
+
return $result;
|
1420 |
+
}
|
1421 |
+
|
1422 |
+
/**
|
1423 |
+
* Returns the appropriate server variable. Should work with both
|
1424 |
+
* PHP 4.1.0+ as well as older versions. Returns an empty string
|
1425 |
+
* if nothing is found.
|
1426 |
+
* @access private
|
1427 |
+
* @return mixed
|
1428 |
+
*/
|
1429 |
+
function ServerVar($varName) {
|
1430 |
+
global $HTTP_SERVER_VARS;
|
1431 |
+
global $HTTP_ENV_VARS;
|
1432 |
+
|
1433 |
+
if(!isset($_SERVER))
|
1434 |
+
{
|
1435 |
+
$_SERVER = $HTTP_SERVER_VARS;
|
1436 |
+
if(!isset($_SERVER["REMOTE_ADDR"]))
|
1437 |
+
$_SERVER = $HTTP_ENV_VARS; // must be Apache
|
1438 |
+
}
|
1439 |
+
|
1440 |
+
if(isset($_SERVER[$varName]))
|
1441 |
+
return $_SERVER[$varName];
|
1442 |
+
else
|
1443 |
+
return "";
|
1444 |
+
}
|
1445 |
+
|
1446 |
+
/**
|
1447 |
+
* Returns the server hostname or 'localhost.localdomain' if unknown.
|
1448 |
+
* @access private
|
1449 |
+
* @return string
|
1450 |
+
*/
|
1451 |
+
function ServerHostname() {
|
1452 |
+
if ($this->Hostname != "")
|
1453 |
+
$result = $this->Hostname;
|
1454 |
+
elseif ($this->ServerVar('SERVER_NAME') != "")
|
1455 |
+
$result = $this->ServerVar('SERVER_NAME');
|
1456 |
+
else
|
1457 |
+
$result = "localhost.localdomain";
|
1458 |
+
|
1459 |
+
return $result;
|
1460 |
+
}
|
1461 |
+
|
1462 |
+
/**
|
1463 |
+
* Returns a message in the appropriate language.
|
1464 |
+
* @access private
|
1465 |
+
* @return string
|
1466 |
+
*/
|
1467 |
+
function Lang($key) {
|
1468 |
+
if(count($this->language) < 1)
|
1469 |
+
$this->SetLanguage("en"); // set the default language
|
1470 |
+
|
1471 |
+
if(isset($this->language[$key]))
|
1472 |
+
return $this->language[$key];
|
1473 |
+
else
|
1474 |
+
return "Language string failed to load: " . $key;
|
1475 |
+
}
|
1476 |
+
|
1477 |
+
/**
|
1478 |
+
* Returns true if an error occurred.
|
1479 |
+
* @return bool
|
1480 |
+
*/
|
1481 |
+
function IsError() {
|
1482 |
+
return ($this->error_count > 0);
|
1483 |
+
}
|
1484 |
+
|
1485 |
+
/**
|
1486 |
+
* Changes every end of line from CR or LF to CRLF.
|
1487 |
+
* @access private
|
1488 |
+
* @return string
|
1489 |
+
*/
|
1490 |
+
function FixEOL($str) {
|
1491 |
+
$str = str_replace("\r\n", "\n", $str);
|
1492 |
+
$str = str_replace("\r", "\n", $str);
|
1493 |
+
$str = str_replace("\n", $this->LE, $str);
|
1494 |
+
return $str;
|
1495 |
+
}
|
1496 |
+
|
1497 |
+
/**
|
1498 |
+
* Adds a custom header.
|
1499 |
+
* @return void
|
1500 |
+
*/
|
1501 |
+
function AddCustomHeader($custom_header) {
|
1502 |
+
$this->CustomHeader[] = explode(":", $custom_header, 2);
|
1503 |
+
}
|
1504 |
+
}
|
1505 |
+
|
1506 |
+
?>
|
classes/phpmailer/class.smtp.php
CHANGED
@@ -1,1045 +1,1045 @@
|
|
1 |
-
<?php
|
2 |
-
////////////////////////////////////////////////////
|
3 |
-
// SMTP - PHP SMTP class
|
4 |
-
//
|
5 |
-
// Version 1.02
|
6 |
-
//
|
7 |
-
// Define an SMTP class that can be used to connect
|
8 |
-
// and communicate with any SMTP server. It implements
|
9 |
-
// all the SMTP functions defined in RFC821 except TURN.
|
10 |
-
//
|
11 |
-
// Author: Chris Ryan
|
12 |
-
//
|
13 |
-
// License: LGPL, see LICENSE
|
14 |
-
////////////////////////////////////////////////////
|
15 |
-
|
16 |
-
/**
|
17 |
-
* SMTP is rfc 821 compliant and implements all the rfc 821 SMTP
|
18 |
-
* commands except TURN which will always return a not implemented
|
19 |
-
* error. SMTP also provides some utility methods for sending mail
|
20 |
-
* to an SMTP server.
|
21 |
-
* @package PHPMailer
|
22 |
-
* @author Chris Ryan
|
23 |
-
*/
|
24 |
-
class EM_SMTP
|
25 |
-
{
|
26 |
-
/**
|
27 |
-
* SMTP server port
|
28 |
-
* @var int
|
29 |
-
*/
|
30 |
-
var $SMTP_PORT = 25;
|
31 |
-
|
32 |
-
/**
|
33 |
-
* SMTP reply line ending
|
34 |
-
* @var string
|
35 |
-
*/
|
36 |
-
var $CRLF = "\r\n";
|
37 |
-
|
38 |
-
/**
|
39 |
-
* Sets whether debugging is turned on
|
40 |
-
* @var bool
|
41 |
-
*/
|
42 |
-
var $do_debug; # the level of debug to perform
|
43 |
-
|
44 |
-
/**#@+
|
45 |
-
* @access private
|
46 |
-
*/
|
47 |
-
var $smtp_conn; # the socket to the server
|
48 |
-
var $error; # error if any on the last call
|
49 |
-
var $helo_rply; # the reply the server sent to us for HELO
|
50 |
-
/**#@-*/
|
51 |
-
|
52 |
-
/**
|
53 |
-
* Initialize the class so that the data is in a known state.
|
54 |
-
* @access public
|
55 |
-
* @return void
|
56 |
-
*/
|
57 |
-
function EM_SMTP() {
|
58 |
-
$this->smtp_conn = 0;
|
59 |
-
$this->error = null;
|
60 |
-
$this->helo_rply = null;
|
61 |
-
|
62 |
-
$this->do_debug = 0;
|
63 |
-
}
|
64 |
-
|
65 |
-
/*************************************************************
|
66 |
-
* CONNECTION FUNCTIONS *
|
67 |
-
***********************************************************/
|
68 |
-
|
69 |
-
/**
|
70 |
-
* Connect to the server specified on the port specified.
|
71 |
-
* If the port is not specified use the default SMTP_PORT.
|
72 |
-
* If tval is specified then a connection will try and be
|
73 |
-
* established with the server for that number of seconds.
|
74 |
-
* If tval is not specified the default is 30 seconds to
|
75 |
-
* try on the connection.
|
76 |
-
*
|
77 |
-
* SMTP CODE SUCCESS: 220
|
78 |
-
* SMTP CODE FAILURE: 421
|
79 |
-
* @access public
|
80 |
-
* @return bool
|
81 |
-
*/
|
82 |
-
function Connect($host,$port=0,$tval=30) {
|
83 |
-
# set the error val to null so there is no confusion
|
84 |
-
$this->error = null;
|
85 |
-
|
86 |
-
# make sure we are __not__ connected
|
87 |
-
if($this->connected()) {
|
88 |
-
# ok we are connected! what should we do?
|
89 |
-
# for now we will just give an error saying we
|
90 |
-
# are already connected
|
91 |
-
$this->error =
|
92 |
-
array("error" => "Already connected to a server");
|
93 |
-
return false;
|
94 |
-
}
|
95 |
-
|
96 |
-
if(empty($port)) {
|
97 |
-
$port = $this->SMTP_PORT;
|
98 |
-
}
|
99 |
-
|
100 |
-
#connect to the smtp server
|
101 |
-
$this->smtp_conn = fsockopen($host, # the host of the server
|
102 |
-
$port, # the port to use
|
103 |
-
$errno, # error number if any
|
104 |
-
$errstr, # error message if any
|
105 |
-
$tval); # give up after ? secs
|
106 |
-
# verify we connected properly
|
107 |
-
if(empty($this->smtp_conn)) {
|
108 |
-
$this->error = array("error" => "Failed to connect to server",
|
109 |
-
"errno" => $errno,
|
110 |
-
"errstr" => $errstr);
|
111 |
-
if($this->do_debug >= 1) {
|
112 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
113 |
-
": $errstr ($errno)" . $this->CRLF;
|
114 |
-
}
|
115 |
-
return false;
|
116 |
-
}
|
117 |
-
|
118 |
-
# sometimes the SMTP server takes a little longer to respond
|
119 |
-
# so we will give it a longer timeout for the first read
|
120 |
-
// Windows still does not have support for this timeout function
|
121 |
-
if(substr(PHP_OS, 0, 3) != "WIN")
|
122 |
-
socket_set_timeout($this->smtp_conn, $tval, 0);
|
123 |
-
|
124 |
-
# get any announcement stuff
|
125 |
-
$announce = $this->get_lines();
|
126 |
-
|
127 |
-
# set the timeout of any socket functions at 1/10 of a second
|
128 |
-
//if(function_exists("socket_set_timeout"))
|
129 |
-
// socket_set_timeout($this->smtp_conn, 0, 100000);
|
130 |
-
|
131 |
-
if($this->do_debug >= 2) {
|
132 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $announce;
|
133 |
-
}
|
134 |
-
|
135 |
-
return true;
|
136 |
-
}
|
137 |
-
|
138 |
-
/**
|
139 |
-
* Performs SMTP authentication. Must be run after running the
|
140 |
-
* Hello() method. Returns true if successfully authenticated.
|
141 |
-
* @access public
|
142 |
-
* @return bool
|
143 |
-
*/
|
144 |
-
function Authenticate($username, $password) {
|
145 |
-
// Start authentication
|
146 |
-
fputs($this->smtp_conn,"AUTH LOGIN" . $this->CRLF);
|
147 |
-
|
148 |
-
$rply = $this->get_lines();
|
149 |
-
$code = substr($rply,0,3);
|
150 |
-
|
151 |
-
if($code != 334) {
|
152 |
-
$this->error =
|
153 |
-
array("error" => "AUTH not accepted from server",
|
154 |
-
"smtp_code" => $code,
|
155 |
-
"smtp_msg" => substr($rply,4));
|
156 |
-
if($this->do_debug >= 1) {
|
157 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
158 |
-
": " . $rply . $this->CRLF;
|
159 |
-
}
|
160 |
-
return false;
|
161 |
-
}
|
162 |
-
|
163 |
-
// Send encoded username
|
164 |
-
fputs($this->smtp_conn, base64_encode($username) . $this->CRLF);
|
165 |
-
|
166 |
-
$rply = $this->get_lines();
|
167 |
-
$code = substr($rply,0,3);
|
168 |
-
|
169 |
-
if($code != 334) {
|
170 |
-
$this->error =
|
171 |
-
array("error" => "Username not accepted from server",
|
172 |
-
"smtp_code" => $code,
|
173 |
-
"smtp_msg" => substr($rply,4));
|
174 |
-
if($this->do_debug >= 1) {
|
175 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
176 |
-
": " . $rply . $this->CRLF;
|
177 |
-
}
|
178 |
-
return false;
|
179 |
-
}
|
180 |
-
|
181 |
-
// Send encoded password
|
182 |
-
fputs($this->smtp_conn, base64_encode($password) . $this->CRLF);
|
183 |
-
|
184 |
-
$rply = $this->get_lines();
|
185 |
-
$code = substr($rply,0,3);
|
186 |
-
|
187 |
-
if($code != 235) {
|
188 |
-
$this->error =
|
189 |
-
array("error" => "Password not accepted from server",
|
190 |
-
"smtp_code" => $code,
|
191 |
-
"smtp_msg" => substr($rply,4));
|
192 |
-
if($this->do_debug >= 1) {
|
193 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
194 |
-
": " . $rply . $this->CRLF;
|
195 |
-
}
|
196 |
-
return false;
|
197 |
-
}
|
198 |
-
|
199 |
-
return true;
|
200 |
-
}
|
201 |
-
|
202 |
-
/**
|
203 |
-
* Returns true if connected to a server otherwise false
|
204 |
-
* @access private
|
205 |
-
* @return bool
|
206 |
-
*/
|
207 |
-
function Connected() {
|
208 |
-
if(!empty($this->smtp_conn)) {
|
209 |
-
$sock_status = socket_get_status($this->smtp_conn);
|
210 |
-
if($sock_status["eof"]) {
|
211 |
-
# hmm this is an odd situation... the socket is
|
212 |
-
# valid but we aren't connected anymore
|
213 |
-
if($this->do_debug >= 1) {
|
214 |
-
echo "SMTP -> NOTICE:" . $this->CRLF .
|
215 |
-
"EOF caught while checking if connected";
|
216 |
-
}
|
217 |
-
$this->Close();
|
218 |
-
return false;
|
219 |
-
}
|
220 |
-
return true; # everything looks good
|
221 |
-
}
|
222 |
-
return false;
|
223 |
-
}
|
224 |
-
|
225 |
-
/**
|
226 |
-
* Closes the socket and cleans up the state of the class.
|
227 |
-
* It is not considered good to use this function without
|
228 |
-
* first trying to use QUIT.
|
229 |
-
* @access public
|
230 |
-
* @return void
|
231 |
-
*/
|
232 |
-
function Close() {
|
233 |
-
$this->error = null; # so there is no confusion
|
234 |
-
$this->helo_rply = null;
|
235 |
-
if(!empty($this->smtp_conn)) {
|
236 |
-
# close the connection and cleanup
|
237 |
-
fclose($this->smtp_conn);
|
238 |
-
$this->smtp_conn = 0;
|
239 |
-
}
|
240 |
-
}
|
241 |
-
|
242 |
-
|
243 |
-
/***************************************************************
|
244 |
-
* SMTP COMMANDS *
|
245 |
-
*************************************************************/
|
246 |
-
|
247 |
-
/**
|
248 |
-
* Issues a data command and sends the msg_data to the server
|
249 |
-
* finializing the mail transaction. $msg_data is the message
|
250 |
-
* that is to be send with the headers. Each header needs to be
|
251 |
-
* on a single line followed by a <CRLF> with the message headers
|
252 |
-
* and the message body being seperated by and additional <CRLF>.
|
253 |
-
*
|
254 |
-
* Implements rfc 821: DATA <CRLF>
|
255 |
-
*
|
256 |
-
* SMTP CODE INTERMEDIATE: 354
|
257 |
-
* [data]
|
258 |
-
* <CRLF>.<CRLF>
|
259 |
-
* SMTP CODE SUCCESS: 250
|
260 |
-
* SMTP CODE FAILURE: 552,554,451,452
|
261 |
-
* SMTP CODE FAILURE: 451,554
|
262 |
-
* SMTP CODE ERROR : 500,501,503,421
|
263 |
-
* @access public
|
264 |
-
* @return bool
|
265 |
-
*/
|
266 |
-
function Data($msg_data) {
|
267 |
-
$this->error = null; # so no confusion is caused
|
268 |
-
|
269 |
-
if(!$this->connected()) {
|
270 |
-
$this->error = array(
|
271 |
-
"error" => "Called Data() without being connected");
|
272 |
-
return false;
|
273 |
-
}
|
274 |
-
|
275 |
-
fputs($this->smtp_conn,"DATA" . $this->CRLF);
|
276 |
-
|
277 |
-
$rply = $this->get_lines();
|
278 |
-
$code = substr($rply,0,3);
|
279 |
-
|
280 |
-
if($this->do_debug >= 2) {
|
281 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
282 |
-
}
|
283 |
-
|
284 |
-
if($code != 354) {
|
285 |
-
$this->error =
|
286 |
-
array("error" => "DATA command not accepted from server",
|
287 |
-
"smtp_code" => $code,
|
288 |
-
"smtp_msg" => substr($rply,4));
|
289 |
-
if($this->do_debug >= 1) {
|
290 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
291 |
-
": " . $rply . $this->CRLF;
|
292 |
-
}
|
293 |
-
return false;
|
294 |
-
}
|
295 |
-
|
296 |
-
# the server is ready to accept data!
|
297 |
-
# according to rfc 821 we should not send more than 1000
|
298 |
-
# including the CRLF
|
299 |
-
# characters on a single line so we will break the data up
|
300 |
-
# into lines by \r and/or \n then if needed we will break
|
301 |
-
# each of those into smaller lines to fit within the limit.
|
302 |
-
# in addition we will be looking for lines that start with
|
303 |
-
# a period '.' and append and additional period '.' to that
|
304 |
-
# line. NOTE: this does not count towards are limit.
|
305 |
-
|
306 |
-
# normalize the line breaks so we know the explode works
|
307 |
-
$msg_data = str_replace("\r\n","\n",$msg_data);
|
308 |
-
$msg_data = str_replace("\r","\n",$msg_data);
|
309 |
-
$lines = explode("\n",$msg_data);
|
310 |
-
|
311 |
-
# we need to find a good way to determine is headers are
|
312 |
-
# in the msg_data or if it is a straight msg body
|
313 |
-
# currently I'm assuming rfc 822 definitions of msg
|
314 |
-
# and if the first field of the first line (':' sperated)
|
315 |
-
# does not contain a space then it _should_ be a header
|
316 |
-
# and we can process all lines before a blank "" line as
|
317 |
-
# headers.
|
318 |
-
$field = substr($lines[0],0,strpos($lines[0],":"));
|
319 |
-
$in_headers = false;
|
320 |
-
if(!empty($field) && !strstr($field," ")) {
|
321 |
-
$in_headers = true;
|
322 |
-
}
|
323 |
-
|
324 |
-
$max_line_length = 998; # used below; set here for ease in change
|
325 |
-
|
326 |
-
while(list(,$line) = @each($lines)) {
|
327 |
-
$lines_out = null;
|
328 |
-
if($line == "" && $in_headers) {
|
329 |
-
$in_headers = false;
|
330 |
-
}
|
331 |
-
# ok we need to break this line up into several
|
332 |
-
# smaller lines
|
333 |
-
while(strlen($line) > $max_line_length) {
|
334 |
-
$pos = strrpos(substr($line,0,$max_line_length)," ");
|
335 |
-
|
336 |
-
# Patch to fix DOS attack
|
337 |
-
if(!$pos) {
|
338 |
-
$pos = $max_line_length - 1;
|
339 |
-
}
|
340 |
-
|
341 |
-
$lines_out[] = substr($line,0,$pos);
|
342 |
-
$line = substr($line,$pos + 1);
|
343 |
-
# if we are processing headers we need to
|
344 |
-
# add a LWSP-char to the front of the new line
|
345 |
-
# rfc 822 on long msg headers
|
346 |
-
if($in_headers) {
|
347 |
-
$line = "\t" . $line;
|
348 |
-
}
|
349 |
-
}
|
350 |
-
$lines_out[] = $line;
|
351 |
-
|
352 |
-
# now send the lines to the server
|
353 |
-
while(list(,$line_out) = @each($lines_out)) {
|
354 |
-
if(strlen($line_out) > 0)
|
355 |
-
{
|
356 |
-
if(substr($line_out, 0, 1) == ".") {
|
357 |
-
$line_out = "." . $line_out;
|
358 |
-
}
|
359 |
-
}
|
360 |
-
fputs($this->smtp_conn,$line_out . $this->CRLF);
|
361 |
-
}
|
362 |
-
}
|
363 |
-
|
364 |
-
# ok all the message data has been sent so lets get this
|
365 |
-
# over with aleady
|
366 |
-
fputs($this->smtp_conn, $this->CRLF . "." . $this->CRLF);
|
367 |
-
|
368 |
-
$rply = $this->get_lines();
|
369 |
-
$code = substr($rply,0,3);
|
370 |
-
|
371 |
-
if($this->do_debug >= 2) {
|
372 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
373 |
-
}
|
374 |
-
|
375 |
-
if($code != 250) {
|
376 |
-
$this->error =
|
377 |
-
array("error" => "DATA not accepted from server",
|
378 |
-
"smtp_code" => $code,
|
379 |
-
"smtp_msg" => substr($rply,4));
|
380 |
-
if($this->do_debug >= 1) {
|
381 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
382 |
-
": " . $rply . $this->CRLF;
|
383 |
-
}
|
384 |
-
return false;
|
385 |
-
}
|
386 |
-
return true;
|
387 |
-
}
|
388 |
-
|
389 |
-
/**
|
390 |
-
* Expand takes the name and asks the server to list all the
|
391 |
-
* people who are members of the _list_. Expand will return
|
392 |
-
* back and array of the result or false if an error occurs.
|
393 |
-
* Each value in the array returned has the format of:
|
394 |
-
* [ <full-name> <sp> ] <path>
|
395 |
-
* The definition of <path> is defined in rfc 821
|
396 |
-
*
|
397 |
-
* Implements rfc 821: EXPN <SP> <string> <CRLF>
|
398 |
-
*
|
399 |
-
* SMTP CODE SUCCESS: 250
|
400 |
-
* SMTP CODE FAILURE: 550
|
401 |
-
* SMTP CODE ERROR : 500,501,502,504,421
|
402 |
-
* @access public
|
403 |
-
* @return string array
|
404 |
-
*/
|
405 |
-
function Expand($name) {
|
406 |
-
$this->error = null; # so no confusion is caused
|
407 |
-
|
408 |
-
if(!$this->connected()) {
|
409 |
-
$this->error = array(
|
410 |
-
"error" => "Called Expand() without being connected");
|
411 |
-
return false;
|
412 |
-
}
|
413 |
-
|
414 |
-
fputs($this->smtp_conn,"EXPN " . $name . $this->CRLF);
|
415 |
-
|
416 |
-
$rply = $this->get_lines();
|
417 |
-
$code = substr($rply,0,3);
|
418 |
-
|
419 |
-
if($this->do_debug >= 2) {
|
420 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
421 |
-
}
|
422 |
-
|
423 |
-
if($code != 250) {
|
424 |
-
$this->error =
|
425 |
-
array("error" => "EXPN not accepted from server",
|
426 |
-
"smtp_code" => $code,
|
427 |
-
"smtp_msg" => substr($rply,4));
|
428 |
-
if($this->do_debug >= 1) {
|
429 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
430 |
-
": " . $rply . $this->CRLF;
|
431 |
-
}
|
432 |
-
return false;
|
433 |
-
}
|
434 |
-
|
435 |
-
# parse the reply and place in our array to return to user
|
436 |
-
$entries = explode($this->CRLF,$rply);
|
437 |
-
while(list(,$l) = @each($entries)) {
|
438 |
-
$list[] = substr($l,4);
|
439 |
-
}
|
440 |
-
|
441 |
-
return $list;
|
442 |
-
}
|
443 |
-
|
444 |
-
/**
|
445 |
-
* Sends the HELO command to the smtp server.
|
446 |
-
* This makes sure that we and the server are in
|
447 |
-
* the same known state.
|
448 |
-
*
|
449 |
-
* Implements from rfc 821: HELO <SP> <domain> <CRLF>
|
450 |
-
*
|
451 |
-
* SMTP CODE SUCCESS: 250
|
452 |
-
* SMTP CODE ERROR : 500, 501, 504, 421
|
453 |
-
* @access public
|
454 |
-
* @return bool
|
455 |
-
*/
|
456 |
-
function Hello($host="") {
|
457 |
-
$this->error = null; # so no confusion is caused
|
458 |
-
|
459 |
-
if(!$this->connected()) {
|
460 |
-
$this->error = array(
|
461 |
-
"error" => "Called Hello() without being connected");
|
462 |
-
return false;
|
463 |
-
}
|
464 |
-
|
465 |
-
# if a hostname for the HELO wasn't specified determine
|
466 |
-
# a suitable one to send
|
467 |
-
if(empty($host)) {
|
468 |
-
# we need to determine some sort of appopiate default
|
469 |
-
# to send to the server
|
470 |
-
$host = "localhost";
|
471 |
-
}
|
472 |
-
|
473 |
-
// Send extended hello first (RFC 2821)
|
474 |
-
if(!$this->SendHello("EHLO", $host))
|
475 |
-
{
|
476 |
-
if(!$this->SendHello("HELO", $host))
|
477 |
-
return false;
|
478 |
-
}
|
479 |
-
|
480 |
-
return true;
|
481 |
-
}
|
482 |
-
|
483 |
-
/**
|
484 |
-
* Sends a HELO/EHLO command.
|
485 |
-
* @access private
|
486 |
-
* @return bool
|
487 |
-
*/
|
488 |
-
function SendHello($hello, $host) {
|
489 |
-
fputs($this->smtp_conn, $hello . " " . $host . $this->CRLF);
|
490 |
-
|
491 |
-
$rply = $this->get_lines();
|
492 |
-
$code = substr($rply,0,3);
|
493 |
-
|
494 |
-
if($this->do_debug >= 2) {
|
495 |
-
echo "SMTP -> FROM SERVER: " . $this->CRLF . $rply;
|
496 |
-
}
|
497 |
-
|
498 |
-
if($code != 250) {
|
499 |
-
$this->error =
|
500 |
-
array("error" => $hello . " not accepted from server",
|
501 |
-
"smtp_code" => $code,
|
502 |
-
"smtp_msg" => substr($rply,4));
|
503 |
-
if($this->do_debug >= 1) {
|
504 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
505 |
-
": " . $rply . $this->CRLF;
|
506 |
-
}
|
507 |
-
return false;
|
508 |
-
}
|
509 |
-
|
510 |
-
$this->helo_rply = $rply;
|
511 |
-
|
512 |
-
return true;
|
513 |
-
}
|
514 |
-
|
515 |
-
/**
|
516 |
-
* Gets help information on the keyword specified. If the keyword
|
517 |
-
* is not specified then returns generic help, ussually contianing
|
518 |
-
* A list of keywords that help is available on. This function
|
519 |
-
* returns the results back to the user. It is up to the user to
|
520 |
-
* handle the returned data. If an error occurs then false is
|
521 |
-
* returned with $this->error set appropiately.
|
522 |
-
*
|
523 |
-
* Implements rfc 821: HELP [ <SP> <string> ] <CRLF>
|
524 |
-
*
|
525 |
-
* SMTP CODE SUCCESS: 211,214
|
526 |
-
* SMTP CODE ERROR : 500,501,502,504,421
|
527 |
-
* @access public
|
528 |
-
* @return string
|
529 |
-
*/
|
530 |
-
function Help($keyword="") {
|
531 |
-
$this->error = null; # to avoid confusion
|
532 |
-
|
533 |
-
if(!$this->connected()) {
|
534 |
-
$this->error = array(
|
535 |
-
"error" => "Called Help() without being connected");
|
536 |
-
return false;
|
537 |
-
}
|
538 |
-
|
539 |
-
$extra = "";
|
540 |
-
if(!empty($keyword)) {
|
541 |
-
$extra = " " . $keyword;
|
542 |
-
}
|
543 |
-
|
544 |
-
fputs($this->smtp_conn,"HELP" . $extra . $this->CRLF);
|
545 |
-
|
546 |
-
$rply = $this->get_lines();
|
547 |
-
$code = substr($rply,0,3);
|
548 |
-
|
549 |
-
if($this->do_debug >= 2) {
|
550 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
551 |
-
}
|
552 |
-
|
553 |
-
if($code != 211 && $code != 214) {
|
554 |
-
$this->error =
|
555 |
-
array("error" => "HELP not accepted from server",
|
556 |
-
"smtp_code" => $code,
|
557 |
-
"smtp_msg" => substr($rply,4));
|
558 |
-
if($this->do_debug >= 1) {
|
559 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
560 |
-
": " . $rply . $this->CRLF;
|
561 |
-
}
|
562 |
-
return false;
|
563 |
-
}
|
564 |
-
|
565 |
-
return $rply;
|
566 |
-
}
|
567 |
-
|
568 |
-
/**
|
569 |
-
* Starts a mail transaction from the email address specified in
|
570 |
-
* $from. Returns true if successful or false otherwise. If True
|
571 |
-
* the mail transaction is started and then one or more Recipient
|
572 |
-
* commands may be called followed by a Data command.
|
573 |
-
*
|
574 |
-
* Implements rfc 821: MAIL <SP> FROM:<reverse-path> <CRLF>
|
575 |
-
*
|
576 |
-
* SMTP CODE SUCCESS: 250
|
577 |
-
* SMTP CODE SUCCESS: 552,451,452
|
578 |
-
* SMTP CODE SUCCESS: 500,501,421
|
579 |
-
* @access public
|
580 |
-
* @return bool
|
581 |
-
*/
|
582 |
-
function Mail($from) {
|
583 |
-
$this->error = null; # so no confusion is caused
|
584 |
-
|
585 |
-
if(!$this->connected()) {
|
586 |
-
$this->error = array(
|
587 |
-
"error" => "Called Mail() without being connected");
|
588 |
-
return false;
|
589 |
-
}
|
590 |
-
|
591 |
-
fputs($this->smtp_conn,"MAIL FROM:<" . $from . ">" . $this->CRLF);
|
592 |
-
|
593 |
-
$rply = $this->get_lines();
|
594 |
-
$code = substr($rply,0,3);
|
595 |
-
|
596 |
-
if($this->do_debug >= 2) {
|
597 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
598 |
-
}
|
599 |
-
|
600 |
-
if($code != 250) {
|
601 |
-
$this->error =
|
602 |
-
array("error" => "MAIL not accepted from server",
|
603 |
-
"smtp_code" => $code,
|
604 |
-
"smtp_msg" => substr($rply,4));
|
605 |
-
if($this->do_debug >= 1) {
|
606 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
607 |
-
": " . $rply . $this->CRLF;
|
608 |
-
}
|
609 |
-
return false;
|
610 |
-
}
|
611 |
-
return true;
|
612 |
-
}
|
613 |
-
|
614 |
-
/**
|
615 |
-
* Sends the command NOOP to the SMTP server.
|
616 |
-
*
|
617 |
-
* Implements from rfc 821: NOOP <CRLF>
|
618 |
-
*
|
619 |
-
* SMTP CODE SUCCESS: 250
|
620 |
-
* SMTP CODE ERROR : 500, 421
|
621 |
-
* @access public
|
622 |
-
* @return bool
|
623 |
-
*/
|
624 |
-
function Noop() {
|
625 |
-
$this->error = null; # so no confusion is caused
|
626 |
-
|
627 |
-
if(!$this->connected()) {
|
628 |
-
$this->error = array(
|
629 |
-
"error" => "Called Noop() without being connected");
|
630 |
-
return false;
|
631 |
-
}
|
632 |
-
|
633 |
-
fputs($this->smtp_conn,"NOOP" . $this->CRLF);
|
634 |
-
|
635 |
-
$rply = $this->get_lines();
|
636 |
-
$code = substr($rply,0,3);
|
637 |
-
|
638 |
-
if($this->do_debug >= 2) {
|
639 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
640 |
-
}
|
641 |
-
|
642 |
-
if($code != 250) {
|
643 |
-
$this->error =
|
644 |
-
array("error" => "NOOP not accepted from server",
|
645 |
-
"smtp_code" => $code,
|
646 |
-
"smtp_msg" => substr($rply,4));
|
647 |
-
if($this->do_debug >= 1) {
|
648 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
649 |
-
": " . $rply . $this->CRLF;
|
650 |
-
}
|
651 |
-
return false;
|
652 |
-
}
|
653 |
-
return true;
|
654 |
-
}
|
655 |
-
|
656 |
-
/**
|
657 |
-
* Sends the quit command to the server and then closes the socket
|
658 |
-
* if there is no error or the $close_on_error argument is true.
|
659 |
-
*
|
660 |
-
* Implements from rfc 821: QUIT <CRLF>
|
661 |
-
*
|
662 |
-
* SMTP CODE SUCCESS: 221
|
663 |
-
* SMTP CODE ERROR : 500
|
664 |
-
* @access public
|
665 |
-
* @return bool
|
666 |
-
*/
|
667 |
-
function Quit($close_on_error=true) {
|
668 |
-
$this->error = null; # so there is no confusion
|
669 |
-
|
670 |
-
if(!$this->connected()) {
|
671 |
-
$this->error = array(
|
672 |
-
"error" => "Called Quit() without being connected");
|
673 |
-
return false;
|
674 |
-
}
|
675 |
-
|
676 |
-
# send the quit command to the server
|
677 |
-
fputs($this->smtp_conn,"quit" . $this->CRLF);
|
678 |
-
|
679 |
-
# get any good-bye messages
|
680 |
-
$byemsg = $this->get_lines();
|
681 |
-
|
682 |
-
if($this->do_debug >= 2) {
|
683 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $byemsg;
|
684 |
-
}
|
685 |
-
|
686 |
-
$rval = true;
|
687 |
-
$e = null;
|
688 |
-
|
689 |
-
$code = substr($byemsg,0,3);
|
690 |
-
if($code != 221) {
|
691 |
-
# use e as a tmp var cause Close will overwrite $this->error
|
692 |
-
$e = array("error" => "SMTP server rejected quit command",
|
693 |
-
"smtp_code" => $code,
|
694 |
-
"smtp_rply" => substr($byemsg,4));
|
695 |
-
$rval = false;
|
696 |
-
if($this->do_debug >= 1) {
|
697 |
-
echo "SMTP -> ERROR: " . $e["error"] . ": " .
|
698 |
-
$byemsg . $this->CRLF;
|
699 |
-
}
|
700 |
-
}
|
701 |
-
|
702 |
-
if(empty($e) || $close_on_error) {
|
703 |
-
$this->Close();
|
704 |
-
}
|
705 |
-
|
706 |
-
return $rval;
|
707 |
-
}
|
708 |
-
|
709 |
-
/**
|
710 |
-
* Sends the command RCPT to the SMTP server with the TO: argument of $to.
|
711 |
-
* Returns true if the recipient was accepted false if it was rejected.
|
712 |
-
*
|
713 |
-
* Implements from rfc 821: RCPT <SP> TO:<forward-path> <CRLF>
|
714 |
-
*
|
715 |
-
* SMTP CODE SUCCESS: 250,251
|
716 |
-
* SMTP CODE FAILURE: 550,551,552,553,450,451,452
|
717 |
-
* SMTP CODE ERROR : 500,501,503,421
|
718 |
-
* @access public
|
719 |
-
* @return bool
|
720 |
-
*/
|
721 |
-
function Recipient($to) {
|
722 |
-
$this->error = null; # so no confusion is caused
|
723 |
-
|
724 |
-
if(!$this->connected()) {
|
725 |
-
$this->error = array(
|
726 |
-
"error" => "Called Recipient() without being connected");
|
727 |
-
return false;
|
728 |
-
}
|
729 |
-
|
730 |
-
fputs($this->smtp_conn,"RCPT TO:<" . $to . ">" . $this->CRLF);
|
731 |
-
|
732 |
-
$rply = $this->get_lines();
|
733 |
-
$code = substr($rply,0,3);
|
734 |
-
|
735 |
-
if($this->do_debug >= 2) {
|
736 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
737 |
-
}
|
738 |
-
|
739 |
-
if($code != 250 && $code != 251) {
|
740 |
-
$this->error =
|
741 |
-
array("error" => "RCPT not accepted from server",
|
742 |
-
"smtp_code" => $code,
|
743 |
-
"smtp_msg" => substr($rply,4));
|
744 |
-
if($this->do_debug >= 1) {
|
745 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
746 |
-
": " . $rply . $this->CRLF;
|
747 |
-
}
|
748 |
-
return false;
|
749 |
-
}
|
750 |
-
return true;
|
751 |
-
}
|
752 |
-
|
753 |
-
/**
|
754 |
-
* Sends the RSET command to abort and transaction that is
|
755 |
-
* currently in progress. Returns true if successful false
|
756 |
-
* otherwise.
|
757 |
-
*
|
758 |
-
* Implements rfc 821: RSET <CRLF>
|
759 |
-
*
|
760 |
-
* SMTP CODE SUCCESS: 250
|
761 |
-
* SMTP CODE ERROR : 500,501,504,421
|
762 |
-
* @access public
|
763 |
-
* @return bool
|
764 |
-
*/
|
765 |
-
function Reset() {
|
766 |
-
$this->error = null; # so no confusion is caused
|
767 |
-
|
768 |
-
if(!$this->connected()) {
|
769 |
-
$this->error = array(
|
770 |
-
"error" => "Called Reset() without being connected");
|
771 |
-
return false;
|
772 |
-
}
|
773 |
-
|
774 |
-
fputs($this->smtp_conn,"RSET" . $this->CRLF);
|
775 |
-
|
776 |
-
$rply = $this->get_lines();
|
777 |
-
$code = substr($rply,0,3);
|
778 |
-
|
779 |
-
if($this->do_debug >= 2) {
|
780 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
781 |
-
}
|
782 |
-
|
783 |
-
if($code != 250) {
|
784 |
-
$this->error =
|
785 |
-
array("error" => "RSET failed",
|
786 |
-
"smtp_code" => $code,
|
787 |
-
"smtp_msg" => substr($rply,4));
|
788 |
-
if($this->do_debug >= 1) {
|
789 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
790 |
-
": " . $rply . $this->CRLF;
|
791 |
-
}
|
792 |
-
return false;
|
793 |
-
}
|
794 |
-
|
795 |
-
return true;
|
796 |
-
}
|
797 |
-
|
798 |
-
/**
|
799 |
-
* Starts a mail transaction from the email address specified in
|
800 |
-
* $from. Returns true if successful or false otherwise. If True
|
801 |
-
* the mail transaction is started and then one or more Recipient
|
802 |
-
* commands may be called followed by a Data command. This command
|
803 |
-
* will send the message to the users terminal if they are logged
|
804 |
-
* in.
|
805 |
-
*
|
806 |
-
* Implements rfc 821: SEND <SP> FROM:<reverse-path> <CRLF>
|
807 |
-
*
|
808 |
-
* SMTP CODE SUCCESS: 250
|
809 |
-
* SMTP CODE SUCCESS: 552,451,452
|
810 |
-
* SMTP CODE SUCCESS: 500,501,502,421
|
811 |
-
* @access public
|
812 |
-
* @return bool
|
813 |
-
*/
|
814 |
-
function Send($from) {
|
815 |
-
$this->error = null; # so no confusion is caused
|
816 |
-
|
817 |
-
if(!$this->connected()) {
|
818 |
-
$this->error = array(
|
819 |
-
"error" => "Called Send() without being connected");
|
820 |
-
return false;
|
821 |
-
}
|
822 |
-
|
823 |
-
fputs($this->smtp_conn,"SEND FROM:" . $from . $this->CRLF);
|
824 |
-
|
825 |
-
$rply = $this->get_lines();
|
826 |
-
$code = substr($rply,0,3);
|
827 |
-
|
828 |
-
if($this->do_debug >= 2) {
|
829 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
830 |
-
}
|
831 |
-
|
832 |
-
if($code != 250) {
|
833 |
-
$this->error =
|
834 |
-
array("error" => "SEND not accepted from server",
|
835 |
-
"smtp_code" => $code,
|
836 |
-
"smtp_msg" => substr($rply,4));
|
837 |
-
if($this->do_debug >= 1) {
|
838 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
839 |
-
": " . $rply . $this->CRLF;
|
840 |
-
}
|
841 |
-
return false;
|
842 |
-
}
|
843 |
-
return true;
|
844 |
-
}
|
845 |
-
|
846 |
-
/**
|
847 |
-
* Starts a mail transaction from the email address specified in
|
848 |
-
* $from. Returns true if successful or false otherwise. If True
|
849 |
-
* the mail transaction is started and then one or more Recipient
|
850 |
-
* commands may be called followed by a Data command. This command
|
851 |
-
* will send the message to the users terminal if they are logged
|
852 |
-
* in and send them an email.
|
853 |
-
*
|
854 |
-
* Implements rfc 821: SAML <SP> FROM:<reverse-path> <CRLF>
|
855 |
-
*
|
856 |
-
* SMTP CODE SUCCESS: 250
|
857 |
-
* SMTP CODE SUCCESS: 552,451,452
|
858 |
-
* SMTP CODE SUCCESS: 500,501,502,421
|
859 |
-
* @access public
|
860 |
-
* @return bool
|
861 |
-
*/
|
862 |
-
function SendAndMail($from) {
|
863 |
-
$this->error = null; # so no confusion is caused
|
864 |
-
|
865 |
-
if(!$this->connected()) {
|
866 |
-
$this->error = array(
|
867 |
-
"error" => "Called SendAndMail() without being connected");
|
868 |
-
return false;
|
869 |
-
}
|
870 |
-
|
871 |
-
fputs($this->smtp_conn,"SAML FROM:" . $from . $this->CRLF);
|
872 |
-
|
873 |
-
$rply = $this->get_lines();
|
874 |
-
$code = substr($rply,0,3);
|
875 |
-
|
876 |
-
if($this->do_debug >= 2) {
|
877 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
878 |
-
}
|
879 |
-
|
880 |
-
if($code != 250) {
|
881 |
-
$this->error =
|
882 |
-
array("error" => "SAML not accepted from server",
|
883 |
-
"smtp_code" => $code,
|
884 |
-
"smtp_msg" => substr($rply,4));
|
885 |
-
if($this->do_debug >= 1) {
|
886 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
887 |
-
": " . $rply . $this->CRLF;
|
888 |
-
}
|
889 |
-
return false;
|
890 |
-
}
|
891 |
-
return true;
|
892 |
-
}
|
893 |
-
|
894 |
-
/**
|
895 |
-
* Starts a mail transaction from the email address specified in
|
896 |
-
* $from. Returns true if successful or false otherwise. If True
|
897 |
-
* the mail transaction is started and then one or more Recipient
|
898 |
-
* commands may be called followed by a Data command. This command
|
899 |
-
* will send the message to the users terminal if they are logged
|
900 |
-
* in or mail it to them if they are not.
|
901 |
-
*
|
902 |
-
* Implements rfc 821: SOML <SP> FROM:<reverse-path> <CRLF>
|
903 |
-
*
|
904 |
-
* SMTP CODE SUCCESS: 250
|
905 |
-
* SMTP CODE SUCCESS: 552,451,452
|
906 |
-
* SMTP CODE SUCCESS: 500,501,502,421
|
907 |
-
* @access public
|
908 |
-
* @return bool
|
909 |
-
*/
|
910 |
-
function SendOrMail($from) {
|
911 |
-
$this->error = null; # so no confusion is caused
|
912 |
-
|
913 |
-
if(!$this->connected()) {
|
914 |
-
$this->error = array(
|
915 |
-
"error" => "Called SendOrMail() without being connected");
|
916 |
-
return false;
|
917 |
-
}
|
918 |
-
|
919 |
-
fputs($this->smtp_conn,"SOML FROM:" . $from . $this->CRLF);
|
920 |
-
|
921 |
-
$rply = $this->get_lines();
|
922 |
-
$code = substr($rply,0,3);
|
923 |
-
|
924 |
-
if($this->do_debug >= 2) {
|
925 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
926 |
-
}
|
927 |
-
|
928 |
-
if($code != 250) {
|
929 |
-
$this->error =
|
930 |
-
array("error" => "SOML not accepted from server",
|
931 |
-
"smtp_code" => $code,
|
932 |
-
"smtp_msg" => substr($rply,4));
|
933 |
-
if($this->do_debug >= 1) {
|
934 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
935 |
-
": " . $rply . $this->CRLF;
|
936 |
-
}
|
937 |
-
return false;
|
938 |
-
}
|
939 |
-
return true;
|
940 |
-
}
|
941 |
-
|
942 |
-
/**
|
943 |
-
* This is an optional command for SMTP that this class does not
|
944 |
-
* support. This method is here to make the RFC821 Definition
|
945 |
-
* complete for this class and __may__ be implimented in the future
|
946 |
-
*
|
947 |
-
* Implements from rfc 821: TURN <CRLF>
|
948 |
-
*
|
949 |
-
* SMTP CODE SUCCESS: 250
|
950 |
-
* SMTP CODE FAILURE: 502
|
951 |
-
* SMTP CODE ERROR : 500, 503
|
952 |
-
* @access public
|
953 |
-
* @return bool
|
954 |
-
*/
|
955 |
-
function Turn() {
|
956 |
-
$this->error = array("error" => "This method, TURN, of the SMTP ".
|
957 |
-
"is not implemented");
|
958 |
-
if($this->do_debug >= 1) {
|
959 |
-
echo "SMTP -> NOTICE: " . $this->error["error"] . $this->CRLF;
|
960 |
-
}
|
961 |
-
return false;
|
962 |
-
}
|
963 |
-
|
964 |
-
/**
|
965 |
-
* Verifies that the name is recognized by the server.
|
966 |
-
* Returns false if the name could not be verified otherwise
|
967 |
-
* the response from the server is returned.
|
968 |
-
*
|
969 |
-
* Implements rfc 821: VRFY <SP> <string> <CRLF>
|
970 |
-
*
|
971 |
-
* SMTP CODE SUCCESS: 250,251
|
972 |
-
* SMTP CODE FAILURE: 550,551,553
|
973 |
-
* SMTP CODE ERROR : 500,501,502,421
|
974 |
-
* @access public
|
975 |
-
* @return int
|
976 |
-
*/
|
977 |
-
function Verify($name) {
|
978 |
-
$this->error = null; # so no confusion is caused
|
979 |
-
|
980 |
-
if(!$this->connected()) {
|
981 |
-
$this->error = array(
|
982 |
-
"error" => "Called Verify() without being connected");
|
983 |
-
return false;
|
984 |
-
}
|
985 |
-
|
986 |
-
fputs($this->smtp_conn,"VRFY " . $name . $this->CRLF);
|
987 |
-
|
988 |
-
$rply = $this->get_lines();
|
989 |
-
$code = substr($rply,0,3);
|
990 |
-
|
991 |
-
if($this->do_debug >= 2) {
|
992 |
-
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
993 |
-
}
|
994 |
-
|
995 |
-
if($code != 250 && $code != 251) {
|
996 |
-
$this->error =
|
997 |
-
array("error" => "VRFY failed on name '$name'",
|
998 |
-
"smtp_code" => $code,
|
999 |
-
"smtp_msg" => substr($rply,4));
|
1000 |
-
if($this->do_debug >= 1) {
|
1001 |
-
echo "SMTP -> ERROR: " . $this->error["error"] .
|
1002 |
-
": " . $rply . $this->CRLF;
|
1003 |
-
}
|
1004 |
-
return false;
|
1005 |
-
}
|
1006 |
-
return $rply;
|
1007 |
-
}
|
1008 |
-
|
1009 |
-
/*******************************************************************
|
1010 |
-
* INTERNAL FUNCTIONS *
|
1011 |
-
******************************************************************/
|
1012 |
-
|
1013 |
-
/**
|
1014 |
-
* Read in as many lines as possible
|
1015 |
-
* either before eof or socket timeout occurs on the operation.
|
1016 |
-
* With SMTP we can tell if we have more lines to read if the
|
1017 |
-
* 4th character is '-' symbol. If it is a space then we don't
|
1018 |
-
* need to read anything else.
|
1019 |
-
* @access private
|
1020 |
-
* @return string
|
1021 |
-
*/
|
1022 |
-
function get_lines() {
|
1023 |
-
$data = "";
|
1024 |
-
while($str = fgets($this->smtp_conn,515)) {
|
1025 |
-
if($this->do_debug >= 4) {
|
1026 |
-
echo "SMTP -> get_lines(): \$data was \"$data\"" .
|
1027 |
-
$this->CRLF;
|
1028 |
-
echo "SMTP -> get_lines(): \$str is \"$str\"" .
|
1029 |
-
$this->CRLF;
|
1030 |
-
}
|
1031 |
-
$data .= $str;
|
1032 |
-
if($this->do_debug >= 4) {
|
1033 |
-
echo "SMTP -> get_lines(): \$data is \"$data\"" . $this->CRLF;
|
1034 |
-
}
|
1035 |
-
# if the 4th character is a space then we are done reading
|
1036 |
-
# so just break the loop
|
1037 |
-
if(substr($str,3,1) == " ") { break; }
|
1038 |
-
}
|
1039 |
-
return $data;
|
1040 |
-
}
|
1041 |
-
|
1042 |
-
}
|
1043 |
-
|
1044 |
-
|
1045 |
-
?>
|
1 |
+
<?php
|
2 |
+
////////////////////////////////////////////////////
|
3 |
+
// SMTP - PHP SMTP class
|
4 |
+
//
|
5 |
+
// Version 1.02
|
6 |
+
//
|
7 |
+
// Define an SMTP class that can be used to connect
|
8 |
+
// and communicate with any SMTP server. It implements
|
9 |
+
// all the SMTP functions defined in RFC821 except TURN.
|
10 |
+
//
|
11 |
+
// Author: Chris Ryan
|
12 |
+
//
|
13 |
+
// License: LGPL, see LICENSE
|
14 |
+
////////////////////////////////////////////////////
|
15 |
+
|
16 |
+
/**
|
17 |
+
* SMTP is rfc 821 compliant and implements all the rfc 821 SMTP
|
18 |
+
* commands except TURN which will always return a not implemented
|
19 |
+
* error. SMTP also provides some utility methods for sending mail
|
20 |
+
* to an SMTP server.
|
21 |
+
* @package PHPMailer
|
22 |
+
* @author Chris Ryan
|
23 |
+
*/
|
24 |
+
class EM_SMTP
|
25 |
+
{
|
26 |
+
/**
|
27 |
+
* SMTP server port
|
28 |
+
* @var int
|
29 |
+
*/
|
30 |
+
var $SMTP_PORT = 25;
|
31 |
+
|
32 |
+
/**
|
33 |
+
* SMTP reply line ending
|
34 |
+
* @var string
|
35 |
+
*/
|
36 |
+
var $CRLF = "\r\n";
|
37 |
+
|
38 |
+
/**
|
39 |
+
* Sets whether debugging is turned on
|
40 |
+
* @var bool
|
41 |
+
*/
|
42 |
+
var $do_debug; # the level of debug to perform
|
43 |
+
|
44 |
+
/**#@+
|
45 |
+
* @access private
|
46 |
+
*/
|
47 |
+
var $smtp_conn; # the socket to the server
|
48 |
+
var $error; # error if any on the last call
|
49 |
+
var $helo_rply; # the reply the server sent to us for HELO
|
50 |
+
/**#@-*/
|
51 |
+
|
52 |
+
/**
|
53 |
+
* Initialize the class so that the data is in a known state.
|
54 |
+
* @access public
|
55 |
+
* @return void
|
56 |
+
*/
|
57 |
+
function EM_SMTP() {
|
58 |
+
$this->smtp_conn = 0;
|
59 |
+
$this->error = null;
|
60 |
+
$this->helo_rply = null;
|
61 |
+
|
62 |
+
$this->do_debug = 0;
|
63 |
+
}
|
64 |
+
|
65 |
+
/*************************************************************
|
66 |
+
* CONNECTION FUNCTIONS *
|
67 |
+
***********************************************************/
|
68 |
+
|
69 |
+
/**
|
70 |
+
* Connect to the server specified on the port specified.
|
71 |
+
* If the port is not specified use the default SMTP_PORT.
|
72 |
+
* If tval is specified then a connection will try and be
|
73 |
+
* established with the server for that number of seconds.
|
74 |
+
* If tval is not specified the default is 30 seconds to
|
75 |
+
* try on the connection.
|
76 |
+
*
|
77 |
+
* SMTP CODE SUCCESS: 220
|
78 |
+
* SMTP CODE FAILURE: 421
|
79 |
+
* @access public
|
80 |
+
* @return bool
|
81 |
+
*/
|
82 |
+
function Connect($host,$port=0,$tval=30) {
|
83 |
+
# set the error val to null so there is no confusion
|
84 |
+
$this->error = null;
|
85 |
+
|
86 |
+
# make sure we are __not__ connected
|
87 |
+
if($this->connected()) {
|
88 |
+
# ok we are connected! what should we do?
|
89 |
+
# for now we will just give an error saying we
|
90 |
+
# are already connected
|
91 |
+
$this->error =
|
92 |
+
array("error" => "Already connected to a server");
|
93 |
+
return false;
|
94 |
+
}
|
95 |
+
|
96 |
+
if(empty($port)) {
|
97 |
+
$port = $this->SMTP_PORT;
|
98 |
+
}
|
99 |
+
|
100 |
+
#connect to the smtp server
|
101 |
+
$this->smtp_conn = fsockopen($host, # the host of the server
|
102 |
+
$port, # the port to use
|
103 |
+
$errno, # error number if any
|
104 |
+
$errstr, # error message if any
|
105 |
+
$tval); # give up after ? secs
|
106 |
+
# verify we connected properly
|
107 |
+
if(empty($this->smtp_conn)) {
|
108 |
+
$this->error = array("error" => "Failed to connect to server",
|
109 |
+
"errno" => $errno,
|
110 |
+
"errstr" => $errstr);
|
111 |
+
if($this->do_debug >= 1) {
|
112 |
+
echo "SMTP -> ERROR: " . $this->error["error"] .
|
113 |
+
": $errstr ($errno)" . $this->CRLF;
|
114 |
+
}
|
115 |
+
return false;
|
116 |
+
}
|
117 |
+
|
118 |
+
# sometimes the SMTP server takes a little longer to respond
|
119 |
+
# so we will give it a longer timeout for the first read
|
120 |
+
// Windows still does not have support for this timeout function
|
121 |
+
if(substr(PHP_OS, 0, 3) != "WIN")
|
122 |
+
socket_set_timeout($this->smtp_conn, $tval, 0);
|
123 |
+
|
124 |
+
# get any announcement stuff
|
125 |
+
$announce = $this->get_lines();
|
126 |
+
|
127 |
+
# set the timeout of any socket functions at 1/10 of a second
|
128 |
+
//if(function_exists("socket_set_timeout"))
|
129 |
+
// socket_set_timeout($this->smtp_conn, 0, 100000);
|
130 |
+
|
131 |
+
if($this->do_debug >= 2) {
|
132 |
+
echo "SMTP -> FROM SERVER:" . $this->CRLF . $announce;
|
133 |
+
}
|
134 |
+
|
135 |
+
return true;
|
136 |
+
}
|
137 |
+
|
138 |
+
/**
|
139 |
+
* Performs SMTP authentication. Must be run after running the
|
140 |
+
* Hello() method. Returns true if successfully authenticated.
|
141 |
+
* @access public
|
142 |
+
* @return bool
|
143 |
+
*/
|
144 |
+
function Authenticate($username, $password) {
|
145 |
+
// Start authentication
|
146 |
+
fputs($this->smtp_conn,"AUTH LOGIN" . $this->CRLF);
|
147 |
+
|
148 |
+
$rply = $this->get_lines();
|
149 |
+
$code = substr($rply,0,3);
|
150 |
+
|
151 |
+
if($code != 334) {
|
152 |
+
$this->error =
|
153 |
+
array("error" => "AUTH not accepted from server",
|
154 |
+
"smtp_code" => $code,
|
155 |
+
"smtp_msg" => substr($rply,4));
|
156 |
+
if($this->do_debug >= 1) {
|
157 |
+
echo "SMTP -> ERROR: " . $this->error["error"] .
|
158 |
+
": " . $rply . $this->CRLF;
|
159 |
+
}
|
160 |
+
return false;
|
161 |
+
}
|
162 |
+
|
163 |
+
// Send encoded username
|
164 |
+
fputs($this->smtp_conn, base64_encode($username) . $this->CRLF);
|
165 |
+
|
166 |
+
$rply = $this->get_lines();
|
167 |
+
$code = substr($rply,0,3);
|
168 |
+
|
169 |
+
if($code != 334) {
|
170 |
+
$this->error =
|
171 |
+
array("error" => "Username not accepted from server",
|
172 |
+
"smtp_code" => $code,
|
173 |
+
"smtp_msg" => substr($rply,4));
|
174 |
+
if($this->do_debug >= 1) {
|
175 |
+
echo "SMTP -> ERROR: " . $this->error["error"] .
|
176 |
+
": " . $rply . $this->CRLF;
|
177 |
+
}
|
178 |
+
return false;
|
179 |
+
}
|
180 |
+
|
181 |
+
// Send encoded password
|
182 |
+
fputs($this->smtp_conn, base64_encode($password) . $this->CRLF);
|
183 |
+
|
184 |
+
$rply = $this->get_lines();
|
185 |
+
$code = substr($rply,0,3);
|
186 |
+
|
187 |
+
if($code != 235) {
|
188 |
+
$this->error =
|
189 |
+
array("error" => "Password not accepted from server",
|
190 |
+
"smtp_code" => $code,
|
191 |
+
"smtp_msg" => substr($rply,4));
|
192 |
+
if($this->do_debug >= 1) {
|
193 |
+
echo "SMTP -> ERROR: " . $this->error["error"] .
|
194 |
+
": " . $rply . $this->CRLF;
|
195 |
+
}
|
196 |
+
return false;
|
197 |
+
}
|
198 |
+
|
199 |
+
return true;
|
200 |
+
}
|
201 |
+
|
202 |
+
/**
|
203 |
+
* Returns true if connected to a server otherwise false
|
204 |
+
* @access private
|
205 |
+
* @return bool
|
206 |
+
*/
|
207 |
+
function Connected() {
|
208 |
+
if(!empty($this->smtp_conn)) {
|
209 |
+
$sock_status = socket_get_status($this->smtp_conn);
|
210 |
+
if($sock_status["eof"]) {
|
211 |
+
# hmm this is an odd situation... the socket is
|
212 |
+
# valid but we aren't connected anymore
|
213 |
+
if($this->do_debug >= 1) {
|
214 |
+
echo "SMTP -> NOTICE:" . $this->CRLF .
|
215 |
+
"EOF caught while checking if connected";
|
216 |
+
}
|
217 |
+
$this->Close();
|
218 |
+
return false;
|
219 |
+
}
|
220 |
+
return true; # everything looks good
|
221 |
+
}
|
222 |
+
return false;
|
223 |
+
}
|
224 |
+
|
225 |
+
/**
|
226 |
+
* Closes the socket and cleans up the state of the class.
|
227 |
+
* It is not considered good to use this function without
|
228 |
+
* first trying to use QUIT.
|
229 |
+
* @access public
|
230 |
+
* @return void
|
231 |
+
*/
|
232 |
+
function Close() {
|
233 |
+
$this->error = null; # so there is no confusion
|
234 |
+
$this->helo_rply = null;
|
235 |
+
if(!empty($this->smtp_conn)) {
|
236 |
+
# close the connection and cleanup
|
237 |
+
fclose($this->smtp_conn);
|
238 |
+
$this->smtp_conn = 0;
|
239 |
+
}
|
240 |
+
}
|
241 |
+
|
242 |
+
|
243 |
+
/***************************************************************
|
244 |
+
* SMTP COMMANDS *
|
245 |
+
*************************************************************/
|
246 |
+
|
247 |
+
/**
|
248 |
+
* Issues a data command and sends the msg_data to the server
|
249 |
+
* finializing the mail transaction. $msg_data is the message
|
250 |
+
* that is to be send with the headers. Each header needs to be
|
251 |
+
* on a single line followed by a <CRLF> with the message headers
|
252 |
+
* and the message body being seperated by and additional <CRLF>.
|
253 |
+
*
|
254 |
+
* Implements rfc 821: DATA <CRLF>
|
255 |
+
*
|
256 |
+
* SMTP CODE INTERMEDIATE: 354
|
257 |
+
* [data]
|
258 |
+
* <CRLF>.<CRLF>
|
259 |
+
* SMTP CODE SUCCESS: 250
|
260 |
+
* SMTP CODE FAILURE: 552,554,451,452
|
261 |
+
* SMTP CODE FAILURE: 451,554
|
262 |
+
* SMTP CODE ERROR : 500,501,503,421
|
263 |
+
* @access public
|
264 |
+
* @return bool
|
265 |
+
*/
|
266 |
+
function Data($msg_data) {
|
267 |
+
$this->error = null; # so no confusion is caused
|
268 |
+
|
269 |
+
if(!$this->connected()) {
|
270 |
+
$this->error = array(
|
271 |
+
"error" => "Called Data() without being connected");
|
272 |
+
return false;
|
273 |
+
}
|
274 |
+
|
275 |
+
fputs($this->smtp_conn,"DATA" . $this->CRLF);
|
276 |
+
|
277 |
+
$rply = $this->get_lines();
|
278 |
+
$code = substr($rply,0,3);
|
279 |
+
|
280 |
+
if($this->do_debug >= 2) {
|
281 |
+
echo "SMTP -> FROM SERVER:" . $this->CRLF . $rply;
|
282 |
+
}
|
283 |
+
|
284 |
+
if($code != 354) {
|
285 |
+
$this->error =
|
286 |
+
array("error" => "DATA command not accepted from server",
|
287 |
+
"smtp_code" => $code,
|
288 |
+
"smtp_msg" => substr($rply,4));
|
289 |
+
if($this->do_debug >= 1) {
|
290 |
+
echo "SMTP -> ERROR: " . $this->error["error"] .
|
291 |
+
": " . $rply . $this->CRLF;
|
292 |
+
}
|
293 |
+
return false;
|
294 |
+
}
|
295 |
+
|
296 |
+
# the server is ready to accept data!
|
297 |
+
# according to rfc 821 we should not send more than 1000
|
298 |
+
# including the CRLF
|
299 |
+
# characters on a single line so we will break the data up
|
300 |
+
# into lines by \r and/or \n then if needed we will break
|
301 |
+
# each of those into smaller lines to fit within the limit.
|
302 |
+
# in addition we will be looking for lines that start with
|
303 |
+
# a period '.' and append and additional period '.' to that
|
304 |
+
# line. NOTE: this does not count towards are limit.
|
305 |
+
|
306 |
+
# normalize the line breaks so we know the explode works
|
307 |
+
$msg_data = str_replace("\r\n","\n",$msg_data);
|
308 |
+
$msg_data = str_replace("\r","\n",$msg_data);
|
309 |
+
$lines = explode("\n",$msg_data);
|
310 |
+
|
311 |
+
# we need to find a good way to determine is headers are
|
312 |
+
# in the msg_data or if it is a straight msg body
|
313 |
+
# currently I'm assuming rfc 822 definitions of msg head
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|