@@ -211,7 +211,7 @@ |
||
211 | 211 | * appropriately. |
212 | 212 | * |
213 | 213 | * @throws EE_Error |
214 | - * @return EE_message_type|false if exception thrown. |
|
214 | + * @return null|EE_message_type if exception thrown. |
|
215 | 215 | */ |
216 | 216 | public function message_type_obj() |
217 | 217 | { |
@@ -8,8 +8,8 @@ discard block |
||
8 | 8 | $event_label = 'Testing Context Deactivation'; |
9 | 9 | |
10 | 10 | $I->wantTo( |
11 | - 'Test that the context activation toggle for turning on or off specific contexts for message sending works as' |
|
12 | - . ' expected' |
|
11 | + 'Test that the context activation toggle for turning on or off specific contexts for message sending works as' |
|
12 | + . ' expected' |
|
13 | 13 | ); |
14 | 14 | |
15 | 15 | $I->loginAsAdmin(); |
@@ -34,7 +34,7 @@ discard block |
||
34 | 34 | $I->see('The template for Primary Registrant Recipient is currently inactive.'); |
35 | 35 | |
36 | 36 | $I->amGoingTo( |
37 | - 'Trigger Registration Approved Messages and verify primary registrant context is excluded from sent messages.' |
|
37 | + 'Trigger Registration Approved Messages and verify primary registrant context is excluded from sent messages.' |
|
38 | 38 | ); |
39 | 39 | $I->amOnDefaultEventsListTablePage(); |
40 | 40 | $I->click(EventsAdmin::ADD_NEW_EVENT_BUTTON_SELECTOR); |
@@ -44,9 +44,9 @@ discard block |
||
44 | 44 | $event_link = $I->observeLinkUrlAt(EventsAdmin::EVENT_EDITOR_VIEW_LINK_AFTER_PUBLISH_SELECTOR); |
45 | 45 | $event_id = $I->observeValueFromInputAt(EventsAdmin::EVENT_EDITOR_EVT_ID_SELECTOR); |
46 | 46 | $test_registration_details = array( |
47 | - 'fname' => 'ContextTestGuy', |
|
48 | - 'lname' => 'ContextTestDude', |
|
49 | - 'email' => '[email protected]', |
|
47 | + 'fname' => 'ContextTestGuy', |
|
48 | + 'lname' => 'ContextTestDude', |
|
49 | + 'email' => '[email protected]', |
|
50 | 50 | ); |
51 | 51 | $I->logOut(); |
52 | 52 | $I->amOnUrl($event_link); |
@@ -63,48 +63,48 @@ discard block |
||
63 | 63 | $I->amOnMessagesActivityListTablePage(); |
64 | 64 | //verify registrant context |
65 | 65 | $I->see( |
66 | - $test_registration_details['email'], |
|
67 | - MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
68 | - 'to', |
|
69 | - 'Registration Approved', |
|
70 | - MessagesAdmin::MESSAGE_STATUS_SENT, |
|
71 | - '', |
|
72 | - 'Registrant' |
|
73 | - ) |
|
66 | + $test_registration_details['email'], |
|
67 | + MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
68 | + 'to', |
|
69 | + 'Registration Approved', |
|
70 | + MessagesAdmin::MESSAGE_STATUS_SENT, |
|
71 | + '', |
|
72 | + 'Registrant' |
|
73 | + ) |
|
74 | 74 | ); |
75 | 75 | $I->deleteMessageInMessagesListTableFor( |
76 | - 'Registration Approved', |
|
77 | - MessagesAdmin::MESSAGE_STATUS_SENT, |
|
78 | - 'Email', |
|
79 | - 'Registrant' |
|
76 | + 'Registration Approved', |
|
77 | + MessagesAdmin::MESSAGE_STATUS_SENT, |
|
78 | + 'Email', |
|
79 | + 'Registrant' |
|
80 | 80 | ); |
81 | 81 | //verify admin context |
82 | 82 | $I->see( |
83 | - '[email protected]', |
|
84 | - MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
85 | - 'to', |
|
86 | - 'Registration Approved', |
|
87 | - MessagesAdmin::MESSAGE_STATUS_SENT |
|
88 | - ) |
|
83 | + '[email protected]', |
|
84 | + MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
85 | + 'to', |
|
86 | + 'Registration Approved', |
|
87 | + MessagesAdmin::MESSAGE_STATUS_SENT |
|
88 | + ) |
|
89 | 89 | ); |
90 | 90 | $I->deleteMessageInMessagesListTableFor( |
91 | - 'Registration Approved' |
|
91 | + 'Registration Approved' |
|
92 | 92 | ); |
93 | 93 | //verify primary registrant context is NOT present. |
94 | 94 | $I->dontSee( |
95 | - $test_registration_details['email'], |
|
96 | - MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
97 | - 'to', |
|
98 | - 'Registration Approved', |
|
99 | - MessagesAdmin::MESSAGE_STATUS_SENT, |
|
100 | - '', |
|
101 | - 'Primary Registrant' |
|
102 | - ) |
|
95 | + $test_registration_details['email'], |
|
96 | + MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
97 | + 'to', |
|
98 | + 'Registration Approved', |
|
99 | + MessagesAdmin::MESSAGE_STATUS_SENT, |
|
100 | + '', |
|
101 | + 'Primary Registrant' |
|
102 | + ) |
|
103 | 103 | ); |
104 | 104 | |
105 | 105 | $I->amGoingTo( |
106 | - 'Deactivate primary registrant context for Registration Approved Message Templates and restore the "To"' |
|
107 | - . ' field to an empty string to verify the message does not send for that context.' |
|
106 | + 'Deactivate primary registrant context for Registration Approved Message Templates and restore the "To"' |
|
107 | + . ' field to an empty string to verify the message does not send for that context.' |
|
108 | 108 | ); |
109 | 109 | $I->amOnDefaultMessageTemplateListTablePage(); |
110 | 110 | $I->clickToEditMessageTemplateByMessageType('registration', 'primary_attendee'); |
@@ -128,41 +128,41 @@ discard block |
||
128 | 128 | $I->amOnMessagesActivityListTablePage(); |
129 | 129 | //verify registrant context |
130 | 130 | $I->see( |
131 | - $test_registration_details['email'], |
|
132 | - MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
133 | - 'to', |
|
134 | - 'Registration Approved', |
|
135 | - MessagesAdmin::MESSAGE_STATUS_SENT, |
|
136 | - '', |
|
137 | - 'Registrant' |
|
138 | - ) |
|
131 | + $test_registration_details['email'], |
|
132 | + MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
133 | + 'to', |
|
134 | + 'Registration Approved', |
|
135 | + MessagesAdmin::MESSAGE_STATUS_SENT, |
|
136 | + '', |
|
137 | + 'Registrant' |
|
138 | + ) |
|
139 | 139 | ); |
140 | 140 | $I->deleteMessageInMessagesListTableFor( |
141 | - 'Registration Approved', |
|
142 | - MessagesAdmin::MESSAGE_STATUS_SENT, |
|
143 | - 'Email', |
|
144 | - 'Registrant' |
|
141 | + 'Registration Approved', |
|
142 | + MessagesAdmin::MESSAGE_STATUS_SENT, |
|
143 | + 'Email', |
|
144 | + 'Registrant' |
|
145 | 145 | ); |
146 | 146 | //verify admin context |
147 | 147 | $I->see( |
148 | - '[email protected]', |
|
149 | - MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
150 | - 'to', |
|
151 | - 'Registration Approved', |
|
152 | - MessagesAdmin::MESSAGE_STATUS_SENT |
|
153 | - ) |
|
148 | + '[email protected]', |
|
149 | + MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
150 | + 'to', |
|
151 | + 'Registration Approved', |
|
152 | + MessagesAdmin::MESSAGE_STATUS_SENT |
|
153 | + ) |
|
154 | 154 | ); |
155 | 155 | $I->deleteMessageInMessagesListTableFor( |
156 | - 'Registration Approved' |
|
156 | + 'Registration Approved' |
|
157 | 157 | ); |
158 | 158 | //verify primary registrant context is NOT present. |
159 | 159 | $I->dontSee( |
160 | - $test_registration_details['email'], |
|
161 | - MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
162 | - 'to', |
|
163 | - 'Registration Approved', |
|
164 | - MessagesAdmin::MESSAGE_STATUS_SENT, |
|
165 | - '', |
|
166 | - 'Primary Registrant' |
|
167 | - ) |
|
160 | + $test_registration_details['email'], |
|
161 | + MessagesAdmin::messagesActivityListTableCellSelectorFor( |
|
162 | + 'to', |
|
163 | + 'Registration Approved', |
|
164 | + MessagesAdmin::MESSAGE_STATUS_SENT, |
|
165 | + '', |
|
166 | + 'Primary Registrant' |
|
167 | + ) |
|
168 | 168 | ); |
169 | 169 | \ No newline at end of file |
@@ -9,9 +9,9 @@ discard block |
||
9 | 9 | * @ link http://www.eventespresso.com |
10 | 10 | * @ version 4+ |
11 | 11 | */ |
12 | -define( 'EE_THEME_FUNCTIONS_LOADED', TRUE ); |
|
12 | +define('EE_THEME_FUNCTIONS_LOADED', TRUE); |
|
13 | 13 | |
14 | -if ( ! function_exists( 'espresso_pagination' ) ) { |
|
14 | +if ( ! function_exists('espresso_pagination')) { |
|
15 | 15 | /** |
16 | 16 | * espresso_pagination |
17 | 17 | * |
@@ -23,21 +23,21 @@ discard block |
||
23 | 23 | $big = 999999999; // need an unlikely integer |
24 | 24 | $pagination = paginate_links( |
25 | 25 | array( |
26 | - 'base' => str_replace( $big, '%#%', esc_url( get_pagenum_link( $big ) ) ), |
|
26 | + 'base' => str_replace($big, '%#%', esc_url(get_pagenum_link($big))), |
|
27 | 27 | 'format' => '?paged=%#%', |
28 | - 'current' => max( 1, get_query_var( 'paged' ) ), |
|
28 | + 'current' => max(1, get_query_var('paged')), |
|
29 | 29 | 'total' => $wp_query->max_num_pages, |
30 | 30 | 'show_all' => true, |
31 | 31 | 'end_size' => 10, |
32 | 32 | 'mid_size' => 6, |
33 | 33 | 'prev_next' => true, |
34 | - 'prev_text' => __( '‹ PREV', 'event_espresso' ), |
|
35 | - 'next_text' => __( 'NEXT ›', 'event_espresso' ), |
|
34 | + 'prev_text' => __('‹ PREV', 'event_espresso'), |
|
35 | + 'next_text' => __('NEXT ›', 'event_espresso'), |
|
36 | 36 | 'type' => 'plain', |
37 | 37 | 'add_args' => false, |
38 | 38 | 'add_fragment' => '' |
39 | 39 | ) |
40 | 40 | ); |
41 | - echo ! empty( $pagination ) ? '<div class="ee-pagination-dv ee-clear-float">' . $pagination . '</div>' : ''; |
|
41 | + echo ! empty($pagination) ? '<div class="ee-pagination-dv ee-clear-float">'.$pagination.'</div>' : ''; |
|
42 | 42 | } |
43 | 43 | } |
44 | 44 | \ No newline at end of file |
@@ -3,79 +3,79 @@ |
||
3 | 3 | </p> |
4 | 4 | <p> |
5 | 5 | <?php esc_html_e( |
6 | - 'You can select Messengers via the tabs across the top of the settings page. The available messengers you see depends on what version of Event Espresso you have and what addons are installed. Every install include an "Email" messenger tab. When you click one of those tabs it will display that messenger.', |
|
7 | - 'event_espresso' |
|
8 | - ); ?> |
|
6 | + 'You can select Messengers via the tabs across the top of the settings page. The available messengers you see depends on what version of Event Espresso you have and what addons are installed. Every install include an "Email" messenger tab. When you click one of those tabs it will display that messenger.', |
|
7 | + 'event_espresso' |
|
8 | + ); ?> |
|
9 | 9 | </p> |
10 | 10 | <p> |
11 | 11 | <?php esc_html_e( |
12 | - 'There are two ways to determine whether a messenger is active or not. The first way is via the messenger tab itself.', |
|
13 | - 'event_espresso' |
|
14 | - ); ?> |
|
12 | + 'There are two ways to determine whether a messenger is active or not. The first way is via the messenger tab itself.', |
|
13 | + 'event_espresso' |
|
14 | + ); ?> |
|
15 | 15 | </p> |
16 | 16 | <p> |
17 | 17 | <?php printf( |
18 | - esc_html__( |
|
19 | - 'The green colored gear %s indicates that this messenger is currently active.', |
|
20 | - 'event_espresso' |
|
21 | - ), |
|
22 | - '<img class="inline-text" src="' . EE_MSG_ASSETS_URL . 'images/email-tab-active.png' . '"' |
|
23 | - . ' alt="' . esc_attr__('Active Email Tab', 'event_espresso') . '" />' |
|
24 | - ); |
|
25 | - printf( |
|
26 | - esc_html__( |
|
27 | - ' The white colored gear %s indicates the messenger is inactive. This is very helpful for seeing at a glance all the messengers that are active when you first view the page.', |
|
28 | - 'event_espresso' |
|
29 | - ), |
|
30 | - '<img class="inline-text" src="' . EE_MSG_ASSETS_URL . 'images/email-tab-inactive.png' |
|
31 | - . '" alt="' . esc_attr__('Inactive Email Tab', 'event_espresso') . '" />' |
|
32 | - ); ?> |
|
18 | + esc_html__( |
|
19 | + 'The green colored gear %s indicates that this messenger is currently active.', |
|
20 | + 'event_espresso' |
|
21 | + ), |
|
22 | + '<img class="inline-text" src="' . EE_MSG_ASSETS_URL . 'images/email-tab-active.png' . '"' |
|
23 | + . ' alt="' . esc_attr__('Active Email Tab', 'event_espresso') . '" />' |
|
24 | + ); |
|
25 | + printf( |
|
26 | + esc_html__( |
|
27 | + ' The white colored gear %s indicates the messenger is inactive. This is very helpful for seeing at a glance all the messengers that are active when you first view the page.', |
|
28 | + 'event_espresso' |
|
29 | + ), |
|
30 | + '<img class="inline-text" src="' . EE_MSG_ASSETS_URL . 'images/email-tab-inactive.png' |
|
31 | + . '" alt="' . esc_attr__('Inactive Email Tab', 'event_espresso') . '" />' |
|
32 | + ); ?> |
|
33 | 33 | </p> |
34 | 34 | <p> |
35 | 35 | <?php esc_html_e( |
36 | - 'The second way to determine whether a messenger is active or not is via the "on/off" button in the top right corner of the active messenger displayed content:', |
|
37 | - 'event_espresso' |
|
38 | - ); ?> |
|
36 | + 'The second way to determine whether a messenger is active or not is via the "on/off" button in the top right corner of the active messenger displayed content:', |
|
37 | + 'event_espresso' |
|
38 | + ); ?> |
|
39 | 39 | </p> |
40 | 40 | <p> |
41 | 41 | <?php printf( |
42 | - esc_html__( |
|
43 | - '%1$s means of course that the messenger is active and %2$s means the messenger is inactive.', |
|
44 | - 'event_espresso' |
|
45 | - ), |
|
46 | - '<div class="switch">' |
|
47 | - . '<input class="ee-on-off-toggle ee-toggle-round-flat" type="checkbox" checked="checked" disabled>' |
|
48 | - . '<label for="ee-on-off-toggle-on"></label>' |
|
49 | - . '</div>', |
|
50 | - '<div class="switch">' |
|
51 | - . '<input class="ee-on-off-toggle ee-toggle-round-flat" type="checkbox" disabled>' |
|
52 | - . '<label for="ee-on-off-toggle-on"></label>' |
|
53 | - . '</div>' |
|
54 | - ); ?> |
|
42 | + esc_html__( |
|
43 | + '%1$s means of course that the messenger is active and %2$s means the messenger is inactive.', |
|
44 | + 'event_espresso' |
|
45 | + ), |
|
46 | + '<div class="switch">' |
|
47 | + . '<input class="ee-on-off-toggle ee-toggle-round-flat" type="checkbox" checked="checked" disabled>' |
|
48 | + . '<label for="ee-on-off-toggle-on"></label>' |
|
49 | + . '</div>', |
|
50 | + '<div class="switch">' |
|
51 | + . '<input class="ee-on-off-toggle ee-toggle-round-flat" type="checkbox" disabled>' |
|
52 | + . '<label for="ee-on-off-toggle-on"></label>' |
|
53 | + . '</div>' |
|
54 | + ); ?> |
|
55 | 55 | </p> |
56 | 56 | <p> |
57 | 57 | <?php |
58 | - esc_html_e( |
|
59 | - 'The on/off toggle is also what you use to activate or deactivate a messenger.', |
|
60 | - 'event_espresso' |
|
61 | - ); ?> |
|
58 | + esc_html_e( |
|
59 | + 'The on/off toggle is also what you use to activate or deactivate a messenger.', |
|
60 | + 'event_espresso' |
|
61 | + ); ?> |
|
62 | 62 | </p> |
63 | 63 | <p> |
64 | 64 | <?php esc_html_e( |
65 | - 'What happens when you click the toggle to activate is the messenger is activated and the system determines what default message types are activated with the messenger. Then, if there are any default settings for either the messenger or message types those settings are saved. Next, the system will generate any default templates (if none have been generated before, if there are previously generated templates then they are reactivated). Finally, you will see the display change to reflect that the messenger is active. If the messenger has settings you can modify them then. Any message types that have settings will also automatically expand so you can see the default settings and make any changes as necessary to fit your needs. Usually the defaults are sufficient however.', |
|
66 | - 'event_espresso' |
|
67 | - ); ?> |
|
65 | + 'What happens when you click the toggle to activate is the messenger is activated and the system determines what default message types are activated with the messenger. Then, if there are any default settings for either the messenger or message types those settings are saved. Next, the system will generate any default templates (if none have been generated before, if there are previously generated templates then they are reactivated). Finally, you will see the display change to reflect that the messenger is active. If the messenger has settings you can modify them then. Any message types that have settings will also automatically expand so you can see the default settings and make any changes as necessary to fit your needs. Usually the defaults are sufficient however.', |
|
66 | + 'event_espresso' |
|
67 | + ); ?> |
|
68 | 68 | </p> |
69 | 69 | <p> |
70 | 70 | <?php esc_html_e( |
71 | - 'When you deactivate a messenger, the system will first check if there are any custom event templates for that messenger. If there are you will be unable to deactivate the messenger. This is a fail safe to make sure you know that no messages will go out for those specific events so you don\'t accidentally deactivate. If this check passes, then the system will deactivate any global templates for that messenger (note the templates are not erased, they just become inactive, so if you decide to reactivate the messenger later all your customizations are preserved). Then the display will change to reflect the deactivation.', |
|
72 | - 'event_espresso' |
|
73 | - ); ?> |
|
71 | + 'When you deactivate a messenger, the system will first check if there are any custom event templates for that messenger. If there are you will be unable to deactivate the messenger. This is a fail safe to make sure you know that no messages will go out for those specific events so you don\'t accidentally deactivate. If this check passes, then the system will deactivate any global templates for that messenger (note the templates are not erased, they just become inactive, so if you decide to reactivate the messenger later all your customizations are preserved). Then the display will change to reflect the deactivation.', |
|
72 | + 'event_espresso' |
|
73 | + ); ?> |
|
74 | 74 | </p> |
75 | 75 | <p> |
76 | 76 | <strong><?php esc_html_e('Important', 'event_espresso'); ?></strong><br/> |
77 | 77 | <?php esc_html_e( |
78 | - 'Although customizations made to global templates are preserved when a messenger is deactivated, any settings for that messenger (or the message types that were attached to it) are lost on deactivation. Also, once you deactivate a messenger, no more messages will be delivered using that messenger for any of your events.', |
|
79 | - 'event_espresso' |
|
80 | - ); ?> |
|
78 | + 'Although customizations made to global templates are preserved when a messenger is deactivated, any settings for that messenger (or the message types that were attached to it) are lost on deactivation. Also, once you deactivate a messenger, no more messages will be delivered using that messenger for any of your events.', |
|
79 | + 'event_espresso' |
|
80 | + ); ?> |
|
81 | 81 | </p> |
@@ -19,16 +19,16 @@ |
||
19 | 19 | 'The green colored gear %s indicates that this messenger is currently active.', |
20 | 20 | 'event_espresso' |
21 | 21 | ), |
22 | - '<img class="inline-text" src="' . EE_MSG_ASSETS_URL . 'images/email-tab-active.png' . '"' |
|
23 | - . ' alt="' . esc_attr__('Active Email Tab', 'event_espresso') . '" />' |
|
22 | + '<img class="inline-text" src="'.EE_MSG_ASSETS_URL.'images/email-tab-active.png'.'"' |
|
23 | + . ' alt="'.esc_attr__('Active Email Tab', 'event_espresso').'" />' |
|
24 | 24 | ); |
25 | 25 | printf( |
26 | 26 | esc_html__( |
27 | 27 | ' The white colored gear %s indicates the messenger is inactive. This is very helpful for seeing at a glance all the messengers that are active when you first view the page.', |
28 | 28 | 'event_espresso' |
29 | 29 | ), |
30 | - '<img class="inline-text" src="' . EE_MSG_ASSETS_URL . 'images/email-tab-inactive.png' |
|
31 | - . '" alt="' . esc_attr__('Inactive Email Tab', 'event_espresso') . '" />' |
|
30 | + '<img class="inline-text" src="'.EE_MSG_ASSETS_URL.'images/email-tab-inactive.png' |
|
31 | + . '" alt="'.esc_attr__('Inactive Email Tab', 'event_espresso').'" />' |
|
32 | 32 | ); ?> |
33 | 33 | </p> |
34 | 34 | <p> |
@@ -176,7 +176,7 @@ |
||
176 | 176 | /** |
177 | 177 | * This retrieves the EE_Venue from the available data object. |
178 | 178 | * |
179 | - * @return EE_Venue|null |
|
179 | + * @return EE_Base_Class|null |
|
180 | 180 | * @throws EE_Error |
181 | 181 | * @throws EntityNotFoundException |
182 | 182 | */ |
@@ -22,15 +22,15 @@ discard block |
||
22 | 22 | |
23 | 23 | <div class="event-attendees"> |
24 | 24 | <?php do_action_ref_array( |
25 | - 'AHEE__loop-espresso_event_attendees__before', |
|
26 | - array( |
|
27 | - $contacts, |
|
28 | - $event, |
|
29 | - $datetime, |
|
30 | - $ticket, |
|
31 | - $show_gravatar, |
|
32 | - ) |
|
33 | - ); ?> |
|
25 | + 'AHEE__loop-espresso_event_attendees__before', |
|
26 | + array( |
|
27 | + $contacts, |
|
28 | + $event, |
|
29 | + $datetime, |
|
30 | + $ticket, |
|
31 | + $show_gravatar, |
|
32 | + ) |
|
33 | + ); ?> |
|
34 | 34 | <?php if ( $contacts ) : ?> |
35 | 35 | <ul class="event-attendees-list"> |
36 | 36 | <?php foreach( $contacts as $contact ) : |
@@ -47,13 +47,13 @@ discard block |
||
47 | 47 | <p><?php echo $no_attendees_message; ?></p> |
48 | 48 | <?php endif; ?> |
49 | 49 | <?php do_action_ref_array( |
50 | - 'AHEE__loop-espresso_event_attendees__after', |
|
51 | - array( |
|
52 | - $contacts, |
|
53 | - $event, |
|
54 | - $datetime, |
|
55 | - $ticket, |
|
56 | - $show_gravatar, |
|
57 | - ) |
|
58 | - ); ?> |
|
50 | + 'AHEE__loop-espresso_event_attendees__after', |
|
51 | + array( |
|
52 | + $contacts, |
|
53 | + $event, |
|
54 | + $datetime, |
|
55 | + $ticket, |
|
56 | + $show_gravatar, |
|
57 | + ) |
|
58 | + ); ?> |
|
59 | 59 | </div> |
60 | 60 | \ No newline at end of file |
@@ -15,7 +15,7 @@ discard block |
||
15 | 15 | * @type bool $show_gravatar whether to show gravatar or not. |
16 | 16 | */ |
17 | 17 | |
18 | -$no_attendees_message = apply_filters( 'FHEE__loop-espresso_attendees-shortcode__template__no_attendees_message', __('No Attendees Yet', 'event_espresso' ) ); |
|
18 | +$no_attendees_message = apply_filters('FHEE__loop-espresso_attendees-shortcode__template__no_attendees_message', __('No Attendees Yet', 'event_espresso')); |
|
19 | 19 | |
20 | 20 | |
21 | 21 | ?> |
@@ -31,16 +31,16 @@ discard block |
||
31 | 31 | $show_gravatar, |
32 | 32 | ) |
33 | 33 | ); ?> |
34 | - <?php if ( $contacts ) : ?> |
|
34 | + <?php if ($contacts) : ?> |
|
35 | 35 | <ul class="event-attendees-list"> |
36 | - <?php foreach( $contacts as $contact ) : |
|
37 | - EEH_Template::get_template_part( 'content', 'espresso_event_attendees', array( |
|
36 | + <?php foreach ($contacts as $contact) : |
|
37 | + EEH_Template::get_template_part('content', 'espresso_event_attendees', array( |
|
38 | 38 | 'contact' => $contact, |
39 | 39 | 'event' => $event, |
40 | 40 | 'datetime' => $datetime, |
41 | 41 | 'ticket' => $ticket, |
42 | 42 | 'show_gravatar' => $show_gravatar |
43 | - ) ); |
|
43 | + )); |
|
44 | 44 | endforeach; ?> |
45 | 45 | </ul> |
46 | 46 | <?php else : ?> |
@@ -43,8 +43,11 @@ |
||
43 | 43 | ) ); |
44 | 44 | endforeach; ?> |
45 | 45 | </ul> |
46 | - <?php else : ?> |
|
47 | - <p><?php echo $no_attendees_message; ?></p> |
|
46 | + <?php else { |
|
47 | + : ?> |
|
48 | + <p><?php echo $no_attendees_message; |
|
49 | +} |
|
50 | +?></p> |
|
48 | 51 | <?php endif; ?> |
49 | 52 | <?php do_action_ref_array( |
50 | 53 | 'AHEE__loop-espresso_event_attendees__after', |
@@ -734,7 +734,7 @@ |
||
734 | 734 | * @since 4.9.1 |
735 | 735 | * @param int $att_nmbr |
736 | 736 | * @param EE_Line_Item | string $item |
737 | - * @return string |
|
737 | + * @return RegUrlLink |
|
738 | 738 | * @throws InvalidArgumentException |
739 | 739 | */ |
740 | 740 | public function generate_reg_url_link($att_nmbr, $item) |
@@ -222,7 +222,7 @@ |
||
222 | 222 | /** |
223 | 223 | * constructor |
224 | 224 | * |
225 | - * @param EE_Admin_Page $admin_page the calling admin_page_object |
|
225 | + * @param EE_Admin_Page $adminpage the calling admin_page_object |
|
226 | 226 | */ |
227 | 227 | public function __construct(EE_Admin_Page $adminpage) |
228 | 228 | { |
@@ -13,722 +13,722 @@ |
||
13 | 13 | { |
14 | 14 | |
15 | 15 | |
16 | - /** |
|
17 | - * we're just going to use this to hold the name of the caller class (child class name) |
|
18 | - * |
|
19 | - * @var string |
|
20 | - */ |
|
21 | - public $caller; |
|
22 | - |
|
23 | - |
|
24 | - /** |
|
25 | - * this is just a flag set automatically to indicate whether we've got an extended hook class running (i.e. |
|
26 | - * espresso_events_Registration_Form_Hooks_Extend extends espresso_events_Registration_Form_Hooks). This flag is |
|
27 | - * used later to make sure we require the needed files. |
|
28 | - * |
|
29 | - * @var bool |
|
30 | - */ |
|
31 | - protected $_extend; |
|
32 | - |
|
33 | - |
|
34 | - /** |
|
35 | - * child classes MUST set this property so that the page object can be loaded correctly |
|
36 | - * |
|
37 | - * @var string |
|
38 | - */ |
|
39 | - protected $_name; |
|
40 | - |
|
41 | - |
|
42 | - /** |
|
43 | - * This is set by child classes and is an associative array of ajax hooks in the format: |
|
44 | - * array( |
|
45 | - * 'ajax_action_ref' => 'executing_method'; //must be public |
|
46 | - * ) |
|
47 | - * |
|
48 | - * @var array |
|
49 | - */ |
|
50 | - protected $_ajax_func; |
|
51 | - |
|
52 | - |
|
53 | - /** |
|
54 | - * This is an array of methods that get executed on a page routes admin_init hook. Use the following format: |
|
55 | - * array( |
|
56 | - * 'page_route' => 'executing_method' //must be public |
|
57 | - * ) |
|
58 | - * |
|
59 | - * @var array |
|
60 | - */ |
|
61 | - protected $_init_func; |
|
62 | - |
|
63 | - |
|
64 | - /** |
|
65 | - * This is an array of methods that output metabox content for the given page route. Use the following format: |
|
66 | - * array( |
|
67 | - * 0 => array( |
|
68 | - * 'page_route' => 'string_for_page_route', //must correspond to a page route in the class being connected |
|
69 | - * with (i.e. "edit_event") If this is in an array then the same params below will be used but the metabox |
|
70 | - * will be added to each route. |
|
71 | - * 'func' => 'executing_method', //must be public (i.e. public function executing_method($post, |
|
72 | - * $callback_args){} ). Note if you include callback args in the array then you need to declare them in the |
|
73 | - * method arguments. |
|
74 | - * 'id' => 'identifier_for_metabox', //so it can be removed by addons (optional, class will set it |
|
75 | - * automatically) |
|
76 | - * 'priority' => 'default', //default 'default' (optional) |
|
77 | - * 'label' => __('Localized Title', 'event_espresso'), |
|
78 | - * 'context' => 'advanced' //advanced is default (optional), |
|
79 | - * 'callback_args' => array() //any callback args to include (optional) |
|
80 | - * ) |
|
81 | - * Why are we indexing numerically? Because it's possible there may be more than one metabox per page_route. |
|
82 | - * |
|
83 | - * @var array |
|
84 | - */ |
|
85 | - protected $_metaboxes; |
|
86 | - |
|
87 | - |
|
88 | - /** |
|
89 | - * This is an array of values that indicate any metaboxes we want removed from a given page route. Usually this is |
|
90 | - * used when caffeinated functionality is replacing decaffeinated functionality. Use the following format for the |
|
91 | - * array: array( |
|
92 | - * 0 => array( |
|
93 | - * 'page_route' => 'string_for_page_route' //can be string or array of strings that match a page_route(s) |
|
94 | - * that are in the class being connected with (i.e. 'edit', or 'create_new'). |
|
95 | - * 'id' => 'identifier_for_metabox', //what the id is of the metabox being removed |
|
96 | - * 'context' => 'normal', //the context for the metabox being removed (has to match) |
|
97 | - * 'screen' => 'screen_id', //(optional), if not included then this class will attempt to remove the metabox |
|
98 | - * using the currently loaded screen object->id however, there may be cases where you have to specify the |
|
99 | - * id for the screen the metabox is on. |
|
100 | - * ) |
|
101 | - * ) |
|
102 | - * |
|
103 | - * @var array |
|
104 | - */ |
|
105 | - protected $_remove_metaboxes; |
|
106 | - |
|
107 | - |
|
108 | - /** |
|
109 | - * This parent class takes care of loading the scripts and styles if the child class has set the properties for |
|
110 | - * them in the following format. Note, the first array index ('register') is for defining all the registers. The |
|
111 | - * second array index is for indicating what routes each script/style loads on. array( |
|
112 | - * 'registers' => array( |
|
113 | - * 'script_ref' => array( // if more than one script is to be loaded its best to use the 'dependency' |
|
114 | - * argument to link scripts together. |
|
115 | - * 'type' => 'js' // 'js' or 'css' (defaults to js). This tells us what type of wp_function to use |
|
116 | - * 'url' => 'http://urltoscript.css.js', |
|
117 | - * 'depends' => array('jquery'), //an array of dependencies for the scripts. REMEMBER, if a script has |
|
118 | - * already been registered elsewhere in the system. You can just use the depends array to make sure it |
|
119 | - * gets loaded before the one you are setting here. |
|
120 | - * 'footer' => TRUE //defaults to true (styles don't use this parameter) |
|
121 | - * ), |
|
122 | - * 'enqueues' => array( //this time each key corresponds to the script ref followed by an array of page routes |
|
123 | - * the script gets enqueued on. |
|
124 | - * 'script_ref' => array('route_one', 'route_two') |
|
125 | - * ), |
|
126 | - * 'localize' => array( //this allows you to set a localize object. Indicate which script the object is being |
|
127 | - * attached to and then include an array indexed by the name of the object and the array of key/value pairs for |
|
128 | - * the object. |
|
129 | - * 'scrip_ref' => array( |
|
130 | - * 'NAME_OF_JS_OBJECT' => array( |
|
131 | - * 'translate_ref' => __('localized_string', 'event_espresso'), |
|
132 | - * 'some_data' => 5 |
|
133 | - * ) |
|
134 | - * ) |
|
135 | - * ) |
|
136 | - * ) |
|
137 | - * |
|
138 | - * @var array |
|
139 | - */ |
|
140 | - protected $_scripts_styles; |
|
141 | - |
|
142 | - |
|
143 | - /** |
|
144 | - * This is a property that will contain the current route. |
|
145 | - * |
|
146 | - * @var string; |
|
147 | - */ |
|
148 | - protected $_current_route; |
|
149 | - |
|
150 | - |
|
151 | - /** |
|
152 | - * this optional property can be set by child classes to override the priority for the automatic action/filter hook |
|
153 | - * loading in the `_load_routed_hooks()` method. Please follow this format: array( |
|
154 | - * 'wp_hook_reference' => 1 |
|
155 | - * ) |
|
156 | - * ) |
|
157 | - * |
|
158 | - * @var array |
|
159 | - */ |
|
160 | - protected $_wp_action_filters_priority; |
|
161 | - |
|
162 | - |
|
163 | - /** |
|
164 | - * This just holds a merged array of the $_POST and $_GET vars in favor of $_POST |
|
165 | - * |
|
166 | - * @var array |
|
167 | - */ |
|
168 | - protected $_req_data; |
|
169 | - |
|
170 | - |
|
171 | - /** |
|
172 | - * This just holds an instance of the page object for this hook |
|
173 | - * |
|
174 | - * @var EE_Admin_Page |
|
175 | - */ |
|
176 | - protected $_page_object; |
|
177 | - |
|
178 | - |
|
179 | - /** |
|
180 | - * This holds the EE_Admin_Page object from the calling admin page that this object hooks into. |
|
181 | - * |
|
182 | - * @var EE_Admin_Page|EE_Admin_Page_CPT |
|
183 | - */ |
|
184 | - protected $_adminpage_obj; |
|
185 | - |
|
186 | - |
|
187 | - /** |
|
188 | - * Holds EE_Registry object |
|
189 | - * |
|
190 | - * @var EE_Registry |
|
191 | - */ |
|
192 | - protected $EE = null; |
|
193 | - |
|
194 | - |
|
195 | - /** |
|
196 | - * constructor |
|
197 | - * |
|
198 | - * @param EE_Admin_Page $admin_page the calling admin_page_object |
|
199 | - */ |
|
200 | - public function __construct(EE_Admin_Page $adminpage) |
|
201 | - { |
|
202 | - |
|
203 | - $this->_adminpage_obj = $adminpage; |
|
204 | - $this->_req_data = array_merge($_GET, $_POST); |
|
205 | - $this->_set_defaults(); |
|
206 | - $this->_set_hooks_properties(); |
|
207 | - // first let's verify we're on the right page |
|
208 | - if (! isset($this->_req_data['page']) |
|
209 | - || (isset($this->_req_data['page']) |
|
210 | - && $this->_adminpage_obj->page_slug |
|
211 | - != $this->_req_data['page'])) { |
|
212 | - return; |
|
213 | - } //get out nothing more to be done here. |
|
214 | - // allow for extends to modify properties |
|
215 | - if (method_exists($this, '_extend_properties')) { |
|
216 | - $this->_extend_properties(); |
|
217 | - } |
|
218 | - $this->_set_page_object(); |
|
219 | - $this->_init_hooks(); |
|
220 | - $this->_load_custom_methods(); |
|
221 | - $this->_load_routed_hooks(); |
|
222 | - add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts_styles')); |
|
223 | - add_action('admin_enqueue_scripts', array($this, 'add_metaboxes'), 20); |
|
224 | - add_action('admin_enqueue_scripts', array($this, 'remove_metaboxes'), 15); |
|
225 | - $this->_ajax_hooks(); |
|
226 | - } |
|
227 | - |
|
228 | - |
|
229 | - /** |
|
230 | - * used by child classes to set the following properties: |
|
231 | - * $_ajax_func (optional) |
|
232 | - * $_init_func (optional) |
|
233 | - * $_metaboxes (optional) |
|
234 | - * $_scripts (optional) |
|
235 | - * $_styles (optional) |
|
236 | - * $_name (required) |
|
237 | - * Also in this method will be registered any scripts or styles loaded on the targeted page (as indicated in the |
|
238 | - * _scripts/_styles properties) Also children should place in this method any filters/actions that have to happen |
|
239 | - * really early on page load (just after admin_init) if they want to have them registered for handling early. |
|
240 | - * |
|
241 | - * @access protected |
|
242 | - * @abstract |
|
243 | - * @return void |
|
244 | - */ |
|
245 | - abstract protected function _set_hooks_properties(); |
|
246 | - |
|
247 | - |
|
248 | - /** |
|
249 | - * The hooks for enqueue_scripts and enqueue_styles will be run in here. Child classes need to define their |
|
250 | - * scripts and styles in the relevant $_scripts and $_styles properties. Child classes must have also already |
|
251 | - * registered the scripts and styles using wp_register_script and wp_register_style functions. |
|
252 | - * |
|
253 | - * @access public |
|
254 | - * @return void |
|
255 | - */ |
|
256 | - public function enqueue_scripts_styles() |
|
257 | - { |
|
258 | - |
|
259 | - if (! empty($this->_scripts_styles)) { |
|
260 | - // first let's do all the registrations |
|
261 | - if (! isset($this->_scripts_styles['registers'])) { |
|
262 | - $msg[] = __( |
|
263 | - 'There is no "registers" index in the <code>$this->_scripts_styles</code> property.', |
|
264 | - 'event_espresso' |
|
265 | - ); |
|
266 | - $msg[] = sprintf( |
|
267 | - __( |
|
268 | - 'Make sure you read the phpdoc comments above the definition of the $_scripts_styles property in the <code>EE_Admin_Hooks</code> class and modify according in the %s child', |
|
269 | - 'event_espresso' |
|
270 | - ), |
|
271 | - '<strong>' . $this->caller . '</strong>' |
|
272 | - ); |
|
273 | - throw new EE_Error(implode('||', $msg)); |
|
274 | - } |
|
275 | - foreach ($this->_scripts_styles['registers'] as $ref => $details) { |
|
276 | - $defaults = array( |
|
277 | - 'type' => 'js', |
|
278 | - 'url' => '', |
|
279 | - 'depends' => array(), |
|
280 | - 'version' => EVENT_ESPRESSO_VERSION, |
|
281 | - 'footer' => true, |
|
282 | - ); |
|
283 | - $details = wp_parse_args($details, $defaults); |
|
284 | - extract($details); |
|
285 | - // let's make sure that we set the 'registers' type if it's not set! We need it later to determine whhich enqueu we do |
|
286 | - $this->_scripts_styles['registers'][ $ref ]['type'] = $type; |
|
287 | - // let's make sure we're not missing any REQUIRED parameters |
|
288 | - if (empty($url)) { |
|
289 | - $msg[] = sprintf( |
|
290 | - __('Missing the url for the requested %s', 'event_espresso'), |
|
291 | - $type == 'js' ? 'script' : 'stylesheet' |
|
292 | - ); |
|
293 | - $msg[] = sprintf( |
|
294 | - __( |
|
295 | - 'Doublecheck your <code>$this->_scripts_styles</code> array in %s and make sure that there is a "url" set for the %s ref', |
|
296 | - 'event_espresso' |
|
297 | - ), |
|
298 | - '<strong>' . $this->caller . '</strong>', |
|
299 | - $ref |
|
300 | - ); |
|
301 | - throw new EE_Error(implode('||', $msg)); |
|
302 | - } |
|
303 | - // made it here so let's do the appropriate registration |
|
304 | - $type == 'js' |
|
305 | - ? wp_register_script($ref, $url, $depends, $version, $footer) |
|
306 | - : wp_register_style( |
|
307 | - $ref, |
|
308 | - $url, |
|
309 | - $depends, |
|
310 | - $version |
|
311 | - ); |
|
312 | - } |
|
313 | - // k now lets do the enqueues |
|
314 | - if (! isset($this->_scripts_styles['enqueues'])) { |
|
315 | - return; |
|
316 | - } //not sure if we should throw an error here or not. |
|
317 | - |
|
318 | - foreach ($this->_scripts_styles['enqueues'] as $ref => $routes) { |
|
319 | - // make sure $routes is an array |
|
320 | - $routes = (array) $routes; |
|
321 | - if (in_array($this->_current_route, $routes)) { |
|
322 | - $this->_scripts_styles['registers'][ $ref ]['type'] == 'js' ? wp_enqueue_script($ref) |
|
323 | - : wp_enqueue_style($ref); |
|
324 | - // if we have a localization for the script let's do that too. |
|
325 | - if (isset($this->_scripts_styles['localize'][ $ref ])) { |
|
326 | - foreach ($this->_scripts_styles['localize'][ $ref ] as $object_name => $indexes) { |
|
327 | - wp_localize_script( |
|
328 | - $ref, |
|
329 | - $object_name, |
|
330 | - $this->_scripts_styles['localize'][ $ref ][ $object_name ] |
|
331 | - ); |
|
332 | - } |
|
333 | - } |
|
334 | - } |
|
335 | - } |
|
336 | - // let's do the deregisters |
|
337 | - if (! isset($this->_scripts_styles['deregisters'])) { |
|
338 | - return; |
|
339 | - } |
|
340 | - foreach ($this->_scripts_styles['deregisters'] as $ref => $details) { |
|
341 | - $defaults = array( |
|
342 | - 'type' => 'js', |
|
343 | - ); |
|
344 | - $details = wp_parse_args($details, $defaults); |
|
345 | - extract($details); |
|
346 | - $type == 'js' ? wp_deregister_script($ref) : wp_deregister_style($ref); |
|
347 | - } |
|
348 | - } |
|
349 | - } |
|
350 | - |
|
351 | - |
|
352 | - /** |
|
353 | - * just set the defaults for the hooks properties. |
|
354 | - * |
|
355 | - * @access private |
|
356 | - * @return void |
|
357 | - */ |
|
358 | - private function _set_defaults() |
|
359 | - { |
|
360 | - $this->_ajax_func = $this->_init_func = $this->_metaboxes = $this->_scripts = $this->_styles = $this->_wp_action_filters_priority = array(); |
|
361 | - $this->_current_route = $this->getCurrentRoute(); |
|
362 | - $this->caller = get_class($this); |
|
363 | - $this->_extend = stripos($this->caller, 'Extend') ? true : false; |
|
364 | - } |
|
365 | - |
|
366 | - |
|
367 | - /** |
|
368 | - * A helper for determining the current route. |
|
369 | - * @return string |
|
370 | - */ |
|
371 | - private function getCurrentRoute() |
|
372 | - { |
|
373 | - // list tables do something else with 'action' for bulk actions. |
|
374 | - $action = ! empty($_REQUEST['action']) && $_REQUEST['action'] !== '-1' ? $_REQUEST['action'] : 'default'; |
|
375 | - // we set a 'route' variable in some cases where action is being used by something else. |
|
376 | - $action = $action === 'default' && isset($_REQUEST['route']) ? $_REQUEST['route'] : $action; |
|
377 | - return sanitize_key($action); |
|
378 | - } |
|
379 | - |
|
380 | - |
|
381 | - /** |
|
382 | - * this sets the _page_object property |
|
383 | - * |
|
384 | - * @access protected |
|
385 | - * @return void |
|
386 | - */ |
|
387 | - protected function _set_page_object() |
|
388 | - { |
|
389 | - // first make sure $this->_name is set |
|
390 | - if (empty($this->_name)) { |
|
391 | - $msg[] = __('We can\'t load the page object', 'event_espresso'); |
|
392 | - $msg[] = sprintf( |
|
393 | - __("This is because the %s child class has not set the '_name' property", 'event_espresso'), |
|
394 | - $this->caller |
|
395 | - ); |
|
396 | - throw new EE_Error(implode('||', $msg)); |
|
397 | - } |
|
398 | - $ref = str_replace('_', ' ', $this->_name); // take the_message -> the message |
|
399 | - $ref = str_replace(' ', '_', ucwords($ref)) . '_Admin_Page'; // take the message -> The_Message |
|
400 | - // first default file (if exists) |
|
401 | - $decaf_file = EE_ADMIN_PAGES . $this->_name . DS . $ref . '.core.php'; |
|
402 | - if (is_readable($decaf_file)) { |
|
403 | - require_once($decaf_file); |
|
404 | - } |
|
405 | - // now we have to do require for extended file (if needed) |
|
406 | - if ($this->_extend) { |
|
407 | - require_once(EE_CORE_CAF_ADMIN_EXTEND . $this->_name . DS . 'Extend_' . $ref . '.core.php'); |
|
408 | - } |
|
409 | - // if we've got an extended class we use that! |
|
410 | - $ref = $this->_extend ? 'Extend_' . $ref : $ref; |
|
411 | - // let's make sure the class exists |
|
412 | - if (! class_exists($ref)) { |
|
413 | - $msg[] = __('We can\'t load the page object', 'event_espresso'); |
|
414 | - $msg[] = sprintf( |
|
415 | - __( |
|
416 | - 'The class name that was given is %s. Check the spelling and make sure its correct, also there needs to be an autoloader setup for the class', |
|
417 | - 'event_espresso' |
|
418 | - ), |
|
419 | - $ref |
|
420 | - ); |
|
421 | - throw new EE_Error(implode('||', $msg)); |
|
422 | - } |
|
423 | - $a = new ReflectionClass($ref); |
|
424 | - $this->_page_object = $a->newInstance(false); |
|
425 | - } |
|
426 | - |
|
427 | - |
|
428 | - /** |
|
429 | - * Child "hook" classes can declare any methods that they want executed when a specific page route is loaded. The |
|
430 | - * advantage of this is when doing things like running our own db interactions on saves etc. Remember that |
|
431 | - * $this->_req_data (all the _POST and _GET data) is available to your methods. |
|
432 | - * |
|
433 | - * @access private |
|
434 | - * @return void |
|
435 | - */ |
|
436 | - private function _load_custom_methods() |
|
437 | - { |
|
438 | - /** |
|
439 | - * method cannot be named 'default' (@see http://us3.php |
|
440 | - * .net/manual/en/reserved.keywords.php) so need to |
|
441 | - * handle routes that are "default" |
|
442 | - * |
|
443 | - * @since 4.3.0 |
|
444 | - */ |
|
445 | - $method_callback = $this->_current_route == 'default' ? 'default_callback' : $this->_current_route; |
|
446 | - // these run before the Admin_Page route executes. |
|
447 | - if (method_exists($this, $method_callback)) { |
|
448 | - call_user_func(array($this, $method_callback)); |
|
449 | - } |
|
450 | - // these run via the _redirect_after_action method in EE_Admin_Page which usually happens after non_UI methods in EE_Admin_Page classes. There are two redirect actions, the first fires before $query_args might be manipulated by "save and close" actions and the seond fires right before the actual redirect happens. |
|
451 | - // first the actions |
|
452 | - // note that these action hooks will have the $query_args value available. |
|
453 | - $admin_class_name = get_class($this->_adminpage_obj); |
|
454 | - if (method_exists($this, '_redirect_action_early_' . $this->_current_route)) { |
|
455 | - add_action( |
|
456 | - 'AHEE__' |
|
457 | - . $admin_class_name |
|
458 | - . '___redirect_after_action__before_redirect_modification_' |
|
459 | - . $this->_current_route, |
|
460 | - array($this, '_redirect_action_early_' . $this->_current_route), |
|
461 | - 10 |
|
462 | - ); |
|
463 | - } |
|
464 | - if (method_exists($this, '_redirect_action_' . $this->_current_route)) { |
|
465 | - add_action( |
|
466 | - 'AHEE_redirect_' . $admin_class_name . $this->_current_route, |
|
467 | - array($this, '_redirect_action_' . $this->_current_route), |
|
468 | - 10 |
|
469 | - ); |
|
470 | - } |
|
471 | - // let's hook into the _redirect itself and allow for changing where the user goes after redirect. This will have $query_args and $redirect_url available. |
|
472 | - if (method_exists($this, '_redirect_filter_' . $this->_current_route)) { |
|
473 | - add_filter( |
|
474 | - 'FHEE_redirect_' . $admin_class_name . $this->_current_route, |
|
475 | - array($this, '_redirect_filter_' . $this->_current_route), |
|
476 | - 10, |
|
477 | - 2 |
|
478 | - ); |
|
479 | - } |
|
480 | - } |
|
481 | - |
|
482 | - |
|
483 | - /** |
|
484 | - * This method will search for a corresponding method with a name matching the route and the wp_hook to run. This |
|
485 | - * allows child hook classes to target hooking into a specific wp action or filter hook ONLY on a certain route. |
|
486 | - * just remember, methods MUST be public Future hooks should be added in here to be access by child classes. |
|
487 | - * |
|
488 | - * @return void |
|
489 | - */ |
|
490 | - private function _load_routed_hooks() |
|
491 | - { |
|
492 | - |
|
493 | - // this array provides the hook action names that will be referenced. Key is the action. Value is an array with the type (action or filter) and the number of parameters for the hook. We'll default all priorities for automatic hooks to 10. |
|
494 | - $hook_filter_array = array( |
|
495 | - 'admin_footer' => array( |
|
496 | - 'type' => 'action', |
|
497 | - 'argnum' => 1, |
|
498 | - 'priority' => 10, |
|
499 | - ), |
|
500 | - 'FHEE_list_table_views_' . $this->_adminpage_obj->page_slug . '_' . $this->_current_route => array( |
|
501 | - 'type' => 'filter', |
|
502 | - 'argnum' => 1, |
|
503 | - 'priority' => 10, |
|
504 | - ), |
|
505 | - 'FHEE_list_table_views_' . $this->_adminpage_obj->page_slug => array( |
|
506 | - 'type' => 'filter', |
|
507 | - 'argnum' => 1, |
|
508 | - 'priority' => 10, |
|
509 | - ), |
|
510 | - 'FHEE_list_table_views' => array( |
|
511 | - 'type' => 'filter', |
|
512 | - 'argnum' => 1, |
|
513 | - 'priority' => 10, |
|
514 | - ), |
|
515 | - 'AHEE__EE_Admin_Page___display_admin_page__modify_metaboxes' => array( |
|
516 | - 'type' => 'action', |
|
517 | - 'argnum' => 1, |
|
518 | - 'priority' => 10, |
|
519 | - ), |
|
520 | - ); |
|
521 | - foreach ($hook_filter_array as $hook => $args) { |
|
522 | - if (method_exists($this, $this->_current_route . '_' . $hook)) { |
|
523 | - if (isset($this->_wp_action_filters_priority[ $hook ])) { |
|
524 | - $args['priority'] = $this->_wp_action_filters_priority[ $hook ]; |
|
525 | - } |
|
526 | - if ($args['type'] == 'action') { |
|
527 | - add_action( |
|
528 | - $hook, |
|
529 | - array($this, $this->_current_route . '_' . $hook), |
|
530 | - $args['priority'], |
|
531 | - $args['argnum'] |
|
532 | - ); |
|
533 | - } else { |
|
534 | - add_filter( |
|
535 | - $hook, |
|
536 | - array($this, $this->_current_route . '_' . $hook), |
|
537 | - $args['priority'], |
|
538 | - $args['argnum'] |
|
539 | - ); |
|
540 | - } |
|
541 | - } |
|
542 | - } |
|
543 | - } |
|
544 | - |
|
545 | - |
|
546 | - /** |
|
547 | - * Loop throught the $_ajax_func array and add_actions for the array. |
|
548 | - * |
|
549 | - * @return void |
|
550 | - */ |
|
551 | - private function _ajax_hooks() |
|
552 | - { |
|
553 | - |
|
554 | - if (empty($this->_ajax_func)) { |
|
555 | - return; |
|
556 | - } //get out there's nothing to take care of. |
|
557 | - foreach ($this->_ajax_func as $action => $method) { |
|
558 | - // make sure method exists |
|
559 | - if (! method_exists($this, $method)) { |
|
560 | - $msg[] = __( |
|
561 | - 'There is no corresponding method for the hook labeled in the _ajax_func array', |
|
562 | - 'event_espresso' |
|
563 | - ) . '<br />'; |
|
564 | - $msg[] = sprintf( |
|
565 | - __( |
|
566 | - 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
|
567 | - 'event_espresso' |
|
568 | - ), |
|
569 | - $method, |
|
570 | - $this->caller |
|
571 | - ); |
|
572 | - throw new EE_Error(implode('||', $msg)); |
|
573 | - } |
|
574 | - add_action('wp_ajax_' . $action, array($this, $method)); |
|
575 | - } |
|
576 | - } |
|
577 | - |
|
578 | - |
|
579 | - /** |
|
580 | - * Loop throught the $_init_func array and add_actions for the array. |
|
581 | - * |
|
582 | - * @return void |
|
583 | - */ |
|
584 | - protected function _init_hooks() |
|
585 | - { |
|
586 | - if (empty($this->_init_func)) { |
|
587 | - return; |
|
588 | - } //get out there's nothing to take care of. |
|
589 | - // We need to determine what page_route we are on! |
|
590 | - $current_route = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'default'; |
|
591 | - foreach ($this->_init_func as $route => $method) { |
|
592 | - // make sure method exists |
|
593 | - if (! method_exists($this, $method)) { |
|
594 | - $msg[] = __( |
|
595 | - 'There is no corresponding method for the hook labeled in the _init_func array', |
|
596 | - 'event_espresso' |
|
597 | - ) . '<br />'; |
|
598 | - $msg[] = sprintf( |
|
599 | - __( |
|
600 | - 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
|
601 | - 'event_espresso' |
|
602 | - ), |
|
603 | - $method, |
|
604 | - $this->caller |
|
605 | - ); |
|
606 | - throw new EE_Error(implode('||', $msg)); |
|
607 | - } |
|
608 | - if ($route == $this->_current_route) { |
|
609 | - add_action('admin_init', array($this, $method)); |
|
610 | - } |
|
611 | - } |
|
612 | - } |
|
613 | - |
|
614 | - |
|
615 | - /** |
|
616 | - * Loop through the _metaboxes property and add_metaboxes accordingly |
|
617 | - * //todo we could eventually make this a config component class (i.e. new EE_Metabox); |
|
618 | - * |
|
619 | - * @access public |
|
620 | - * @return void |
|
621 | - */ |
|
622 | - public function add_metaboxes() |
|
623 | - { |
|
624 | - if (empty($this->_metaboxes)) { |
|
625 | - return; |
|
626 | - } //get out we don't have any metaboxes to set for this connection |
|
627 | - $this->_handle_metabox_array($this->_metaboxes); |
|
628 | - } |
|
629 | - |
|
630 | - |
|
631 | - private function _handle_metabox_array($boxes, $add = true) |
|
632 | - { |
|
633 | - |
|
634 | - foreach ($boxes as $box) { |
|
635 | - if (! isset($box['page_route'])) { |
|
636 | - continue; |
|
637 | - } //we dont' have a valid array |
|
638 | - // let's make sure $box['page_route'] is an array so the "foreach" will work. |
|
639 | - $box['page_route'] = (array) $box['page_route']; |
|
640 | - foreach ($box['page_route'] as $route) { |
|
641 | - if ($route != $this->_current_route) { |
|
642 | - continue; |
|
643 | - } //get out we only add metaboxes for set route. |
|
644 | - if ($add) { |
|
645 | - $this->_add_metabox($box); |
|
646 | - } else { |
|
647 | - $this->_remove_metabox($box); |
|
648 | - } |
|
649 | - } |
|
650 | - } |
|
651 | - } |
|
652 | - |
|
653 | - |
|
654 | - /** |
|
655 | - * Loop through the _remove_metaboxes property and remove metaboxes accordingly. |
|
656 | - * |
|
657 | - * @access public |
|
658 | - * @return void |
|
659 | - */ |
|
660 | - public function remove_metaboxes() |
|
661 | - { |
|
662 | - |
|
663 | - if (empty($this->_remove_metaboxes)) { |
|
664 | - return; |
|
665 | - } //get out there are no metaboxes to remove |
|
666 | - $this->_handle_metabox_array($this->_remove_metaboxes, false); |
|
667 | - } |
|
668 | - |
|
669 | - |
|
670 | - /** |
|
671 | - * This just handles adding a metabox |
|
672 | - * |
|
673 | - * @access private |
|
674 | - * @param array $args an array of args that have been set for this metabox by the child class |
|
675 | - */ |
|
676 | - private function _add_metabox($args) |
|
677 | - { |
|
678 | - $current_screen = get_current_screen(); |
|
679 | - $screen_id = is_object($current_screen) ? $current_screen->id : null; |
|
680 | - $func = isset($args['func']) ? $args['func'] : 'some_invalid_callback'; |
|
681 | - // set defaults |
|
682 | - $defaults = array( |
|
683 | - 'func' => $func, |
|
684 | - 'id' => $this->caller . '_' . $func . '_metabox', |
|
685 | - 'priority' => 'default', |
|
686 | - 'label' => $this->caller, |
|
687 | - 'context' => 'advanced', |
|
688 | - 'callback_args' => array(), |
|
689 | - 'page' => isset($args['page']) ? $args['page'] : $screen_id, |
|
690 | - ); |
|
691 | - $args = wp_parse_args($args, $defaults); |
|
692 | - extract($args); |
|
693 | - // make sure method exists |
|
694 | - if (! method_exists($this, $func)) { |
|
695 | - $msg[] = __('There is no corresponding method to display the metabox content', 'event_espresso') . '<br />'; |
|
696 | - $msg[] = sprintf( |
|
697 | - __( |
|
698 | - 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
|
699 | - 'event_espresso' |
|
700 | - ), |
|
701 | - $func, |
|
702 | - $this->caller |
|
703 | - ); |
|
704 | - throw new EE_Error(implode('||', $msg)); |
|
705 | - } |
|
706 | - // everything checks out so lets add the metabox |
|
707 | - add_meta_box($id, $label, array($this, $func), $page, $context, $priority, $callback_args); |
|
708 | - } |
|
709 | - |
|
710 | - |
|
711 | - private function _remove_metabox($args) |
|
712 | - { |
|
713 | - $current_screen = get_current_screen(); |
|
714 | - $screen_id = is_object($current_screen) ? $current_screen->id : null; |
|
715 | - $func = isset($args['func']) ? $args['func'] : 'some_invalid_callback'; |
|
716 | - // set defaults |
|
717 | - $defaults = array( |
|
718 | - 'id' => isset($args['id']) |
|
719 | - ? $args['id'] |
|
720 | - : $this->_current_route |
|
721 | - . '_' |
|
722 | - . $this->caller |
|
723 | - . '_' |
|
724 | - . $func |
|
725 | - . '_metabox', |
|
726 | - 'context' => 'default', |
|
727 | - 'screen' => isset($args['screen']) ? $args['screen'] : $screen_id, |
|
728 | - ); |
|
729 | - $args = wp_parse_args($args, $defaults); |
|
730 | - extract($args); |
|
731 | - // everything checks out so lets remove the box! |
|
732 | - remove_meta_box($id, $screen, $context); |
|
733 | - } |
|
16 | + /** |
|
17 | + * we're just going to use this to hold the name of the caller class (child class name) |
|
18 | + * |
|
19 | + * @var string |
|
20 | + */ |
|
21 | + public $caller; |
|
22 | + |
|
23 | + |
|
24 | + /** |
|
25 | + * this is just a flag set automatically to indicate whether we've got an extended hook class running (i.e. |
|
26 | + * espresso_events_Registration_Form_Hooks_Extend extends espresso_events_Registration_Form_Hooks). This flag is |
|
27 | + * used later to make sure we require the needed files. |
|
28 | + * |
|
29 | + * @var bool |
|
30 | + */ |
|
31 | + protected $_extend; |
|
32 | + |
|
33 | + |
|
34 | + /** |
|
35 | + * child classes MUST set this property so that the page object can be loaded correctly |
|
36 | + * |
|
37 | + * @var string |
|
38 | + */ |
|
39 | + protected $_name; |
|
40 | + |
|
41 | + |
|
42 | + /** |
|
43 | + * This is set by child classes and is an associative array of ajax hooks in the format: |
|
44 | + * array( |
|
45 | + * 'ajax_action_ref' => 'executing_method'; //must be public |
|
46 | + * ) |
|
47 | + * |
|
48 | + * @var array |
|
49 | + */ |
|
50 | + protected $_ajax_func; |
|
51 | + |
|
52 | + |
|
53 | + /** |
|
54 | + * This is an array of methods that get executed on a page routes admin_init hook. Use the following format: |
|
55 | + * array( |
|
56 | + * 'page_route' => 'executing_method' //must be public |
|
57 | + * ) |
|
58 | + * |
|
59 | + * @var array |
|
60 | + */ |
|
61 | + protected $_init_func; |
|
62 | + |
|
63 | + |
|
64 | + /** |
|
65 | + * This is an array of methods that output metabox content for the given page route. Use the following format: |
|
66 | + * array( |
|
67 | + * 0 => array( |
|
68 | + * 'page_route' => 'string_for_page_route', //must correspond to a page route in the class being connected |
|
69 | + * with (i.e. "edit_event") If this is in an array then the same params below will be used but the metabox |
|
70 | + * will be added to each route. |
|
71 | + * 'func' => 'executing_method', //must be public (i.e. public function executing_method($post, |
|
72 | + * $callback_args){} ). Note if you include callback args in the array then you need to declare them in the |
|
73 | + * method arguments. |
|
74 | + * 'id' => 'identifier_for_metabox', //so it can be removed by addons (optional, class will set it |
|
75 | + * automatically) |
|
76 | + * 'priority' => 'default', //default 'default' (optional) |
|
77 | + * 'label' => __('Localized Title', 'event_espresso'), |
|
78 | + * 'context' => 'advanced' //advanced is default (optional), |
|
79 | + * 'callback_args' => array() //any callback args to include (optional) |
|
80 | + * ) |
|
81 | + * Why are we indexing numerically? Because it's possible there may be more than one metabox per page_route. |
|
82 | + * |
|
83 | + * @var array |
|
84 | + */ |
|
85 | + protected $_metaboxes; |
|
86 | + |
|
87 | + |
|
88 | + /** |
|
89 | + * This is an array of values that indicate any metaboxes we want removed from a given page route. Usually this is |
|
90 | + * used when caffeinated functionality is replacing decaffeinated functionality. Use the following format for the |
|
91 | + * array: array( |
|
92 | + * 0 => array( |
|
93 | + * 'page_route' => 'string_for_page_route' //can be string or array of strings that match a page_route(s) |
|
94 | + * that are in the class being connected with (i.e. 'edit', or 'create_new'). |
|
95 | + * 'id' => 'identifier_for_metabox', //what the id is of the metabox being removed |
|
96 | + * 'context' => 'normal', //the context for the metabox being removed (has to match) |
|
97 | + * 'screen' => 'screen_id', //(optional), if not included then this class will attempt to remove the metabox |
|
98 | + * using the currently loaded screen object->id however, there may be cases where you have to specify the |
|
99 | + * id for the screen the metabox is on. |
|
100 | + * ) |
|
101 | + * ) |
|
102 | + * |
|
103 | + * @var array |
|
104 | + */ |
|
105 | + protected $_remove_metaboxes; |
|
106 | + |
|
107 | + |
|
108 | + /** |
|
109 | + * This parent class takes care of loading the scripts and styles if the child class has set the properties for |
|
110 | + * them in the following format. Note, the first array index ('register') is for defining all the registers. The |
|
111 | + * second array index is for indicating what routes each script/style loads on. array( |
|
112 | + * 'registers' => array( |
|
113 | + * 'script_ref' => array( // if more than one script is to be loaded its best to use the 'dependency' |
|
114 | + * argument to link scripts together. |
|
115 | + * 'type' => 'js' // 'js' or 'css' (defaults to js). This tells us what type of wp_function to use |
|
116 | + * 'url' => 'http://urltoscript.css.js', |
|
117 | + * 'depends' => array('jquery'), //an array of dependencies for the scripts. REMEMBER, if a script has |
|
118 | + * already been registered elsewhere in the system. You can just use the depends array to make sure it |
|
119 | + * gets loaded before the one you are setting here. |
|
120 | + * 'footer' => TRUE //defaults to true (styles don't use this parameter) |
|
121 | + * ), |
|
122 | + * 'enqueues' => array( //this time each key corresponds to the script ref followed by an array of page routes |
|
123 | + * the script gets enqueued on. |
|
124 | + * 'script_ref' => array('route_one', 'route_two') |
|
125 | + * ), |
|
126 | + * 'localize' => array( //this allows you to set a localize object. Indicate which script the object is being |
|
127 | + * attached to and then include an array indexed by the name of the object and the array of key/value pairs for |
|
128 | + * the object. |
|
129 | + * 'scrip_ref' => array( |
|
130 | + * 'NAME_OF_JS_OBJECT' => array( |
|
131 | + * 'translate_ref' => __('localized_string', 'event_espresso'), |
|
132 | + * 'some_data' => 5 |
|
133 | + * ) |
|
134 | + * ) |
|
135 | + * ) |
|
136 | + * ) |
|
137 | + * |
|
138 | + * @var array |
|
139 | + */ |
|
140 | + protected $_scripts_styles; |
|
141 | + |
|
142 | + |
|
143 | + /** |
|
144 | + * This is a property that will contain the current route. |
|
145 | + * |
|
146 | + * @var string; |
|
147 | + */ |
|
148 | + protected $_current_route; |
|
149 | + |
|
150 | + |
|
151 | + /** |
|
152 | + * this optional property can be set by child classes to override the priority for the automatic action/filter hook |
|
153 | + * loading in the `_load_routed_hooks()` method. Please follow this format: array( |
|
154 | + * 'wp_hook_reference' => 1 |
|
155 | + * ) |
|
156 | + * ) |
|
157 | + * |
|
158 | + * @var array |
|
159 | + */ |
|
160 | + protected $_wp_action_filters_priority; |
|
161 | + |
|
162 | + |
|
163 | + /** |
|
164 | + * This just holds a merged array of the $_POST and $_GET vars in favor of $_POST |
|
165 | + * |
|
166 | + * @var array |
|
167 | + */ |
|
168 | + protected $_req_data; |
|
169 | + |
|
170 | + |
|
171 | + /** |
|
172 | + * This just holds an instance of the page object for this hook |
|
173 | + * |
|
174 | + * @var EE_Admin_Page |
|
175 | + */ |
|
176 | + protected $_page_object; |
|
177 | + |
|
178 | + |
|
179 | + /** |
|
180 | + * This holds the EE_Admin_Page object from the calling admin page that this object hooks into. |
|
181 | + * |
|
182 | + * @var EE_Admin_Page|EE_Admin_Page_CPT |
|
183 | + */ |
|
184 | + protected $_adminpage_obj; |
|
185 | + |
|
186 | + |
|
187 | + /** |
|
188 | + * Holds EE_Registry object |
|
189 | + * |
|
190 | + * @var EE_Registry |
|
191 | + */ |
|
192 | + protected $EE = null; |
|
193 | + |
|
194 | + |
|
195 | + /** |
|
196 | + * constructor |
|
197 | + * |
|
198 | + * @param EE_Admin_Page $admin_page the calling admin_page_object |
|
199 | + */ |
|
200 | + public function __construct(EE_Admin_Page $adminpage) |
|
201 | + { |
|
202 | + |
|
203 | + $this->_adminpage_obj = $adminpage; |
|
204 | + $this->_req_data = array_merge($_GET, $_POST); |
|
205 | + $this->_set_defaults(); |
|
206 | + $this->_set_hooks_properties(); |
|
207 | + // first let's verify we're on the right page |
|
208 | + if (! isset($this->_req_data['page']) |
|
209 | + || (isset($this->_req_data['page']) |
|
210 | + && $this->_adminpage_obj->page_slug |
|
211 | + != $this->_req_data['page'])) { |
|
212 | + return; |
|
213 | + } //get out nothing more to be done here. |
|
214 | + // allow for extends to modify properties |
|
215 | + if (method_exists($this, '_extend_properties')) { |
|
216 | + $this->_extend_properties(); |
|
217 | + } |
|
218 | + $this->_set_page_object(); |
|
219 | + $this->_init_hooks(); |
|
220 | + $this->_load_custom_methods(); |
|
221 | + $this->_load_routed_hooks(); |
|
222 | + add_action('admin_enqueue_scripts', array($this, 'enqueue_scripts_styles')); |
|
223 | + add_action('admin_enqueue_scripts', array($this, 'add_metaboxes'), 20); |
|
224 | + add_action('admin_enqueue_scripts', array($this, 'remove_metaboxes'), 15); |
|
225 | + $this->_ajax_hooks(); |
|
226 | + } |
|
227 | + |
|
228 | + |
|
229 | + /** |
|
230 | + * used by child classes to set the following properties: |
|
231 | + * $_ajax_func (optional) |
|
232 | + * $_init_func (optional) |
|
233 | + * $_metaboxes (optional) |
|
234 | + * $_scripts (optional) |
|
235 | + * $_styles (optional) |
|
236 | + * $_name (required) |
|
237 | + * Also in this method will be registered any scripts or styles loaded on the targeted page (as indicated in the |
|
238 | + * _scripts/_styles properties) Also children should place in this method any filters/actions that have to happen |
|
239 | + * really early on page load (just after admin_init) if they want to have them registered for handling early. |
|
240 | + * |
|
241 | + * @access protected |
|
242 | + * @abstract |
|
243 | + * @return void |
|
244 | + */ |
|
245 | + abstract protected function _set_hooks_properties(); |
|
246 | + |
|
247 | + |
|
248 | + /** |
|
249 | + * The hooks for enqueue_scripts and enqueue_styles will be run in here. Child classes need to define their |
|
250 | + * scripts and styles in the relevant $_scripts and $_styles properties. Child classes must have also already |
|
251 | + * registered the scripts and styles using wp_register_script and wp_register_style functions. |
|
252 | + * |
|
253 | + * @access public |
|
254 | + * @return void |
|
255 | + */ |
|
256 | + public function enqueue_scripts_styles() |
|
257 | + { |
|
258 | + |
|
259 | + if (! empty($this->_scripts_styles)) { |
|
260 | + // first let's do all the registrations |
|
261 | + if (! isset($this->_scripts_styles['registers'])) { |
|
262 | + $msg[] = __( |
|
263 | + 'There is no "registers" index in the <code>$this->_scripts_styles</code> property.', |
|
264 | + 'event_espresso' |
|
265 | + ); |
|
266 | + $msg[] = sprintf( |
|
267 | + __( |
|
268 | + 'Make sure you read the phpdoc comments above the definition of the $_scripts_styles property in the <code>EE_Admin_Hooks</code> class and modify according in the %s child', |
|
269 | + 'event_espresso' |
|
270 | + ), |
|
271 | + '<strong>' . $this->caller . '</strong>' |
|
272 | + ); |
|
273 | + throw new EE_Error(implode('||', $msg)); |
|
274 | + } |
|
275 | + foreach ($this->_scripts_styles['registers'] as $ref => $details) { |
|
276 | + $defaults = array( |
|
277 | + 'type' => 'js', |
|
278 | + 'url' => '', |
|
279 | + 'depends' => array(), |
|
280 | + 'version' => EVENT_ESPRESSO_VERSION, |
|
281 | + 'footer' => true, |
|
282 | + ); |
|
283 | + $details = wp_parse_args($details, $defaults); |
|
284 | + extract($details); |
|
285 | + // let's make sure that we set the 'registers' type if it's not set! We need it later to determine whhich enqueu we do |
|
286 | + $this->_scripts_styles['registers'][ $ref ]['type'] = $type; |
|
287 | + // let's make sure we're not missing any REQUIRED parameters |
|
288 | + if (empty($url)) { |
|
289 | + $msg[] = sprintf( |
|
290 | + __('Missing the url for the requested %s', 'event_espresso'), |
|
291 | + $type == 'js' ? 'script' : 'stylesheet' |
|
292 | + ); |
|
293 | + $msg[] = sprintf( |
|
294 | + __( |
|
295 | + 'Doublecheck your <code>$this->_scripts_styles</code> array in %s and make sure that there is a "url" set for the %s ref', |
|
296 | + 'event_espresso' |
|
297 | + ), |
|
298 | + '<strong>' . $this->caller . '</strong>', |
|
299 | + $ref |
|
300 | + ); |
|
301 | + throw new EE_Error(implode('||', $msg)); |
|
302 | + } |
|
303 | + // made it here so let's do the appropriate registration |
|
304 | + $type == 'js' |
|
305 | + ? wp_register_script($ref, $url, $depends, $version, $footer) |
|
306 | + : wp_register_style( |
|
307 | + $ref, |
|
308 | + $url, |
|
309 | + $depends, |
|
310 | + $version |
|
311 | + ); |
|
312 | + } |
|
313 | + // k now lets do the enqueues |
|
314 | + if (! isset($this->_scripts_styles['enqueues'])) { |
|
315 | + return; |
|
316 | + } //not sure if we should throw an error here or not. |
|
317 | + |
|
318 | + foreach ($this->_scripts_styles['enqueues'] as $ref => $routes) { |
|
319 | + // make sure $routes is an array |
|
320 | + $routes = (array) $routes; |
|
321 | + if (in_array($this->_current_route, $routes)) { |
|
322 | + $this->_scripts_styles['registers'][ $ref ]['type'] == 'js' ? wp_enqueue_script($ref) |
|
323 | + : wp_enqueue_style($ref); |
|
324 | + // if we have a localization for the script let's do that too. |
|
325 | + if (isset($this->_scripts_styles['localize'][ $ref ])) { |
|
326 | + foreach ($this->_scripts_styles['localize'][ $ref ] as $object_name => $indexes) { |
|
327 | + wp_localize_script( |
|
328 | + $ref, |
|
329 | + $object_name, |
|
330 | + $this->_scripts_styles['localize'][ $ref ][ $object_name ] |
|
331 | + ); |
|
332 | + } |
|
333 | + } |
|
334 | + } |
|
335 | + } |
|
336 | + // let's do the deregisters |
|
337 | + if (! isset($this->_scripts_styles['deregisters'])) { |
|
338 | + return; |
|
339 | + } |
|
340 | + foreach ($this->_scripts_styles['deregisters'] as $ref => $details) { |
|
341 | + $defaults = array( |
|
342 | + 'type' => 'js', |
|
343 | + ); |
|
344 | + $details = wp_parse_args($details, $defaults); |
|
345 | + extract($details); |
|
346 | + $type == 'js' ? wp_deregister_script($ref) : wp_deregister_style($ref); |
|
347 | + } |
|
348 | + } |
|
349 | + } |
|
350 | + |
|
351 | + |
|
352 | + /** |
|
353 | + * just set the defaults for the hooks properties. |
|
354 | + * |
|
355 | + * @access private |
|
356 | + * @return void |
|
357 | + */ |
|
358 | + private function _set_defaults() |
|
359 | + { |
|
360 | + $this->_ajax_func = $this->_init_func = $this->_metaboxes = $this->_scripts = $this->_styles = $this->_wp_action_filters_priority = array(); |
|
361 | + $this->_current_route = $this->getCurrentRoute(); |
|
362 | + $this->caller = get_class($this); |
|
363 | + $this->_extend = stripos($this->caller, 'Extend') ? true : false; |
|
364 | + } |
|
365 | + |
|
366 | + |
|
367 | + /** |
|
368 | + * A helper for determining the current route. |
|
369 | + * @return string |
|
370 | + */ |
|
371 | + private function getCurrentRoute() |
|
372 | + { |
|
373 | + // list tables do something else with 'action' for bulk actions. |
|
374 | + $action = ! empty($_REQUEST['action']) && $_REQUEST['action'] !== '-1' ? $_REQUEST['action'] : 'default'; |
|
375 | + // we set a 'route' variable in some cases where action is being used by something else. |
|
376 | + $action = $action === 'default' && isset($_REQUEST['route']) ? $_REQUEST['route'] : $action; |
|
377 | + return sanitize_key($action); |
|
378 | + } |
|
379 | + |
|
380 | + |
|
381 | + /** |
|
382 | + * this sets the _page_object property |
|
383 | + * |
|
384 | + * @access protected |
|
385 | + * @return void |
|
386 | + */ |
|
387 | + protected function _set_page_object() |
|
388 | + { |
|
389 | + // first make sure $this->_name is set |
|
390 | + if (empty($this->_name)) { |
|
391 | + $msg[] = __('We can\'t load the page object', 'event_espresso'); |
|
392 | + $msg[] = sprintf( |
|
393 | + __("This is because the %s child class has not set the '_name' property", 'event_espresso'), |
|
394 | + $this->caller |
|
395 | + ); |
|
396 | + throw new EE_Error(implode('||', $msg)); |
|
397 | + } |
|
398 | + $ref = str_replace('_', ' ', $this->_name); // take the_message -> the message |
|
399 | + $ref = str_replace(' ', '_', ucwords($ref)) . '_Admin_Page'; // take the message -> The_Message |
|
400 | + // first default file (if exists) |
|
401 | + $decaf_file = EE_ADMIN_PAGES . $this->_name . DS . $ref . '.core.php'; |
|
402 | + if (is_readable($decaf_file)) { |
|
403 | + require_once($decaf_file); |
|
404 | + } |
|
405 | + // now we have to do require for extended file (if needed) |
|
406 | + if ($this->_extend) { |
|
407 | + require_once(EE_CORE_CAF_ADMIN_EXTEND . $this->_name . DS . 'Extend_' . $ref . '.core.php'); |
|
408 | + } |
|
409 | + // if we've got an extended class we use that! |
|
410 | + $ref = $this->_extend ? 'Extend_' . $ref : $ref; |
|
411 | + // let's make sure the class exists |
|
412 | + if (! class_exists($ref)) { |
|
413 | + $msg[] = __('We can\'t load the page object', 'event_espresso'); |
|
414 | + $msg[] = sprintf( |
|
415 | + __( |
|
416 | + 'The class name that was given is %s. Check the spelling and make sure its correct, also there needs to be an autoloader setup for the class', |
|
417 | + 'event_espresso' |
|
418 | + ), |
|
419 | + $ref |
|
420 | + ); |
|
421 | + throw new EE_Error(implode('||', $msg)); |
|
422 | + } |
|
423 | + $a = new ReflectionClass($ref); |
|
424 | + $this->_page_object = $a->newInstance(false); |
|
425 | + } |
|
426 | + |
|
427 | + |
|
428 | + /** |
|
429 | + * Child "hook" classes can declare any methods that they want executed when a specific page route is loaded. The |
|
430 | + * advantage of this is when doing things like running our own db interactions on saves etc. Remember that |
|
431 | + * $this->_req_data (all the _POST and _GET data) is available to your methods. |
|
432 | + * |
|
433 | + * @access private |
|
434 | + * @return void |
|
435 | + */ |
|
436 | + private function _load_custom_methods() |
|
437 | + { |
|
438 | + /** |
|
439 | + * method cannot be named 'default' (@see http://us3.php |
|
440 | + * .net/manual/en/reserved.keywords.php) so need to |
|
441 | + * handle routes that are "default" |
|
442 | + * |
|
443 | + * @since 4.3.0 |
|
444 | + */ |
|
445 | + $method_callback = $this->_current_route == 'default' ? 'default_callback' : $this->_current_route; |
|
446 | + // these run before the Admin_Page route executes. |
|
447 | + if (method_exists($this, $method_callback)) { |
|
448 | + call_user_func(array($this, $method_callback)); |
|
449 | + } |
|
450 | + // these run via the _redirect_after_action method in EE_Admin_Page which usually happens after non_UI methods in EE_Admin_Page classes. There are two redirect actions, the first fires before $query_args might be manipulated by "save and close" actions and the seond fires right before the actual redirect happens. |
|
451 | + // first the actions |
|
452 | + // note that these action hooks will have the $query_args value available. |
|
453 | + $admin_class_name = get_class($this->_adminpage_obj); |
|
454 | + if (method_exists($this, '_redirect_action_early_' . $this->_current_route)) { |
|
455 | + add_action( |
|
456 | + 'AHEE__' |
|
457 | + . $admin_class_name |
|
458 | + . '___redirect_after_action__before_redirect_modification_' |
|
459 | + . $this->_current_route, |
|
460 | + array($this, '_redirect_action_early_' . $this->_current_route), |
|
461 | + 10 |
|
462 | + ); |
|
463 | + } |
|
464 | + if (method_exists($this, '_redirect_action_' . $this->_current_route)) { |
|
465 | + add_action( |
|
466 | + 'AHEE_redirect_' . $admin_class_name . $this->_current_route, |
|
467 | + array($this, '_redirect_action_' . $this->_current_route), |
|
468 | + 10 |
|
469 | + ); |
|
470 | + } |
|
471 | + // let's hook into the _redirect itself and allow for changing where the user goes after redirect. This will have $query_args and $redirect_url available. |
|
472 | + if (method_exists($this, '_redirect_filter_' . $this->_current_route)) { |
|
473 | + add_filter( |
|
474 | + 'FHEE_redirect_' . $admin_class_name . $this->_current_route, |
|
475 | + array($this, '_redirect_filter_' . $this->_current_route), |
|
476 | + 10, |
|
477 | + 2 |
|
478 | + ); |
|
479 | + } |
|
480 | + } |
|
481 | + |
|
482 | + |
|
483 | + /** |
|
484 | + * This method will search for a corresponding method with a name matching the route and the wp_hook to run. This |
|
485 | + * allows child hook classes to target hooking into a specific wp action or filter hook ONLY on a certain route. |
|
486 | + * just remember, methods MUST be public Future hooks should be added in here to be access by child classes. |
|
487 | + * |
|
488 | + * @return void |
|
489 | + */ |
|
490 | + private function _load_routed_hooks() |
|
491 | + { |
|
492 | + |
|
493 | + // this array provides the hook action names that will be referenced. Key is the action. Value is an array with the type (action or filter) and the number of parameters for the hook. We'll default all priorities for automatic hooks to 10. |
|
494 | + $hook_filter_array = array( |
|
495 | + 'admin_footer' => array( |
|
496 | + 'type' => 'action', |
|
497 | + 'argnum' => 1, |
|
498 | + 'priority' => 10, |
|
499 | + ), |
|
500 | + 'FHEE_list_table_views_' . $this->_adminpage_obj->page_slug . '_' . $this->_current_route => array( |
|
501 | + 'type' => 'filter', |
|
502 | + 'argnum' => 1, |
|
503 | + 'priority' => 10, |
|
504 | + ), |
|
505 | + 'FHEE_list_table_views_' . $this->_adminpage_obj->page_slug => array( |
|
506 | + 'type' => 'filter', |
|
507 | + 'argnum' => 1, |
|
508 | + 'priority' => 10, |
|
509 | + ), |
|
510 | + 'FHEE_list_table_views' => array( |
|
511 | + 'type' => 'filter', |
|
512 | + 'argnum' => 1, |
|
513 | + 'priority' => 10, |
|
514 | + ), |
|
515 | + 'AHEE__EE_Admin_Page___display_admin_page__modify_metaboxes' => array( |
|
516 | + 'type' => 'action', |
|
517 | + 'argnum' => 1, |
|
518 | + 'priority' => 10, |
|
519 | + ), |
|
520 | + ); |
|
521 | + foreach ($hook_filter_array as $hook => $args) { |
|
522 | + if (method_exists($this, $this->_current_route . '_' . $hook)) { |
|
523 | + if (isset($this->_wp_action_filters_priority[ $hook ])) { |
|
524 | + $args['priority'] = $this->_wp_action_filters_priority[ $hook ]; |
|
525 | + } |
|
526 | + if ($args['type'] == 'action') { |
|
527 | + add_action( |
|
528 | + $hook, |
|
529 | + array($this, $this->_current_route . '_' . $hook), |
|
530 | + $args['priority'], |
|
531 | + $args['argnum'] |
|
532 | + ); |
|
533 | + } else { |
|
534 | + add_filter( |
|
535 | + $hook, |
|
536 | + array($this, $this->_current_route . '_' . $hook), |
|
537 | + $args['priority'], |
|
538 | + $args['argnum'] |
|
539 | + ); |
|
540 | + } |
|
541 | + } |
|
542 | + } |
|
543 | + } |
|
544 | + |
|
545 | + |
|
546 | + /** |
|
547 | + * Loop throught the $_ajax_func array and add_actions for the array. |
|
548 | + * |
|
549 | + * @return void |
|
550 | + */ |
|
551 | + private function _ajax_hooks() |
|
552 | + { |
|
553 | + |
|
554 | + if (empty($this->_ajax_func)) { |
|
555 | + return; |
|
556 | + } //get out there's nothing to take care of. |
|
557 | + foreach ($this->_ajax_func as $action => $method) { |
|
558 | + // make sure method exists |
|
559 | + if (! method_exists($this, $method)) { |
|
560 | + $msg[] = __( |
|
561 | + 'There is no corresponding method for the hook labeled in the _ajax_func array', |
|
562 | + 'event_espresso' |
|
563 | + ) . '<br />'; |
|
564 | + $msg[] = sprintf( |
|
565 | + __( |
|
566 | + 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
|
567 | + 'event_espresso' |
|
568 | + ), |
|
569 | + $method, |
|
570 | + $this->caller |
|
571 | + ); |
|
572 | + throw new EE_Error(implode('||', $msg)); |
|
573 | + } |
|
574 | + add_action('wp_ajax_' . $action, array($this, $method)); |
|
575 | + } |
|
576 | + } |
|
577 | + |
|
578 | + |
|
579 | + /** |
|
580 | + * Loop throught the $_init_func array and add_actions for the array. |
|
581 | + * |
|
582 | + * @return void |
|
583 | + */ |
|
584 | + protected function _init_hooks() |
|
585 | + { |
|
586 | + if (empty($this->_init_func)) { |
|
587 | + return; |
|
588 | + } //get out there's nothing to take care of. |
|
589 | + // We need to determine what page_route we are on! |
|
590 | + $current_route = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'default'; |
|
591 | + foreach ($this->_init_func as $route => $method) { |
|
592 | + // make sure method exists |
|
593 | + if (! method_exists($this, $method)) { |
|
594 | + $msg[] = __( |
|
595 | + 'There is no corresponding method for the hook labeled in the _init_func array', |
|
596 | + 'event_espresso' |
|
597 | + ) . '<br />'; |
|
598 | + $msg[] = sprintf( |
|
599 | + __( |
|
600 | + 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
|
601 | + 'event_espresso' |
|
602 | + ), |
|
603 | + $method, |
|
604 | + $this->caller |
|
605 | + ); |
|
606 | + throw new EE_Error(implode('||', $msg)); |
|
607 | + } |
|
608 | + if ($route == $this->_current_route) { |
|
609 | + add_action('admin_init', array($this, $method)); |
|
610 | + } |
|
611 | + } |
|
612 | + } |
|
613 | + |
|
614 | + |
|
615 | + /** |
|
616 | + * Loop through the _metaboxes property and add_metaboxes accordingly |
|
617 | + * //todo we could eventually make this a config component class (i.e. new EE_Metabox); |
|
618 | + * |
|
619 | + * @access public |
|
620 | + * @return void |
|
621 | + */ |
|
622 | + public function add_metaboxes() |
|
623 | + { |
|
624 | + if (empty($this->_metaboxes)) { |
|
625 | + return; |
|
626 | + } //get out we don't have any metaboxes to set for this connection |
|
627 | + $this->_handle_metabox_array($this->_metaboxes); |
|
628 | + } |
|
629 | + |
|
630 | + |
|
631 | + private function _handle_metabox_array($boxes, $add = true) |
|
632 | + { |
|
633 | + |
|
634 | + foreach ($boxes as $box) { |
|
635 | + if (! isset($box['page_route'])) { |
|
636 | + continue; |
|
637 | + } //we dont' have a valid array |
|
638 | + // let's make sure $box['page_route'] is an array so the "foreach" will work. |
|
639 | + $box['page_route'] = (array) $box['page_route']; |
|
640 | + foreach ($box['page_route'] as $route) { |
|
641 | + if ($route != $this->_current_route) { |
|
642 | + continue; |
|
643 | + } //get out we only add metaboxes for set route. |
|
644 | + if ($add) { |
|
645 | + $this->_add_metabox($box); |
|
646 | + } else { |
|
647 | + $this->_remove_metabox($box); |
|
648 | + } |
|
649 | + } |
|
650 | + } |
|
651 | + } |
|
652 | + |
|
653 | + |
|
654 | + /** |
|
655 | + * Loop through the _remove_metaboxes property and remove metaboxes accordingly. |
|
656 | + * |
|
657 | + * @access public |
|
658 | + * @return void |
|
659 | + */ |
|
660 | + public function remove_metaboxes() |
|
661 | + { |
|
662 | + |
|
663 | + if (empty($this->_remove_metaboxes)) { |
|
664 | + return; |
|
665 | + } //get out there are no metaboxes to remove |
|
666 | + $this->_handle_metabox_array($this->_remove_metaboxes, false); |
|
667 | + } |
|
668 | + |
|
669 | + |
|
670 | + /** |
|
671 | + * This just handles adding a metabox |
|
672 | + * |
|
673 | + * @access private |
|
674 | + * @param array $args an array of args that have been set for this metabox by the child class |
|
675 | + */ |
|
676 | + private function _add_metabox($args) |
|
677 | + { |
|
678 | + $current_screen = get_current_screen(); |
|
679 | + $screen_id = is_object($current_screen) ? $current_screen->id : null; |
|
680 | + $func = isset($args['func']) ? $args['func'] : 'some_invalid_callback'; |
|
681 | + // set defaults |
|
682 | + $defaults = array( |
|
683 | + 'func' => $func, |
|
684 | + 'id' => $this->caller . '_' . $func . '_metabox', |
|
685 | + 'priority' => 'default', |
|
686 | + 'label' => $this->caller, |
|
687 | + 'context' => 'advanced', |
|
688 | + 'callback_args' => array(), |
|
689 | + 'page' => isset($args['page']) ? $args['page'] : $screen_id, |
|
690 | + ); |
|
691 | + $args = wp_parse_args($args, $defaults); |
|
692 | + extract($args); |
|
693 | + // make sure method exists |
|
694 | + if (! method_exists($this, $func)) { |
|
695 | + $msg[] = __('There is no corresponding method to display the metabox content', 'event_espresso') . '<br />'; |
|
696 | + $msg[] = sprintf( |
|
697 | + __( |
|
698 | + 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
|
699 | + 'event_espresso' |
|
700 | + ), |
|
701 | + $func, |
|
702 | + $this->caller |
|
703 | + ); |
|
704 | + throw new EE_Error(implode('||', $msg)); |
|
705 | + } |
|
706 | + // everything checks out so lets add the metabox |
|
707 | + add_meta_box($id, $label, array($this, $func), $page, $context, $priority, $callback_args); |
|
708 | + } |
|
709 | + |
|
710 | + |
|
711 | + private function _remove_metabox($args) |
|
712 | + { |
|
713 | + $current_screen = get_current_screen(); |
|
714 | + $screen_id = is_object($current_screen) ? $current_screen->id : null; |
|
715 | + $func = isset($args['func']) ? $args['func'] : 'some_invalid_callback'; |
|
716 | + // set defaults |
|
717 | + $defaults = array( |
|
718 | + 'id' => isset($args['id']) |
|
719 | + ? $args['id'] |
|
720 | + : $this->_current_route |
|
721 | + . '_' |
|
722 | + . $this->caller |
|
723 | + . '_' |
|
724 | + . $func |
|
725 | + . '_metabox', |
|
726 | + 'context' => 'default', |
|
727 | + 'screen' => isset($args['screen']) ? $args['screen'] : $screen_id, |
|
728 | + ); |
|
729 | + $args = wp_parse_args($args, $defaults); |
|
730 | + extract($args); |
|
731 | + // everything checks out so lets remove the box! |
|
732 | + remove_meta_box($id, $screen, $context); |
|
733 | + } |
|
734 | 734 | } |
@@ -205,7 +205,7 @@ discard block |
||
205 | 205 | $this->_set_defaults(); |
206 | 206 | $this->_set_hooks_properties(); |
207 | 207 | // first let's verify we're on the right page |
208 | - if (! isset($this->_req_data['page']) |
|
208 | + if ( ! isset($this->_req_data['page']) |
|
209 | 209 | || (isset($this->_req_data['page']) |
210 | 210 | && $this->_adminpage_obj->page_slug |
211 | 211 | != $this->_req_data['page'])) { |
@@ -256,9 +256,9 @@ discard block |
||
256 | 256 | public function enqueue_scripts_styles() |
257 | 257 | { |
258 | 258 | |
259 | - if (! empty($this->_scripts_styles)) { |
|
259 | + if ( ! empty($this->_scripts_styles)) { |
|
260 | 260 | // first let's do all the registrations |
261 | - if (! isset($this->_scripts_styles['registers'])) { |
|
261 | + if ( ! isset($this->_scripts_styles['registers'])) { |
|
262 | 262 | $msg[] = __( |
263 | 263 | 'There is no "registers" index in the <code>$this->_scripts_styles</code> property.', |
264 | 264 | 'event_espresso' |
@@ -268,7 +268,7 @@ discard block |
||
268 | 268 | 'Make sure you read the phpdoc comments above the definition of the $_scripts_styles property in the <code>EE_Admin_Hooks</code> class and modify according in the %s child', |
269 | 269 | 'event_espresso' |
270 | 270 | ), |
271 | - '<strong>' . $this->caller . '</strong>' |
|
271 | + '<strong>'.$this->caller.'</strong>' |
|
272 | 272 | ); |
273 | 273 | throw new EE_Error(implode('||', $msg)); |
274 | 274 | } |
@@ -283,7 +283,7 @@ discard block |
||
283 | 283 | $details = wp_parse_args($details, $defaults); |
284 | 284 | extract($details); |
285 | 285 | // let's make sure that we set the 'registers' type if it's not set! We need it later to determine whhich enqueu we do |
286 | - $this->_scripts_styles['registers'][ $ref ]['type'] = $type; |
|
286 | + $this->_scripts_styles['registers'][$ref]['type'] = $type; |
|
287 | 287 | // let's make sure we're not missing any REQUIRED parameters |
288 | 288 | if (empty($url)) { |
289 | 289 | $msg[] = sprintf( |
@@ -295,7 +295,7 @@ discard block |
||
295 | 295 | 'Doublecheck your <code>$this->_scripts_styles</code> array in %s and make sure that there is a "url" set for the %s ref', |
296 | 296 | 'event_espresso' |
297 | 297 | ), |
298 | - '<strong>' . $this->caller . '</strong>', |
|
298 | + '<strong>'.$this->caller.'</strong>', |
|
299 | 299 | $ref |
300 | 300 | ); |
301 | 301 | throw new EE_Error(implode('||', $msg)); |
@@ -311,7 +311,7 @@ discard block |
||
311 | 311 | ); |
312 | 312 | } |
313 | 313 | // k now lets do the enqueues |
314 | - if (! isset($this->_scripts_styles['enqueues'])) { |
|
314 | + if ( ! isset($this->_scripts_styles['enqueues'])) { |
|
315 | 315 | return; |
316 | 316 | } //not sure if we should throw an error here or not. |
317 | 317 | |
@@ -319,22 +319,22 @@ discard block |
||
319 | 319 | // make sure $routes is an array |
320 | 320 | $routes = (array) $routes; |
321 | 321 | if (in_array($this->_current_route, $routes)) { |
322 | - $this->_scripts_styles['registers'][ $ref ]['type'] == 'js' ? wp_enqueue_script($ref) |
|
322 | + $this->_scripts_styles['registers'][$ref]['type'] == 'js' ? wp_enqueue_script($ref) |
|
323 | 323 | : wp_enqueue_style($ref); |
324 | 324 | // if we have a localization for the script let's do that too. |
325 | - if (isset($this->_scripts_styles['localize'][ $ref ])) { |
|
326 | - foreach ($this->_scripts_styles['localize'][ $ref ] as $object_name => $indexes) { |
|
325 | + if (isset($this->_scripts_styles['localize'][$ref])) { |
|
326 | + foreach ($this->_scripts_styles['localize'][$ref] as $object_name => $indexes) { |
|
327 | 327 | wp_localize_script( |
328 | 328 | $ref, |
329 | 329 | $object_name, |
330 | - $this->_scripts_styles['localize'][ $ref ][ $object_name ] |
|
330 | + $this->_scripts_styles['localize'][$ref][$object_name] |
|
331 | 331 | ); |
332 | 332 | } |
333 | 333 | } |
334 | 334 | } |
335 | 335 | } |
336 | 336 | // let's do the deregisters |
337 | - if (! isset($this->_scripts_styles['deregisters'])) { |
|
337 | + if ( ! isset($this->_scripts_styles['deregisters'])) { |
|
338 | 338 | return; |
339 | 339 | } |
340 | 340 | foreach ($this->_scripts_styles['deregisters'] as $ref => $details) { |
@@ -396,20 +396,20 @@ discard block |
||
396 | 396 | throw new EE_Error(implode('||', $msg)); |
397 | 397 | } |
398 | 398 | $ref = str_replace('_', ' ', $this->_name); // take the_message -> the message |
399 | - $ref = str_replace(' ', '_', ucwords($ref)) . '_Admin_Page'; // take the message -> The_Message |
|
399 | + $ref = str_replace(' ', '_', ucwords($ref)).'_Admin_Page'; // take the message -> The_Message |
|
400 | 400 | // first default file (if exists) |
401 | - $decaf_file = EE_ADMIN_PAGES . $this->_name . DS . $ref . '.core.php'; |
|
401 | + $decaf_file = EE_ADMIN_PAGES.$this->_name.DS.$ref.'.core.php'; |
|
402 | 402 | if (is_readable($decaf_file)) { |
403 | 403 | require_once($decaf_file); |
404 | 404 | } |
405 | 405 | // now we have to do require for extended file (if needed) |
406 | 406 | if ($this->_extend) { |
407 | - require_once(EE_CORE_CAF_ADMIN_EXTEND . $this->_name . DS . 'Extend_' . $ref . '.core.php'); |
|
407 | + require_once(EE_CORE_CAF_ADMIN_EXTEND.$this->_name.DS.'Extend_'.$ref.'.core.php'); |
|
408 | 408 | } |
409 | 409 | // if we've got an extended class we use that! |
410 | - $ref = $this->_extend ? 'Extend_' . $ref : $ref; |
|
410 | + $ref = $this->_extend ? 'Extend_'.$ref : $ref; |
|
411 | 411 | // let's make sure the class exists |
412 | - if (! class_exists($ref)) { |
|
412 | + if ( ! class_exists($ref)) { |
|
413 | 413 | $msg[] = __('We can\'t load the page object', 'event_espresso'); |
414 | 414 | $msg[] = sprintf( |
415 | 415 | __( |
@@ -451,28 +451,28 @@ discard block |
||
451 | 451 | // first the actions |
452 | 452 | // note that these action hooks will have the $query_args value available. |
453 | 453 | $admin_class_name = get_class($this->_adminpage_obj); |
454 | - if (method_exists($this, '_redirect_action_early_' . $this->_current_route)) { |
|
454 | + if (method_exists($this, '_redirect_action_early_'.$this->_current_route)) { |
|
455 | 455 | add_action( |
456 | 456 | 'AHEE__' |
457 | 457 | . $admin_class_name |
458 | 458 | . '___redirect_after_action__before_redirect_modification_' |
459 | 459 | . $this->_current_route, |
460 | - array($this, '_redirect_action_early_' . $this->_current_route), |
|
460 | + array($this, '_redirect_action_early_'.$this->_current_route), |
|
461 | 461 | 10 |
462 | 462 | ); |
463 | 463 | } |
464 | - if (method_exists($this, '_redirect_action_' . $this->_current_route)) { |
|
464 | + if (method_exists($this, '_redirect_action_'.$this->_current_route)) { |
|
465 | 465 | add_action( |
466 | - 'AHEE_redirect_' . $admin_class_name . $this->_current_route, |
|
467 | - array($this, '_redirect_action_' . $this->_current_route), |
|
466 | + 'AHEE_redirect_'.$admin_class_name.$this->_current_route, |
|
467 | + array($this, '_redirect_action_'.$this->_current_route), |
|
468 | 468 | 10 |
469 | 469 | ); |
470 | 470 | } |
471 | 471 | // let's hook into the _redirect itself and allow for changing where the user goes after redirect. This will have $query_args and $redirect_url available. |
472 | - if (method_exists($this, '_redirect_filter_' . $this->_current_route)) { |
|
472 | + if (method_exists($this, '_redirect_filter_'.$this->_current_route)) { |
|
473 | 473 | add_filter( |
474 | - 'FHEE_redirect_' . $admin_class_name . $this->_current_route, |
|
475 | - array($this, '_redirect_filter_' . $this->_current_route), |
|
474 | + 'FHEE_redirect_'.$admin_class_name.$this->_current_route, |
|
475 | + array($this, '_redirect_filter_'.$this->_current_route), |
|
476 | 476 | 10, |
477 | 477 | 2 |
478 | 478 | ); |
@@ -497,12 +497,12 @@ discard block |
||
497 | 497 | 'argnum' => 1, |
498 | 498 | 'priority' => 10, |
499 | 499 | ), |
500 | - 'FHEE_list_table_views_' . $this->_adminpage_obj->page_slug . '_' . $this->_current_route => array( |
|
500 | + 'FHEE_list_table_views_'.$this->_adminpage_obj->page_slug.'_'.$this->_current_route => array( |
|
501 | 501 | 'type' => 'filter', |
502 | 502 | 'argnum' => 1, |
503 | 503 | 'priority' => 10, |
504 | 504 | ), |
505 | - 'FHEE_list_table_views_' . $this->_adminpage_obj->page_slug => array( |
|
505 | + 'FHEE_list_table_views_'.$this->_adminpage_obj->page_slug => array( |
|
506 | 506 | 'type' => 'filter', |
507 | 507 | 'argnum' => 1, |
508 | 508 | 'priority' => 10, |
@@ -519,21 +519,21 @@ discard block |
||
519 | 519 | ), |
520 | 520 | ); |
521 | 521 | foreach ($hook_filter_array as $hook => $args) { |
522 | - if (method_exists($this, $this->_current_route . '_' . $hook)) { |
|
523 | - if (isset($this->_wp_action_filters_priority[ $hook ])) { |
|
524 | - $args['priority'] = $this->_wp_action_filters_priority[ $hook ]; |
|
522 | + if (method_exists($this, $this->_current_route.'_'.$hook)) { |
|
523 | + if (isset($this->_wp_action_filters_priority[$hook])) { |
|
524 | + $args['priority'] = $this->_wp_action_filters_priority[$hook]; |
|
525 | 525 | } |
526 | 526 | if ($args['type'] == 'action') { |
527 | 527 | add_action( |
528 | 528 | $hook, |
529 | - array($this, $this->_current_route . '_' . $hook), |
|
529 | + array($this, $this->_current_route.'_'.$hook), |
|
530 | 530 | $args['priority'], |
531 | 531 | $args['argnum'] |
532 | 532 | ); |
533 | 533 | } else { |
534 | 534 | add_filter( |
535 | 535 | $hook, |
536 | - array($this, $this->_current_route . '_' . $hook), |
|
536 | + array($this, $this->_current_route.'_'.$hook), |
|
537 | 537 | $args['priority'], |
538 | 538 | $args['argnum'] |
539 | 539 | ); |
@@ -556,11 +556,11 @@ discard block |
||
556 | 556 | } //get out there's nothing to take care of. |
557 | 557 | foreach ($this->_ajax_func as $action => $method) { |
558 | 558 | // make sure method exists |
559 | - if (! method_exists($this, $method)) { |
|
559 | + if ( ! method_exists($this, $method)) { |
|
560 | 560 | $msg[] = __( |
561 | 561 | 'There is no corresponding method for the hook labeled in the _ajax_func array', |
562 | 562 | 'event_espresso' |
563 | - ) . '<br />'; |
|
563 | + ).'<br />'; |
|
564 | 564 | $msg[] = sprintf( |
565 | 565 | __( |
566 | 566 | 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
@@ -571,7 +571,7 @@ discard block |
||
571 | 571 | ); |
572 | 572 | throw new EE_Error(implode('||', $msg)); |
573 | 573 | } |
574 | - add_action('wp_ajax_' . $action, array($this, $method)); |
|
574 | + add_action('wp_ajax_'.$action, array($this, $method)); |
|
575 | 575 | } |
576 | 576 | } |
577 | 577 | |
@@ -590,11 +590,11 @@ discard block |
||
590 | 590 | $current_route = isset($_REQUEST['action']) ? $_REQUEST['action'] : 'default'; |
591 | 591 | foreach ($this->_init_func as $route => $method) { |
592 | 592 | // make sure method exists |
593 | - if (! method_exists($this, $method)) { |
|
593 | + if ( ! method_exists($this, $method)) { |
|
594 | 594 | $msg[] = __( |
595 | 595 | 'There is no corresponding method for the hook labeled in the _init_func array', |
596 | 596 | 'event_espresso' |
597 | - ) . '<br />'; |
|
597 | + ).'<br />'; |
|
598 | 598 | $msg[] = sprintf( |
599 | 599 | __( |
600 | 600 | 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
@@ -632,7 +632,7 @@ discard block |
||
632 | 632 | { |
633 | 633 | |
634 | 634 | foreach ($boxes as $box) { |
635 | - if (! isset($box['page_route'])) { |
|
635 | + if ( ! isset($box['page_route'])) { |
|
636 | 636 | continue; |
637 | 637 | } //we dont' have a valid array |
638 | 638 | // let's make sure $box['page_route'] is an array so the "foreach" will work. |
@@ -681,7 +681,7 @@ discard block |
||
681 | 681 | // set defaults |
682 | 682 | $defaults = array( |
683 | 683 | 'func' => $func, |
684 | - 'id' => $this->caller . '_' . $func . '_metabox', |
|
684 | + 'id' => $this->caller.'_'.$func.'_metabox', |
|
685 | 685 | 'priority' => 'default', |
686 | 686 | 'label' => $this->caller, |
687 | 687 | 'context' => 'advanced', |
@@ -691,8 +691,8 @@ discard block |
||
691 | 691 | $args = wp_parse_args($args, $defaults); |
692 | 692 | extract($args); |
693 | 693 | // make sure method exists |
694 | - if (! method_exists($this, $func)) { |
|
695 | - $msg[] = __('There is no corresponding method to display the metabox content', 'event_espresso') . '<br />'; |
|
694 | + if ( ! method_exists($this, $func)) { |
|
695 | + $msg[] = __('There is no corresponding method to display the metabox content', 'event_espresso').'<br />'; |
|
696 | 696 | $msg[] = sprintf( |
697 | 697 | __( |
698 | 698 | 'The method name given in the array is %s, check the spelling and make sure it exists in the %s class', |
@@ -832,7 +832,7 @@ |
||
832 | 832 | * Takes care of setting up the addressee object(s) for the primary attendee. |
833 | 833 | * |
834 | 834 | * @access protected |
835 | - * @return array of EE_Addressee objects |
|
835 | + * @return EE_Messages_Addressee[] of EE_Addressee objects |
|
836 | 836 | * @throws EE_Error |
837 | 837 | */ |
838 | 838 | protected function _primary_attendee_addressees() |