@@ -2,8 +2,8 @@ discard block |
||
2 | 2 | use EventEspresso\core\libraries\rest_api\controllers\Base as Base; |
3 | 3 | use EventEspresso\core\libraries\rest_api\controllers\model\Read; |
4 | 4 | |
5 | -if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
6 | - exit( 'No direct script access allowed' ); |
|
5 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
6 | + exit('No direct script access allowed'); |
|
7 | 7 | } |
8 | 8 | |
9 | 9 | /** |
@@ -24,9 +24,9 @@ discard block |
||
24 | 24 | * @param \WP_REST_Request $request |
25 | 25 | * @return \WP_Error|\WP_REST_Response |
26 | 26 | */ |
27 | - public static function handle_request_toggle_checkin( \WP_REST_Request $request ) { |
|
27 | + public static function handle_request_toggle_checkin(\WP_REST_Request $request) { |
|
28 | 28 | $controller = new Checkin(); |
29 | - return $controller->_create_checkin_checkout_object( $request ); |
|
29 | + return $controller->_create_checkin_checkout_object($request); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | |
@@ -37,47 +37,47 @@ discard block |
||
37 | 37 | * @param \WP_REST_Request $request |
38 | 38 | * @return \WP_Error|\WP_REST_Response |
39 | 39 | */ |
40 | - protected function _create_checkin_checkout_object( \WP_REST_Request $request ) { |
|
41 | - $reg_id = $request->get_param( 'REG_ID' ); |
|
42 | - $dtt_id = $request->get_param( 'DTT_ID' ); |
|
43 | - $force = $request->get_param( 'force' ); |
|
44 | - if( $force == 'true' ) { |
|
40 | + protected function _create_checkin_checkout_object(\WP_REST_Request $request) { |
|
41 | + $reg_id = $request->get_param('REG_ID'); |
|
42 | + $dtt_id = $request->get_param('DTT_ID'); |
|
43 | + $force = $request->get_param('force'); |
|
44 | + if ($force == 'true') { |
|
45 | 45 | $force = true; |
46 | 46 | } else { |
47 | 47 | $force = false; |
48 | 48 | } |
49 | - $reg = \EEM_Registration::instance()->get_one_by_ID( $reg_id ); |
|
50 | - if( ! $reg instanceof \EE_Registration ) { |
|
49 | + $reg = \EEM_Registration::instance()->get_one_by_ID($reg_id); |
|
50 | + if ( ! $reg instanceof \EE_Registration) { |
|
51 | 51 | return $this->send_response( |
52 | 52 | new \WP_Error( |
53 | 53 | 'rest_registration_toggle_checkin_invalid_id', |
54 | 54 | sprintf( |
55 | - __( 'You cannot checkin registration with ID %1$s because it doesn\'t exist.', 'event_espresso' ), |
|
55 | + __('You cannot checkin registration with ID %1$s because it doesn\'t exist.', 'event_espresso'), |
|
56 | 56 | $reg_id |
57 | 57 | ), |
58 | - array( 'status' => 422 ) |
|
58 | + array('status' => 422) |
|
59 | 59 | ) |
60 | 60 | ); |
61 | 61 | } |
62 | - if( ! \EE_Capabilities::instance()->current_user_can( 'ee_edit_checkin', 'rest_api_checkin_endpoint', $reg_id ) ) { |
|
62 | + if ( ! \EE_Capabilities::instance()->current_user_can('ee_edit_checkin', 'rest_api_checkin_endpoint', $reg_id)) { |
|
63 | 63 | return $this->send_response( |
64 | 64 | new \WP_Error( |
65 | 65 | 'rest_user_cannot_toggle_checkin', |
66 | 66 | sprintf( |
67 | - __( 'You are not allowed to checkin registration with ID %1$s.', 'event_espresso' ), |
|
67 | + __('You are not allowed to checkin registration with ID %1$s.', 'event_espresso'), |
|
68 | 68 | $reg_id |
69 | 69 | ), |
70 | - array( 'status' => 403 ) |
|
70 | + array('status' => 403) |
|
71 | 71 | ) |
72 | 72 | ); |
73 | 73 | } |
74 | - $success = $reg->toggle_checkin_status( $dtt_id, ! $force ); |
|
75 | - if( $success === false ) { |
|
74 | + $success = $reg->toggle_checkin_status($dtt_id, ! $force); |
|
75 | + if ($success === false) { |
|
76 | 76 | //rely on EE_Error::add_error messages to have been added to give more data about hwy it failed |
77 | 77 | return $this->send_response( |
78 | 78 | new \WP_Error( |
79 | 79 | 'rest_toggle_checkin_failed', |
80 | - __( 'Registration checkin failed. Please see additional error data.', 'event_espresso' ) |
|
80 | + __('Registration checkin failed. Please see additional error data.', 'event_espresso') |
|
81 | 81 | ) |
82 | 82 | ); |
83 | 83 | } |
@@ -92,28 +92,28 @@ discard block |
||
92 | 92 | ) |
93 | 93 | ) |
94 | 94 | ); |
95 | - if( ! $checkin instanceof \EE_Checkin ) { |
|
95 | + if ( ! $checkin instanceof \EE_Checkin) { |
|
96 | 96 | return $this->send_response( |
97 | 97 | new \WP_Error( |
98 | 98 | 'rest_toggle_checkin_error', |
99 | 99 | sprintf( |
100 | - __( 'Supposedly we created a new checkin object for registration %1$s at datetime %2$s, but we can\'t find it.', 'event_espresso' ), |
|
100 | + __('Supposedly we created a new checkin object for registration %1$s at datetime %2$s, but we can\'t find it.', 'event_espresso'), |
|
101 | 101 | $reg_id, |
102 | 102 | $dtt_id |
103 | 103 | ) |
104 | 104 | ) |
105 | 105 | ); |
106 | 106 | } |
107 | - $requested_version = $this->get_requested_version( $request->get_route() ); |
|
107 | + $requested_version = $this->get_requested_version($request->get_route()); |
|
108 | 108 | $get_request = new \WP_REST_Request( |
109 | 109 | 'GET', |
110 | - \EED_Core_Rest_Api::ee_api_namespace . $requested_version . '/checkins/' . $checkin->ID() |
|
110 | + \EED_Core_Rest_Api::ee_api_namespace.$requested_version.'/checkins/'.$checkin->ID() |
|
111 | 111 | ); |
112 | 112 | $get_request->set_url_params( |
113 | 113 | array( |
114 | 114 | 'id' => $checkin->ID() |
115 | 115 | ) |
116 | 116 | ); |
117 | - return Read::handle_request_get_one( $get_request ); |
|
117 | + return Read::handle_request_get_one($get_request); |
|
118 | 118 | } |
119 | 119 | } |
120 | 120 | \ No newline at end of file |
@@ -22,35 +22,35 @@ discard block |
||
22 | 22 | * @param EE_Response $response |
23 | 23 | * @return EE_Response |
24 | 24 | */ |
25 | - public function handle_request( EE_Request $request, EE_Response $response ) { |
|
25 | + public function handle_request(EE_Request $request, EE_Response $response) { |
|
26 | 26 | $this->_request = $request; |
27 | 27 | $this->_response = $response; |
28 | 28 | //$this->_response->add_output( "\n\t IN >> " . __CLASS__ ); |
29 | 29 | //$this->_response->set_notice( 1, 'hey look at this' ); |
30 | 30 | // check required WP version |
31 | - if ( ! $this->_minimum_wp_version_required() ) { |
|
32 | - $this->_request->un_set( 'activate', true ); |
|
33 | - add_action( 'admin_notices', array( $this, 'minimum_wp_version_error' ), 1 ); |
|
31 | + if ( ! $this->_minimum_wp_version_required()) { |
|
32 | + $this->_request->un_set('activate', true); |
|
33 | + add_action('admin_notices', array($this, 'minimum_wp_version_error'), 1); |
|
34 | 34 | //$this->_response->add_output( "\n<br />" . 'minimum_wp_version_error' ); |
35 | 35 | $this->_response->terminate_request(); |
36 | 36 | } |
37 | 37 | // check required PHP version |
38 | - if ( ! $this->_minimum_php_version_required() ) { |
|
39 | - $this->_request->un_set( 'activate', true ); |
|
40 | - add_action( 'admin_notices', array( $this, 'minimum_php_version_error' ), 1 ); |
|
38 | + if ( ! $this->_minimum_php_version_required()) { |
|
39 | + $this->_request->un_set('activate', true); |
|
40 | + add_action('admin_notices', array($this, 'minimum_php_version_error'), 1); |
|
41 | 41 | //$this->_response->add_output( "\n<br />" . 'minimum_php_version_error' ); |
42 | 42 | $this->_response->terminate_request(); |
43 | 43 | } |
44 | 44 | // check recommended WP version |
45 | - if ( ! $this->_minimum_wp_version_recommended() ) { |
|
45 | + if ( ! $this->_minimum_wp_version_recommended()) { |
|
46 | 46 | $this->_display_minimum_recommended_wp_version_notice(); |
47 | 47 | } |
48 | 48 | // check recommended PHP version |
49 | - if ( ! $this->_minimum_php_version_recommended() ) { |
|
49 | + if ( ! $this->_minimum_php_version_recommended()) { |
|
50 | 50 | $this->_display_minimum_recommended_php_version_notice(); |
51 | 51 | } |
52 | 52 | $this->_test_for_php_version_7(); |
53 | - $this->_response = $this->process_request_stack( $this->_request, $this->_response ); |
|
53 | + $this->_response = $this->process_request_stack($this->_request, $this->_response); |
|
54 | 54 | //$this->_response->add_output( "\n\t OUT << " . __CLASS__ ); |
55 | 55 | return $this->_response; |
56 | 56 | } |
@@ -64,9 +64,9 @@ discard block |
||
64 | 64 | * @param string $min_version |
65 | 65 | * @return boolean |
66 | 66 | */ |
67 | - private function _check_wp_version( $min_version = EE_MIN_WP_VER_REQUIRED ) { |
|
67 | + private function _check_wp_version($min_version = EE_MIN_WP_VER_REQUIRED) { |
|
68 | 68 | global $wp_version; |
69 | - return version_compare( $wp_version, $min_version, '>=' ) ? true : false; |
|
69 | + return version_compare($wp_version, $min_version, '>=') ? true : false; |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | |
@@ -78,7 +78,7 @@ discard block |
||
78 | 78 | * @return boolean |
79 | 79 | */ |
80 | 80 | private function _minimum_wp_version_required() { |
81 | - return $this->_check_wp_version( EE_MIN_WP_VER_REQUIRED ); |
|
81 | + return $this->_check_wp_version(EE_MIN_WP_VER_REQUIRED); |
|
82 | 82 | } |
83 | 83 | |
84 | 84 | |
@@ -90,7 +90,7 @@ discard block |
||
90 | 90 | * @return boolean |
91 | 91 | */ |
92 | 92 | private function _minimum_wp_version_recommended() { |
93 | - return $this->_check_wp_version( EE_MIN_WP_VER_RECOMMENDED ); |
|
93 | + return $this->_check_wp_version(EE_MIN_WP_VER_RECOMMENDED); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | |
@@ -102,8 +102,8 @@ discard block |
||
102 | 102 | * @param string $min_version |
103 | 103 | * @return boolean |
104 | 104 | */ |
105 | - private function _check_php_version( $min_version = EE_MIN_PHP_VER_RECOMMENDED ) { |
|
106 | - return version_compare( PHP_VERSION, $min_version, '>=' ) ? true : false; |
|
105 | + private function _check_php_version($min_version = EE_MIN_PHP_VER_RECOMMENDED) { |
|
106 | + return version_compare(PHP_VERSION, $min_version, '>=') ? true : false; |
|
107 | 107 | } |
108 | 108 | |
109 | 109 | |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | * @return boolean |
116 | 116 | */ |
117 | 117 | private function _minimum_php_version_required() { |
118 | - return $this->_check_php_version( EE_MIN_PHP_VER_REQUIRED ); |
|
118 | + return $this->_check_php_version(EE_MIN_PHP_VER_REQUIRED); |
|
119 | 119 | } |
120 | 120 | |
121 | 121 | |
@@ -127,7 +127,7 @@ discard block |
||
127 | 127 | * @return boolean |
128 | 128 | */ |
129 | 129 | private function _minimum_php_version_recommended() { |
130 | - return $this->_check_php_version( EE_MIN_PHP_VER_RECOMMENDED ); |
|
130 | + return $this->_check_php_version(EE_MIN_PHP_VER_RECOMMENDED); |
|
131 | 131 | } |
132 | 132 | |
133 | 133 | |
@@ -144,7 +144,7 @@ discard block |
||
144 | 144 | <p> |
145 | 145 | <?php |
146 | 146 | printf( |
147 | - __( 'We\'re sorry, but Event Espresso requires WordPress version %1$s or greater in order to operate. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso' ), |
|
147 | + __('We\'re sorry, but Event Espresso requires WordPress version %1$s or greater in order to operate. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso'), |
|
148 | 148 | EE_MIN_WP_VER_REQUIRED, |
149 | 149 | $wp_version, |
150 | 150 | '<br/>', |
@@ -169,7 +169,7 @@ discard block |
||
169 | 169 | <p> |
170 | 170 | <?php |
171 | 171 | printf( |
172 | - __( 'We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso' ), |
|
172 | + __('We\'re sorry, but Event Espresso requires PHP version %1$s or greater in order to operate. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso'), |
|
173 | 173 | EE_MIN_PHP_VER_REQUIRED, |
174 | 174 | PHP_VERSION, |
175 | 175 | '<br/>', |
@@ -192,9 +192,9 @@ discard block |
||
192 | 192 | private function _display_minimum_recommended_wp_version_notice() { |
193 | 193 | global $wp_version; |
194 | 194 | EE_Error::add_persistent_admin_notice( |
195 | - 'wp_version_' . str_replace( '.', '-', EE_MIN_WP_VER_RECOMMENDED ) . '_recommended', |
|
195 | + 'wp_version_'.str_replace('.', '-', EE_MIN_WP_VER_RECOMMENDED).'_recommended', |
|
196 | 196 | sprintf( |
197 | - __( 'Event Espresso recommends WordPress version %1$s or greater in order for everything to operate properly. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso' ), |
|
197 | + __('Event Espresso recommends WordPress version %1$s or greater in order for everything to operate properly. You are currently running version %2$s.%3$sFor information on how to update your version of WordPress, please go to %4$s.', 'event_espresso'), |
|
198 | 198 | EE_MIN_WP_VER_RECOMMENDED, |
199 | 199 | $wp_version, |
200 | 200 | '<br/>', |
@@ -213,9 +213,9 @@ discard block |
||
213 | 213 | */ |
214 | 214 | private function _display_minimum_recommended_php_version_notice() { |
215 | 215 | EE_Error::add_persistent_admin_notice( |
216 | - 'php_version_' . str_replace( '.', '-', EE_MIN_PHP_VER_RECOMMENDED ) . '_recommended', |
|
216 | + 'php_version_'.str_replace('.', '-', EE_MIN_PHP_VER_RECOMMENDED).'_recommended', |
|
217 | 217 | sprintf( |
218 | - __( 'Event Espresso recommends PHP version %1$s or greater for optimal performance. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso' ), |
|
218 | + __('Event Espresso recommends PHP version %1$s or greater for optimal performance. You are currently running version %2$s.%3$sIn order to update your version of PHP, you will need to contact your current hosting provider.%3$sFor information on stable PHP versions, please go to %4$s.', 'event_espresso'), |
|
219 | 219 | EE_MIN_PHP_VER_RECOMMENDED, |
220 | 220 | PHP_VERSION, |
221 | 221 | '<br/>', |
@@ -232,10 +232,10 @@ discard block |
||
232 | 232 | * @access private |
233 | 233 | */ |
234 | 234 | private function _test_for_php_version_7() { |
235 | - if ( $this->_check_php_version( '7' ) ) { |
|
236 | - define( 'EE_PHP_7', true ); |
|
235 | + if ($this->_check_php_version('7')) { |
|
236 | + define('EE_PHP_7', true); |
|
237 | 237 | } else { |
238 | - define( 'EE_PHP_7', false ); |
|
238 | + define('EE_PHP_7', false); |
|
239 | 239 | } |
240 | 240 | } |
241 | 241 |
@@ -242,9 +242,9 @@ discard block |
||
242 | 242 | $this->reg_page_base_url = EE_Registry::instance()->CFG->core->reg_page_url(); |
243 | 243 | $this->thank_you_page_url = EE_Registry::instance()->CFG->core->thank_you_page_url(); |
244 | 244 | $this->cancel_page_url = EE_Registry::instance()->CFG->core->cancel_page_url(); |
245 | - $this->continue_reg = apply_filters( 'FHEE__EE_Checkout___construct___continue_reg', TRUE ); |
|
245 | + $this->continue_reg = apply_filters('FHEE__EE_Checkout___construct___continue_reg', TRUE); |
|
246 | 246 | $this->admin_request = is_admin() && ! EE_Registry::instance()->REQ->ajax; |
247 | - $this->reg_cache_where_params = array( 'order_by' => array( 'REG_count' => 'ASC' )); |
|
247 | + $this->reg_cache_where_params = array('order_by' => array('REG_count' => 'ASC')); |
|
248 | 248 | } |
249 | 249 | |
250 | 250 | |
@@ -254,8 +254,8 @@ discard block |
||
254 | 254 | * @return array |
255 | 255 | */ |
256 | 256 | public function any_reg_status_updated() { |
257 | - foreach ( $this->reg_status_updated as $reg_status ) { |
|
258 | - if ( $reg_status ) { |
|
257 | + foreach ($this->reg_status_updated as $reg_status) { |
|
258 | + if ($reg_status) { |
|
259 | 259 | return true; |
260 | 260 | } |
261 | 261 | } |
@@ -268,8 +268,8 @@ discard block |
||
268 | 268 | * @param $REG_ID |
269 | 269 | * @return array |
270 | 270 | */ |
271 | - public function reg_status_updated( $REG_ID ) { |
|
272 | - return isset( $this->reg_status_updated[ $REG_ID ] ) ? $this->reg_status_updated[ $REG_ID ] : false; |
|
271 | + public function reg_status_updated($REG_ID) { |
|
272 | + return isset($this->reg_status_updated[$REG_ID]) ? $this->reg_status_updated[$REG_ID] : false; |
|
273 | 273 | } |
274 | 274 | |
275 | 275 | |
@@ -278,8 +278,8 @@ discard block |
||
278 | 278 | * @param $REG_ID |
279 | 279 | * @param $reg_status |
280 | 280 | */ |
281 | - public function set_reg_status_updated( $REG_ID, $reg_status ) { |
|
282 | - $this->reg_status_updated[ $REG_ID ] = filter_var( $reg_status, FILTER_VALIDATE_BOOLEAN ); |
|
281 | + public function set_reg_status_updated($REG_ID, $reg_status) { |
|
282 | + $this->reg_status_updated[$REG_ID] = filter_var($reg_status, FILTER_VALIDATE_BOOLEAN); |
|
283 | 283 | } |
284 | 284 | |
285 | 285 | |
@@ -300,7 +300,7 @@ discard block |
||
300 | 300 | * can ONLY be set by the Finalize_Registration reg step |
301 | 301 | */ |
302 | 302 | public function set_exit_spco() { |
303 | - if ( $this->current_step instanceof EE_SPCO_Reg_Step_Finalize_Registration ) { |
|
303 | + if ($this->current_step instanceof EE_SPCO_Reg_Step_Finalize_Registration) { |
|
304 | 304 | $this->exit_spco = true; |
305 | 305 | } |
306 | 306 | } |
@@ -317,12 +317,12 @@ discard block |
||
317 | 317 | */ |
318 | 318 | public function reset_for_current_request() { |
319 | 319 | $this->process_form_submission = FALSE; |
320 | - $this->continue_reg = apply_filters( 'FHEE__EE_Checkout___construct___continue_reg', true ); |
|
320 | + $this->continue_reg = apply_filters('FHEE__EE_Checkout___construct___continue_reg', true); |
|
321 | 321 | $this->admin_request = is_admin() && ! EE_Registry::instance()->REQ->front_ajax; |
322 | 322 | $this->continue_reg = true; |
323 | 323 | $this->redirect = false; |
324 | 324 | // don't reset the cached redirect form if we're about to be asked to display it !!! |
325 | - if ( EE_Registry::instance()->REQ->get( 'action', 'display_spco_reg_step' ) !== 'redirect_form' ) { |
|
325 | + if (EE_Registry::instance()->REQ->get('action', 'display_spco_reg_step') !== 'redirect_form') { |
|
326 | 326 | $this->redirect_form = ''; |
327 | 327 | } |
328 | 328 | $this->redirect_url = ''; |
@@ -339,8 +339,8 @@ discard block |
||
339 | 339 | * @param EE_SPCO_Reg_Step $reg_step_obj |
340 | 340 | * @return void |
341 | 341 | */ |
342 | - public function add_reg_step( EE_SPCO_Reg_Step $reg_step_obj ) { |
|
343 | - $this->reg_steps[ $reg_step_obj->slug() ] = $reg_step_obj; |
|
342 | + public function add_reg_step(EE_SPCO_Reg_Step $reg_step_obj) { |
|
343 | + $this->reg_steps[$reg_step_obj->slug()] = $reg_step_obj; |
|
344 | 344 | } |
345 | 345 | |
346 | 346 | |
@@ -356,22 +356,22 @@ discard block |
||
356 | 356 | * @param string $reg_step_slug |
357 | 357 | * @return void |
358 | 358 | */ |
359 | - public function skip_reg_step( $reg_step_slug = '' ) { |
|
360 | - $step_to_skip = $this->find_reg_step( $reg_step_slug ); |
|
361 | - if ( $step_to_skip instanceof EE_SPCO_Reg_Step && $step_to_skip->is_current_step() ) { |
|
362 | - $step_to_skip->set_is_current_step( false ); |
|
359 | + public function skip_reg_step($reg_step_slug = '') { |
|
360 | + $step_to_skip = $this->find_reg_step($reg_step_slug); |
|
361 | + if ($step_to_skip instanceof EE_SPCO_Reg_Step && $step_to_skip->is_current_step()) { |
|
362 | + $step_to_skip->set_is_current_step(false); |
|
363 | 363 | $step_to_skip->set_completed(); |
364 | 364 | // advance to the next step |
365 | - $this->set_current_step( $this->next_step->slug() ); |
|
365 | + $this->set_current_step($this->next_step->slug()); |
|
366 | 366 | // also reset the step param in the request in case any other code references that directly |
367 | - EE_Registry::instance()->REQ->set( 'step', $this->current_step->slug() ); |
|
367 | + EE_Registry::instance()->REQ->set('step', $this->current_step->slug()); |
|
368 | 368 | // since we are skipping a step and setting the current step to be what was previously the next step, |
369 | 369 | // we need to check that the next step is now correct, and not still set to the current step. |
370 | - if ( $this->current_step->slug() == $this->next_step->slug() ) { |
|
370 | + if ($this->current_step->slug() == $this->next_step->slug()) { |
|
371 | 371 | // correctly setup the next step |
372 | 372 | $this->set_next_step(); |
373 | 373 | } |
374 | - $this->set_reg_step_initiated( $this->current_step ); |
|
374 | + $this->set_reg_step_initiated($this->current_step); |
|
375 | 375 | } |
376 | 376 | } |
377 | 377 | |
@@ -385,16 +385,16 @@ discard block |
||
385 | 385 | * @param bool $reset whether to reset reg steps after removal |
386 | 386 | * @throws EE_Error |
387 | 387 | */ |
388 | - public function remove_reg_step( $reg_step_slug = '', $reset = true ) { |
|
389 | - unset( $this->reg_steps[ $reg_step_slug ] ); |
|
390 | - if ( $this->transaction instanceof EE_Transaction ) { |
|
388 | + public function remove_reg_step($reg_step_slug = '', $reset = true) { |
|
389 | + unset($this->reg_steps[$reg_step_slug]); |
|
390 | + if ($this->transaction instanceof EE_Transaction) { |
|
391 | 391 | /** @type EE_Transaction_Processor $transaction_processor */ |
392 | - $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
392 | + $transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor'); |
|
393 | 393 | // now remove reg step from TXN and save |
394 | - $transaction_processor->remove_reg_step( $this->transaction, $reg_step_slug ); |
|
394 | + $transaction_processor->remove_reg_step($this->transaction, $reg_step_slug); |
|
395 | 395 | $this->transaction->save(); |
396 | 396 | } |
397 | - if ( $reset ) { |
|
397 | + if ($reset) { |
|
398 | 398 | $this->reset_reg_steps(); |
399 | 399 | } |
400 | 400 | } |
@@ -409,9 +409,9 @@ discard block |
||
409 | 409 | * @param int $order |
410 | 410 | * @return void |
411 | 411 | */ |
412 | - public function set_reg_step_order( $reg_step_slug = '', $order = 100 ) { |
|
413 | - if ( isset( $this->reg_steps[ $reg_step_slug ] )) { |
|
414 | - $this->reg_steps[ $reg_step_slug ]->set_order( $order ); |
|
412 | + public function set_reg_step_order($reg_step_slug = '', $order = 100) { |
|
413 | + if (isset($this->reg_steps[$reg_step_slug])) { |
|
414 | + $this->reg_steps[$reg_step_slug]->set_order($order); |
|
415 | 415 | } |
416 | 416 | } |
417 | 417 | |
@@ -424,25 +424,25 @@ discard block |
||
424 | 424 | * @param string $current_step |
425 | 425 | * @return void |
426 | 426 | */ |
427 | - public function set_current_step( $current_step ) { |
|
427 | + public function set_current_step($current_step) { |
|
428 | 428 | // grab what step we're on |
429 | - $this->current_step = isset( $this->reg_steps[ $current_step ] ) ? $this->reg_steps[ $current_step ] : reset( $this->reg_steps ); |
|
429 | + $this->current_step = isset($this->reg_steps[$current_step]) ? $this->reg_steps[$current_step] : reset($this->reg_steps); |
|
430 | 430 | // verify instance |
431 | - if ( $this->current_step instanceof EE_SPCO_Reg_Step ) { |
|
431 | + if ($this->current_step instanceof EE_SPCO_Reg_Step) { |
|
432 | 432 | // we don't want to repeat completed steps if this is the first time through SPCO |
433 | - if ( $this->continue_reg && $this->current_step->completed() && ! $this->revisit ) { |
|
433 | + if ($this->continue_reg && $this->current_step->completed() && ! $this->revisit) { |
|
434 | 434 | // so advance to the next step |
435 | 435 | $this->set_next_step(); |
436 | - if ( $this->next_step instanceof EE_SPCO_Reg_Step ) { |
|
436 | + if ($this->next_step instanceof EE_SPCO_Reg_Step) { |
|
437 | 437 | // and attempt to set it as the current step |
438 | - $this->set_current_step( $this->next_step->slug() ); |
|
438 | + $this->set_current_step($this->next_step->slug()); |
|
439 | 439 | } |
440 | 440 | return; |
441 | 441 | } |
442 | - $this->current_step->set_is_current_step( TRUE ); |
|
442 | + $this->current_step->set_is_current_step(TRUE); |
|
443 | 443 | } else { |
444 | 444 | EE_Error::add_error( |
445 | - __( 'The current step could not be set.', 'event_espresso' ), |
|
445 | + __('The current step could not be set.', 'event_espresso'), |
|
446 | 446 | __FILE__, __FUNCTION__, __LINE__ |
447 | 447 | ); |
448 | 448 | } |
@@ -459,20 +459,20 @@ discard block |
||
459 | 459 | */ |
460 | 460 | public function set_next_step() { |
461 | 461 | // set pointer to start of array |
462 | - reset( $this->reg_steps ); |
|
462 | + reset($this->reg_steps); |
|
463 | 463 | // if there is more than one step |
464 | - if ( count( $this->reg_steps ) > 1 ) { |
|
464 | + if (count($this->reg_steps) > 1) { |
|
465 | 465 | // advance to the current step and set pointer |
466 | - while ( key( $this->reg_steps ) != $this->current_step->slug() && key( $this->reg_steps ) != '' ) { |
|
467 | - next( $this->reg_steps ); |
|
466 | + while (key($this->reg_steps) != $this->current_step->slug() && key($this->reg_steps) != '') { |
|
467 | + next($this->reg_steps); |
|
468 | 468 | } |
469 | 469 | } |
470 | 470 | // advance one more spot ( if it exists ) |
471 | - $this->next_step = next( $this->reg_steps ); |
|
471 | + $this->next_step = next($this->reg_steps); |
|
472 | 472 | // verify instance |
473 | - $this->next_step = $this->next_step instanceof EE_SPCO_Reg_Step ? $this->next_step : NULL; |
|
473 | + $this->next_step = $this->next_step instanceof EE_SPCO_Reg_Step ? $this->next_step : NULL; |
|
474 | 474 | // then back to current step to reset |
475 | - prev( $this->reg_steps ); |
|
475 | + prev($this->reg_steps); |
|
476 | 476 | } |
477 | 477 | |
478 | 478 | |
@@ -486,8 +486,8 @@ discard block |
||
486 | 486 | * @return EE_SPCO_Reg_Step | null |
487 | 487 | */ |
488 | 488 | public function get_next_reg_step() { |
489 | - $next = next( $this->reg_steps ); |
|
490 | - prev( $this->reg_steps ); |
|
489 | + $next = next($this->reg_steps); |
|
490 | + prev($this->reg_steps); |
|
491 | 491 | return $next instanceof EE_SPCO_Reg_Step ? $next : null; |
492 | 492 | } |
493 | 493 | |
@@ -502,8 +502,8 @@ discard block |
||
502 | 502 | * @return EE_SPCO_Reg_Step | null |
503 | 503 | */ |
504 | 504 | public function get_prev_reg_step() { |
505 | - $prev = prev( $this->reg_steps ); |
|
506 | - next( $this->reg_steps ); |
|
505 | + $prev = prev($this->reg_steps); |
|
506 | + next($this->reg_steps); |
|
507 | 507 | return $prev instanceof EE_SPCO_Reg_Step ? $prev : null; |
508 | 508 | } |
509 | 509 | |
@@ -516,8 +516,8 @@ discard block |
||
516 | 516 | * @return void |
517 | 517 | */ |
518 | 518 | public function sort_reg_steps() { |
519 | - $reg_step_sorting_callback = apply_filters( 'FHEE__EE_Checkout__sort_reg_steps__reg_step_sorting_callback', 'reg_step_sorting_callback' ); |
|
520 | - uasort( $this->reg_steps, array( $this, $reg_step_sorting_callback )); |
|
519 | + $reg_step_sorting_callback = apply_filters('FHEE__EE_Checkout__sort_reg_steps__reg_step_sorting_callback', 'reg_step_sorting_callback'); |
|
520 | + uasort($this->reg_steps, array($this, $reg_step_sorting_callback)); |
|
521 | 521 | } |
522 | 522 | |
523 | 523 | |
@@ -530,19 +530,19 @@ discard block |
||
530 | 530 | * @param string $reg_step_slug |
531 | 531 | * @return EE_SPCO_Reg_Step|null |
532 | 532 | */ |
533 | - public function find_reg_step( $reg_step_slug = '' ) { |
|
534 | - if ( ! empty( $reg_step_slug ) ) { |
|
533 | + public function find_reg_step($reg_step_slug = '') { |
|
534 | + if ( ! empty($reg_step_slug)) { |
|
535 | 535 | // copy reg step array |
536 | 536 | $reg_steps = $this->reg_steps; |
537 | 537 | // set pointer to start of array |
538 | - reset( $reg_steps ); |
|
538 | + reset($reg_steps); |
|
539 | 539 | // if there is more than one step |
540 | - if ( count( $reg_steps ) > 1 ) { |
|
540 | + if (count($reg_steps) > 1) { |
|
541 | 541 | // advance to the current step and set pointer |
542 | - while ( key( $reg_steps ) != $reg_step_slug && key( $reg_steps ) != '' ) { |
|
543 | - next( $reg_steps ); |
|
542 | + while (key($reg_steps) != $reg_step_slug && key($reg_steps) != '') { |
|
543 | + next($reg_steps); |
|
544 | 544 | } |
545 | - return current( $reg_steps ); |
|
545 | + return current($reg_steps); |
|
546 | 546 | } |
547 | 547 | } |
548 | 548 | return null; |
@@ -558,17 +558,17 @@ discard block |
||
558 | 558 | * @param EE_SPCO_Reg_Step $reg_step_B |
559 | 559 | * @return array() |
560 | 560 | */ |
561 | - public function reg_step_sorting_callback( EE_SPCO_Reg_Step $reg_step_A, EE_SPCO_Reg_Step $reg_step_B ) { |
|
561 | + public function reg_step_sorting_callback(EE_SPCO_Reg_Step $reg_step_A, EE_SPCO_Reg_Step $reg_step_B) { |
|
562 | 562 | // send finalize_registration step to the end of the array |
563 | - if ( $reg_step_A->slug() == 'finalize_registration' ) { |
|
563 | + if ($reg_step_A->slug() == 'finalize_registration') { |
|
564 | 564 | return 1; |
565 | - } else if ( $reg_step_B->slug() == 'finalize_registration' ) { |
|
565 | + } else if ($reg_step_B->slug() == 'finalize_registration') { |
|
566 | 566 | return -1; |
567 | 567 | } |
568 | - if ( $reg_step_A->order() == $reg_step_B->order() ) { |
|
568 | + if ($reg_step_A->order() == $reg_step_B->order()) { |
|
569 | 569 | return 0; |
570 | 570 | } |
571 | - return ( $reg_step_A->order() > $reg_step_B->order() ) ? 1 : -1; |
|
571 | + return ($reg_step_A->order() > $reg_step_B->order()) ? 1 : -1; |
|
572 | 572 | } |
573 | 573 | |
574 | 574 | |
@@ -579,7 +579,7 @@ discard block |
||
579 | 579 | * @access public |
580 | 580 | * @param EE_SPCO_Reg_Step $reg_step |
581 | 581 | */ |
582 | - public function set_reg_step_initiated( EE_SPCO_Reg_Step $reg_step ) { |
|
582 | + public function set_reg_step_initiated(EE_SPCO_Reg_Step $reg_step) { |
|
583 | 583 | // call set_reg_step_initiated ??? |
584 | 584 | if ( |
585 | 585 | // first time visiting SPCO ? |
@@ -592,13 +592,13 @@ discard block |
||
592 | 592 | ) |
593 | 593 | ) { |
594 | 594 | /** @type EE_Transaction_Processor $transaction_processor */ |
595 | - $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
595 | + $transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor'); |
|
596 | 596 | // set the start time for this reg step |
597 | - if ( ! $transaction_processor->set_reg_step_initiated( $this->transaction, $reg_step->slug() ) ) { |
|
598 | - if ( WP_DEBUG ) { |
|
597 | + if ( ! $transaction_processor->set_reg_step_initiated($this->transaction, $reg_step->slug())) { |
|
598 | + if (WP_DEBUG) { |
|
599 | 599 | EE_Error::add_error( |
600 | 600 | sprintf( |
601 | - __( 'The "%1$s" registration step was not initialized properly.', 'event_espresso' ), |
|
601 | + __('The "%1$s" registration step was not initialized properly.', 'event_espresso'), |
|
602 | 602 | $reg_step->name() |
603 | 603 | ), |
604 | 604 | __FILE__, __FUNCTION__, __LINE__ |
@@ -617,10 +617,10 @@ discard block |
||
617 | 617 | * @return void |
618 | 618 | */ |
619 | 619 | public function set_reg_step_JSON_info() { |
620 | - EE_Registry::$i18n_js_strings[ 'reg_steps' ] = array(); |
|
620 | + EE_Registry::$i18n_js_strings['reg_steps'] = array(); |
|
621 | 621 | // pass basic reg step data to JS |
622 | - foreach ( $this->reg_steps as $reg_step ) { |
|
623 | - EE_Registry::$i18n_js_strings[ 'reg_steps' ][] = $reg_step->slug(); |
|
622 | + foreach ($this->reg_steps as $reg_step) { |
|
623 | + EE_Registry::$i18n_js_strings['reg_steps'][] = $reg_step->slug(); |
|
624 | 624 | } |
625 | 625 | // reset reg step html |
626 | 626 | // $this->json_response->set_reg_step_html( '' ); |
@@ -636,7 +636,7 @@ discard block |
||
636 | 636 | */ |
637 | 637 | public function reset_reg_steps() { |
638 | 638 | $this->sort_reg_steps(); |
639 | - $this->set_current_step( EE_Registry::instance()->REQ->get( 'step' )); |
|
639 | + $this->set_current_step(EE_Registry::instance()->REQ->get('step')); |
|
640 | 640 | $this->set_next_step(); |
641 | 641 | // the text that appears on the reg step form submit button |
642 | 642 | $this->current_step->set_submit_button_text(); |
@@ -653,9 +653,9 @@ discard block |
||
653 | 653 | */ |
654 | 654 | public function get_registration_time_limit() { |
655 | 655 | |
656 | - $registration_time_limit = (float)( EE_Registry::instance() ->SSN->expiration() - time() ); |
|
656 | + $registration_time_limit = (float) (EE_Registry::instance() ->SSN->expiration() - time()); |
|
657 | 657 | $time_limit_format = $registration_time_limit > 60 * MINUTE_IN_SECONDS ? 'H:i:s' : 'i:s'; |
658 | - $registration_time_limit = gmdate( $time_limit_format, $registration_time_limit ); |
|
658 | + $registration_time_limit = gmdate($time_limit_format, $registration_time_limit); |
|
659 | 659 | return apply_filters( |
660 | 660 | 'FHEE__EE_Checkout__get_registration_time_limit__registration_time_limit', |
661 | 661 | $registration_time_limit |
@@ -675,7 +675,7 @@ discard block |
||
675 | 675 | // overpaid TXN |
676 | 676 | // free TXN ( total = 0.00 ) |
677 | 677 | // then payment required is TRUE |
678 | - return ! ( $this->admin_request || $this->transaction->is_completed() || $this->transaction->is_overpaid() || $this->transaction->is_free() ) ? TRUE : FALSE; |
|
678 | + return ! ($this->admin_request || $this->transaction->is_completed() || $this->transaction->is_overpaid() || $this->transaction->is_free()) ? TRUE : FALSE; |
|
679 | 679 | } |
680 | 680 | |
681 | 681 | |
@@ -688,8 +688,8 @@ discard block |
||
688 | 688 | */ |
689 | 689 | public function initialize_txn_reg_steps_array() { |
690 | 690 | $txn_reg_steps_array = array(); |
691 | - foreach ( $this->reg_steps as $reg_step ) { |
|
692 | - $txn_reg_steps_array[ $reg_step->slug() ] = FALSE; |
|
691 | + foreach ($this->reg_steps as $reg_step) { |
|
692 | + $txn_reg_steps_array[$reg_step->slug()] = FALSE; |
|
693 | 693 | } |
694 | 694 | return $txn_reg_steps_array; |
695 | 695 | } |
@@ -705,13 +705,13 @@ discard block |
||
705 | 705 | public function update_txn_reg_steps_array() { |
706 | 706 | $updated = FALSE; |
707 | 707 | /** @type EE_Transaction_Processor $transaction_processor */ |
708 | - $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
709 | - foreach ( $this->reg_steps as $reg_step ) { |
|
710 | - if ( $reg_step->completed() ) { |
|
711 | - $updated = $transaction_processor->set_reg_step_completed( $this->transaction, $reg_step->slug() ) ? TRUE : $updated; |
|
708 | + $transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor'); |
|
709 | + foreach ($this->reg_steps as $reg_step) { |
|
710 | + if ($reg_step->completed()) { |
|
711 | + $updated = $transaction_processor->set_reg_step_completed($this->transaction, $reg_step->slug()) ? TRUE : $updated; |
|
712 | 712 | } |
713 | 713 | } |
714 | - if ( $updated ) { |
|
714 | + if ($updated) { |
|
715 | 715 | $this->transaction->save(); |
716 | 716 | } |
717 | 717 | return $updated; |
@@ -726,14 +726,14 @@ discard block |
||
726 | 726 | * @return void |
727 | 727 | */ |
728 | 728 | public function stash_transaction_and_checkout() { |
729 | - if ( ! $this->revisit ) { |
|
729 | + if ( ! $this->revisit) { |
|
730 | 730 | $this->update_txn_reg_steps_array(); |
731 | 731 | } |
732 | 732 | $this->track_transaction_and_registration_status_updates(); |
733 | 733 | // save all data to the db, but suppress errors |
734 | 734 | //$this->save_all_data( FALSE ); |
735 | 735 | // cache the checkout in the session |
736 | - EE_Registry::instance()->SSN->set_checkout( $this ); |
|
736 | + EE_Registry::instance()->SSN->set_checkout($this); |
|
737 | 737 | } |
738 | 738 | |
739 | 739 | |
@@ -749,21 +749,21 @@ discard block |
||
749 | 749 | */ |
750 | 750 | public function track_transaction_and_registration_status_updates() { |
751 | 751 | // verify the transaction |
752 | - if ( $this->transaction instanceof EE_Transaction ) { |
|
752 | + if ($this->transaction instanceof EE_Transaction) { |
|
753 | 753 | /** @type EE_Transaction_Payments $transaction_payments */ |
754 | - $transaction_payments = EE_Registry::instance()->load_class( 'Transaction_Payments' ); |
|
754 | + $transaction_payments = EE_Registry::instance()->load_class('Transaction_Payments'); |
|
755 | 755 | /** @type EE_Transaction_Processor $transaction_processor */ |
756 | - $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
756 | + $transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor'); |
|
757 | 757 | // has there been a TXN status change during this checkout? |
758 | - if ( $transaction_payments->txn_status_updated() || $transaction_processor->txn_status_updated() ) { |
|
758 | + if ($transaction_payments->txn_status_updated() || $transaction_processor->txn_status_updated()) { |
|
759 | 759 | $this->txn_status_updated = true; |
760 | 760 | } |
761 | 761 | /** @type EE_Registration_Processor $registration_processor */ |
762 | - $registration_processor = EE_Registry::instance()->load_class( 'Registration_Processor' ); |
|
762 | + $registration_processor = EE_Registry::instance()->load_class('Registration_Processor'); |
|
763 | 763 | // grab the saved registrations from the transaction |
764 | - foreach ( $this->transaction->registrations( $this->reg_cache_where_params ) as $registration ) { |
|
765 | - if ( $registration_processor->reg_status_updated( $registration->ID() ) ) { |
|
766 | - $this->set_reg_status_updated( $registration->ID(), true ); |
|
764 | + foreach ($this->transaction->registrations($this->reg_cache_where_params) as $registration) { |
|
765 | + if ($registration_processor->reg_status_updated($registration->ID())) { |
|
766 | + $this->set_reg_status_updated($registration->ID(), true); |
|
767 | 767 | } |
768 | 768 | } |
769 | 769 | } |
@@ -785,8 +785,8 @@ discard block |
||
785 | 785 | * @param EE_Registration $registration |
786 | 786 | * @return bool |
787 | 787 | */ |
788 | - public function visit_allows_processing_of_this_registration( EE_Registration $registration ) { |
|
789 | - return ! $this->revisit || $this->primary_revisit || ( $this->revisit && $this->reg_url_link == $registration->reg_url_link() ) ? TRUE : FALSE; |
|
788 | + public function visit_allows_processing_of_this_registration(EE_Registration $registration) { |
|
789 | + return ! $this->revisit || $this->primary_revisit || ($this->revisit && $this->reg_url_link == $registration->reg_url_link()) ? TRUE : FALSE; |
|
790 | 790 | } |
791 | 791 | |
792 | 792 | |
@@ -811,18 +811,18 @@ discard block |
||
811 | 811 | * @param bool $show_errors |
812 | 812 | * @return bool |
813 | 813 | */ |
814 | - public function save_all_data( $show_errors = TRUE ) { |
|
814 | + public function save_all_data($show_errors = TRUE) { |
|
815 | 815 | // verify the transaction |
816 | - if ( $this->transaction instanceof EE_Transaction ) { |
|
816 | + if ($this->transaction instanceof EE_Transaction) { |
|
817 | 817 | // save to ensure that TXN has ID |
818 | 818 | $this->transaction->save(); |
819 | 819 | // grab the saved registrations from the transaction |
820 | - foreach ( $this->transaction->registrations( $this->reg_cache_where_params ) as $registration ) { |
|
821 | - $this->_save_registration( $registration, $show_errors ); |
|
820 | + foreach ($this->transaction->registrations($this->reg_cache_where_params) as $registration) { |
|
821 | + $this->_save_registration($registration, $show_errors); |
|
822 | 822 | } |
823 | 823 | } else { |
824 | - if ( $show_errors ) { |
|
825 | - EE_Error::add_error( __( 'A valid Transaction was not found when attempting to save your registration information.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
|
824 | + if ($show_errors) { |
|
825 | + EE_Error::add_error(__('A valid Transaction was not found when attempting to save your registration information.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
826 | 826 | } |
827 | 827 | return FALSE; |
828 | 828 | } |
@@ -837,32 +837,32 @@ discard block |
||
837 | 837 | * @param bool $show_errors |
838 | 838 | * @return void |
839 | 839 | */ |
840 | - private function _save_registration( $registration, $show_errors = TRUE ) { |
|
840 | + private function _save_registration($registration, $show_errors = TRUE) { |
|
841 | 841 | // verify object |
842 | - if ( $registration instanceof EE_Registration ) { |
|
842 | + if ($registration instanceof EE_Registration) { |
|
843 | 843 | // should this registration be processed during this visit ? |
844 | - if ( $this->visit_allows_processing_of_this_registration( $registration ) ) { |
|
844 | + if ($this->visit_allows_processing_of_this_registration($registration)) { |
|
845 | 845 | //set TXN ID |
846 | - if ( ! $registration->transaction_ID() ) { |
|
847 | - $registration->set_transaction_id( $this->transaction->ID() ); |
|
846 | + if ( ! $registration->transaction_ID()) { |
|
847 | + $registration->set_transaction_id($this->transaction->ID()); |
|
848 | 848 | } |
849 | 849 | // verify and save the attendee |
850 | - $this->_save_registration_attendee( $registration, $show_errors ); |
|
850 | + $this->_save_registration_attendee($registration, $show_errors); |
|
851 | 851 | // save answers to reg form questions |
852 | - $this->_save_registration_answers( $registration, $show_errors ); |
|
852 | + $this->_save_registration_answers($registration, $show_errors); |
|
853 | 853 | // save changes |
854 | 854 | $registration->save(); |
855 | 855 | // update txn cache |
856 | - if ( ! $this->transaction->update_cache_after_object_save( 'Registration', $registration )) { |
|
857 | - if ( $show_errors ) { |
|
858 | - EE_Error::add_error( __( 'The newly saved Registration object could not be cached on the Transaction.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
|
856 | + if ( ! $this->transaction->update_cache_after_object_save('Registration', $registration)) { |
|
857 | + if ($show_errors) { |
|
858 | + EE_Error::add_error(__('The newly saved Registration object could not be cached on the Transaction.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
859 | 859 | } |
860 | 860 | } |
861 | 861 | } |
862 | 862 | } else { |
863 | - if ( $show_errors ) { |
|
863 | + if ($show_errors) { |
|
864 | 864 | EE_Error::add_error( |
865 | - __( 'An invalid Registration object was discovered when attempting to save your registration information.', 'event_espresso' ), |
|
865 | + __('An invalid Registration object was discovered when attempting to save your registration information.', 'event_espresso'), |
|
866 | 866 | __FILE__, __FUNCTION__, __LINE__ |
867 | 867 | ); |
868 | 868 | } |
@@ -878,26 +878,26 @@ discard block |
||
878 | 878 | * @param bool $show_errors |
879 | 879 | * @return void |
880 | 880 | */ |
881 | - private function _save_registration_attendee( $registration, $show_errors = TRUE ) { |
|
882 | - if ( $registration->attendee() instanceof EE_Attendee ) { |
|
881 | + private function _save_registration_attendee($registration, $show_errors = TRUE) { |
|
882 | + if ($registration->attendee() instanceof EE_Attendee) { |
|
883 | 883 | // save so that ATT has ID |
884 | 884 | $registration->attendee()->save(); |
885 | - if ( ! $registration->update_cache_after_object_save( 'Attendee', $registration->attendee() )) { |
|
886 | - if ( $show_errors ) { |
|
885 | + if ( ! $registration->update_cache_after_object_save('Attendee', $registration->attendee())) { |
|
886 | + if ($show_errors) { |
|
887 | 887 | EE_Error::add_error( |
888 | - __( 'The newly saved Attendee object could not be cached on the registration.', 'event_espresso' ), |
|
888 | + __('The newly saved Attendee object could not be cached on the registration.', 'event_espresso'), |
|
889 | 889 | __FILE__, __FUNCTION__, __LINE__ |
890 | 890 | ); |
891 | 891 | } |
892 | 892 | } |
893 | 893 | } else { |
894 | - if ( $show_errors ) { |
|
894 | + if ($show_errors) { |
|
895 | 895 | ob_start(); |
896 | - var_dump( $registration->attendee() ); |
|
896 | + var_dump($registration->attendee()); |
|
897 | 897 | EE_Error::add_error( |
898 | 898 | sprintf( |
899 | 899 | '%1$s||%1$s $attendee = %2$s', |
900 | - __( 'Either no Attendee information was found, or an invalid Attendee object was discovered when attempting to save your registration information.', 'event_espresso' ), |
|
900 | + __('Either no Attendee information was found, or an invalid Attendee object was discovered when attempting to save your registration information.', 'event_espresso'), |
|
901 | 901 | ob_get_clean() |
902 | 902 | ), |
903 | 903 | __FILE__, __FUNCTION__, __LINE__ |
@@ -915,25 +915,25 @@ discard block |
||
915 | 915 | * @param bool $show_errors |
916 | 916 | * @return void |
917 | 917 | */ |
918 | - private function _save_registration_answers( $registration, $show_errors = TRUE ) { |
|
918 | + private function _save_registration_answers($registration, $show_errors = TRUE) { |
|
919 | 919 | // now save the answers |
920 | - foreach ( $registration->answers() as $cache_key => $answer ) { |
|
920 | + foreach ($registration->answers() as $cache_key => $answer) { |
|
921 | 921 | // verify object |
922 | - if ( $answer instanceof EE_Answer ) { |
|
923 | - $answer->set_registration( $registration->ID() ); |
|
922 | + if ($answer instanceof EE_Answer) { |
|
923 | + $answer->set_registration($registration->ID()); |
|
924 | 924 | $answer->save(); |
925 | - if ( ! $registration->update_cache_after_object_save( 'Answer', $answer, $cache_key )) { |
|
926 | - if ( $show_errors ) { |
|
925 | + if ( ! $registration->update_cache_after_object_save('Answer', $answer, $cache_key)) { |
|
926 | + if ($show_errors) { |
|
927 | 927 | EE_Error::add_error( |
928 | - __( 'The newly saved Answer object could not be cached on the registration.', 'event_espresso' ), |
|
928 | + __('The newly saved Answer object could not be cached on the registration.', 'event_espresso'), |
|
929 | 929 | __FILE__, __FUNCTION__, __LINE__ |
930 | 930 | ); |
931 | 931 | } |
932 | 932 | } |
933 | 933 | } else { |
934 | - if ( $show_errors ) { |
|
934 | + if ($show_errors) { |
|
935 | 935 | EE_Error::add_error( |
936 | - __( 'An invalid Answer object was discovered when attempting to save your registration information.', 'event_espresso' ), |
|
936 | + __('An invalid Answer object was discovered when attempting to save your registration information.', 'event_espresso'), |
|
937 | 937 | __FILE__, __FUNCTION__, __LINE__ |
938 | 938 | ); |
939 | 939 | } |
@@ -951,7 +951,7 @@ discard block |
||
951 | 951 | * @param bool $from_db |
952 | 952 | * @return bool |
953 | 953 | */ |
954 | - public function refresh_all_entities( $from_db = false ) { |
|
954 | + public function refresh_all_entities($from_db = false) { |
|
955 | 955 | $from_db = $this->current_step->is_final_step() || $this->action == 'process_gateway_response' ? true : $from_db; |
956 | 956 | //$this->log( |
957 | 957 | // __CLASS__, __FUNCTION__, __LINE__, |
@@ -972,11 +972,11 @@ discard block |
||
972 | 972 | */ |
973 | 973 | protected function refresh_from_db() { |
974 | 974 | // verify the transaction |
975 | - if ( $this->transaction instanceof EE_Transaction && $this->transaction->ID() ) { |
|
975 | + if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) { |
|
976 | 976 | // pull fresh TXN data from the db |
977 | - $this->transaction = $this->transaction->get_model()->refresh_entity_map_from_db( $this->transaction->ID() ); |
|
977 | + $this->transaction = $this->transaction->get_model()->refresh_entity_map_from_db($this->transaction->ID()); |
|
978 | 978 | // update EE_Checkout's cached primary_attendee object |
979 | - $this->primary_attendee_obj = $this->_refresh_primary_attendee_obj_from_db( $this->transaction ); |
|
979 | + $this->primary_attendee_obj = $this->_refresh_primary_attendee_obj_from_db($this->transaction); |
|
980 | 980 | // update EE_Checkout's cached payment object |
981 | 981 | $payment = $this->transaction->last_payment(); |
982 | 982 | $this->payment = $payment instanceof EE_Payment ? $payment : $this->payment; |
@@ -984,15 +984,15 @@ discard block |
||
984 | 984 | $payment_method = $this->payment instanceof EE_Payment ? $this->payment->payment_method() : null; |
985 | 985 | $this->payment_method = $payment_method instanceof EE_Payment_Method ? $payment_method : $this->payment_method; |
986 | 986 | //now refresh the cart, based on the TXN |
987 | - $this->cart = EE_Cart::get_cart_from_txn( $this->transaction ); |
|
987 | + $this->cart = EE_Cart::get_cart_from_txn($this->transaction); |
|
988 | 988 | // verify and update the cart because inaccurate totals are not so much fun |
989 | - if ( $this->cart instanceof EE_Cart ) { |
|
989 | + if ($this->cart instanceof EE_Cart) { |
|
990 | 990 | $this->cart->get_grand_total()->recalculate_total_including_taxes(); |
991 | 991 | } else { |
992 | - $this->cart = EE_Registry::instance()->load_core( 'Cart' ); |
|
992 | + $this->cart = EE_Registry::instance()->load_core('Cart'); |
|
993 | 993 | } |
994 | 994 | } else { |
995 | - EE_Error::add_error( __( 'A valid Transaction was not found when attempting to update the model entity mapper.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
|
995 | + EE_Error::add_error(__('A valid Transaction was not found when attempting to update the model entity mapper.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
996 | 996 | return FALSE; |
997 | 997 | } |
998 | 998 | return TRUE; |
@@ -1006,24 +1006,24 @@ discard block |
||
1006 | 1006 | * @param EE_Transaction $transaction |
1007 | 1007 | * @return EE_Attendee | null |
1008 | 1008 | */ |
1009 | - protected function _refresh_primary_attendee_obj_from_db( EE_Transaction $transaction ) { |
|
1009 | + protected function _refresh_primary_attendee_obj_from_db(EE_Transaction $transaction) { |
|
1010 | 1010 | |
1011 | 1011 | $primary_attendee_obj = null; |
1012 | 1012 | // grab the saved registrations from the transaction |
1013 | - foreach ( $transaction->registrations( $this->reg_cache_where_params, true ) as $registration ) { |
|
1013 | + foreach ($transaction->registrations($this->reg_cache_where_params, true) as $registration) { |
|
1014 | 1014 | // verify object |
1015 | - if ( $registration instanceof EE_Registration ) { |
|
1015 | + if ($registration instanceof EE_Registration) { |
|
1016 | 1016 | $attendee = $registration->attendee(); |
1017 | 1017 | // verify object |
1018 | - if ( $attendee instanceof EE_Attendee ) { |
|
1018 | + if ($attendee instanceof EE_Attendee) { |
|
1019 | 1019 | // maybe cache primary_attendee_obj ? |
1020 | - if ( $registration->is_primary_registrant() ) { |
|
1020 | + if ($registration->is_primary_registrant()) { |
|
1021 | 1021 | $primary_attendee_obj = $attendee; |
1022 | 1022 | } |
1023 | 1023 | } |
1024 | 1024 | } else { |
1025 | 1025 | EE_Error::add_error( |
1026 | - __( 'An invalid Registration object was discovered when attempting to update the model entity mapper.', 'event_espresso' ), |
|
1026 | + __('An invalid Registration object was discovered when attempting to update the model entity mapper.', 'event_espresso'), |
|
1027 | 1027 | __FILE__, __FUNCTION__, __LINE__ |
1028 | 1028 | ); |
1029 | 1029 | } |
@@ -1043,43 +1043,43 @@ discard block |
||
1043 | 1043 | */ |
1044 | 1044 | protected function refresh_entity_map() { |
1045 | 1045 | // verify the transaction |
1046 | - if ( $this->transaction instanceof EE_Transaction && $this->transaction->ID() ) { |
|
1046 | + if ($this->transaction instanceof EE_Transaction && $this->transaction->ID()) { |
|
1047 | 1047 | // never cache payment info |
1048 | - $this->transaction->clear_cache( 'Payment' ); |
|
1048 | + $this->transaction->clear_cache('Payment'); |
|
1049 | 1049 | /** @type EE_Transaction_Processor $transaction_processor */ |
1050 | - $transaction_processor = EE_Registry::instance()->load_class( 'Transaction_Processor' ); |
|
1050 | + $transaction_processor = EE_Registry::instance()->load_class('Transaction_Processor'); |
|
1051 | 1051 | // is the Payment Options Reg Step completed ? |
1052 | - if ( $transaction_processor->reg_step_completed( $this->transaction, 'payment_options' ) ) { |
|
1052 | + if ($transaction_processor->reg_step_completed($this->transaction, 'payment_options')) { |
|
1053 | 1053 | // then check for payments and update TXN accordingly |
1054 | 1054 | /** @type EE_Transaction_Payments $transaction_payments */ |
1055 | - $transaction_payments = EE_Registry::instance()->load_class( 'Transaction_Payments' ); |
|
1056 | - $transaction_payments->calculate_total_payments_and_update_status( $this->transaction ); |
|
1055 | + $transaction_payments = EE_Registry::instance()->load_class('Transaction_Payments'); |
|
1056 | + $transaction_payments->calculate_total_payments_and_update_status($this->transaction); |
|
1057 | 1057 | } |
1058 | 1058 | // grab the saved registrations from the transaction |
1059 | - foreach ( $this->transaction->registrations( $this->reg_cache_where_params ) as $reg_cache_ID => $registration ) { |
|
1060 | - $this->_refresh_registration( $reg_cache_ID, $registration ); |
|
1059 | + foreach ($this->transaction->registrations($this->reg_cache_where_params) as $reg_cache_ID => $registration) { |
|
1060 | + $this->_refresh_registration($reg_cache_ID, $registration); |
|
1061 | 1061 | } |
1062 | 1062 | // make sure our cached TXN is added to the model entity mapper |
1063 | - $this->transaction = $this->transaction->get_model()->refresh_entity_map_with( $this->transaction->ID(), $this->transaction ); |
|
1063 | + $this->transaction = $this->transaction->get_model()->refresh_entity_map_with($this->transaction->ID(), $this->transaction); |
|
1064 | 1064 | |
1065 | 1065 | } else { |
1066 | - EE_Error::add_error( __( 'A valid Transaction was not found when attempting to update the model entity mapper.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__); |
|
1066 | + EE_Error::add_error(__('A valid Transaction was not found when attempting to update the model entity mapper.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1067 | 1067 | return FALSE; |
1068 | 1068 | } |
1069 | 1069 | // verify and update the cart because inaccurate totals are not so much fun |
1070 | - if ( $this->cart instanceof EE_Cart ) { |
|
1070 | + if ($this->cart instanceof EE_Cart) { |
|
1071 | 1071 | $grand_total = $this->cart->get_grand_total(); |
1072 | - if ( $grand_total instanceof EE_Line_Item && $grand_total->ID() ) { |
|
1072 | + if ($grand_total instanceof EE_Line_Item && $grand_total->ID()) { |
|
1073 | 1073 | $grand_total->recalculate_total_including_taxes(); |
1074 | 1074 | $grand_total = $grand_total->get_model()->refresh_entity_map_with( |
1075 | 1075 | $this->cart->get_grand_total()->ID(), |
1076 | 1076 | $this->cart->get_grand_total() |
1077 | 1077 | ); |
1078 | 1078 | } |
1079 | - if ( $grand_total instanceof EE_Line_Item ) { |
|
1080 | - $this->cart = EE_Cart::instance( $grand_total ); |
|
1079 | + if ($grand_total instanceof EE_Line_Item) { |
|
1080 | + $this->cart = EE_Cart::instance($grand_total); |
|
1081 | 1081 | } else { |
1082 | - EE_Error::add_error( __( 'A valid Cart was not found when attempting to update the model entity mapper.', 'event_espresso' ), __FILE__, __FUNCTION__, __LINE__ ); |
|
1082 | + EE_Error::add_error(__('A valid Cart was not found when attempting to update the model entity mapper.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1083 | 1083 | return false; |
1084 | 1084 | } |
1085 | 1085 | } |
@@ -1095,19 +1095,19 @@ discard block |
||
1095 | 1095 | * @param EE_Registration $registration |
1096 | 1096 | * @return void |
1097 | 1097 | */ |
1098 | - protected function _refresh_registration( $reg_cache_ID, $registration ) { |
|
1098 | + protected function _refresh_registration($reg_cache_ID, $registration) { |
|
1099 | 1099 | |
1100 | 1100 | // verify object |
1101 | - if ( $registration instanceof EE_Registration ) { |
|
1101 | + if ($registration instanceof EE_Registration) { |
|
1102 | 1102 | // update the entity mapper attendee |
1103 | - $this->_refresh_registration_attendee( $registration ); |
|
1103 | + $this->_refresh_registration_attendee($registration); |
|
1104 | 1104 | // update the entity mapper answers for reg form questions |
1105 | - $this->_refresh_registration_answers( $registration ); |
|
1105 | + $this->_refresh_registration_answers($registration); |
|
1106 | 1106 | // make sure the cached registration is added to the model entity mapper |
1107 | - $registration->get_model()->refresh_entity_map_with( $reg_cache_ID, $registration ); |
|
1107 | + $registration->get_model()->refresh_entity_map_with($reg_cache_ID, $registration); |
|
1108 | 1108 | } else { |
1109 | 1109 | EE_Error::add_error( |
1110 | - __( 'An invalid Registration object was discovered when attempting to update the model entity mapper.', 'event_espresso' ), |
|
1110 | + __('An invalid Registration object was discovered when attempting to update the model entity mapper.', 'event_espresso'), |
|
1111 | 1111 | __FILE__, __FUNCTION__, __LINE__ |
1112 | 1112 | ); |
1113 | 1113 | } |
@@ -1121,15 +1121,15 @@ discard block |
||
1121 | 1121 | * @param EE_Registration $registration |
1122 | 1122 | * @return void |
1123 | 1123 | */ |
1124 | - protected function _refresh_registration_attendee( $registration ) { |
|
1124 | + protected function _refresh_registration_attendee($registration) { |
|
1125 | 1125 | |
1126 | 1126 | $attendee = $registration->attendee(); |
1127 | 1127 | // verify object |
1128 | - if ( $attendee instanceof EE_Attendee && $attendee->ID() ) { |
|
1128 | + if ($attendee instanceof EE_Attendee && $attendee->ID()) { |
|
1129 | 1129 | // make sure the cached attendee is added to the model entity mapper |
1130 | - $registration->attendee()->get_model()->refresh_entity_map_with( $attendee->ID(), $attendee ); |
|
1130 | + $registration->attendee()->get_model()->refresh_entity_map_with($attendee->ID(), $attendee); |
|
1131 | 1131 | // maybe cache primary_attendee_obj ? |
1132 | - if ( $registration->is_primary_registrant() ) { |
|
1132 | + if ($registration->is_primary_registrant()) { |
|
1133 | 1133 | $this->primary_attendee_obj = $attendee; |
1134 | 1134 | } |
1135 | 1135 | } |
@@ -1143,19 +1143,19 @@ discard block |
||
1143 | 1143 | * @param EE_Registration $registration |
1144 | 1144 | * @return void |
1145 | 1145 | */ |
1146 | - protected function _refresh_registration_answers( $registration ) { |
|
1146 | + protected function _refresh_registration_answers($registration) { |
|
1147 | 1147 | |
1148 | 1148 | // now update the answers |
1149 | - foreach ( $registration->answers() as $cache_key => $answer ) { |
|
1149 | + foreach ($registration->answers() as $cache_key => $answer) { |
|
1150 | 1150 | // verify object |
1151 | - if ( $answer instanceof EE_Answer ) { |
|
1152 | - if ( $answer->ID() ) { |
|
1151 | + if ($answer instanceof EE_Answer) { |
|
1152 | + if ($answer->ID()) { |
|
1153 | 1153 | // make sure the cached answer is added to the model entity mapper |
1154 | - $answer->get_model()->refresh_entity_map_with( $answer->ID(), $answer ); |
|
1154 | + $answer->get_model()->refresh_entity_map_with($answer->ID(), $answer); |
|
1155 | 1155 | } |
1156 | 1156 | } else { |
1157 | 1157 | EE_Error::add_error( |
1158 | - __( 'An invalid Answer object was discovered when attempting to update the model entity mapper.', 'event_espresso' ), |
|
1158 | + __('An invalid Answer object was discovered when attempting to update the model entity mapper.', 'event_espresso'), |
|
1159 | 1159 | __FILE__, __FUNCTION__, __LINE__ |
1160 | 1160 | ); |
1161 | 1161 | } |
@@ -1170,7 +1170,7 @@ discard block |
||
1170 | 1170 | * this will reinstate the EE_Checkout object on each EE_SPCO_Reg_Step object |
1171 | 1171 | */ |
1172 | 1172 | function __wakeup() { |
1173 | - foreach ( $this->reg_steps as $reg_step ) { |
|
1173 | + foreach ($this->reg_steps as $reg_step) { |
|
1174 | 1174 | $reg_step->checkout = $this; |
1175 | 1175 | } |
1176 | 1176 | } |
@@ -1186,11 +1186,11 @@ discard block |
||
1186 | 1186 | * @param array $info |
1187 | 1187 | * @param bool $display_request |
1188 | 1188 | */ |
1189 | - function log( $class = '', $func = '', $line = '', $info = array(), $display_request = false ) { |
|
1190 | - if ( WP_DEBUG && false ) { |
|
1191 | - $debug_data = get_option( 'EE_DEBUG_SPCO_' . EE_Session::instance()->id(), array() ); |
|
1189 | + function log($class = '', $func = '', $line = '', $info = array(), $display_request = false) { |
|
1190 | + if (WP_DEBUG && false) { |
|
1191 | + $debug_data = get_option('EE_DEBUG_SPCO_'.EE_Session::instance()->id(), array()); |
|
1192 | 1192 | $default_data = array( |
1193 | - $class => $func . '() : ' . $line, |
|
1193 | + $class => $func.'() : '.$line, |
|
1194 | 1194 | 'request->step' => $this->step, |
1195 | 1195 | 'request->action' => $this->action, |
1196 | 1196 | 'current_step->slug' => $this->current_step instanceof EE_SPCO_Reg_Step ? |
@@ -1202,24 +1202,24 @@ discard block |
||
1202 | 1202 | 'reg_url_link' => $this->reg_url_link, |
1203 | 1203 | 'REQ' => $display_request ? $_REQUEST : '', |
1204 | 1204 | ); |
1205 | - if ( $this->transaction instanceof EE_Transaction ) { |
|
1206 | - $default_data[ 'TXN_status' ] = $this->transaction->status_ID(); |
|
1207 | - $default_data[ 'TXN_reg_steps' ] = $this->transaction->reg_steps(); |
|
1208 | - foreach ( $this->transaction->registrations( $this->reg_cache_where_params ) as $REG_ID => $registration ) { |
|
1209 | - $default_data[ 'registrations' ][ $REG_ID ] = $registration->status_ID(); |
|
1205 | + if ($this->transaction instanceof EE_Transaction) { |
|
1206 | + $default_data['TXN_status'] = $this->transaction->status_ID(); |
|
1207 | + $default_data['TXN_reg_steps'] = $this->transaction->reg_steps(); |
|
1208 | + foreach ($this->transaction->registrations($this->reg_cache_where_params) as $REG_ID => $registration) { |
|
1209 | + $default_data['registrations'][$REG_ID] = $registration->status_ID(); |
|
1210 | 1210 | } |
1211 | - if ( $this->transaction->ID() ) { |
|
1212 | - $TXN_ID = 'EE_Transaction: ' . $this->transaction->ID(); |
|
1211 | + if ($this->transaction->ID()) { |
|
1212 | + $TXN_ID = 'EE_Transaction: '.$this->transaction->ID(); |
|
1213 | 1213 | // don't serialize objects |
1214 | - $info = $this->_strip_objects( $info ); |
|
1215 | - if ( ! isset( $debug_data[ $TXN_ID ] ) ) { |
|
1216 | - $debug_data[ $TXN_ID ] = array(); |
|
1214 | + $info = $this->_strip_objects($info); |
|
1215 | + if ( ! isset($debug_data[$TXN_ID])) { |
|
1216 | + $debug_data[$TXN_ID] = array(); |
|
1217 | 1217 | } |
1218 | - $debug_data[ $TXN_ID ][ microtime() ] = array_merge( |
|
1218 | + $debug_data[$TXN_ID][microtime()] = array_merge( |
|
1219 | 1219 | $default_data, |
1220 | 1220 | $info |
1221 | 1221 | ); |
1222 | - update_option( 'EE_DEBUG_SPCO_' . EE_Session::instance()->id(), $debug_data ); |
|
1222 | + update_option('EE_DEBUG_SPCO_'.EE_Session::instance()->id(), $debug_data); |
|
1223 | 1223 | } |
1224 | 1224 | } |
1225 | 1225 | } |
@@ -1232,23 +1232,23 @@ discard block |
||
1232 | 1232 | * @param array $info |
1233 | 1233 | * @return array |
1234 | 1234 | */ |
1235 | - function _strip_objects( $info = array() ) { |
|
1236 | - foreach ( $info as $key => $value ) { |
|
1237 | - if ( is_array( $value )) { |
|
1238 | - $info[ $key ] = $this->_strip_objects( $value ); |
|
1239 | - } else if ( is_object( $value ) ) { |
|
1240 | - $object_class = get_class( $value ); |
|
1241 | - $info[ $object_class ] = array(); |
|
1242 | - $info[ $object_class ][ 'ID' ] = method_exists( $value, 'ID' ) ? $value->ID() : 0; |
|
1243 | - if ( method_exists( $value, 'status' ) ) { |
|
1244 | - $info[ $object_class ][ 'status' ] = $value->status(); |
|
1245 | - } else if ( method_exists( $value, 'status_ID' ) ) { |
|
1246 | - $info[ $object_class ][ 'status' ] = $value->status_ID(); |
|
1235 | + function _strip_objects($info = array()) { |
|
1236 | + foreach ($info as $key => $value) { |
|
1237 | + if (is_array($value)) { |
|
1238 | + $info[$key] = $this->_strip_objects($value); |
|
1239 | + } else if (is_object($value)) { |
|
1240 | + $object_class = get_class($value); |
|
1241 | + $info[$object_class] = array(); |
|
1242 | + $info[$object_class]['ID'] = method_exists($value, 'ID') ? $value->ID() : 0; |
|
1243 | + if (method_exists($value, 'status')) { |
|
1244 | + $info[$object_class]['status'] = $value->status(); |
|
1245 | + } else if (method_exists($value, 'status_ID')) { |
|
1246 | + $info[$object_class]['status'] = $value->status_ID(); |
|
1247 | 1247 | } |
1248 | - unset( $info[ $key ] ); |
|
1248 | + unset($info[$key]); |
|
1249 | 1249 | } |
1250 | 1250 | } |
1251 | - return (array)$info; |
|
1251 | + return (array) $info; |
|
1252 | 1252 | } |
1253 | 1253 | |
1254 | 1254 |
@@ -1,5 +1,5 @@ discard block |
||
1 | 1 | <?php |
2 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
3 | 3 | exit('NO direct script access allowed'); |
4 | 4 | |
5 | 5 | /** |
@@ -271,7 +271,7 @@ discard block |
||
271 | 271 | * @param bool $preview indicate whether a preview is being generated or not. |
272 | 272 | * @return void |
273 | 273 | */ |
274 | - public function set_messages($data, EE_messenger $active_messenger, $context = '', $preview = FALSE ) { |
|
274 | + public function set_messages($data, EE_messenger $active_messenger, $context = '', $preview = FALSE) { |
|
275 | 275 | |
276 | 276 | $this->_active_messenger = $active_messenger; |
277 | 277 | |
@@ -280,10 +280,10 @@ discard block |
||
280 | 280 | |
281 | 281 | //this is a special method that allows child message types to trigger an exit from generating messages early (in cases where there may be a delay on send). |
282 | 282 | $exit = $this->_trigger_exit(); |
283 | - if ( $exit && ! $this->_preview ) return FALSE; |
|
283 | + if ($exit && ! $this->_preview) return FALSE; |
|
284 | 284 | |
285 | 285 | //todo: need to move require into registration hook but for now we'll require here. |
286 | - EE_Registry::instance()->load_helper( 'Parse_Shortcodes' ); |
|
286 | + EE_Registry::instance()->load_helper('Parse_Shortcodes'); |
|
287 | 287 | //get shortcode_replace instance- set when _get_messages is called in child... |
288 | 288 | $this->_shortcode_replace = new EEH_Parse_Shortcodes(); |
289 | 289 | |
@@ -294,9 +294,9 @@ discard block |
||
294 | 294 | $this->_data_handler = ! $this->_preview ? $this->_data_handler : 'Preview'; |
295 | 295 | |
296 | 296 | //if there is an incoming context then this is a preview so let's ONLY show the given context! |
297 | - if ( !empty( $context ) ) { |
|
298 | - $cntxt = ! empty( $this->_contexts[$context] ) ? $this->_contexts[$context] : ''; |
|
299 | - if ( ! empty( $cntxt ) ) { |
|
297 | + if ( ! empty($context)) { |
|
298 | + $cntxt = ! empty($this->_contexts[$context]) ? $this->_contexts[$context] : ''; |
|
299 | + if ( ! empty($cntxt)) { |
|
300 | 300 | $this->_contexts = array(); |
301 | 301 | $this->_contexts[$context] = $cntxt; |
302 | 302 | } |
@@ -305,7 +305,7 @@ discard block |
||
305 | 305 | $exit = $this->_init_data(); |
306 | 306 | |
307 | 307 | //final check for if we exit or not cause child objects may have run conditionals that cleared out data so no addresees generated. |
308 | - if ( $exit ) return FALSE; |
|
308 | + if ($exit) return FALSE; |
|
309 | 309 | |
310 | 310 | $this->_get_templates(); //get the templates that have been set with this type and for the given messenger that have been saved in the database. |
311 | 311 | $this->_assemble_messages(); |
@@ -341,7 +341,7 @@ discard block |
||
341 | 341 | * @param int $id Optional. Integer corresponding to the value for the primary key of a EE_Base_Class_Object |
342 | 342 | * @return mixed ( EE_Base_Class||EE_Base_Class[] ) |
343 | 343 | */ |
344 | - abstract protected function _get_data_for_context( $context, EE_Registration $registration, $id ); |
|
344 | + abstract protected function _get_data_for_context($context, EE_Registration $registration, $id); |
|
345 | 345 | |
346 | 346 | |
347 | 347 | |
@@ -373,7 +373,7 @@ discard block |
||
373 | 373 | * |
374 | 374 | * @return int |
375 | 375 | */ |
376 | - protected function _get_id_for_msg_url( $context, EE_Registration $registration ) { |
|
376 | + protected function _get_id_for_msg_url($context, EE_Registration $registration) { |
|
377 | 377 | return 0; |
378 | 378 | } |
379 | 379 | |
@@ -406,28 +406,28 @@ discard block |
||
406 | 406 | * |
407 | 407 | * @return string generated url |
408 | 408 | */ |
409 | - public function get_url_trigger( $context, $sending_messenger, EE_Registration $registration ) { |
|
409 | + public function get_url_trigger($context, $sending_messenger, EE_Registration $registration) { |
|
410 | 410 | |
411 | 411 | //validate context |
412 | 412 | //valid context? |
413 | - if ( !isset( $this->_contexts[$context] ) ) { |
|
414 | - throw new EE_Error( sprintf( __('The context %s is not a valid context for %s.', 'event_espresso'), $context, get_class( $this ) ) ); |
|
413 | + if ( ! isset($this->_contexts[$context])) { |
|
414 | + throw new EE_Error(sprintf(__('The context %s is not a valid context for %s.', 'event_espresso'), $context, get_class($this))); |
|
415 | 415 | } |
416 | 416 | |
417 | 417 | //valid sending_messenger? |
418 | 418 | $not_valid_msgr = FALSE; |
419 | - foreach ( $this->_with_messengers as $generating => $sendings ) { |
|
420 | - if ( empty( $sendings ) || array_search( $sending_messenger, $sendings ) === FALSE ) { |
|
419 | + foreach ($this->_with_messengers as $generating => $sendings) { |
|
420 | + if (empty($sendings) || array_search($sending_messenger, $sendings) === FALSE) { |
|
421 | 421 | $not_valid_msgr = TRUE; |
422 | 422 | } |
423 | 423 | } |
424 | 424 | |
425 | - if ( $not_valid_msgr ) { |
|
426 | - throw new EE_Error( sprintf( __('The given sending messenger string (%s) does not match a valid sending messenger with the %s. If this is incorrect, make sure that the message type has defined this messenger as a sending messenger in its $_with_messengers array.', 'event_espresso'), $sending_messenger, get_class( $this ) ) ); |
|
425 | + if ($not_valid_msgr) { |
|
426 | + throw new EE_Error(sprintf(__('The given sending messenger string (%s) does not match a valid sending messenger with the %s. If this is incorrect, make sure that the message type has defined this messenger as a sending messenger in its $_with_messengers array.', 'event_espresso'), $sending_messenger, get_class($this))); |
|
427 | 427 | } |
428 | 428 | |
429 | 429 | EE_Registry::instance()->load_helper('MSG_Template'); |
430 | - return EEH_MSG_Template::generate_url_trigger( $sending_messenger, $this->_active_messenger->name, $context, $this->name, $registration, $this->_GRP_ID, $this->_get_id_for_msg_url( $context, $registration ) ); |
|
430 | + return EEH_MSG_Template::generate_url_trigger($sending_messenger, $this->_active_messenger->name, $context, $this->name, $registration, $this->_GRP_ID, $this->_get_id_for_msg_url($context, $registration)); |
|
431 | 431 | } |
432 | 432 | |
433 | 433 | |
@@ -448,19 +448,19 @@ discard block |
||
448 | 448 | * |
449 | 449 | * @return mixed (EE_Base_Class||EE_Base_Class[]) |
450 | 450 | */ |
451 | - public function get_data_for_context( $context, EE_Registration $registration, $id = 0 ) { |
|
451 | + public function get_data_for_context($context, EE_Registration $registration, $id = 0) { |
|
452 | 452 | //valid context? |
453 | - if ( !isset( $this->_contexts[$context] ) ) { |
|
454 | - throw new EE_Error( sprintf( __('The context %s is not a valid context for %s.', 'event_espresso'), $context, get_class( $this ) ) ); |
|
453 | + if ( ! isset($this->_contexts[$context])) { |
|
454 | + throw new EE_Error(sprintf(__('The context %s is not a valid context for %s.', 'event_espresso'), $context, get_class($this))); |
|
455 | 455 | } |
456 | 456 | |
457 | 457 | //get data and apply global and class specific filters on it. |
458 | - $data = apply_filters( 'FHEE__EE_message_type__get_data_for_context__data', $this->_get_data_for_context( $context, $registration, $id ), $this ); |
|
459 | - $data = apply_filters( 'FHEE__' . get_class( $this ) . '__get_data_for_context__data', $data, $this ); |
|
458 | + $data = apply_filters('FHEE__EE_message_type__get_data_for_context__data', $this->_get_data_for_context($context, $registration, $id), $this); |
|
459 | + $data = apply_filters('FHEE__'.get_class($this).'__get_data_for_context__data', $data, $this); |
|
460 | 460 | |
461 | 461 | //if empty then something went wrong! |
462 | - if ( empty( $data ) ) { |
|
463 | - throw new EE_Error( sprintf( __('There is no data retrieved, it is possible that the id given (%d) does not match any value in the database for the corresponding EE_Base_Class used by the data handler for the %s message type.', 'event_espresso'), $id, $this->name ) ); |
|
462 | + if (empty($data)) { |
|
463 | + throw new EE_Error(sprintf(__('There is no data retrieved, it is possible that the id given (%d) does not match any value in the database for the corresponding EE_Base_Class used by the data handler for the %s message type.', 'event_espresso'), $id, $this->name)); |
|
464 | 464 | } |
465 | 465 | |
466 | 466 | return $data; |
@@ -495,7 +495,7 @@ discard block |
||
495 | 495 | */ |
496 | 496 | public function with_messengers() { |
497 | 497 | |
498 | - return apply_filters( 'FHEE__EE_message_type__get_with_messengers__with_messengers__' . get_class( $this ), $this->_with_messengers); |
|
498 | + return apply_filters('FHEE__EE_message_type__get_with_messengers__with_messengers__'.get_class($this), $this->_with_messengers); |
|
499 | 499 | } |
500 | 500 | |
501 | 501 | |
@@ -513,9 +513,9 @@ discard block |
||
513 | 513 | * @access public |
514 | 514 | * @return void |
515 | 515 | */ |
516 | - public function get_message_type_admin_page_content($page, $action = NULL, $extra = array(), $messengers = array() ) { |
|
516 | + public function get_message_type_admin_page_content($page, $action = NULL, $extra = array(), $messengers = array()) { |
|
517 | 517 | //we can also further refine the context by action (if present). |
518 | - return $this->_get_admin_page_content( $page, $action, $extra, $messengers ); |
|
518 | + return $this->_get_admin_page_content($page, $action, $extra, $messengers); |
|
519 | 519 | } |
520 | 520 | |
521 | 521 | |
@@ -559,8 +559,8 @@ discard block |
||
559 | 559 | */ |
560 | 560 | public function get_master_templates() { |
561 | 561 | //first class specific filter then filter that by the global filter. |
562 | - $master_templates = apply_filters( 'FHEE__' . get_class( $this ) . '__get_master_templates', $this->_master_templates ); |
|
563 | - return apply_filters( 'FHEE__EE_message_type__get_master_templates', $master_templates, $this ); |
|
562 | + $master_templates = apply_filters('FHEE__'.get_class($this).'__get_master_templates', $this->_master_templates); |
|
563 | + return apply_filters('FHEE__EE_message_type__get_master_templates', $master_templates, $this); |
|
564 | 564 | } |
565 | 565 | |
566 | 566 | |
@@ -579,31 +579,31 @@ discard block |
||
579 | 579 | /** |
580 | 580 | * first let's make sure that incoming data isn't empty! |
581 | 581 | */ |
582 | - if ( is_array($this->_data) && empty($this->_data) && !$this->_preview ) { |
|
583 | - $msg = sprintf( __( '"%s" message type incoming data is empty. There is nothing to work with so why are you bugging me?', 'event_espresso'), $this->label['singular'] ); |
|
584 | - throw new EE_Error( $msg ); |
|
582 | + if (is_array($this->_data) && empty($this->_data) && ! $this->_preview) { |
|
583 | + $msg = sprintf(__('"%s" message type incoming data is empty. There is nothing to work with so why are you bugging me?', 'event_espresso'), $this->label['singular']); |
|
584 | + throw new EE_Error($msg); |
|
585 | 585 | } |
586 | 586 | |
587 | - if ( empty( $this->_data_handler) ) { |
|
588 | - $msg = sprintf( __('Hey %s hasn\'t declared a handler for the incoming data, so I\'m stuck', 'event_espresso'), __CLASS__ ); |
|
589 | - throw new EE_Error( $msg ); |
|
587 | + if (empty($this->_data_handler)) { |
|
588 | + $msg = sprintf(__('Hey %s hasn\'t declared a handler for the incoming data, so I\'m stuck', 'event_espresso'), __CLASS__); |
|
589 | + throw new EE_Error($msg); |
|
590 | 590 | } |
591 | 591 | |
592 | 592 | |
593 | 593 | //setup class name for the data handler |
594 | - $classname = 'EE_Messages_' . $this->_data_handler . '_incoming_data'; |
|
594 | + $classname = 'EE_Messages_'.$this->_data_handler.'_incoming_data'; |
|
595 | 595 | |
596 | 596 | //check that the class exists |
597 | - if ( !class_exists( $classname ) ) { |
|
597 | + if ( ! class_exists($classname)) { |
|
598 | 598 | |
599 | 599 | $msg[] = __('uhoh, Something went wrong and no data handler is found', 'event_espresso'); |
600 | - $msg[] = sprintf( __('The %s class has set the "$_data_handler" property but the string included (%s) does not match any existing "EE_Messages_incoming_data" classes (found in "/includes/core/messages/data_class"). Looking for %s.', 'event_espresso'), __CLASS__, $this->_data_handler, $classname ); |
|
601 | - throw new EE_error( implode('||', $msg) ); |
|
600 | + $msg[] = sprintf(__('The %s class has set the "$_data_handler" property but the string included (%s) does not match any existing "EE_Messages_incoming_data" classes (found in "/includes/core/messages/data_class"). Looking for %s.', 'event_espresso'), __CLASS__, $this->_data_handler, $classname); |
|
601 | + throw new EE_error(implode('||', $msg)); |
|
602 | 602 | } |
603 | 603 | |
604 | 604 | //k lets get the prepared data object and replace existing data property with it. |
605 | - $a = new ReflectionClass( $classname ); |
|
606 | - $this->_data = $a->newInstance( $this->_data ); |
|
605 | + $a = new ReflectionClass($classname); |
|
606 | + $this->_data = $a->newInstance($this->_data); |
|
607 | 607 | |
608 | 608 | $this->_set_default_addressee_data(); |
609 | 609 | return $this->_process_data(); |
@@ -619,15 +619,15 @@ discard block |
||
619 | 619 | protected function _process_data() { |
620 | 620 | //at a minimum, we NEED EE_Attendee objects. |
621 | 621 | |
622 | - if ( empty( $this->_data->attendees ) ) |
|
623 | - return TRUE; //EXIT! |
|
622 | + if (empty($this->_data->attendees)) |
|
623 | + return TRUE; //EXIT! |
|
624 | 624 | |
625 | 625 | //process addressees for each context. Child classes will have to have methods for each context defined to handle the processing of the data object within them |
626 | - foreach ( $this->_contexts as $context => $details ) { |
|
627 | - $xpctd_method = '_' . $context . '_addressees'; |
|
628 | - if ( !method_exists( $this, $xpctd_method ) ) |
|
629 | - throw new EE_Error( sprintf( __('The data for %1$s message type cannot be prepared because there is no set method for doing so. The expected method name is "%2$s" please doublecheck the %1$s message type class and make sure that method is present', 'event_espresso'), $this->label['singular'], $xpctd_method) ); |
|
630 | - $this->_addressees[$context] = call_user_func( array( $this, $xpctd_method ) ); |
|
626 | + foreach ($this->_contexts as $context => $details) { |
|
627 | + $xpctd_method = '_'.$context.'_addressees'; |
|
628 | + if ( ! method_exists($this, $xpctd_method)) |
|
629 | + throw new EE_Error(sprintf(__('The data for %1$s message type cannot be prepared because there is no set method for doing so. The expected method name is "%2$s" please doublecheck the %1$s message type class and make sure that method is present', 'event_espresso'), $this->label['singular'], $xpctd_method)); |
|
630 | + $this->_addressees[$context] = call_user_func(array($this, $xpctd_method)); |
|
631 | 631 | } |
632 | 632 | return FALSE; //DON'T EXIT |
633 | 633 | } |
@@ -662,8 +662,8 @@ discard block |
||
662 | 662 | 'total_ticket_count' => $this->_data->total_ticket_count |
663 | 663 | ); |
664 | 664 | |
665 | - if ( is_array( $this->_data->primary_attendee_data ) ) { |
|
666 | - $this->_default_addressee_data = array_merge( $this->_default_addressee_data, $this->_data->primary_attendee_data ); |
|
665 | + if (is_array($this->_data->primary_attendee_data)) { |
|
666 | + $this->_default_addressee_data = array_merge($this->_default_addressee_data, $this->_data->primary_attendee_data); |
|
667 | 667 | $this->_default_addressee_data['primary_att_obj'] = $this->_data->primary_attendee_data['att_obj']; |
668 | 668 | $this->_default_addressee_data['primary_reg_obj'] = $this->_data->primary_attendee_data['reg_obj']; |
669 | 669 | } |
@@ -681,26 +681,26 @@ discard block |
||
681 | 681 | * see abstract declaration in parent class for details, children message types can override these valid shortcodes if desired (we include all for all contexts by default). |
682 | 682 | */ |
683 | 683 | protected function _set_valid_shortcodes() { |
684 | - $all_shortcodes = array( 'attendee_list', 'attendee', 'datetime_list', 'datetime', 'event_list', 'event_meta', 'event', 'organization', 'recipient_details', 'recipient_list', 'ticket_list', 'ticket', 'transaction', 'venue', 'primary_registration_details', 'primary_registration_list', 'event_author', 'email', 'messenger' ); |
|
684 | + $all_shortcodes = array('attendee_list', 'attendee', 'datetime_list', 'datetime', 'event_list', 'event_meta', 'event', 'organization', 'recipient_details', 'recipient_list', 'ticket_list', 'ticket', 'transaction', 'venue', 'primary_registration_details', 'primary_registration_list', 'event_author', 'email', 'messenger'); |
|
685 | 685 | $contexts = $this->get_contexts(); |
686 | - foreach ( $contexts as $context => $details ) { |
|
686 | + foreach ($contexts as $context => $details) { |
|
687 | 687 | $this->_valid_shortcodes[$context] = $all_shortcodes; |
688 | 688 | |
689 | 689 | //make sure non admin context does not include the event_author shortcodes |
690 | - if ( $context != 'admin' ) { |
|
691 | - if( ($key = array_search('event_author', $this->_valid_shortcodes[$context] ) ) !== false) { |
|
690 | + if ($context != 'admin') { |
|
691 | + if (($key = array_search('event_author', $this->_valid_shortcodes[$context])) !== false) { |
|
692 | 692 | unset($this->_valid_shortcodes[$context][$key]); |
693 | 693 | } |
694 | 694 | } |
695 | 695 | } |
696 | 696 | |
697 | 697 | //make sure admin context does not include the recipient_details shortcodes IF we have admin context hooked in message types might not have that context. |
698 | - if ( !empty( $this->_valid_shortcodes['admin'] ) ) { |
|
699 | - if( ($key = array_search('recipient_details', $this->_valid_shortcodes['admin'] ) ) !== false) { |
|
698 | + if ( ! empty($this->_valid_shortcodes['admin'])) { |
|
699 | + if (($key = array_search('recipient_details', $this->_valid_shortcodes['admin'])) !== false) { |
|
700 | 700 | unset($this->_valid_shortcodes['admin'][$key]); |
701 | 701 | } |
702 | 702 | //make sure admin context does not include the recipient_details shortcodes |
703 | - if( ($key = array_search('recipient_list', $this->_valid_shortcodes['admin'] ) ) !== false) { |
|
703 | + if (($key = array_search('recipient_list', $this->_valid_shortcodes['admin'])) !== false) { |
|
704 | 704 | unset($this->_valid_shortcodes['admin'][$key]); |
705 | 705 | } |
706 | 706 | } |
@@ -713,8 +713,8 @@ discard block |
||
713 | 713 | * @param array $new_config array of valid shortcodes (by context) |
714 | 714 | * @return void sets valid_shortcodes property |
715 | 715 | */ |
716 | - public function reset_valid_shortcodes_config( $new_config ) { |
|
717 | - foreach ( $new_config as $context => $shortcodes ) { |
|
716 | + public function reset_valid_shortcodes_config($new_config) { |
|
717 | + foreach ($new_config as $context => $shortcodes) { |
|
718 | 718 | $this->_valid_shortcodes[$context] = $shortcodes; |
719 | 719 | } |
720 | 720 | } |
@@ -734,7 +734,7 @@ discard block |
||
734 | 734 | $addressees = array(); |
735 | 735 | |
736 | 736 | //first we need to get the event admin user id for all the events and setup an addressee object for each unique admin user. |
737 | - foreach ( $this->_data->events as $line_ref => $event ) { |
|
737 | + foreach ($this->_data->events as $line_ref => $event) { |
|
738 | 738 | $admin_id = $this->_get_event_admin_id($event['ID']); |
739 | 739 | //get the user_id for the event |
740 | 740 | $admin_ids[] = $admin_id; |
@@ -746,14 +746,14 @@ discard block |
||
746 | 746 | $admin_ids = array_unique($admin_ids); |
747 | 747 | |
748 | 748 | //k now we can loop through the event_admins and setup the addressee data. |
749 | - foreach ( $admin_ids as $event_admin ) { |
|
749 | + foreach ($admin_ids as $event_admin) { |
|
750 | 750 | $aee = array( |
751 | 751 | 'user_id' => $event_admin, |
752 | 752 | 'events' => $admin_events[$event_admin], |
753 | 753 | 'attendees' => $this->_data->attendees |
754 | 754 | ); |
755 | - $aee = array_merge( $this->_default_addressee_data, $aee ); |
|
756 | - $addressees[] = new EE_Messages_Addressee( $aee ); |
|
755 | + $aee = array_merge($this->_default_addressee_data, $aee); |
|
756 | + $addressees[] = new EE_Messages_Addressee($aee); |
|
757 | 757 | } |
758 | 758 | |
759 | 759 | return $addressees; |
@@ -773,7 +773,7 @@ discard block |
||
773 | 773 | $aee['attendees'] = $this->_data->attendees; |
774 | 774 | |
775 | 775 | //great now we can instantiate the $addressee object and return (as an array); |
776 | - $add[] = new EE_Messages_Addressee( $aee ); |
|
776 | + $add[] = new EE_Messages_Addressee($aee); |
|
777 | 777 | return $add; |
778 | 778 | } |
779 | 779 | |
@@ -792,34 +792,34 @@ discard block |
||
792 | 792 | //use to verify unique attendee emails... we don't want to sent multiple copies to the same attendee do we? |
793 | 793 | $already_processed = array(); |
794 | 794 | |
795 | - foreach ( $this->_data->attendees as $att_id => $details ) { |
|
795 | + foreach ($this->_data->attendees as $att_id => $details) { |
|
796 | 796 | //set the attendee array to blank on each loop; |
797 | 797 | $aee = array(); |
798 | 798 | |
799 | - if ( isset( $this->_data->reg_obj ) && ( $this->_data->reg_obj->attendee_ID() != $att_id ) && $this->_single_message ) continue; |
|
799 | + if (isset($this->_data->reg_obj) && ($this->_data->reg_obj->attendee_ID() != $att_id) && $this->_single_message) continue; |
|
800 | 800 | |
801 | 801 | //is $this->_regs_for_sending present? If so, let's make sure we ONLY generate addressee for registrations in that array. |
802 | - if ( ! empty( $this->_regs_for_sending ) && is_array( $this->_regs_for_sending ) ) { |
|
803 | - $regs_allowed = array_intersect_key( array_flip( $this->_regs_for_sending ), $details['reg_objs'] ); |
|
804 | - if ( empty( $regs_allowed ) ) { |
|
802 | + if ( ! empty($this->_regs_for_sending) && is_array($this->_regs_for_sending)) { |
|
803 | + $regs_allowed = array_intersect_key(array_flip($this->_regs_for_sending), $details['reg_objs']); |
|
804 | + if (empty($regs_allowed)) { |
|
805 | 805 | continue; |
806 | 806 | } |
807 | 807 | } |
808 | 808 | |
809 | - if ( in_array( $details['attendee_email'], $already_processed ) ) |
|
809 | + if (in_array($details['attendee_email'], $already_processed)) |
|
810 | 810 | continue; |
811 | 811 | |
812 | 812 | $already_processed[] = $details['attendee_email']; |
813 | 813 | |
814 | - foreach ( $details as $item => $value ) { |
|
814 | + foreach ($details as $item => $value) { |
|
815 | 815 | $aee[$item] = $value; |
816 | - if ( $item == 'line_ref' ) { |
|
817 | - foreach ( $value as $event_id ) { |
|
816 | + if ($item == 'line_ref') { |
|
817 | + foreach ($value as $event_id) { |
|
818 | 818 | $aee['events'][$event_id] = $this->_data->events[$event_id]; |
819 | 819 | } |
820 | 820 | } |
821 | 821 | |
822 | - if ( $item == 'attendee_email' ) { |
|
822 | + if ($item == 'attendee_email') { |
|
823 | 823 | $aee['attendee_email'] = $value; |
824 | 824 | } |
825 | 825 | |
@@ -834,8 +834,8 @@ discard block |
||
834 | 834 | $aee['attendees'] = $this->_data->attendees; |
835 | 835 | |
836 | 836 | //merge in the primary attendee data |
837 | - $aee = array_merge( $this->_default_addressee_data, $aee ); |
|
838 | - $add[] = new EE_Messages_Addressee( $aee ); |
|
837 | + $aee = array_merge($this->_default_addressee_data, $aee); |
|
838 | + $add[] = new EE_Messages_Addressee($aee); |
|
839 | 839 | } |
840 | 840 | |
841 | 841 | return $add; |
@@ -860,46 +860,46 @@ discard block |
||
860 | 860 | ); |
861 | 861 | |
862 | 862 | //in vanilla EE we're assuming there's only one event. However, if there are multiple events then we'll just use the default templates instead of different templates per event (which could create problems). |
863 | - if ( count($this->_data->events) === 1 ) { |
|
864 | - foreach ( $this->_data->events as $event ) { |
|
863 | + if (count($this->_data->events) === 1) { |
|
864 | + foreach ($this->_data->events as $event) { |
|
865 | 865 | $EVT_ID = $event['ID']; |
866 | 866 | } |
867 | 867 | } |
868 | 868 | // is there a Group ID in the incoming request? |
869 | - EE_Registry::instance()->load_core( 'Request_Handler' ); |
|
869 | + EE_Registry::instance()->load_core('Request_Handler'); |
|
870 | 870 | // if not, set a default value of false |
871 | - $GRP_ID = EE_Registry::instance()->REQ->get( 'GRP_ID', false ); |
|
871 | + $GRP_ID = EE_Registry::instance()->REQ->get('GRP_ID', false); |
|
872 | 872 | //if this is a preview then we just get whatever message group is for the preview and skip this part! |
873 | - if ( $this->_preview && $GRP_ID ) { |
|
874 | - $mtpg = EEM_Message_Template_Group::instance()->get_one_by_ID( $GRP_ID ); |
|
873 | + if ($this->_preview && $GRP_ID) { |
|
874 | + $mtpg = EEM_Message_Template_Group::instance()->get_one_by_ID($GRP_ID); |
|
875 | 875 | } else { |
876 | 876 | //not a preview or test send so lets continue on our way! |
877 | 877 | //is there an evt_id? If so let's get that. template. |
878 | - if ( !empty( $EVT_ID ) ) { |
|
878 | + if ( ! empty($EVT_ID)) { |
|
879 | 879 | $evt_qa = array( |
880 | 880 | 'Event.EVT_ID' => $EVT_ID |
881 | 881 | ); |
882 | - $qa = array_merge( $template_qa, $evt_qa ); |
|
883 | - $mtpg = EEM_Message_Template_Group::instance()->get_one( array( $qa ) ); |
|
882 | + $qa = array_merge($template_qa, $evt_qa); |
|
883 | + $mtpg = EEM_Message_Template_Group::instance()->get_one(array($qa)); |
|
884 | 884 | } |
885 | 885 | |
886 | 886 | //is there a 'GRP_ID' ? if so let's get that. |
887 | 887 | |
888 | 888 | //if global template is NOT an override, and there is a 'GRP_ID' in the request, then we'll assume a specific template has ben requested. |
889 | - if ( $GRP_ID ) { |
|
890 | - $mtpg = EEM_Message_Template_Group::instance()->get_one_by_ID( $GRP_ID ); |
|
889 | + if ($GRP_ID) { |
|
890 | + $mtpg = EEM_Message_Template_Group::instance()->get_one_by_ID($GRP_ID); |
|
891 | 891 | } |
892 | 892 | |
893 | 893 | |
894 | 894 | $template_qa['MTP_is_global'] = TRUE; |
895 | 895 | |
896 | 896 | //this gets the current global template (message template group) for the active messenger and message type. |
897 | - $global_mtpg = EEM_Message_Template_Group::instance()->get_one( array( $template_qa ) ); |
|
897 | + $global_mtpg = EEM_Message_Template_Group::instance()->get_one(array($template_qa)); |
|
898 | 898 | |
899 | - $mtpg = $mtpg instanceof EE_Message_Template_Group && ! $global_mtpg->get( 'MTP_is_override' ) ? $mtpg : $global_mtpg; |
|
899 | + $mtpg = $mtpg instanceof EE_Message_Template_Group && ! $global_mtpg->get('MTP_is_override') ? $mtpg : $global_mtpg; |
|
900 | 900 | } |
901 | 901 | |
902 | - if ( ! $mtpg instanceof EE_Message_Template_Group ) { |
|
902 | + if ( ! $mtpg instanceof EE_Message_Template_Group) { |
|
903 | 903 | //get out because we can't process anything, there are no message template groups |
904 | 904 | // and thus some sort of bad setup issues. |
905 | 905 | return false; |
@@ -915,8 +915,8 @@ discard block |
||
915 | 915 | |
916 | 916 | |
917 | 917 | |
918 | - foreach ( $templates as $context => $template_fields ) { |
|
919 | - foreach( $template_fields as $template_field=> $template_obj ) { |
|
918 | + foreach ($templates as $context => $template_fields) { |
|
919 | + foreach ($template_fields as $template_field=> $template_obj) { |
|
920 | 920 | $this->_templates[$template_field][$context] = $template_obj->get('MTP_content'); |
921 | 921 | } |
922 | 922 | } |
@@ -931,11 +931,11 @@ discard block |
||
931 | 931 | protected function _assemble_messages() { |
932 | 932 | //make sure any set messages object is cleared |
933 | 933 | $this->messages = array(); |
934 | - foreach ( $this->_addressees as $context => $addressees ) { |
|
935 | - foreach ( $addressees as $addressee ) { |
|
934 | + foreach ($this->_addressees as $context => $addressees) { |
|
935 | + foreach ($addressees as $addressee) { |
|
936 | 936 | $message = $this->_setup_message_object($context, $addressee); |
937 | 937 | //only assign message if everything went okay |
938 | - if ( $message ) { |
|
938 | + if ($message) { |
|
939 | 939 | $message->template_pack = $this->_template_pack; |
940 | 940 | $message->variation = $this->_variation; |
941 | 941 | $this->messages[] = $message; |
@@ -959,22 +959,22 @@ discard block |
||
959 | 959 | $m_shortcodes = $this->_active_messenger->get_valid_shortcodes(); |
960 | 960 | |
961 | 961 | //if the 'to' field is empty (messages will ALWAYS have a "to" field, then we get out because this context is turned off) EXCEPT if we're previewing |
962 | - if ( ( isset( $this->_templates['to'][$context] ) && empty( $this->_templates['to'][$context] ) ) && !$this->_preview ) |
|
962 | + if ((isset($this->_templates['to'][$context]) && empty($this->_templates['to'][$context])) && ! $this->_preview) |
|
963 | 963 | return false; |
964 | 964 | |
965 | - if ( empty( $this->_templates ) ) { |
|
965 | + if (empty($this->_templates)) { |
|
966 | 966 | //unable to setup any messages because there are no templates. Some sort of catastrophic setup |
967 | 967 | //issue exists |
968 | 968 | return false; |
969 | 969 | } |
970 | 970 | |
971 | - foreach ( $this->_templates as $field => $ctxt ) { |
|
971 | + foreach ($this->_templates as $field => $ctxt) { |
|
972 | 972 | //let's setup the valid shortcodes for the incoming context. |
973 | 973 | $valid_shortcodes = $mt_shortcodes[$context]; |
974 | 974 | //merge in valid shortcodes for the field. |
975 | 975 | $shortcodes = isset($m_shortcodes[$field]) ? $m_shortcodes[$field] : $valid_shortcodes; |
976 | - if ( isset( $this->_templates[$field][$context] ) ) { |
|
977 | - $message->{$field} = $this->_shortcode_replace->parse_message_template($this->_templates[$field][$context], $addressee, $shortcodes, $this, $this->_active_messenger, $context, $this->_GRP_ID ); |
|
976 | + if (isset($this->_templates[$field][$context])) { |
|
977 | + $message->{$field} = $this->_shortcode_replace->parse_message_template($this->_templates[$field][$context], $addressee, $shortcodes, $this, $this->_active_messenger, $context, $this->_GRP_ID); |
|
978 | 978 | } |
979 | 979 | } |
980 | 980 | return $message; |
@@ -49,8 +49,8 @@ discard block |
||
49 | 49 | * @param bool $routing |
50 | 50 | * @return Registrations_Admin_Page |
51 | 51 | */ |
52 | - public function __construct( $routing = TRUE ) { |
|
53 | - parent::__construct( $routing ); |
|
52 | + public function __construct($routing = TRUE) { |
|
53 | + parent::__construct($routing); |
|
54 | 54 | } |
55 | 55 | |
56 | 56 | |
@@ -82,16 +82,16 @@ discard block |
||
82 | 82 | 'trash' => 'post.php' |
83 | 83 | ); |
84 | 84 | |
85 | - add_action('edit_form_after_title', array($this, 'after_title_form_fields'), 10 ); |
|
85 | + add_action('edit_form_after_title', array($this, 'after_title_form_fields'), 10); |
|
86 | 86 | //add filters so that the comment urls don't take users to a confusing 404 page |
87 | - add_filter('get_comment_link', array( $this, 'clear_comment_link' ), 10, 3 ); |
|
87 | + add_filter('get_comment_link', array($this, 'clear_comment_link'), 10, 3); |
|
88 | 88 | } |
89 | 89 | |
90 | 90 | |
91 | - public function clear_comment_link( $link, $comment, $args ) { |
|
91 | + public function clear_comment_link($link, $comment, $args) { |
|
92 | 92 | //gotta make sure this only happens on this route |
93 | - $post_type = get_post_type( $comment->comment_post_ID); |
|
94 | - if ( $post_type == 'espresso_attendees' ) |
|
93 | + $post_type = get_post_type($comment->comment_post_ID); |
|
94 | + if ($post_type == 'espresso_attendees') |
|
95 | 95 | return '#commentsdiv'; |
96 | 96 | return $link; |
97 | 97 | } |
@@ -99,7 +99,7 @@ discard block |
||
99 | 99 | |
100 | 100 | protected function _ajax_hooks() { |
101 | 101 | //todo: all hooks for registrations ajax goes in here |
102 | - add_action( 'wp_ajax_toggle_checkin_status', array( $this, 'toggle_checkin_status' )); |
|
102 | + add_action('wp_ajax_toggle_checkin_status', array($this, 'toggle_checkin_status')); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | |
@@ -114,8 +114,8 @@ discard block |
||
114 | 114 | 'add-attendee' => __('Add Contact', 'event_espresso'), |
115 | 115 | 'edit' => __('Edit Contact', 'event_espresso'), |
116 | 116 | 'report'=> __("Event Registrations CSV Report", "event_espresso"), |
117 | - 'report_all' => __( 'All Registrations CSV Report', 'event_espresso' ), |
|
118 | - 'contact_list_report' => __( 'Contact List Report', 'event_espresso' ), |
|
117 | + 'report_all' => __('All Registrations CSV Report', 'event_espresso'), |
|
118 | + 'contact_list_report' => __('Contact List Report', 'event_espresso'), |
|
119 | 119 | 'contact_list_export'=> __("Export Data", "event_espresso"), |
120 | 120 | ), |
121 | 121 | 'publishbox' => array( |
@@ -143,9 +143,9 @@ discard block |
||
143 | 143 | |
144 | 144 | $this->_get_registration_status_array(); |
145 | 145 | |
146 | - $reg_id = ! empty( $this->_req_data['_REG_ID'] ) && ! is_array( $this->_req_data['_REG_ID'] ) ? $this->_req_data['_REG_ID'] : 0; |
|
147 | - $att_id = ! empty( $this->_req_data[ 'ATT_ID' ] ) && ! is_array( $this->_req_data['ATT_ID'] ) ? $this->_req_data['ATT_ID'] : 0; |
|
148 | - $att_id = ! empty( $this->_req_data['post'] ) && ! is_array( $this->_req_data['post'] ) ? $this->_req_data['post'] : $att_id; |
|
146 | + $reg_id = ! empty($this->_req_data['_REG_ID']) && ! is_array($this->_req_data['_REG_ID']) ? $this->_req_data['_REG_ID'] : 0; |
|
147 | + $att_id = ! empty($this->_req_data['ATT_ID']) && ! is_array($this->_req_data['ATT_ID']) ? $this->_req_data['ATT_ID'] : 0; |
|
148 | + $att_id = ! empty($this->_req_data['post']) && ! is_array($this->_req_data['post']) ? $this->_req_data['post'] : $att_id; |
|
149 | 149 | |
150 | 150 | $this->_page_routes = array( |
151 | 151 | |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | |
179 | 179 | 'restore_registrations' => array( |
180 | 180 | 'func' => '_trash_or_restore_registrations', |
181 | - 'args' => array( 'trash' => FALSE ), |
|
181 | + 'args' => array('trash' => FALSE), |
|
182 | 182 | 'noheader' => TRUE, |
183 | 183 | 'capability' => 'ee_delete_registrations' |
184 | 184 | ), |
@@ -405,7 +405,7 @@ discard block |
||
405 | 405 | 'filename' => 'registrations_overview_other' |
406 | 406 | ) |
407 | 407 | ), |
408 | - 'help_tour' => array( 'Registration_Overview_Help_Tour' ), |
|
408 | + 'help_tour' => array('Registration_Overview_Help_Tour'), |
|
409 | 409 | 'qtips' => array('Registration_List_Table_Tips'), |
410 | 410 | 'list_table' => 'EE_Registrations_List_Table', |
411 | 411 | 'require_nonce' => FALSE |
@@ -415,7 +415,7 @@ discard block |
||
415 | 415 | 'nav' => array( |
416 | 416 | 'label' => __('REG Details', 'event_espresso'), |
417 | 417 | 'order' => 15, |
418 | - 'url' => isset($this->_req_data['_REG_ID']) ? add_query_arg(array('_REG_ID' => $this->_req_data['_REG_ID'] ), $this->_current_page_view_url ) : $this->_admin_base_url, |
|
418 | + 'url' => isset($this->_req_data['_REG_ID']) ? add_query_arg(array('_REG_ID' => $this->_req_data['_REG_ID']), $this->_current_page_view_url) : $this->_admin_base_url, |
|
419 | 419 | 'persistent' => FALSE |
420 | 420 | ), |
421 | 421 | 'help_tabs' => array( |
@@ -436,8 +436,8 @@ discard block |
||
436 | 436 | 'filename' => 'registrations_details_registrant_details' |
437 | 437 | ) |
438 | 438 | ), |
439 | - 'help_tour' => array( 'Registration_Details_Help_Tour' ), |
|
440 | - 'metaboxes' => array_merge( $this->_default_espresso_metaboxes, array( '_registration_details_metaboxes' ) ), |
|
439 | + 'help_tour' => array('Registration_Details_Help_Tour'), |
|
440 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_registration_details_metaboxes')), |
|
441 | 441 | 'require_nonce' => FALSE |
442 | 442 | ), |
443 | 443 | |
@@ -461,7 +461,7 @@ discard block |
||
461 | 461 | 'order' => 15, |
462 | 462 | 'persistent' => FALSE |
463 | 463 | ), |
464 | - 'metaboxes' => array_merge( $this->_default_espresso_metaboxes, array('_publish_post_box', 'attendee_editor_metaboxes' ) ), |
|
464 | + 'metaboxes' => array_merge($this->_default_espresso_metaboxes, array('_publish_post_box', 'attendee_editor_metaboxes')), |
|
465 | 465 | 'require_nonce' => FALSE |
466 | 466 | ), |
467 | 467 | |
@@ -470,7 +470,7 @@ discard block |
||
470 | 470 | 'label' => __('Edit Contact', 'event_espresso'), |
471 | 471 | 'order' => 15, |
472 | 472 | 'persistent' => FALSE, |
473 | - 'url' => isset($this->_req_data['ATT_ID']) ? add_query_arg(array('ATT_ID' => $this->_req_data['ATT_ID'] ), $this->_current_page_view_url ) : $this->_admin_base_url |
|
473 | + 'url' => isset($this->_req_data['ATT_ID']) ? add_query_arg(array('ATT_ID' => $this->_req_data['ATT_ID']), $this->_current_page_view_url) : $this->_admin_base_url |
|
474 | 474 | ), |
475 | 475 | 'metaboxes' => array('attendee_editor_metaboxes'), |
476 | 476 | 'require_nonce' => FALSE |
@@ -500,7 +500,7 @@ discard block |
||
500 | 500 | 'filename' => 'registrations_contact_list_other' |
501 | 501 | ) |
502 | 502 | ), |
503 | - 'help_tour' => array( 'Contact_List_Help_Tour' ), |
|
503 | + 'help_tour' => array('Contact_List_Help_Tour'), |
|
504 | 504 | 'metaboxes' => array(), |
505 | 505 | 'require_nonce' => FALSE |
506 | 506 | ), |
@@ -519,7 +519,7 @@ discard block |
||
519 | 519 | protected function _add_screen_options() {} |
520 | 520 | protected function _add_feature_pointers() {} |
521 | 521 | public function admin_init() { |
522 | - EE_Registry::$i18n_js_strings[ 'update_att_qstns' ] = __( 'click "Update Registration Questions" to save your changes', 'event_espresso' ); |
|
522 | + EE_Registry::$i18n_js_strings['update_att_qstns'] = __('click "Update Registration Questions" to save your changes', 'event_espresso'); |
|
523 | 523 | } |
524 | 524 | public function admin_notices() {} |
525 | 525 | public function admin_footer_scripts() {} |
@@ -537,7 +537,7 @@ discard block |
||
537 | 537 | * @return void |
538 | 538 | */ |
539 | 539 | private function _get_registration_status_array() { |
540 | - self::$_reg_status = EEM_Registration::reg_status_array( array(), TRUE); |
|
540 | + self::$_reg_status = EEM_Registration::reg_status_array(array(), TRUE); |
|
541 | 541 | } |
542 | 542 | |
543 | 543 | |
@@ -560,11 +560,11 @@ discard block |
||
560 | 560 | public function load_scripts_styles() { |
561 | 561 | //style |
562 | 562 | //wp_register_style('espresso_attendees', ATT_ASSETS_URL . 'espresso_attendees_admin.css', array(), EVENT_ESPRESSO_VERSION ); |
563 | - wp_register_style('espresso_reg', REG_ASSETS_URL . 'espresso_registrations_admin.css', array('ee-admin-css'), EVENT_ESPRESSO_VERSION ); |
|
563 | + wp_register_style('espresso_reg', REG_ASSETS_URL.'espresso_registrations_admin.css', array('ee-admin-css'), EVENT_ESPRESSO_VERSION); |
|
564 | 564 | wp_enqueue_style('espresso_reg'); |
565 | 565 | |
566 | 566 | //script |
567 | - wp_register_script('espresso_reg', REG_ASSETS_URL . 'espresso_registrations_admin.js', array('jquery-ui-datepicker', 'jquery-ui-draggable', 'ee_admin_js'), EVENT_ESPRESSO_VERSION, TRUE); |
|
567 | + wp_register_script('espresso_reg', REG_ASSETS_URL.'espresso_registrations_admin.js', array('jquery-ui-datepicker', 'jquery-ui-draggable', 'ee_admin_js'), EVENT_ESPRESSO_VERSION, TRUE); |
|
568 | 568 | wp_enqueue_script('espresso_reg'); |
569 | 569 | } |
570 | 570 | |
@@ -573,9 +573,9 @@ discard block |
||
573 | 573 | public function load_scripts_styles_edit_attendee() { |
574 | 574 | //stuff to only show up on our attendee edit details page. |
575 | 575 | $attendee_details_translations = array( |
576 | - 'att_publish_text' => sprintf( __('Created on: <b>%1$s</b>', 'event_espresso'), $this->_cpt_model_obj->get_datetime('ATT_created') ) |
|
576 | + 'att_publish_text' => sprintf(__('Created on: <b>%1$s</b>', 'event_espresso'), $this->_cpt_model_obj->get_datetime('ATT_created')) |
|
577 | 577 | ); |
578 | - wp_localize_script( 'espresso_reg', 'ATTENDEE_DETAILS', $attendee_details_translations ); |
|
578 | + wp_localize_script('espresso_reg', 'ATTENDEE_DETAILS', $attendee_details_translations); |
|
579 | 579 | wp_enqueue_script('jquery-validate'); |
580 | 580 | } |
581 | 581 | |
@@ -584,8 +584,8 @@ discard block |
||
584 | 584 | //styles |
585 | 585 | wp_enqueue_style('espresso-ui-theme'); |
586 | 586 | //scripts |
587 | - $this->_get_reg_custom_questions_form( $this->_registration->ID() ); |
|
588 | - $this->_reg_custom_questions_form->wp_enqueue_scripts( true ); |
|
587 | + $this->_get_reg_custom_questions_form($this->_registration->ID()); |
|
588 | + $this->_reg_custom_questions_form->wp_enqueue_scripts(true); |
|
589 | 589 | } |
590 | 590 | |
591 | 591 | |
@@ -595,7 +595,7 @@ discard block |
||
595 | 595 | |
596 | 596 | public function load_scripts_styles_contact_list() { |
597 | 597 | wp_deregister_style('espresso_reg'); |
598 | - wp_register_style('espresso_att', REG_ASSETS_URL . 'espresso_attendees_admin.css', array('ee-admin-css'), EVENT_ESPRESSO_VERSION ); |
|
598 | + wp_register_style('espresso_att', REG_ASSETS_URL.'espresso_attendees_admin.css', array('ee-admin-css'), EVENT_ESPRESSO_VERSION); |
|
599 | 599 | wp_enqueue_style('espresso_att'); |
600 | 600 | } |
601 | 601 | |
@@ -604,9 +604,9 @@ discard block |
||
604 | 604 | |
605 | 605 | |
606 | 606 | public function load_scripts_styles_new_registration() { |
607 | - wp_register_script( 'ee-spco-for-admin', REG_ASSETS_URL . 'spco_for_admin.js', array('underscore', 'jquery'), EVENT_ESPRESSO_VERSION, TRUE ); |
|
607 | + wp_register_script('ee-spco-for-admin', REG_ASSETS_URL.'spco_for_admin.js', array('underscore', 'jquery'), EVENT_ESPRESSO_VERSION, TRUE); |
|
608 | 608 | wp_enqueue_script('ee-spco-for-admin'); |
609 | - add_filter('FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', '__return_true' ); |
|
609 | + add_filter('FHEE__EED_Ticket_Selector__load_tckt_slctr_assets', '__return_true'); |
|
610 | 610 | EE_Form_Section_Proper::wp_enqueue_scripts(); |
611 | 611 | EED_Ticket_Selector::load_tckt_slctr_assets(); |
612 | 612 | EE_Datepicker_Input::enqueue_styles_and_scripts(); |
@@ -645,23 +645,23 @@ discard block |
||
645 | 645 | |
646 | 646 | /** setup reg status bulk actions **/ |
647 | 647 | $def_reg_status_actions['approve_registration'] = __('Approve Registrations', 'event_espresso'); |
648 | - if ( in_array( $match_array['approve_registration'], $active_mts ) && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'batch_send_messages' ) ) { |
|
648 | + if (in_array($match_array['approve_registration'], $active_mts) && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'batch_send_messages')) { |
|
649 | 649 | $def_reg_status_actions['approve_and_notify_registration'] = __('Approve and Notify Registrations', 'event_espresso'); |
650 | 650 | } |
651 | 651 | $def_reg_status_actions['decline_registration'] = __('Decline Registrations', 'event_espresso'); |
652 | - if ( in_array( $match_array['decline_registration'], $active_mts ) && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'batch_send_messages' ) ) { |
|
652 | + if (in_array($match_array['decline_registration'], $active_mts) && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'batch_send_messages')) { |
|
653 | 653 | $def_reg_status_actions['decline_and_notify_registration'] = __('Decline and Notify Registrations', 'event_espresso'); |
654 | 654 | } |
655 | 655 | $def_reg_status_actions['pending_registration'] = __('Set Registrations to Pending Payment', 'event_espresso'); |
656 | - if ( in_array( $match_array['pending_registration'], $active_mts ) && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'batch_send_messages' ) ) { |
|
656 | + if (in_array($match_array['pending_registration'], $active_mts) && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'batch_send_messages')) { |
|
657 | 657 | $def_reg_status_actions['pending_and_notify_registration'] = __('Set Registrations to Pending Payment and Notify', 'event_espresso'); |
658 | 658 | } |
659 | 659 | $def_reg_status_actions['no_approve_registration'] = __('Set Registrations to Not Approved', 'event_espresso'); |
660 | - if ( in_array( $match_array['no_approve_registration'], $active_mts ) && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'batch_send_messages' ) ) { |
|
660 | + if (in_array($match_array['no_approve_registration'], $active_mts) && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'batch_send_messages')) { |
|
661 | 661 | $def_reg_status_actions['no_approve_and_notify_registration'] = __('Set Registrations to Not Approved and Notify', 'event_espresso'); |
662 | 662 | } |
663 | 663 | $def_reg_status_actions['cancel_registration'] = __('Cancel Registrations', 'event_espresso'); |
664 | - if ( in_array( $match_array['cancel_registration'], $active_mts ) && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'batch_send_messages' ) ) { |
|
664 | + if (in_array($match_array['cancel_registration'], $active_mts) && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'batch_send_messages')) { |
|
665 | 665 | $def_reg_status_actions['cancel_and_notify_registration'] = __('Cancel Registrations and Notify', 'event_espresso'); |
666 | 666 | } |
667 | 667 | |
@@ -670,29 +670,29 @@ discard block |
||
670 | 670 | 'slug' => 'all', |
671 | 671 | 'label' => __('View All Registrations', 'event_espresso'), |
672 | 672 | 'count' => 0, |
673 | - 'bulk_action' => array_merge( $def_reg_status_actions, array( |
|
673 | + 'bulk_action' => array_merge($def_reg_status_actions, array( |
|
674 | 674 | 'trash_registrations' => __('Trash Registrations', 'event_espresso') |
675 | - ) ) |
|
675 | + )) |
|
676 | 676 | ), |
677 | 677 | 'month' => array( |
678 | 678 | 'slug' => 'month', |
679 | 679 | 'label' => __('This Month', 'event_espresso'), |
680 | 680 | 'count' => 0, |
681 | - 'bulk_action' => array_merge( $def_reg_status_actions, array( |
|
681 | + 'bulk_action' => array_merge($def_reg_status_actions, array( |
|
682 | 682 | 'trash_registrations' => __('Trash Registrations', 'event_espresso') |
683 | 683 | )) |
684 | 684 | ), |
685 | 685 | 'today' => array( |
686 | 686 | 'slug' => 'today', |
687 | - 'label' => sprintf( __('Today - %s', 'event_espresso'), date('M d, Y', current_time('timestamp' ) ) ), |
|
687 | + 'label' => sprintf(__('Today - %s', 'event_espresso'), date('M d, Y', current_time('timestamp'))), |
|
688 | 688 | 'count' => 0, |
689 | - 'bulk_action' => array_merge( $def_reg_status_actions, array( |
|
689 | + 'bulk_action' => array_merge($def_reg_status_actions, array( |
|
690 | 690 | 'trash_registrations' => __('Trash Registrations', 'event_espresso') |
691 | 691 | )) |
692 | 692 | ) |
693 | 693 | ); |
694 | 694 | |
695 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_registrations', 'espresso_registrations_delete_registration' ) ) { |
|
695 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_registrations', 'espresso_registrations_delete_registration')) { |
|
696 | 696 | $this->_views['incomplete'] = array( |
697 | 697 | 'slug' => 'incomplete', |
698 | 698 | 'label' => __('Incomplete', 'event_espresso'), |
@@ -728,7 +728,7 @@ discard block |
||
728 | 728 | ) |
729 | 729 | ); |
730 | 730 | |
731 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_delete_contacts', 'espresso_registrations_trash_attendees' ) ) { |
|
731 | + if (EE_Registry::instance()->CAP->current_user_can('ee_delete_contacts', 'espresso_registrations_trash_attendees')) { |
|
732 | 732 | $this->_views['trash'] = array( |
733 | 733 | 'slug' => 'trash', |
734 | 734 | 'label' => __('Trash', 'event_espresso'), |
@@ -767,42 +767,42 @@ discard block |
||
767 | 767 | 'desc' => __('View Transaction Invoice', 'event_espresso') |
768 | 768 | ), |
769 | 769 | ); |
770 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'espresso_registrations_resend_registration' ) ) { |
|
770 | + if (EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'espresso_registrations_resend_registration')) { |
|
771 | 771 | $fc_items['resend_registration'] = array( |
772 | 772 | 'class' => 'dashicons dashicons-email-alt', |
773 | 773 | 'desc' => __('Resend Registration Details', 'event_espresso') |
774 | 774 | ); |
775 | 775 | } else { |
776 | - $fc_items['blank'] = array( 'class' => 'blank', 'desc' => '' ); |
|
776 | + $fc_items['blank'] = array('class' => 'blank', 'desc' => ''); |
|
777 | 777 | } |
778 | 778 | |
779 | 779 | $sc_items = array( |
780 | 780 | 'approved_status' => array( |
781 | - 'class' => 'ee-status-legend ee-status-legend-' . EEM_Registration::status_id_approved, |
|
782 | - 'desc' => EEH_Template::pretty_status( EEM_Registration::status_id_approved, FALSE, 'sentence' ) |
|
781 | + 'class' => 'ee-status-legend ee-status-legend-'.EEM_Registration::status_id_approved, |
|
782 | + 'desc' => EEH_Template::pretty_status(EEM_Registration::status_id_approved, FALSE, 'sentence') |
|
783 | 783 | ), |
784 | 784 | 'pending_status' => array( |
785 | - 'class' => 'ee-status-legend ee-status-legend-' . EEM_Registration::status_id_pending_payment, |
|
786 | - 'desc' => EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, FALSE, 'sentence' ) |
|
785 | + 'class' => 'ee-status-legend ee-status-legend-'.EEM_Registration::status_id_pending_payment, |
|
786 | + 'desc' => EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, FALSE, 'sentence') |
|
787 | 787 | ), |
788 | 788 | 'incomplete_status' => array( |
789 | - 'class' => 'ee-status-legend ee-status-legend-' . EEM_Registration::status_id_incomplete, |
|
790 | - 'desc' => EEH_Template::pretty_status( EEM_Registration::status_id_incomplete, FALSE, 'sentence' ) |
|
789 | + 'class' => 'ee-status-legend ee-status-legend-'.EEM_Registration::status_id_incomplete, |
|
790 | + 'desc' => EEH_Template::pretty_status(EEM_Registration::status_id_incomplete, FALSE, 'sentence') |
|
791 | 791 | ), |
792 | 792 | 'not_approved' => array( |
793 | - 'class' => 'ee-status-legend ee-status-legend-' . EEM_Registration::status_id_not_approved, |
|
794 | - 'desc' => EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, FALSE, 'sentence' ) |
|
793 | + 'class' => 'ee-status-legend ee-status-legend-'.EEM_Registration::status_id_not_approved, |
|
794 | + 'desc' => EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, FALSE, 'sentence') |
|
795 | 795 | ), |
796 | 796 | 'declined_status' => array( |
797 | - 'class' => 'ee-status-legend ee-status-legend-' . EEM_Registration::status_id_declined, |
|
798 | - 'desc' => EEH_Template::pretty_status( EEM_Registration::status_id_declined, FALSE, 'sentence' ) |
|
797 | + 'class' => 'ee-status-legend ee-status-legend-'.EEM_Registration::status_id_declined, |
|
798 | + 'desc' => EEH_Template::pretty_status(EEM_Registration::status_id_declined, FALSE, 'sentence') |
|
799 | 799 | ), |
800 | 800 | 'cancelled_status' => array( |
801 | - 'class' => 'ee-status-legend ee-status-legend-' . EEM_Registration::status_id_cancelled, |
|
802 | - 'desc' => EEH_Template::pretty_status( EEM_Registration::status_id_cancelled, FALSE, 'sentence' ) |
|
801 | + 'class' => 'ee-status-legend ee-status-legend-'.EEM_Registration::status_id_cancelled, |
|
802 | + 'desc' => EEH_Template::pretty_status(EEM_Registration::status_id_cancelled, FALSE, 'sentence') |
|
803 | 803 | ) |
804 | 804 | ); |
805 | - return array_merge( $fc_items, $sc_items ); |
|
805 | + return array_merge($fc_items, $sc_items); |
|
806 | 806 | } |
807 | 807 | |
808 | 808 | |
@@ -815,15 +815,15 @@ discard block |
||
815 | 815 | |
816 | 816 | |
817 | 817 | protected function _registrations_overview_list_table() { |
818 | - $EVT_ID = ( ! empty( $this->_req_data['event_id'] )) ? absint( $this->_req_data['event_id'] ) : FALSE; |
|
819 | - if ( $EVT_ID ) { |
|
820 | - if ( EE_Registry::instance()->CAP->current_user_can( 'ee_edit_registrations', 'espresso_registrations_new_registration', $EVT_ID ) ) { |
|
821 | - $this->_admin_page_title .= $this->get_action_link_or_button( 'new_registration', 'add-registrant', array( 'event_id' => $EVT_ID ), 'add-new-h2' ); |
|
818 | + $EVT_ID = ( ! empty($this->_req_data['event_id'])) ? absint($this->_req_data['event_id']) : FALSE; |
|
819 | + if ($EVT_ID) { |
|
820 | + if (EE_Registry::instance()->CAP->current_user_can('ee_edit_registrations', 'espresso_registrations_new_registration', $EVT_ID)) { |
|
821 | + $this->_admin_page_title .= $this->get_action_link_or_button('new_registration', 'add-registrant', array('event_id' => $EVT_ID), 'add-new-h2'); |
|
822 | 822 | } |
823 | - $event = EEM_Event::instance()->get_one_by_ID( $EVT_ID ); |
|
824 | - $this->_template_args['admin_page_header'] = $event instanceof EE_Event ? sprintf( __('%s Viewing registrations for the event: %s%s', 'event_espresso'), '<h2>', '<a href="' . EE_Admin_Page::add_query_args_and_nonce( array('action' => 'edit', 'post' => $event->ID() ), EVENTS_ADMIN_URL ) . '">' . $event->get('EVT_name') . '</a>', '</h2>' ) : ''; |
|
823 | + $event = EEM_Event::instance()->get_one_by_ID($EVT_ID); |
|
824 | + $this->_template_args['admin_page_header'] = $event instanceof EE_Event ? sprintf(__('%s Viewing registrations for the event: %s%s', 'event_espresso'), '<h2>', '<a href="'.EE_Admin_Page::add_query_args_and_nonce(array('action' => 'edit', 'post' => $event->ID()), EVENTS_ADMIN_URL).'">'.$event->get('EVT_name').'</a>', '</h2>') : ''; |
|
825 | 825 | } |
826 | - $this->_template_args['after_list_table'] = $this->_display_legend( $this->_registration_legend_items() ); |
|
826 | + $this->_template_args['after_list_table'] = $this->_display_legend($this->_registration_legend_items()); |
|
827 | 827 | $this->display_admin_list_table_page_with_no_sidebar(); |
828 | 828 | } |
829 | 829 | |
@@ -838,19 +838,19 @@ discard block |
||
838 | 838 | */ |
839 | 839 | private function _set_registration_object() { |
840 | 840 | //get out if we've already set the object |
841 | - if ( is_object( $this->_registration )) { |
|
841 | + if (is_object($this->_registration)) { |
|
842 | 842 | return TRUE; |
843 | 843 | } |
844 | 844 | |
845 | 845 | $REG = EEM_Registration::instance(); |
846 | 846 | |
847 | - $REG_ID = ( ! empty( $this->_req_data['_REG_ID'] )) ? absint( $this->_req_data['_REG_ID'] ) : FALSE; |
|
847 | + $REG_ID = ( ! empty($this->_req_data['_REG_ID'])) ? absint($this->_req_data['_REG_ID']) : FALSE; |
|
848 | 848 | |
849 | - if ( $this->_registration = $REG->get_one_by_ID( $REG_ID )) |
|
849 | + if ($this->_registration = $REG->get_one_by_ID($REG_ID)) |
|
850 | 850 | return TRUE; |
851 | 851 | else { |
852 | - $error_msg = sprintf( __('An error occurred and the details for Registration ID #%s could not be retrieved.', 'event_espresso'), $REG_ID ); |
|
853 | - EE_Error::add_error( $error_msg, __FILE__, __FUNCTION__, __LINE__ ); |
|
852 | + $error_msg = sprintf(__('An error occurred and the details for Registration ID #%s could not be retrieved.', 'event_espresso'), $REG_ID); |
|
853 | + EE_Error::add_error($error_msg, __FILE__, __FUNCTION__, __LINE__); |
|
854 | 854 | $this->_registration = NULL; |
855 | 855 | return FALSE; |
856 | 856 | } |
@@ -869,25 +869,25 @@ discard block |
||
869 | 869 | * @internal param bool $all whether to ignore all query params and just return ALL registrations (or count if count is set) |
870 | 870 | * @return mixed (int|array) int = count || array of registration objects |
871 | 871 | */ |
872 | - public function get_registrations( $per_page = 10, $count = FALSE, $this_month = FALSE, $today = FALSE ) { |
|
873 | - |
|
874 | - $EVT_ID = ! empty( $this->_req_data['event_id'] ) && $this->_req_data['event_id'] > 0 ? absint( $this->_req_data['event_id'] ) : FALSE; |
|
875 | - $CAT_ID = ! empty( $this->_req_data['EVT_CAT'] ) && (int) $this->_req_data['EVT_CAT'] > 0? absint( $this->_req_data['EVT_CAT'] ) : FALSE; |
|
876 | - $reg_status = ! empty( $this->_req_data['_reg_status'] ) ? sanitize_text_field( $this->_req_data['_reg_status'] ) : FALSE; |
|
877 | - $month_range = ! empty( $this->_req_data['month_range'] ) ? sanitize_text_field( $this->_req_data['month_range'] ) : FALSE;//should be like 2013-april |
|
878 | - $today_a = ! empty( $this->_req_data['status'] ) && $this->_req_data['status'] == 'today' ? TRUE : FALSE; |
|
879 | - $this_month_a = ! empty( $this->_req_data['status'] ) && $this->_req_data['status'] == 'month' ? TRUE : FALSE; |
|
872 | + public function get_registrations($per_page = 10, $count = FALSE, $this_month = FALSE, $today = FALSE) { |
|
873 | + |
|
874 | + $EVT_ID = ! empty($this->_req_data['event_id']) && $this->_req_data['event_id'] > 0 ? absint($this->_req_data['event_id']) : FALSE; |
|
875 | + $CAT_ID = ! empty($this->_req_data['EVT_CAT']) && (int) $this->_req_data['EVT_CAT'] > 0 ? absint($this->_req_data['EVT_CAT']) : FALSE; |
|
876 | + $reg_status = ! empty($this->_req_data['_reg_status']) ? sanitize_text_field($this->_req_data['_reg_status']) : FALSE; |
|
877 | + $month_range = ! empty($this->_req_data['month_range']) ? sanitize_text_field($this->_req_data['month_range']) : FALSE; //should be like 2013-april |
|
878 | + $today_a = ! empty($this->_req_data['status']) && $this->_req_data['status'] == 'today' ? TRUE : FALSE; |
|
879 | + $this_month_a = ! empty($this->_req_data['status']) && $this->_req_data['status'] == 'month' ? TRUE : FALSE; |
|
880 | 880 | $start_date = FALSE; |
881 | 881 | $end_date = FALSE; |
882 | 882 | $_where = array(); |
883 | - $trash = ! empty( $this->_req_data['status'] ) && $this->_req_data['status'] == 'trash' ? TRUE : FALSE; |
|
884 | - $incomplete = ! empty( $this->_req_data['status'] ) && $this->_req_data['status'] == 'incomplete' ? TRUE : FALSE; |
|
883 | + $trash = ! empty($this->_req_data['status']) && $this->_req_data['status'] == 'trash' ? TRUE : FALSE; |
|
884 | + $incomplete = ! empty($this->_req_data['status']) && $this->_req_data['status'] == 'incomplete' ? TRUE : FALSE; |
|
885 | 885 | |
886 | 886 | //set orderby |
887 | 887 | $this->_req_data['orderby'] = ! empty($this->_req_data['orderby']) ? $this->_req_data['orderby'] : ''; |
888 | 888 | |
889 | 889 | |
890 | - switch ( $this->_req_data['orderby'] ) { |
|
890 | + switch ($this->_req_data['orderby']) { |
|
891 | 891 | case '_REG_ID': |
892 | 892 | $orderby = 'REG_ID'; |
893 | 893 | break; |
@@ -907,26 +907,26 @@ discard block |
||
907 | 907 | $orderby = 'REG_date'; |
908 | 908 | } |
909 | 909 | |
910 | - $sort = ( isset( $this->_req_data['order'] ) && ! empty( $this->_req_data['order'] )) ? $this->_req_data['order'] : 'DESC'; |
|
911 | - $current_page = isset( $this->_req_data['paged'] ) && !empty( $this->_req_data['paged'] ) ? $this->_req_data['paged'] : 1; |
|
912 | - $per_page = isset( $this->_req_data['perpage'] ) && !empty( $this->_req_data['perpage'] ) ? $this->_req_data['perpage'] : $per_page; |
|
910 | + $sort = (isset($this->_req_data['order']) && ! empty($this->_req_data['order'])) ? $this->_req_data['order'] : 'DESC'; |
|
911 | + $current_page = isset($this->_req_data['paged']) && ! empty($this->_req_data['paged']) ? $this->_req_data['paged'] : 1; |
|
912 | + $per_page = isset($this->_req_data['perpage']) && ! empty($this->_req_data['perpage']) ? $this->_req_data['perpage'] : $per_page; |
|
913 | 913 | |
914 | 914 | |
915 | - $offset = ($current_page-1)*$per_page; |
|
916 | - $limit = $count ? NULL : array( $offset, $per_page ); |
|
915 | + $offset = ($current_page - 1) * $per_page; |
|
916 | + $limit = $count ? NULL : array($offset, $per_page); |
|
917 | 917 | |
918 | - if($EVT_ID){ |
|
919 | - $_where['EVT_ID']=$EVT_ID; |
|
918 | + if ($EVT_ID) { |
|
919 | + $_where['EVT_ID'] = $EVT_ID; |
|
920 | 920 | } |
921 | - if($CAT_ID){ |
|
921 | + if ($CAT_ID) { |
|
922 | 922 | $_where['Event.Term_Taxonomy.term_id'] = $CAT_ID; |
923 | 923 | } |
924 | - if ( $incomplete ) { |
|
924 | + if ($incomplete) { |
|
925 | 925 | $_where['STS_ID'] = EEM_Registration::status_id_incomplete; |
926 | 926 | } else if ( ! $trash) { |
927 | - $_where['STS_ID'] = array( '!=', EEM_Registration::status_id_incomplete ); |
|
927 | + $_where['STS_ID'] = array('!=', EEM_Registration::status_id_incomplete); |
|
928 | 928 | } |
929 | - if($reg_status){ |
|
929 | + if ($reg_status) { |
|
930 | 930 | $_where['STS_ID'] = $reg_status; |
931 | 931 | } |
932 | 932 | |
@@ -938,105 +938,105 @@ discard block |
||
938 | 938 | $time_start = ' 00:00:00'; |
939 | 939 | $time_end = ' 23:59:59'; |
940 | 940 | |
941 | - if($today_a || $today ){ |
|
941 | + if ($today_a || $today) { |
|
942 | 942 | $curdate = date('Y-m-d', current_time('timestamp')); |
943 | - $_where['REG_date']= array('BETWEEN', |
|
943 | + $_where['REG_date'] = array('BETWEEN', |
|
944 | 944 | array( |
945 | - EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $curdate . $time_start, 'Y-m-d H:i:s' ), |
|
946 | - EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $curdate . $time_end, 'Y-m-d H:i:s' ), |
|
945 | + EEM_Registration::instance()->convert_datetime_for_query('REG_date', $curdate.$time_start, 'Y-m-d H:i:s'), |
|
946 | + EEM_Registration::instance()->convert_datetime_for_query('REG_date', $curdate.$time_end, 'Y-m-d H:i:s'), |
|
947 | 947 | )); |
948 | - }elseif($this_month_a || $this_month){ |
|
948 | + }elseif ($this_month_a || $this_month) { |
|
949 | 949 | $this_month_r = date('m', current_time('timestamp')); |
950 | - $days_this_month = date( 't', current_time('timestamp') ); |
|
951 | - $_where['REG_date']= array('BETWEEN', |
|
950 | + $days_this_month = date('t', current_time('timestamp')); |
|
951 | + $_where['REG_date'] = array('BETWEEN', |
|
952 | 952 | array( |
953 | - EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $this_year_r . '-' . $this_month_r . '-01' . ' ' . $time_start, 'Y-m-d H:i:s' ), |
|
954 | - EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $this_year_r . '-' . $this_month_r . '-' . $days_this_month . ' ' . $time_end, 'Y-m-d H:i:s' ) |
|
953 | + EEM_Registration::instance()->convert_datetime_for_query('REG_date', $this_year_r.'-'.$this_month_r.'-01'.' '.$time_start, 'Y-m-d H:i:s'), |
|
954 | + EEM_Registration::instance()->convert_datetime_for_query('REG_date', $this_year_r.'-'.$this_month_r.'-'.$days_this_month.' '.$time_end, 'Y-m-d H:i:s') |
|
955 | 955 | )); |
956 | - }elseif($month_range){ |
|
956 | + }elseif ($month_range) { |
|
957 | 957 | $pieces = explode(' ', $this->_req_data['month_range'], 3); |
958 | - $month_r = !empty($pieces[0]) ? date('m', strtotime($pieces[0])) : ''; |
|
959 | - $year_r = !empty($pieces[1]) ? $pieces[1] : ''; |
|
960 | - $days_in_month = date('t', strtotime($year_r . '-' . $month_r . '-' . '01') ); |
|
961 | - $_where['REG_date']= array('BETWEEN', |
|
962 | - array( EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $year_r . '-' . $month_r . '-01 00:00:00', 'Y-m-d H:i:s'), EEM_Registration::instance()->convert_datetime_for_query( 'REG_date', $year_r . '-' . $month_r . '-' . $days_in_month . ' 23:59:59', 'Y-m-d H:i:s' ) ) ); |
|
963 | - }elseif($start_date && $end_date){ |
|
958 | + $month_r = ! empty($pieces[0]) ? date('m', strtotime($pieces[0])) : ''; |
|
959 | + $year_r = ! empty($pieces[1]) ? $pieces[1] : ''; |
|
960 | + $days_in_month = date('t', strtotime($year_r.'-'.$month_r.'-'.'01')); |
|
961 | + $_where['REG_date'] = array('BETWEEN', |
|
962 | + array(EEM_Registration::instance()->convert_datetime_for_query('REG_date', $year_r.'-'.$month_r.'-01 00:00:00', 'Y-m-d H:i:s'), EEM_Registration::instance()->convert_datetime_for_query('REG_date', $year_r.'-'.$month_r.'-'.$days_in_month.' 23:59:59', 'Y-m-d H:i:s'))); |
|
963 | + }elseif ($start_date && $end_date) { |
|
964 | 964 | throw new EE_Error("not yet supported"); |
965 | - }elseif($start_date){ |
|
965 | + }elseif ($start_date) { |
|
966 | 966 | throw new EE_Error("not yet supported"); |
967 | - }elseif($end_date){ |
|
967 | + }elseif ($end_date) { |
|
968 | 968 | throw new EE_Error("not yet supported"); |
969 | 969 | } |
970 | 970 | |
971 | - if ( ! empty( $this->_req_data['s'] ) ) { |
|
972 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
971 | + if ( ! empty($this->_req_data['s'])) { |
|
972 | + $sstr = '%'.$this->_req_data['s'].'%'; |
|
973 | 973 | $_where['OR'] = array( |
974 | - 'Event.EVT_name' => array( 'LIKE', $sstr), |
|
975 | - 'Event.EVT_desc' => array( 'LIKE', $sstr ), |
|
976 | - 'Event.EVT_short_desc' => array( 'LIKE' , $sstr ), |
|
977 | - 'Attendee.ATT_full_name' => array( 'LIKE', $sstr ), |
|
978 | - 'Attendee.ATT_fname' => array( 'LIKE', $sstr ), |
|
979 | - 'Attendee.ATT_lname' => array( 'LIKE', $sstr ), |
|
980 | - 'Attendee.ATT_short_bio' => array( 'LIKE', $sstr ), |
|
981 | - 'Attendee.ATT_email' => array('LIKE', $sstr ), |
|
982 | - 'Attendee.ATT_address' => array( 'LIKE', $sstr ), |
|
983 | - 'Attendee.ATT_address2' => array( 'LIKE', $sstr ), |
|
984 | - 'Attendee.ATT_city' => array( 'LIKE', $sstr ), |
|
985 | - 'REG_final_price' => array( 'LIKE', $sstr ), |
|
986 | - 'REG_code' => array( 'LIKE', $sstr ), |
|
987 | - 'REG_count' => array( 'LIKE' , $sstr ), |
|
988 | - 'REG_group_size' => array( 'LIKE' , $sstr ), |
|
989 | - 'Ticket.TKT_name' => array( 'LIKE', $sstr ), |
|
990 | - 'Ticket.TKT_description' => array( 'LIKE', $sstr ), |
|
991 | - 'Transaction.Payment.PAY_txn_id_chq_nmbr' => array( 'LIKE', $sstr ) |
|
974 | + 'Event.EVT_name' => array('LIKE', $sstr), |
|
975 | + 'Event.EVT_desc' => array('LIKE', $sstr), |
|
976 | + 'Event.EVT_short_desc' => array('LIKE', $sstr), |
|
977 | + 'Attendee.ATT_full_name' => array('LIKE', $sstr), |
|
978 | + 'Attendee.ATT_fname' => array('LIKE', $sstr), |
|
979 | + 'Attendee.ATT_lname' => array('LIKE', $sstr), |
|
980 | + 'Attendee.ATT_short_bio' => array('LIKE', $sstr), |
|
981 | + 'Attendee.ATT_email' => array('LIKE', $sstr), |
|
982 | + 'Attendee.ATT_address' => array('LIKE', $sstr), |
|
983 | + 'Attendee.ATT_address2' => array('LIKE', $sstr), |
|
984 | + 'Attendee.ATT_city' => array('LIKE', $sstr), |
|
985 | + 'REG_final_price' => array('LIKE', $sstr), |
|
986 | + 'REG_code' => array('LIKE', $sstr), |
|
987 | + 'REG_count' => array('LIKE', $sstr), |
|
988 | + 'REG_group_size' => array('LIKE', $sstr), |
|
989 | + 'Ticket.TKT_name' => array('LIKE', $sstr), |
|
990 | + 'Ticket.TKT_description' => array('LIKE', $sstr), |
|
991 | + 'Transaction.Payment.PAY_txn_id_chq_nmbr' => array('LIKE', $sstr) |
|
992 | 992 | ); |
993 | 993 | } |
994 | 994 | |
995 | 995 | //capability checks |
996 | - if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_registrations', 'get_registrations' ) ) { |
|
996 | + if ( ! EE_Registry::instance()->CAP->current_user_can('ee_read_others_registrations', 'get_registrations')) { |
|
997 | 997 | $_where['AND'] = array( |
998 | 998 | 'Event.EVT_wp_user' => get_current_user_id() |
999 | 999 | ); |
1000 | 1000 | } |
1001 | 1001 | |
1002 | 1002 | |
1003 | - if( $count ){ |
|
1004 | - if ( $trash ) { |
|
1005 | - return EEM_Registration::instance()->count_deleted( array( $_where )); |
|
1006 | - } else if ( $incomplete ) { |
|
1007 | - return EEM_Registration::instance()->count( array( $_where )); |
|
1003 | + if ($count) { |
|
1004 | + if ($trash) { |
|
1005 | + return EEM_Registration::instance()->count_deleted(array($_where)); |
|
1006 | + } else if ($incomplete) { |
|
1007 | + return EEM_Registration::instance()->count(array($_where)); |
|
1008 | 1008 | } else { |
1009 | - return EEM_Registration::instance()->count( array( $_where, 'default_where_conditions' => 'this_model_only' )); |
|
1009 | + return EEM_Registration::instance()->count(array($_where, 'default_where_conditions' => 'this_model_only')); |
|
1010 | 1010 | } |
1011 | 1011 | } else { |
1012 | 1012 | //make sure we remove default where conditions cause all registrations matching query are returned |
1013 | - $query_params = array( $_where, 'order_by' => array( $orderby => $sort ), 'default_where_conditions' => 'this_model_only' ); |
|
1014 | - if ( $per_page !== -1 ) { |
|
1013 | + $query_params = array($_where, 'order_by' => array($orderby => $sort), 'default_where_conditions' => 'this_model_only'); |
|
1014 | + if ($per_page !== -1) { |
|
1015 | 1015 | $query_params['limit'] = $limit; |
1016 | 1016 | } |
1017 | - $registrations = $trash ? EEM_Registration::instance()->get_all_deleted($query_params) : EEM_Registration::instance()->get_all($query_params); |
|
1017 | + $registrations = $trash ? EEM_Registration::instance()->get_all_deleted($query_params) : EEM_Registration::instance()->get_all($query_params); |
|
1018 | 1018 | |
1019 | 1019 | |
1020 | - if ( $EVT_ID && isset( $registrations[0] ) && $registrations[0] instanceof EE_Registration && $registrations[0]->event_obj()) { |
|
1020 | + if ($EVT_ID && isset($registrations[0]) && $registrations[0] instanceof EE_Registration && $registrations[0]->event_obj()) { |
|
1021 | 1021 | $first_registration = $registrations[0]; |
1022 | 1022 | //EEH_Debug_Tools::printr( $registrations[0], '$registrations <br /><span style="font-size:10px;font-weight:normal;">' . __FILE__ . '<br />line no: ' . __LINE__ . '</span>', 'auto' ); |
1023 | 1023 | $event_name = $first_registration->event_obj()->name(); |
1024 | - $event_date = $first_registration->date_obj()->start_date_and_time('l F j, Y,', 'g:i:s a');// isset( $registrations[0]->DTT_EVT_start ) ? date( 'l F j, Y, g:i:s a', $registrations[0]->DTT_EVT_start ) : ''; |
|
1024 | + $event_date = $first_registration->date_obj()->start_date_and_time('l F j, Y,', 'g:i:s a'); // isset( $registrations[0]->DTT_EVT_start ) ? date( 'l F j, Y, g:i:s a', $registrations[0]->DTT_EVT_start ) : ''; |
|
1025 | 1025 | // edit event link |
1026 | - if ( $event_name != '' ) { |
|
1027 | - $edit_event_url = self::add_query_args_and_nonce( array( 'action'=>'edit_event', 'EVT_ID'=>$EVT_ID ), EVENTS_ADMIN_URL ); |
|
1028 | - $edit_event_lnk = '<a href="'.$edit_event_url.'" title="' . esc_attr__( 'Edit ', 'event_espresso' ) . $event_name . '">' . __( 'Edit Event', 'event_espresso' ) . '</a>'; |
|
1029 | - $event_name .= ' <span class="admin-page-header-edit-lnk not-bold">' . $edit_event_lnk . '</span>' ; |
|
1026 | + if ($event_name != '') { |
|
1027 | + $edit_event_url = self::add_query_args_and_nonce(array('action'=>'edit_event', 'EVT_ID'=>$EVT_ID), EVENTS_ADMIN_URL); |
|
1028 | + $edit_event_lnk = '<a href="'.$edit_event_url.'" title="'.esc_attr__('Edit ', 'event_espresso').$event_name.'">'.__('Edit Event', 'event_espresso').'</a>'; |
|
1029 | + $event_name .= ' <span class="admin-page-header-edit-lnk not-bold">'.$edit_event_lnk.'</span>'; |
|
1030 | 1030 | } |
1031 | 1031 | |
1032 | - $back_2_reg_url = self::add_query_args_and_nonce( array( 'action'=>'default' ), REG_ADMIN_URL ); |
|
1033 | - $back_2_reg_lnk = '<a href="'.$back_2_reg_url.'" title="' . esc_attr__( 'click to return to viewing all registrations ', 'event_espresso' ) . '">« ' . __( 'Back to All Registrations', 'event_espresso' ) . '</a>'; |
|
1032 | + $back_2_reg_url = self::add_query_args_and_nonce(array('action'=>'default'), REG_ADMIN_URL); |
|
1033 | + $back_2_reg_lnk = '<a href="'.$back_2_reg_url.'" title="'.esc_attr__('click to return to viewing all registrations ', 'event_espresso').'">« '.__('Back to All Registrations', 'event_espresso').'</a>'; |
|
1034 | 1034 | |
1035 | 1035 | $this->_template_args['before_admin_page_content'] = ' |
1036 | 1036 | <div id="admin-page-header"> |
1037 | - <h1><span class="small-text not-bold">'.__( 'Event: ', 'event_espresso' ).'</span>'. $event_name .'</h1> |
|
1038 | - <h3><span class="small-text not-bold">'.__( 'Date: ', 'event_espresso' ). '</span>'. $event_date .'</h3> |
|
1039 | - <span class="admin-page-header-go-back-lnk not-bold">' . $back_2_reg_lnk . '</span> |
|
1037 | + <h1><span class="small-text not-bold">'.__('Event: ', 'event_espresso').'</span>'.$event_name.'</h1> |
|
1038 | + <h3><span class="small-text not-bold">'.__('Date: ', 'event_espresso').'</span>'.$event_date.'</h3> |
|
1039 | + <span class="admin-page-header-go-back-lnk not-bold">' . $back_2_reg_lnk.'</span> |
|
1040 | 1040 | </div> |
1041 | 1041 | '; |
1042 | 1042 | |
@@ -1074,7 +1074,7 @@ discard block |
||
1074 | 1074 | |
1075 | 1075 | $this->_set_registration_object(); |
1076 | 1076 | |
1077 | - if ( is_object( $this->_registration )) { |
|
1077 | + if (is_object($this->_registration)) { |
|
1078 | 1078 | $transaction = $this->_registration->transaction() ? $this->_registration->transaction() : EE_Transaction::new_instance(); |
1079 | 1079 | $this->_session = $transaction->session_data(); |
1080 | 1080 | |
@@ -1082,10 +1082,10 @@ discard block |
||
1082 | 1082 | |
1083 | 1083 | |
1084 | 1084 | $this->_template_args['reg_nmbr']['value'] = $this->_registration->ID(); |
1085 | - $this->_template_args['reg_nmbr']['label'] = __( 'Registration Number', 'event_espresso' ); |
|
1085 | + $this->_template_args['reg_nmbr']['label'] = __('Registration Number', 'event_espresso'); |
|
1086 | 1086 | |
1087 | - $this->_template_args['reg_datetime']['value'] = $this->_registration->pretty_date('l F j, Y','g:i:s a') ; |
|
1088 | - $this->_template_args['reg_datetime']['label'] = __( 'Date', 'event_espresso' ); |
|
1087 | + $this->_template_args['reg_datetime']['value'] = $this->_registration->pretty_date('l F j, Y', 'g:i:s a'); |
|
1088 | + $this->_template_args['reg_datetime']['label'] = __('Date', 'event_espresso'); |
|
1089 | 1089 | |
1090 | 1090 | $this->_template_args['grand_total'] = $transaction->total(); |
1091 | 1091 | |
@@ -1093,19 +1093,19 @@ discard block |
||
1093 | 1093 | // link back to overview |
1094 | 1094 | $this->_template_args['reg_overview_url'] = REG_ADMIN_URL; |
1095 | 1095 | $this->_template_args['registration'] = $this->_registration; |
1096 | - $this->_template_args['filtered_registrations_link'] = EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'default', 'event_id' => $event_id ), REG_ADMIN_URL ); |
|
1097 | - $this->_template_args['filtered_transactions_link'] = EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'default', 'EVT_ID' => $event_id, 'page' => 'espresso_transactions' ), admin_url( 'admin.php' ) ); |
|
1098 | - $this->_template_args['event_link'] = EE_Admin_Page::add_query_args_and_nonce( array( 'page' => 'espresso_events', 'action' => 'edit', 'post' => $event_id ), admin_url( 'admin.php' ) ); |
|
1096 | + $this->_template_args['filtered_registrations_link'] = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default', 'event_id' => $event_id), REG_ADMIN_URL); |
|
1097 | + $this->_template_args['filtered_transactions_link'] = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default', 'EVT_ID' => $event_id, 'page' => 'espresso_transactions'), admin_url('admin.php')); |
|
1098 | + $this->_template_args['event_link'] = EE_Admin_Page::add_query_args_and_nonce(array('page' => 'espresso_events', 'action' => 'edit', 'post' => $event_id), admin_url('admin.php')); |
|
1099 | 1099 | |
1100 | 1100 | //next and previous links |
1101 | - $next_reg = $this->_registration->next(null, array(), 'REG_ID' ); |
|
1102 | - $this->_template_args['next_registration'] = $next_reg ? $this->_next_link( EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'view_registration', '_REG_ID' => $next_reg['REG_ID'] ), REG_ADMIN_URL ), 'dashicons dashicons-arrow-right ee-icon-size-22' ) : ''; |
|
1103 | - $previous_reg = $this->_registration->previous( null, array(), 'REG_ID' ); |
|
1104 | - $this->_template_args['previous_registration'] = $previous_reg ? $this->_previous_link( EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'view_registration', '_REG_ID' => $previous_reg['REG_ID'] ), REG_ADMIN_URL ), 'dashicons dashicons-arrow-left ee-icon-size-22' ) : ''; |
|
1101 | + $next_reg = $this->_registration->next(null, array(), 'REG_ID'); |
|
1102 | + $this->_template_args['next_registration'] = $next_reg ? $this->_next_link(EE_Admin_Page::add_query_args_and_nonce(array('action' => 'view_registration', '_REG_ID' => $next_reg['REG_ID']), REG_ADMIN_URL), 'dashicons dashicons-arrow-right ee-icon-size-22') : ''; |
|
1103 | + $previous_reg = $this->_registration->previous(null, array(), 'REG_ID'); |
|
1104 | + $this->_template_args['previous_registration'] = $previous_reg ? $this->_previous_link(EE_Admin_Page::add_query_args_and_nonce(array('action' => 'view_registration', '_REG_ID' => $previous_reg['REG_ID']), REG_ADMIN_URL), 'dashicons dashicons-arrow-left ee-icon-size-22') : ''; |
|
1105 | 1105 | |
1106 | 1106 | // grab header |
1107 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_details_header.template.php'; |
|
1108 | - $this->_template_args['admin_page_header'] = EEH_Template::display_template( $template_path, $this->_template_args, TRUE ); |
|
1107 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_details_header.template.php'; |
|
1108 | + $this->_template_args['admin_page_header'] = EEH_Template::display_template($template_path, $this->_template_args, TRUE); |
|
1109 | 1109 | |
1110 | 1110 | } else { |
1111 | 1111 | |
@@ -1124,17 +1124,17 @@ discard block |
||
1124 | 1124 | |
1125 | 1125 | |
1126 | 1126 | protected function _registration_details_metaboxes() { |
1127 | - do_action( 'AHEE__Registrations_Admin_Page___registration_details_metabox__start', $this ); |
|
1127 | + do_action('AHEE__Registrations_Admin_Page___registration_details_metabox__start', $this); |
|
1128 | 1128 | $this->_set_registration_object(); |
1129 | 1129 | $attendee = $this->_registration instanceof EE_Registration ? $this->_registration->attendee() : null; |
1130 | - add_meta_box( 'edit-reg-status-mbox', __( 'Registration Status', 'event_espresso' ), array( $this, 'set_reg_status_buttons_metabox' ), $this->wp_page_slug, 'normal', 'high' ); |
|
1131 | - add_meta_box( 'edit-reg-details-mbox', __( 'Registration Details', 'event_espresso' ), array( $this, '_reg_details_meta_box' ), $this->wp_page_slug, 'normal', 'high' ); |
|
1132 | - if ( $attendee instanceof EE_Attendee && EE_Registry::instance()->CAP->current_user_can('ee_edit_registration', 'edit-reg-questions-mbox' ) ) { |
|
1133 | - add_meta_box( 'edit-reg-questions-mbox', __( 'Registration Form Answers', 'event_espresso' ), array( $this, '_reg_questions_meta_box' ), $this->wp_page_slug, 'normal', 'high' ); |
|
1130 | + add_meta_box('edit-reg-status-mbox', __('Registration Status', 'event_espresso'), array($this, 'set_reg_status_buttons_metabox'), $this->wp_page_slug, 'normal', 'high'); |
|
1131 | + add_meta_box('edit-reg-details-mbox', __('Registration Details', 'event_espresso'), array($this, '_reg_details_meta_box'), $this->wp_page_slug, 'normal', 'high'); |
|
1132 | + if ($attendee instanceof EE_Attendee && EE_Registry::instance()->CAP->current_user_can('ee_edit_registration', 'edit-reg-questions-mbox')) { |
|
1133 | + add_meta_box('edit-reg-questions-mbox', __('Registration Form Answers', 'event_espresso'), array($this, '_reg_questions_meta_box'), $this->wp_page_slug, 'normal', 'high'); |
|
1134 | 1134 | } |
1135 | - add_meta_box( 'edit-reg-registrant-mbox', __( 'Contact Details', 'event_espresso' ), array( $this, '_reg_registrant_side_meta_box' ), $this->wp_page_slug, 'side', 'high' ); |
|
1136 | - if ( $this->_registration->group_size() > 1 ) { |
|
1137 | - add_meta_box( 'edit-reg-attendees-mbox', __( 'Other Registrations in this Transaction', 'event_espresso' ), array( $this, '_reg_attendees_meta_box' ), $this->wp_page_slug, 'normal', 'high' ); |
|
1135 | + add_meta_box('edit-reg-registrant-mbox', __('Contact Details', 'event_espresso'), array($this, '_reg_registrant_side_meta_box'), $this->wp_page_slug, 'side', 'high'); |
|
1136 | + if ($this->_registration->group_size() > 1) { |
|
1137 | + add_meta_box('edit-reg-attendees-mbox', __('Other Registrations in this Transaction', 'event_espresso'), array($this, '_reg_attendees_meta_box'), $this->wp_page_slug, 'normal', 'high'); |
|
1138 | 1138 | } |
1139 | 1139 | } |
1140 | 1140 | |
@@ -1155,23 +1155,23 @@ discard block |
||
1155 | 1155 | |
1156 | 1156 | //let's get an array of all possible buttons that we can just reference |
1157 | 1157 | $status_buttons = $this->_get_reg_status_buttons(); |
1158 | - $template_args[ 'reg_status_value' ] = $this->_registration->pretty_status(); |
|
1159 | - $template_args[ 'reg_status_class' ] = 'status-' . $this->_registration->status_ID(); |
|
1158 | + $template_args['reg_status_value'] = $this->_registration->pretty_status(); |
|
1159 | + $template_args['reg_status_class'] = 'status-'.$this->_registration->status_ID(); |
|
1160 | 1160 | $template_args['attendee'] = $this->_registration->attendee(); |
1161 | - $template = REG_TEMPLATE_PATH . 'reg_status_change_buttons.template.php'; |
|
1162 | - if ( $this->_set_registration_object() ) { |
|
1161 | + $template = REG_TEMPLATE_PATH.'reg_status_change_buttons.template.php'; |
|
1162 | + if ($this->_set_registration_object()) { |
|
1163 | 1163 | $current_status = $this->_registration->status_ID(); |
1164 | - unset( $status_buttons[$current_status] ); |
|
1165 | - if ( $current_status != EEM_Registration::status_id_pending_payment && $is_complete ) { |
|
1166 | - unset( $status_buttons[EEM_Registration::status_id_pending_payment] ); |
|
1164 | + unset($status_buttons[$current_status]); |
|
1165 | + if ($current_status != EEM_Registration::status_id_pending_payment && $is_complete) { |
|
1166 | + unset($status_buttons[EEM_Registration::status_id_pending_payment]); |
|
1167 | 1167 | } |
1168 | - $template_args['status_buttons'] = implode( "\n", $status_buttons ); |
|
1168 | + $template_args['status_buttons'] = implode("\n", $status_buttons); |
|
1169 | 1169 | } |
1170 | 1170 | $template_args['form_url'] = REG_ADMIN_URL; |
1171 | 1171 | $template_args['REG_ID'] = $this->_registration->ID(); |
1172 | - $template_args['nonce'] = wp_nonce_field( 'change_reg_status_nonce', 'change_reg_status_nonce', FALSE, FALSE ); |
|
1172 | + $template_args['nonce'] = wp_nonce_field('change_reg_status_nonce', 'change_reg_status_nonce', FALSE, FALSE); |
|
1173 | 1173 | |
1174 | - EEH_Template::display_template( $template, $template_args ); |
|
1174 | + EEH_Template::display_template($template, $template_args); |
|
1175 | 1175 | |
1176 | 1176 | } |
1177 | 1177 | |
@@ -1185,11 +1185,11 @@ discard block |
||
1185 | 1185 | private function _get_reg_status_buttons() { |
1186 | 1186 | |
1187 | 1187 | $buttons = array( |
1188 | - EEM_Registration::status_id_approved => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-' . EEM_Registration::status_id_approved . '" value="' . EEH_Template::pretty_status( EEM_Registration::status_id_approved, FALSE, 'sentence' ) . '">', |
|
1189 | - EEM_Registration::status_id_pending_payment => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-' . EEM_Registration::status_id_pending_payment . '" value="' . EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, FALSE, 'sentence' ) . '">', |
|
1190 | - EEM_Registration::status_id_not_approved => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-' . EEM_Registration::status_id_not_approved . '" value="' . EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, FALSE, 'sentence' ) . '">', |
|
1191 | - EEM_Registration::status_id_declined => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-' . EEM_Registration::status_id_declined . '" value="' . EEH_Template::pretty_status( EEM_Registration::status_id_declined, FALSE, 'sentence' ) . '">', |
|
1192 | - EEM_Registration::status_id_cancelled =>'<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-' . EEM_Registration::status_id_cancelled . '" value="' . EEH_Template::pretty_status( EEM_Registration::status_id_cancelled, FALSE, 'sentence' ) . '">', |
|
1188 | + EEM_Registration::status_id_approved => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-'.EEM_Registration::status_id_approved.'" value="'.EEH_Template::pretty_status(EEM_Registration::status_id_approved, FALSE, 'sentence').'">', |
|
1189 | + EEM_Registration::status_id_pending_payment => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-'.EEM_Registration::status_id_pending_payment.'" value="'.EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, FALSE, 'sentence').'">', |
|
1190 | + EEM_Registration::status_id_not_approved => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-'.EEM_Registration::status_id_not_approved.'" value="'.EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, FALSE, 'sentence').'">', |
|
1191 | + EEM_Registration::status_id_declined => '<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-'.EEM_Registration::status_id_declined.'" value="'.EEH_Template::pretty_status(EEM_Registration::status_id_declined, FALSE, 'sentence').'">', |
|
1192 | + EEM_Registration::status_id_cancelled =>'<input type="submit" name="_reg_status_id" class="button-secondary ee-status-strip reg-status-'.EEM_Registration::status_id_cancelled.'" value="'.EEH_Template::pretty_status(EEM_Registration::status_id_cancelled, FALSE, 'sentence').'">', |
|
1193 | 1193 | ); |
1194 | 1194 | return $buttons; |
1195 | 1195 | } |
@@ -1203,13 +1203,13 @@ discard block |
||
1203 | 1203 | * |
1204 | 1204 | * @return array (array with reg_id(s) updated and whether update was successful. |
1205 | 1205 | */ |
1206 | - protected function _set_registration_status_from_request( $status = false, $notify = false ) { |
|
1207 | - $REG_ID = isset( $this->_req_data['_REG_ID'] ) ? (array) $this->_req_data['_REG_ID'] : array(); |
|
1206 | + protected function _set_registration_status_from_request($status = false, $notify = false) { |
|
1207 | + $REG_ID = isset($this->_req_data['_REG_ID']) ? (array) $this->_req_data['_REG_ID'] : array(); |
|
1208 | 1208 | |
1209 | - $success = $this->_set_registration_status( $REG_ID, $status ); |
|
1209 | + $success = $this->_set_registration_status($REG_ID, $status); |
|
1210 | 1210 | |
1211 | 1211 | //notify? |
1212 | - if ( $success && $notify && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'espresso_registrations_resend_registration' ) ) { |
|
1212 | + if ($success && $notify && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'espresso_registrations_resend_registration')) { |
|
1213 | 1213 | $this->_process_resend_registration(); |
1214 | 1214 | } |
1215 | 1215 | |
@@ -1227,19 +1227,19 @@ discard block |
||
1227 | 1227 | * @param bool $status |
1228 | 1228 | * @return array (an array with 'success' key representing whether status change was successful, and 'REG_ID' as the array of updated registrations). |
1229 | 1229 | */ |
1230 | - protected function _set_registration_status( $REG_ID, $status = false ) { |
|
1230 | + protected function _set_registration_status($REG_ID, $status = false) { |
|
1231 | 1231 | $success = true; |
1232 | 1232 | // set default status if none is passed |
1233 | 1233 | $status = $status ? $status : EEM_Registration::status_id_pending_payment; |
1234 | 1234 | |
1235 | 1235 | //typecast and sanitize reg_id |
1236 | - $reg_ids = array_filter( (array) $REG_ID, 'absint' ); |
|
1236 | + $reg_ids = array_filter((array) $REG_ID, 'absint'); |
|
1237 | 1237 | |
1238 | 1238 | //loop through REG_ID's and change status |
1239 | - foreach ( $reg_ids as $r_id ) { |
|
1240 | - $registration = EEM_Registration::instance()->get_one_by_ID( $r_id ); |
|
1241 | - if ( $registration instanceof EE_Registration ) { |
|
1242 | - $registration->set_status( $status ); |
|
1239 | + foreach ($reg_ids as $r_id) { |
|
1240 | + $registration = EEM_Registration::instance()->get_one_by_ID($r_id); |
|
1241 | + if ($registration instanceof EE_Registration) { |
|
1242 | + $registration->set_status($status); |
|
1243 | 1243 | $result = $registration->save(); |
1244 | 1244 | |
1245 | 1245 | //verifying explicit fails because update *may* just return 0 for 0 rows affected |
@@ -1251,7 +1251,7 @@ discard block |
||
1251 | 1251 | $this->_req_data['_REG_ID'] = $reg_ids; |
1252 | 1252 | |
1253 | 1253 | //return $success and processed registrations |
1254 | - return array( 'REG_ID' => $reg_ids, 'success' => $success ); |
|
1254 | + return array('REG_ID' => $reg_ids, 'success' => $success); |
|
1255 | 1255 | } |
1256 | 1256 | |
1257 | 1257 | |
@@ -1263,37 +1263,37 @@ discard block |
||
1263 | 1263 | * @param bool $notify indicates whether the _set_registration_status_from_request does notifications or not. |
1264 | 1264 | * @return void |
1265 | 1265 | */ |
1266 | - protected function _reg_status_change_return( $STS_ID, $notify = false ) { |
|
1266 | + protected function _reg_status_change_return($STS_ID, $notify = false) { |
|
1267 | 1267 | |
1268 | - $result = ! empty( $STS_ID ) ? $this->_set_registration_status_from_request( $STS_ID, $notify ) : array( 'success' => false ); |
|
1268 | + $result = ! empty($STS_ID) ? $this->_set_registration_status_from_request($STS_ID, $notify) : array('success' => false); |
|
1269 | 1269 | |
1270 | 1270 | |
1271 | - $success = isset( $result['success'] ) && $result['success']; |
|
1271 | + $success = isset($result['success']) && $result['success']; |
|
1272 | 1272 | |
1273 | 1273 | //setup success message |
1274 | - if ( $success ) { |
|
1275 | - $msg = is_array( $result['REG_ID'] ) && count( $result['REG_ID'] ) > 1 ? sprintf( __('Registration status has been set to %s', 'event_espresso'), EEH_Template::pretty_status($STS_ID, false, 'lower' ) ) : sprintf( __('Registrations have been set to %s.', 'event_espresso'), EEH_Template::pretty_status($STS_ID, false, 'lower' ) ) ; |
|
1276 | - EE_Error::add_success( $msg ); |
|
1274 | + if ($success) { |
|
1275 | + $msg = is_array($result['REG_ID']) && count($result['REG_ID']) > 1 ? sprintf(__('Registration status has been set to %s', 'event_espresso'), EEH_Template::pretty_status($STS_ID, false, 'lower')) : sprintf(__('Registrations have been set to %s.', 'event_espresso'), EEH_Template::pretty_status($STS_ID, false, 'lower')); |
|
1276 | + EE_Error::add_success($msg); |
|
1277 | 1277 | } else { |
1278 | - EE_Error::add_error( __('Something went wrong, and the status was not changed', 'event_espresso' ), __FILE__, __LINE__, __FUNCTION__ ); |
|
1278 | + EE_Error::add_error(__('Something went wrong, and the status was not changed', 'event_espresso'), __FILE__, __LINE__, __FUNCTION__); |
|
1279 | 1279 | } |
1280 | 1280 | |
1281 | - $route = isset( $this->_req_data['return'] ) && $this->_req_data['return'] == 'view_registration' ? array( 'action' => 'view_registration', '_REG_ID' => $result['REG_ID'][0] ) : array( 'action' => 'default' ); |
|
1281 | + $route = isset($this->_req_data['return']) && $this->_req_data['return'] == 'view_registration' ? array('action' => 'view_registration', '_REG_ID' => $result['REG_ID'][0]) : array('action' => 'default'); |
|
1282 | 1282 | //unset nonces |
1283 | - foreach ( $this->_req_data as $ref => $value ) { |
|
1284 | - if ( strpos( $ref, 'nonce' ) !== false ) { |
|
1285 | - unset( $this->_req_data[$ref] ); |
|
1283 | + foreach ($this->_req_data as $ref => $value) { |
|
1284 | + if (strpos($ref, 'nonce') !== false) { |
|
1285 | + unset($this->_req_data[$ref]); |
|
1286 | 1286 | continue; |
1287 | 1287 | } |
1288 | 1288 | |
1289 | - $value = is_array( $value ) ? array_map( 'urlencode', $value ) : urlencode( $value ); |
|
1289 | + $value = is_array($value) ? array_map('urlencode', $value) : urlencode($value); |
|
1290 | 1290 | $this->_req_data[$ref] = $value; |
1291 | 1291 | } |
1292 | 1292 | |
1293 | 1293 | //merge request vars so that the reloaded list table contains any existing filter query params |
1294 | - $route = array_merge( $this->_req_data, $route ); |
|
1294 | + $route = array_merge($this->_req_data, $route); |
|
1295 | 1295 | |
1296 | - $this->_redirect_after_action( $success, '', '', $route, true ); |
|
1296 | + $this->_redirect_after_action($success, '', '', $route, true); |
|
1297 | 1297 | |
1298 | 1298 | } |
1299 | 1299 | |
@@ -1306,29 +1306,29 @@ discard block |
||
1306 | 1306 | protected function _change_reg_status() { |
1307 | 1307 | $this->_req_data['return'] = 'view_registration'; |
1308 | 1308 | //set notify based on whether the send notifications toggle is set or not |
1309 | - $notify = ! empty( $this->_req_data['txn_reg_status_change']['send_notifications'] ); |
|
1310 | - $this->_req_data[ '_reg_status_id' ] = isset( $this->_req_data[ '_reg_status_id' ] ) ? $this->_req_data[ '_reg_status_id' ] : ''; |
|
1309 | + $notify = ! empty($this->_req_data['txn_reg_status_change']['send_notifications']); |
|
1310 | + $this->_req_data['_reg_status_id'] = isset($this->_req_data['_reg_status_id']) ? $this->_req_data['_reg_status_id'] : ''; |
|
1311 | 1311 | |
1312 | - switch ( $this->_req_data['_reg_status_id'] ) { |
|
1313 | - case EEH_Template::pretty_status( EEM_Registration::status_id_approved, false, 'sentence' ) : |
|
1314 | - $this->approve_registration( $notify ); |
|
1312 | + switch ($this->_req_data['_reg_status_id']) { |
|
1313 | + case EEH_Template::pretty_status(EEM_Registration::status_id_approved, false, 'sentence') : |
|
1314 | + $this->approve_registration($notify); |
|
1315 | 1315 | break; |
1316 | - case EEH_Template::pretty_status( EEM_Registration::status_id_pending_payment, false, 'sentence' ) : |
|
1317 | - $this->pending_registration( $notify ); |
|
1316 | + case EEH_Template::pretty_status(EEM_Registration::status_id_pending_payment, false, 'sentence') : |
|
1317 | + $this->pending_registration($notify); |
|
1318 | 1318 | break; |
1319 | - case EEH_Template::pretty_status( EEM_Registration::status_id_not_approved, false, 'sentence' ) : |
|
1320 | - $this->not_approve_registration( $notify ); |
|
1319 | + case EEH_Template::pretty_status(EEM_Registration::status_id_not_approved, false, 'sentence') : |
|
1320 | + $this->not_approve_registration($notify); |
|
1321 | 1321 | break; |
1322 | - case EEH_Template::pretty_status( EEM_Registration::status_id_declined, false, 'sentence' ) : |
|
1323 | - $this->decline_registration( $notify ); |
|
1322 | + case EEH_Template::pretty_status(EEM_Registration::status_id_declined, false, 'sentence') : |
|
1323 | + $this->decline_registration($notify); |
|
1324 | 1324 | break; |
1325 | - case EEH_Template::pretty_status( EEM_Registration::status_id_cancelled, false, 'sentence' ) : |
|
1326 | - $this->cancel_registration( $notify ); |
|
1325 | + case EEH_Template::pretty_status(EEM_Registration::status_id_cancelled, false, 'sentence') : |
|
1326 | + $this->cancel_registration($notify); |
|
1327 | 1327 | break; |
1328 | 1328 | default : |
1329 | 1329 | $result['success'] = false; |
1330 | - unset( $this->_req_data['return'] ); |
|
1331 | - $this->_reg_status_change_return( '', false ); |
|
1330 | + unset($this->_req_data['return']); |
|
1331 | + $this->_reg_status_change_return('', false); |
|
1332 | 1332 | break; |
1333 | 1333 | } |
1334 | 1334 | } |
@@ -1341,8 +1341,8 @@ discard block |
||
1341 | 1341 | * @param bool $notify whether or not to notify the registrant about their approval. |
1342 | 1342 | * @return void |
1343 | 1343 | */ |
1344 | - protected function approve_registration( $notify = false ) { |
|
1345 | - $this->_reg_status_change_return( EEM_Registration::status_id_approved, $notify ); |
|
1344 | + protected function approve_registration($notify = false) { |
|
1345 | + $this->_reg_status_change_return(EEM_Registration::status_id_approved, $notify); |
|
1346 | 1346 | } |
1347 | 1347 | |
1348 | 1348 | |
@@ -1354,8 +1354,8 @@ discard block |
||
1354 | 1354 | * @param bool $notify whether or not to notify the registrant about their approval. |
1355 | 1355 | * @return void |
1356 | 1356 | */ |
1357 | - protected function decline_registration( $notify = false ) { |
|
1358 | - $this->_reg_status_change_return( EEM_Registration::status_id_declined, $notify ); |
|
1357 | + protected function decline_registration($notify = false) { |
|
1358 | + $this->_reg_status_change_return(EEM_Registration::status_id_declined, $notify); |
|
1359 | 1359 | } |
1360 | 1360 | |
1361 | 1361 | |
@@ -1367,8 +1367,8 @@ discard block |
||
1367 | 1367 | * @param bool $notify whether or not to notify the registrant about their approval. |
1368 | 1368 | * @return void |
1369 | 1369 | */ |
1370 | - protected function cancel_registration( $notify = false ) { |
|
1371 | - $this->_reg_status_change_return( EEM_Registration::status_id_cancelled, $notify ); |
|
1370 | + protected function cancel_registration($notify = false) { |
|
1371 | + $this->_reg_status_change_return(EEM_Registration::status_id_cancelled, $notify); |
|
1372 | 1372 | } |
1373 | 1373 | |
1374 | 1374 | |
@@ -1381,8 +1381,8 @@ discard block |
||
1381 | 1381 | * @param bool $notify whether or not to notify the registrant about their approval. |
1382 | 1382 | * @return void |
1383 | 1383 | */ |
1384 | - protected function not_approve_registration( $notify = false ) { |
|
1385 | - $this->_reg_status_change_return( EEM_Registration::status_id_not_approved, $notify ); |
|
1384 | + protected function not_approve_registration($notify = false) { |
|
1385 | + $this->_reg_status_change_return(EEM_Registration::status_id_not_approved, $notify); |
|
1386 | 1386 | } |
1387 | 1387 | |
1388 | 1388 | |
@@ -1393,8 +1393,8 @@ discard block |
||
1393 | 1393 | * @param bool $notify whether or not to notify the registrant about their approval. |
1394 | 1394 | * @return void |
1395 | 1395 | */ |
1396 | - protected function pending_registration( $notify = false ) { |
|
1397 | - $this->_reg_status_change_return( EEM_Registration::status_id_pending_payment, $notify ); |
|
1396 | + protected function pending_registration($notify = false) { |
|
1397 | + $this->_reg_status_change_return(EEM_Registration::status_id_pending_payment, $notify); |
|
1398 | 1398 | } |
1399 | 1399 | |
1400 | 1400 | |
@@ -1408,75 +1408,75 @@ discard block |
||
1408 | 1408 | public function _reg_details_meta_box() { |
1409 | 1409 | EEH_Autoloader::register_line_item_display_autoloaders(); |
1410 | 1410 | EEH_Autoloader::register_line_item_filter_autoloaders(); |
1411 | - EE_Registry::instance()->load_Helper( 'Line_Item' ); |
|
1411 | + EE_Registry::instance()->load_Helper('Line_Item'); |
|
1412 | 1412 | $transaction = $this->_registration->transaction() ? $this->_registration->transaction() : EE_Transaction::new_instance(); |
1413 | 1413 | $this->_session = $transaction->session_data(); |
1414 | 1414 | |
1415 | 1415 | $filters = new EE_Line_Item_Filter_Collection(); |
1416 | - $filters->add( new EE_Single_Registration_Line_Item_Filter( $this->_registration ) ); |
|
1417 | - $filters->add( new EE_Non_Zero_Line_Item_Filter() ); |
|
1418 | - $line_item_filter_processor = new EE_Line_Item_Filter_Processor( $filters, $transaction->total_line_item() ); |
|
1416 | + $filters->add(new EE_Single_Registration_Line_Item_Filter($this->_registration)); |
|
1417 | + $filters->add(new EE_Non_Zero_Line_Item_Filter()); |
|
1418 | + $line_item_filter_processor = new EE_Line_Item_Filter_Processor($filters, $transaction->total_line_item()); |
|
1419 | 1419 | $filtered_line_item_tree = $line_item_filter_processor->process(); |
1420 | 1420 | |
1421 | 1421 | $this->_template_args['REG_ID'] = $this->_registration->ID(); |
1422 | - $line_item_display = new EE_Line_Item_Display( 'reg_admin_table', 'EE_Admin_Table_Registration_Line_Item_Display_Strategy' ); |
|
1423 | - $this->_template_args['line_item_table'] = $line_item_display->display_line_item( $filtered_line_item_tree, array( 'EE_Registration' => $this->_registration ) ); |
|
1422 | + $line_item_display = new EE_Line_Item_Display('reg_admin_table', 'EE_Admin_Table_Registration_Line_Item_Display_Strategy'); |
|
1423 | + $this->_template_args['line_item_table'] = $line_item_display->display_line_item($filtered_line_item_tree, array('EE_Registration' => $this->_registration)); |
|
1424 | 1424 | |
1425 | 1425 | |
1426 | 1426 | $attendee = $this->_registration->attendee(); |
1427 | 1427 | |
1428 | 1428 | |
1429 | - $this->_template_args['view_transaction_button'] = EE_Registry::instance()->CAP->current_user_can( 'ee_read_transaction', 'espresso_transactions_view_transaction' ) ?EEH_Template::get_button_or_link( EE_Admin_Page::add_query_args_and_nonce( array('action'=> 'view_transaction', 'TXN_ID' => $transaction->ID() ), TXN_ADMIN_URL ), __(' View Transaction'), 'button secondary-button right', 'dashicons dashicons-cart' ) : ''; |
|
1430 | - $this->_template_args['resend_registration_button'] = $attendee instanceof EE_Attendee && EE_Registry::instance()->CAP->current_user_can( 'ee_send_message', 'espresso_registrations_resend_registration' ) ?EEH_Template::get_button_or_link( EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'resend_registration', '_REG_ID'=>$this->_registration->ID(), 'redirect_to' => 'view_registration' ), REG_ADMIN_URL ), __(' Resend Registration'), 'button secondary-button right', 'dashicons dashicons-email-alt' ) : ''; |
|
1429 | + $this->_template_args['view_transaction_button'] = EE_Registry::instance()->CAP->current_user_can('ee_read_transaction', 'espresso_transactions_view_transaction') ? EEH_Template::get_button_or_link(EE_Admin_Page::add_query_args_and_nonce(array('action'=> 'view_transaction', 'TXN_ID' => $transaction->ID()), TXN_ADMIN_URL), __(' View Transaction'), 'button secondary-button right', 'dashicons dashicons-cart') : ''; |
|
1430 | + $this->_template_args['resend_registration_button'] = $attendee instanceof EE_Attendee && EE_Registry::instance()->CAP->current_user_can('ee_send_message', 'espresso_registrations_resend_registration') ? EEH_Template::get_button_or_link(EE_Admin_Page::add_query_args_and_nonce(array('action'=>'resend_registration', '_REG_ID'=>$this->_registration->ID(), 'redirect_to' => 'view_registration'), REG_ADMIN_URL), __(' Resend Registration'), 'button secondary-button right', 'dashicons dashicons-email-alt') : ''; |
|
1431 | 1431 | |
1432 | 1432 | |
1433 | 1433 | $this->_template_args['currency_sign'] = EE_Registry::instance()->CFG->currency->sign; |
1434 | - $payment = $transaction->get_first_related( 'Payment' ); |
|
1434 | + $payment = $transaction->get_first_related('Payment'); |
|
1435 | 1435 | $payment = ! $payment instanceof EE_Payment ? EE_Payment::new_instance() : $payment; |
1436 | - $payment_method = $payment->get_first_related( 'Payment_Method' ); |
|
1436 | + $payment_method = $payment->get_first_related('Payment_Method'); |
|
1437 | 1437 | $payment_method = ! $payment_method instanceof EE_Payment_Method ? EE_Payment_Method::new_instance() : $payment_method; |
1438 | - $reg_status_class = 'status-' . $this->_registration->status_ID(); |
|
1438 | + $reg_status_class = 'status-'.$this->_registration->status_ID(); |
|
1439 | 1439 | $reg_details = array( |
1440 | 1440 | 'payment_method' => $payment_method->name(), |
1441 | 1441 | 'response_msg' => $payment->gateway_response(), |
1442 | - 'registration_id' => $this->_registration->get( 'REG_code' ), |
|
1442 | + 'registration_id' => $this->_registration->get('REG_code'), |
|
1443 | 1443 | 'registration_session' => $this->_registration->session_ID(), |
1444 | - 'ip_address' => isset( $this->_session['ip_address'] ) ? $this->_session['ip_address'] : '', |
|
1445 | - 'user_agent' => isset( $this->_session['user_agent'] ) ? $this->_session['user_agent'] : '', |
|
1444 | + 'ip_address' => isset($this->_session['ip_address']) ? $this->_session['ip_address'] : '', |
|
1445 | + 'user_agent' => isset($this->_session['user_agent']) ? $this->_session['user_agent'] : '', |
|
1446 | 1446 | ); |
1447 | 1447 | |
1448 | 1448 | |
1449 | - if ( isset( $reg_details['registration_id'] )) { |
|
1449 | + if (isset($reg_details['registration_id'])) { |
|
1450 | 1450 | $this->_template_args['reg_details']['registration_id']['value'] = $reg_details['registration_id']; |
1451 | - $this->_template_args['reg_details']['registration_id']['label'] = __( 'Registration ID', 'event_espresso' ); |
|
1451 | + $this->_template_args['reg_details']['registration_id']['label'] = __('Registration ID', 'event_espresso'); |
|
1452 | 1452 | $this->_template_args['reg_details']['registration_id']['class'] = 'regular-text'; |
1453 | 1453 | } |
1454 | 1454 | |
1455 | - if ( isset( $reg_details['payment_method'] ) ) { |
|
1455 | + if (isset($reg_details['payment_method'])) { |
|
1456 | 1456 | $this->_template_args['reg_details']['payment_method']['value'] = $reg_details['payment_method']; |
1457 | - $this->_template_args['reg_details']['payment_method']['label'] = __( 'Most Recent Payment Method', 'event_espresso' ); |
|
1457 | + $this->_template_args['reg_details']['payment_method']['label'] = __('Most Recent Payment Method', 'event_espresso'); |
|
1458 | 1458 | $this->_template_args['reg_details']['payment_method']['class'] = 'regular-text'; |
1459 | 1459 | $this->_template_args['reg_details']['response_msg']['value'] = $reg_details['response_msg']; |
1460 | - $this->_template_args['reg_details']['response_msg']['label'] = __( 'Payment method response', 'event_espresso' ); |
|
1460 | + $this->_template_args['reg_details']['response_msg']['label'] = __('Payment method response', 'event_espresso'); |
|
1461 | 1461 | $this->_template_args['reg_details']['response_msg']['class'] = 'regular-text'; |
1462 | 1462 | } |
1463 | 1463 | |
1464 | 1464 | $this->_template_args['reg_details']['registration_session']['value'] = $reg_details['registration_session']; |
1465 | - $this->_template_args['reg_details']['registration_session']['label'] = __( 'Registration Session', 'event_espresso' ); |
|
1465 | + $this->_template_args['reg_details']['registration_session']['label'] = __('Registration Session', 'event_espresso'); |
|
1466 | 1466 | $this->_template_args['reg_details']['registration_session']['class'] = 'regular-text'; |
1467 | 1467 | |
1468 | 1468 | $this->_template_args['reg_details']['ip_address']['value'] = $reg_details['ip_address']; |
1469 | - $this->_template_args['reg_details']['ip_address']['label'] = __( 'Registration placed from IP', 'event_espresso' ); |
|
1469 | + $this->_template_args['reg_details']['ip_address']['label'] = __('Registration placed from IP', 'event_espresso'); |
|
1470 | 1470 | $this->_template_args['reg_details']['ip_address']['class'] = 'regular-text'; |
1471 | 1471 | |
1472 | 1472 | $this->_template_args['reg_details']['user_agent']['value'] = $reg_details['user_agent']; |
1473 | - $this->_template_args['reg_details']['user_agent']['label'] = __( 'Registrant User Agent', 'event_espresso' ); |
|
1473 | + $this->_template_args['reg_details']['user_agent']['label'] = __('Registrant User Agent', 'event_espresso'); |
|
1474 | 1474 | $this->_template_args['reg_details']['user_agent']['class'] = 'large-text'; |
1475 | 1475 | |
1476 | - $this->_template_args['event_link'] = EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'default', 'event_id' => $this->_registration->event_ID()), REG_ADMIN_URL ); |
|
1476 | + $this->_template_args['event_link'] = EE_Admin_Page::add_query_args_and_nonce(array('action' => 'default', 'event_id' => $this->_registration->event_ID()), REG_ADMIN_URL); |
|
1477 | 1477 | |
1478 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_details_main_meta_box_reg_details.template.php'; |
|
1479 | - echo EEH_Template::display_template( $template_path, $this->_template_args, TRUE ); |
|
1478 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_details_main_meta_box_reg_details.template.php'; |
|
1479 | + echo EEH_Template::display_template($template_path, $this->_template_args, TRUE); |
|
1480 | 1480 | |
1481 | 1481 | } |
1482 | 1482 | |
@@ -1490,14 +1490,14 @@ discard block |
||
1490 | 1490 | */ |
1491 | 1491 | public function _reg_questions_meta_box() { |
1492 | 1492 | //allow someone to override this method entirely |
1493 | - if( apply_filters( 'FHEE__Registrations_Admin_Page___reg_questions_meta_box__do_default', true, $this, $this->_registration ) ) { |
|
1494 | - $form = $this->_get_reg_custom_questions_form( $this->_registration->ID() ); |
|
1495 | - $this->_template_args[ 'att_questions' ] = count( $form->subforms() ) > 0 ? $form->get_html_and_js() : ''; |
|
1493 | + if (apply_filters('FHEE__Registrations_Admin_Page___reg_questions_meta_box__do_default', true, $this, $this->_registration)) { |
|
1494 | + $form = $this->_get_reg_custom_questions_form($this->_registration->ID()); |
|
1495 | + $this->_template_args['att_questions'] = count($form->subforms()) > 0 ? $form->get_html_and_js() : ''; |
|
1496 | 1496 | $this->_template_args['reg_questions_form_action'] = 'edit_registration'; |
1497 | 1497 | $this->_template_args['REG_ID'] = $this->_registration->ID(); |
1498 | 1498 | |
1499 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_details_main_meta_box_reg_questions.template.php'; |
|
1500 | - echo EEH_Template::display_template( $template_path, $this->_template_args, TRUE ); |
|
1499 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_details_main_meta_box_reg_questions.template.php'; |
|
1500 | + echo EEH_Template::display_template($template_path, $this->_template_args, TRUE); |
|
1501 | 1501 | } |
1502 | 1502 | } |
1503 | 1503 | |
@@ -1511,12 +1511,12 @@ discard block |
||
1511 | 1511 | * @param string $output |
1512 | 1512 | * @return string |
1513 | 1513 | */ |
1514 | - public function form_before_question_group( $output ) { |
|
1514 | + public function form_before_question_group($output) { |
|
1515 | 1515 | EE_Error::doing_it_wrong( |
1516 | - __CLASS__ . '::' . __FUNCTION__, |
|
1517 | - __( 'This method would have been protected but was used on a filter callback' |
|
1516 | + __CLASS__.'::'.__FUNCTION__, |
|
1517 | + __('This method would have been protected but was used on a filter callback' |
|
1518 | 1518 | . 'so needed to be public. Please discontinue usage as it will be removed soon.', |
1519 | - 'event_espresso' ), |
|
1519 | + 'event_espresso'), |
|
1520 | 1520 | '4.8.32.rc.000' |
1521 | 1521 | ); |
1522 | 1522 | return ' |
@@ -1535,20 +1535,20 @@ discard block |
||
1535 | 1535 | * @param string $output |
1536 | 1536 | * @return string |
1537 | 1537 | */ |
1538 | - public function form_after_question_group( $output ) { |
|
1538 | + public function form_after_question_group($output) { |
|
1539 | 1539 | EE_Error::doing_it_wrong( |
1540 | - __CLASS__ . '::' . __FUNCTION__, |
|
1541 | - __( 'This method would have been protected but was used on a filter callback' |
|
1540 | + __CLASS__.'::'.__FUNCTION__, |
|
1541 | + __('This method would have been protected but was used on a filter callback' |
|
1542 | 1542 | . 'so needed to be public. Please discontinue usage as it will be removed soon.', |
1543 | - 'event_espresso' ), |
|
1543 | + 'event_espresso'), |
|
1544 | 1544 | '4.8.32.rc.000' |
1545 | 1545 | ); |
1546 | 1546 | return ' |
1547 | 1547 | <tr class="hide-if-no-js"> |
1548 | 1548 | <th> </th> |
1549 | 1549 | <td class="reg-admin-edit-attendee-question-td"> |
1550 | - <a class="reg-admin-edit-attendee-question-lnk" href="#" title="' . esc_attr__( 'click to edit question', 'event_espresso' ) . '"> |
|
1551 | - <span class="reg-admin-edit-question-group-spn lt-grey-txt">' . __( 'edit the above question group', 'event_espresso' ) . '</span> |
|
1550 | + <a class="reg-admin-edit-attendee-question-lnk" href="#" title="' . esc_attr__('click to edit question', 'event_espresso').'"> |
|
1551 | + <span class="reg-admin-edit-question-group-spn lt-grey-txt">' . __('edit the above question group', 'event_espresso').'</span> |
|
1552 | 1552 | <div class="dashicons dashicons-edit"></div> |
1553 | 1553 | </a> |
1554 | 1554 | </td> |
@@ -1568,18 +1568,18 @@ discard block |
||
1568 | 1568 | * @param string $label |
1569 | 1569 | * @return string |
1570 | 1570 | */ |
1571 | - public function form_form_field_label_wrap( $label ) { |
|
1571 | + public function form_form_field_label_wrap($label) { |
|
1572 | 1572 | EE_Error::doing_it_wrong( |
1573 | - __CLASS__ . '::' . __FUNCTION__, |
|
1574 | - __( 'This method would have been protected but was used on a filter callback' |
|
1573 | + __CLASS__.'::'.__FUNCTION__, |
|
1574 | + __('This method would have been protected but was used on a filter callback' |
|
1575 | 1575 | . 'so needed to be public. Please discontinue usage as it will be removed soon.', |
1576 | - 'event_espresso' ), |
|
1576 | + 'event_espresso'), |
|
1577 | 1577 | '4.8.32.rc.000' |
1578 | 1578 | ); |
1579 | 1579 | return ' |
1580 | 1580 | <tr> |
1581 | 1581 | <th> |
1582 | - ' . $label . ' |
|
1582 | + ' . $label.' |
|
1583 | 1583 | </th>'; |
1584 | 1584 | } |
1585 | 1585 | |
@@ -1593,17 +1593,17 @@ discard block |
||
1593 | 1593 | * @param string $input |
1594 | 1594 | * @return string |
1595 | 1595 | */ |
1596 | - public function form_form_field_input__wrap( $input ) { |
|
1596 | + public function form_form_field_input__wrap($input) { |
|
1597 | 1597 | EE_Error::doing_it_wrong( |
1598 | - __CLASS__ . '::' . __FUNCTION__, |
|
1599 | - __( 'This method would have been protected but was used on a filter callback' |
|
1598 | + __CLASS__.'::'.__FUNCTION__, |
|
1599 | + __('This method would have been protected but was used on a filter callback' |
|
1600 | 1600 | . 'so needed to be public. Please discontinue usage as it will be removed soon.', |
1601 | - 'event_espresso' ), |
|
1601 | + 'event_espresso'), |
|
1602 | 1602 | '4.8.32.rc.000' |
1603 | 1603 | ); |
1604 | 1604 | return ' |
1605 | 1605 | <td class="reg-admin-attendee-questions-input-td disabled-input"> |
1606 | - ' . $input . ' |
|
1606 | + ' . $input.' |
|
1607 | 1607 | </td> |
1608 | 1608 | </tr>'; |
1609 | 1609 | } |
@@ -1617,14 +1617,14 @@ discard block |
||
1617 | 1617 | * @return void |
1618 | 1618 | */ |
1619 | 1619 | protected function _update_attendee_registration_form() { |
1620 | - do_action( 'AHEE__Registrations_Admin_Page___update_attendee_registration_form__start', $this ); |
|
1621 | - if( $_SERVER['REQUEST_METHOD'] == 'POST'){ |
|
1622 | - $REG_ID = isset( $this->_req_data['_REG_ID'] ) ? absint( $this->_req_data['_REG_ID'] ) : FALSE; |
|
1623 | - $success = $this->_save_reg_custom_questions_form( $REG_ID ); |
|
1624 | - if( $success ) { |
|
1620 | + do_action('AHEE__Registrations_Admin_Page___update_attendee_registration_form__start', $this); |
|
1621 | + if ($_SERVER['REQUEST_METHOD'] == 'POST') { |
|
1622 | + $REG_ID = isset($this->_req_data['_REG_ID']) ? absint($this->_req_data['_REG_ID']) : FALSE; |
|
1623 | + $success = $this->_save_reg_custom_questions_form($REG_ID); |
|
1624 | + if ($success) { |
|
1625 | 1625 | $what = __('Registration Form', 'event_espresso'); |
1626 | - $route = $REG_ID ? array( 'action' => 'view_registration', '_REG_ID' => $REG_ID ) : array( 'action' => 'default' ); |
|
1627 | - $this->_redirect_after_action( $success, $what, __('updated', 'event_espresso'), $route ); |
|
1626 | + $route = $REG_ID ? array('action' => 'view_registration', '_REG_ID' => $REG_ID) : array('action' => 'default'); |
|
1627 | + $this->_redirect_after_action($success, $what, __('updated', 'event_espresso'), $route); |
|
1628 | 1628 | } |
1629 | 1629 | } |
1630 | 1630 | } |
@@ -1635,11 +1635,11 @@ discard block |
||
1635 | 1635 | * @param int $REG_ID |
1636 | 1636 | * @return EE_Registration_Custom_Questions_Form |
1637 | 1637 | */ |
1638 | - protected function _get_reg_custom_questions_form( $REG_ID ) { |
|
1639 | - if( ! $this->_reg_custom_questions_form ) { |
|
1640 | - require_once( REG_ADMIN . 'form_sections' . DS . 'EE_Registration_Custom_Questions_Form.form.php' ); |
|
1641 | - $this->_reg_custom_questions_form = new EE_Registration_Custom_Questions_Form( EEM_Registration::instance()->get_one_by_ID( $REG_ID ) ); |
|
1642 | - $this->_reg_custom_questions_form->_construct_finalize( null, null ); |
|
1638 | + protected function _get_reg_custom_questions_form($REG_ID) { |
|
1639 | + if ( ! $this->_reg_custom_questions_form) { |
|
1640 | + require_once(REG_ADMIN.'form_sections'.DS.'EE_Registration_Custom_Questions_Form.form.php'); |
|
1641 | + $this->_reg_custom_questions_form = new EE_Registration_Custom_Questions_Form(EEM_Registration::instance()->get_one_by_ID($REG_ID)); |
|
1642 | + $this->_reg_custom_questions_form->_construct_finalize(null, null); |
|
1643 | 1643 | } |
1644 | 1644 | return $this->_reg_custom_questions_form; |
1645 | 1645 | } |
@@ -1652,17 +1652,17 @@ discard block |
||
1652 | 1652 | * @param bool $REG_ID |
1653 | 1653 | * @return bool |
1654 | 1654 | */ |
1655 | - private function _save_reg_custom_questions_form( $REG_ID = FALSE ) { |
|
1655 | + private function _save_reg_custom_questions_form($REG_ID = FALSE) { |
|
1656 | 1656 | |
1657 | 1657 | if ( ! $REG_ID) { |
1658 | - EE_Error::add_error( __('An error occurred. No registration ID was received.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
1658 | + EE_Error::add_error(__('An error occurred. No registration ID was received.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1659 | 1659 | } |
1660 | - $form = $this->_get_reg_custom_questions_form( $REG_ID ); |
|
1661 | - $form->receive_form_submission( $this->_req_data ); |
|
1660 | + $form = $this->_get_reg_custom_questions_form($REG_ID); |
|
1661 | + $form->receive_form_submission($this->_req_data); |
|
1662 | 1662 | $success = false; |
1663 | - if( $form->is_valid() ) { |
|
1664 | - foreach( $form->subforms() as $question_group_id => $question_group_form ) { |
|
1665 | - foreach( $question_group_form->inputs() as $question_id => $input ) { |
|
1663 | + if ($form->is_valid()) { |
|
1664 | + foreach ($form->subforms() as $question_group_id => $question_group_form) { |
|
1665 | + foreach ($question_group_form->inputs() as $question_id => $input) { |
|
1666 | 1666 | $where_conditions = array( |
1667 | 1667 | 'QST_ID' => $question_id, |
1668 | 1668 | 'REG_ID' => $REG_ID |
@@ -1670,19 +1670,19 @@ discard block |
||
1670 | 1670 | $possibly_new_values = array( |
1671 | 1671 | 'ANS_value' => $input->normalized_value() |
1672 | 1672 | ); |
1673 | - $answer = EEM_Answer::instance()->get_one( array( $where_conditions ) ); |
|
1674 | - if( $answer instanceof EE_Answer ) { |
|
1675 | - $success = $answer->save( $possibly_new_values ); |
|
1673 | + $answer = EEM_Answer::instance()->get_one(array($where_conditions)); |
|
1674 | + if ($answer instanceof EE_Answer) { |
|
1675 | + $success = $answer->save($possibly_new_values); |
|
1676 | 1676 | } else { |
1677 | 1677 | //insert it then |
1678 | - $cols_n_vals = array_merge( $where_conditions, $possibly_new_values ); |
|
1679 | - $answer = EE_Answer::new_instance( $cols_n_vals ); |
|
1678 | + $cols_n_vals = array_merge($where_conditions, $possibly_new_values); |
|
1679 | + $answer = EE_Answer::new_instance($cols_n_vals); |
|
1680 | 1680 | $success = $answer->save(); |
1681 | 1681 | } |
1682 | 1682 | } |
1683 | 1683 | } |
1684 | 1684 | } else { |
1685 | - EE_Error::add_error( $form->get_validation_error_string(), __FILE__, __FUNCTION__, __LINE__ ); |
|
1685 | + EE_Error::add_error($form->get_validation_error_string(), __FILE__, __FUNCTION__, __LINE__); |
|
1686 | 1686 | } |
1687 | 1687 | return $success; |
1688 | 1688 | } |
@@ -1700,30 +1700,30 @@ discard block |
||
1700 | 1700 | $registrations = $REG->get_all(array( |
1701 | 1701 | array( |
1702 | 1702 | 'TXN_ID'=>$this->_registration->transaction_ID(), |
1703 | - 'REG_ID'=>array('!=',$this->_registration->ID()) |
|
1703 | + 'REG_ID'=>array('!=', $this->_registration->ID()) |
|
1704 | 1704 | ), |
1705 | 1705 | 'force_join'=>array('Attendee'))); |
1706 | 1706 | |
1707 | 1707 | $this->_template_args['attendees'] = array(); |
1708 | 1708 | $this->_template_args['attendee_notice'] = ''; |
1709 | 1709 | EE_Registry::instance()->load_helper('Array'); |
1710 | - if ( empty( $registrations) || ( is_array($registrations) && ! EEH_Array::get_one_item_from_array($registrations) ) ) { |
|
1711 | - EE_Error::add_error( __('There are no records attached to this registration. Something may have gone wrong with the registration', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
1710 | + if (empty($registrations) || (is_array($registrations) && ! EEH_Array::get_one_item_from_array($registrations))) { |
|
1711 | + EE_Error::add_error(__('There are no records attached to this registration. Something may have gone wrong with the registration', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1712 | 1712 | $this->_template_args['attendee_notice'] = EE_Error::get_notices(); |
1713 | 1713 | } else { |
1714 | 1714 | |
1715 | 1715 | $att_nmbr = 1; |
1716 | - foreach ( $registrations as $registration ) { |
|
1716 | + foreach ($registrations as $registration) { |
|
1717 | 1717 | /* @var $registration EE_Registration */ |
1718 | 1718 | $attendee = $registration->attendee() ? $registration->attendee() : EEM_Attendee::instance()->create_default_object(); |
1719 | - $this->_template_args['attendees'][ $att_nmbr ]['fname'] = $attendee->fname();//( isset( $registration->ATT_fname ) & ! empty( $registration->ATT_fname ) ) ? $registration->ATT_fname : ''; |
|
1720 | - $this->_template_args['attendees'][ $att_nmbr ]['lname'] = $attendee->lname();//( isset( $registration->ATT_lname ) & ! empty( $registration->ATT_lname ) ) ? $registration->ATT_lname : ''; |
|
1721 | - $this->_template_args['attendees'][ $att_nmbr ]['email'] = $attendee->email();//( isset( $registration->ATT_email ) & ! empty( $registration->ATT_email ) ) ? $registration->ATT_email : ''; |
|
1722 | - $this->_template_args['attendees'][ $att_nmbr ]['final_price'] = $registration->final_price();//( isset( $registration->REG_final_price ) & ! empty( $registration->REG_final_price ) ) ? $registration->REG_final_price : ''; |
|
1719 | + $this->_template_args['attendees'][$att_nmbr]['fname'] = $attendee->fname(); //( isset( $registration->ATT_fname ) & ! empty( $registration->ATT_fname ) ) ? $registration->ATT_fname : ''; |
|
1720 | + $this->_template_args['attendees'][$att_nmbr]['lname'] = $attendee->lname(); //( isset( $registration->ATT_lname ) & ! empty( $registration->ATT_lname ) ) ? $registration->ATT_lname : ''; |
|
1721 | + $this->_template_args['attendees'][$att_nmbr]['email'] = $attendee->email(); //( isset( $registration->ATT_email ) & ! empty( $registration->ATT_email ) ) ? $registration->ATT_email : ''; |
|
1722 | + $this->_template_args['attendees'][$att_nmbr]['final_price'] = $registration->final_price(); //( isset( $registration->REG_final_price ) & ! empty( $registration->REG_final_price ) ) ? $registration->REG_final_price : ''; |
|
1723 | 1723 | |
1724 | - $this->_template_args['attendees'][ $att_nmbr ]['address'] = implode( ', ', $attendee->full_address_as_array() ); |
|
1724 | + $this->_template_args['attendees'][$att_nmbr]['address'] = implode(', ', $attendee->full_address_as_array()); |
|
1725 | 1725 | |
1726 | - $this->_template_args['attendees'][ $att_nmbr ]['att_link'] = self::add_query_args_and_nonce( array( 'action'=>'edit_attendee', 'post'=>$attendee->ID() ), REG_ADMIN_URL ); |
|
1726 | + $this->_template_args['attendees'][$att_nmbr]['att_link'] = self::add_query_args_and_nonce(array('action'=>'edit_attendee', 'post'=>$attendee->ID()), REG_ADMIN_URL); |
|
1727 | 1727 | |
1728 | 1728 | $att_nmbr++; |
1729 | 1729 | } |
@@ -1735,8 +1735,8 @@ discard block |
||
1735 | 1735 | |
1736 | 1736 | // $this->_template_args['registration_form_url'] = add_query_arg( array( 'action' => 'edit_registration', 'process' => 'attendees' ), REG_ADMIN_URL ); |
1737 | 1737 | } |
1738 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_details_main_meta_box_attendees.template.php'; |
|
1739 | - echo EEH_Template::display_template( $template_path, $this->_template_args, TRUE ); |
|
1738 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_details_main_meta_box_attendees.template.php'; |
|
1739 | + echo EEH_Template::display_template($template_path, $this->_template_args, TRUE); |
|
1740 | 1740 | |
1741 | 1741 | } |
1742 | 1742 | |
@@ -1757,11 +1757,11 @@ discard block |
||
1757 | 1757 | $attendee = $att_check instanceof EE_Attendee ? $att_check : EEM_Attendee::instance()->create_default_object(); |
1758 | 1758 | |
1759 | 1759 | //now let's determine if this is not the primary registration. If it isn't then we set the primary_registration object for reference BUT ONLY if the Attendee object loaded is not the same as the primary registration object (that way we know if we need to show cereate button or not) |
1760 | - if ( ! $this->_registration->is_primary_registrant() ) { |
|
1760 | + if ( ! $this->_registration->is_primary_registrant()) { |
|
1761 | 1761 | $primary_registration = $this->_registration->get_primary_registration(); |
1762 | 1762 | $primary_attendee = $primary_registration->attendee(); |
1763 | 1763 | |
1764 | - if ( ! $primary_attendee instanceof EE_Attendee || $attendee->ID() !== $primary_attendee->ID() ) { |
|
1764 | + if ( ! $primary_attendee instanceof EE_Attendee || $attendee->ID() !== $primary_attendee->ID()) { |
|
1765 | 1765 | //in here? This means the displayed registration is not the primary registrant but ALREADY HAS its own custom attendee object so let's not worry about the primary reg. |
1766 | 1766 | $primary_registration = NULL; |
1767 | 1767 | } |
@@ -1770,28 +1770,28 @@ discard block |
||
1770 | 1770 | } |
1771 | 1771 | |
1772 | 1772 | $this->_template_args['ATT_ID'] = $attendee->ID(); |
1773 | - $this->_template_args['fname'] = $attendee->fname();//$this->_registration->ATT_fname; |
|
1774 | - $this->_template_args['lname'] = $attendee->lname();//$this->_registration->ATT_lname; |
|
1775 | - $this->_template_args['email'] = $attendee->email();//$this->_registration->ATT_email; |
|
1773 | + $this->_template_args['fname'] = $attendee->fname(); //$this->_registration->ATT_fname; |
|
1774 | + $this->_template_args['lname'] = $attendee->lname(); //$this->_registration->ATT_lname; |
|
1775 | + $this->_template_args['email'] = $attendee->email(); //$this->_registration->ATT_email; |
|
1776 | 1776 | $this->_template_args['phone'] = $attendee->phone(); |
1777 | 1777 | |
1778 | - EE_Registry::instance()->load_helper( 'Formatter' ); |
|
1779 | - $this->_template_args[ 'formatted_address' ] = EEH_Address::format( $attendee ); |
|
1778 | + EE_Registry::instance()->load_helper('Formatter'); |
|
1779 | + $this->_template_args['formatted_address'] = EEH_Address::format($attendee); |
|
1780 | 1780 | |
1781 | 1781 | |
1782 | 1782 | //edit link |
1783 | - $this->_template_args['att_edit_link'] = EE_Admin_Page::add_query_args_and_nonce( array( 'action'=>'edit_attendee', 'post'=>$attendee->ID() ), REG_ADMIN_URL ); |
|
1784 | - $this->_template_args['att_edit_label'] = __('View/Edit Contact' ); |
|
1783 | + $this->_template_args['att_edit_link'] = EE_Admin_Page::add_query_args_and_nonce(array('action'=>'edit_attendee', 'post'=>$attendee->ID()), REG_ADMIN_URL); |
|
1784 | + $this->_template_args['att_edit_label'] = __('View/Edit Contact'); |
|
1785 | 1785 | |
1786 | 1786 | //create link |
1787 | - $this->_template_args['create_link'] = $primary_registration instanceof EE_Registration ? EE_Admin_Page::add_query_args_and_nonce( array( 'action' => 'duplicate_attendee', '_REG_ID' => $this->_registration->ID() ), REG_ADMIN_URL ): ''; |
|
1787 | + $this->_template_args['create_link'] = $primary_registration instanceof EE_Registration ? EE_Admin_Page::add_query_args_and_nonce(array('action' => 'duplicate_attendee', '_REG_ID' => $this->_registration->ID()), REG_ADMIN_URL) : ''; |
|
1788 | 1788 | $this->_template_args['create_label'] = __('Create Contact', 'event_espresso'); |
1789 | 1789 | |
1790 | 1790 | $this->_template_args['att_check'] = $att_check; |
1791 | 1791 | |
1792 | 1792 | |
1793 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_details_side_meta_box_registrant.template.php'; |
|
1794 | - echo EEH_Template::display_template( $template_path, $this->_template_args, TRUE ); |
|
1793 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_details_side_meta_box_registrant.template.php'; |
|
1794 | + echo EEH_Template::display_template($template_path, $this->_template_args, TRUE); |
|
1795 | 1795 | } |
1796 | 1796 | |
1797 | 1797 | |
@@ -1804,7 +1804,7 @@ discard block |
||
1804 | 1804 | * @access protected |
1805 | 1805 | * @return void |
1806 | 1806 | */ |
1807 | - protected function _trash_or_restore_registrations( $trash = TRUE ) { |
|
1807 | + protected function _trash_or_restore_registrations($trash = TRUE) { |
|
1808 | 1808 | $REGM = EEM_Registration::instance(); |
1809 | 1809 | |
1810 | 1810 | $success = 1; |
@@ -1814,26 +1814,26 @@ discard block |
||
1814 | 1814 | $dtts = array(); |
1815 | 1815 | |
1816 | 1816 | //if empty _REG_ID then get out because there's nothing to do |
1817 | - if ( empty( $this->_req_data['_REG_ID'] ) ) { |
|
1817 | + if (empty($this->_req_data['_REG_ID'])) { |
|
1818 | 1818 | $msg = $trash ? __('In order to trash registrations you must select which ones you wish to trash by clicking the checkboxes.', 'event_espresso') : __('In order to restore registrations you must select which ones you wish to restore by clicking the checkboxes.', 'event_espresso'); |
1819 | - EE_Error::add_error( $msg, __FILE__, __LINE__, __FUNCTION__ ); |
|
1820 | - $this->_redirect_after_action(FALSE, '', '', array(), TRUE ); |
|
1819 | + EE_Error::add_error($msg, __FILE__, __LINE__, __FUNCTION__); |
|
1820 | + $this->_redirect_after_action(FALSE, '', '', array(), TRUE); |
|
1821 | 1821 | } |
1822 | 1822 | |
1823 | 1823 | //Checkboxes |
1824 | - if (!empty($this->_req_data['_REG_ID']) && is_array($this->_req_data['_REG_ID'])) { |
|
1824 | + if ( ! empty($this->_req_data['_REG_ID']) && is_array($this->_req_data['_REG_ID'])) { |
|
1825 | 1825 | // if array has more than one element than success message should be plural |
1826 | - $success = count( $this->_req_data['_REG_ID'] ) > 1 ? 2 : 1; |
|
1826 | + $success = count($this->_req_data['_REG_ID']) > 1 ? 2 : 1; |
|
1827 | 1827 | // cycle thru checkboxes |
1828 | - while (list( $ind, $REG_ID ) = each($this->_req_data['_REG_ID'])) { |
|
1828 | + while (list($ind, $REG_ID) = each($this->_req_data['_REG_ID'])) { |
|
1829 | 1829 | |
1830 | 1830 | $REG = $REGM->get_one_by_ID($REG_ID); |
1831 | 1831 | $payment_count = $REG->get_first_related('Transaction')->count_related('Payment'); |
1832 | - if ( $payment_count > 0 ) { |
|
1833 | - $name = $REG->attendee() instanceof EE_Attendee ? $REG->attendee()->full_name() : __( 'Unknown Attendee', 'event_espresso' ); |
|
1832 | + if ($payment_count > 0) { |
|
1833 | + $name = $REG->attendee() instanceof EE_Attendee ? $REG->attendee()->full_name() : __('Unknown Attendee', 'event_espresso'); |
|
1834 | 1834 | $error = 1; |
1835 | 1835 | $success = 0; |
1836 | - EE_Error::add_error( sprintf( __('The registration for %s could not be trashed because it has payments attached to the related transaction. If you wish to trash this registration you must first delete the payments on the related transaction.', 'event_espresso'), $name ), __FILE__, __FUNCTION__, __LINE__ ); |
|
1836 | + EE_Error::add_error(sprintf(__('The registration for %s could not be trashed because it has payments attached to the related transaction. If you wish to trash this registration you must first delete the payments on the related transaction.', 'event_espresso'), $name), __FILE__, __FUNCTION__, __LINE__); |
|
1837 | 1837 | continue; //can't trash this registration because it has payments. |
1838 | 1838 | } |
1839 | 1839 | $ticket = $REG->get_first_related('Ticket'); |
@@ -1842,7 +1842,7 @@ discard block |
||
1842 | 1842 | $dtts = array_merge($dtts, $dtt); |
1843 | 1843 | |
1844 | 1844 | $updated = $trash ? $REG->delete() : $REG->restore(); |
1845 | - if ( !$updated ) { |
|
1845 | + if ( ! $updated) { |
|
1846 | 1846 | $success = 0; |
1847 | 1847 | } else { |
1848 | 1848 | $success = 2; |
@@ -1857,7 +1857,7 @@ discard block |
||
1857 | 1857 | $tickets[$ticket->ID()] = $ticket; |
1858 | 1858 | $dtts = $ticket->get_many_related('Datetime'); |
1859 | 1859 | $updated = $trash ? $REG->delete() : $REG->restore(); |
1860 | - if ( ! $updated ) { |
|
1860 | + if ( ! $updated) { |
|
1861 | 1861 | $success = 0; |
1862 | 1862 | } |
1863 | 1863 | |
@@ -1867,10 +1867,10 @@ discard block |
||
1867 | 1867 | EEM_Ticket::instance()->update_tickets_sold($tickets); |
1868 | 1868 | EEM_Datetime::instance()->update_sold($dtts); |
1869 | 1869 | |
1870 | - $what = $success > 1 ? __( 'Registrations', 'event_espresso' ) : __( 'Registration', 'event_espresso' ); |
|
1871 | - $action_desc = $trash ? __( 'moved to the trash', 'event_espresso' ) : __( 'restored', 'event_espresso' ); |
|
1870 | + $what = $success > 1 ? __('Registrations', 'event_espresso') : __('Registration', 'event_espresso'); |
|
1871 | + $action_desc = $trash ? __('moved to the trash', 'event_espresso') : __('restored', 'event_espresso'); |
|
1872 | 1872 | $overwrite_msgs = $error ? TRUE : FALSE; |
1873 | - $this->_redirect_after_action( $success, $what, $action_desc, array( 'action' => 'default' ), $overwrite_msgs ); |
|
1873 | + $this->_redirect_after_action($success, $what, $action_desc, array('action' => 'default'), $overwrite_msgs); |
|
1874 | 1874 | } |
1875 | 1875 | |
1876 | 1876 | |
@@ -1894,16 +1894,16 @@ discard block |
||
1894 | 1894 | $success = 1; |
1895 | 1895 | |
1896 | 1896 | //Checkboxes |
1897 | - if (!empty($this->_req_data['_REG_ID']) && is_array($this->_req_data['_REG_ID'])) { |
|
1897 | + if ( ! empty($this->_req_data['_REG_ID']) && is_array($this->_req_data['_REG_ID'])) { |
|
1898 | 1898 | // if array has more than one element than success message should be plural |
1899 | - $success = count( $this->_req_data['_REG_ID'] ) > 1 ? 2 : 1; |
|
1899 | + $success = count($this->_req_data['_REG_ID']) > 1 ? 2 : 1; |
|
1900 | 1900 | // cycle thru checkboxes |
1901 | - while (list( $ind, $REG_ID ) = each($this->_req_data['_REG_ID'])) { |
|
1901 | + while (list($ind, $REG_ID) = each($this->_req_data['_REG_ID'])) { |
|
1902 | 1902 | $REG = $REG_MDL->get_one_by_ID($REG_ID); |
1903 | - if ( ! $REG instanceof EE_Registration ) |
|
1903 | + if ( ! $REG instanceof EE_Registration) |
|
1904 | 1904 | continue; |
1905 | 1905 | $deleted = $this->_delete_registration($REG); |
1906 | - if ( !$deleted ) { |
|
1906 | + if ( ! $deleted) { |
|
1907 | 1907 | $success = 0; |
1908 | 1908 | } |
1909 | 1909 | } |
@@ -1913,15 +1913,15 @@ discard block |
||
1913 | 1913 | $REG_ID = $this->_req_data['_REG_ID']; |
1914 | 1914 | $REG = $REG_MDL->get_one_by_ID($REG_ID); |
1915 | 1915 | $deleted = $this->_delete_registration($REG); |
1916 | - if ( ! $deleted ) { |
|
1916 | + if ( ! $deleted) { |
|
1917 | 1917 | $success = 0; |
1918 | 1918 | } |
1919 | 1919 | |
1920 | 1920 | } |
1921 | 1921 | |
1922 | - $what = $success > 1 ? __( 'Registrations', 'event_espresso' ) : __( 'Registration', 'event_espresso' ); |
|
1923 | - $action_desc = __( 'permanently deleted.', 'event_espresso' ); |
|
1924 | - $this->_redirect_after_action( $success, $what, $action_desc, array( 'action' => 'default' ), TRUE ); |
|
1922 | + $what = $success > 1 ? __('Registrations', 'event_espresso') : __('Registration', 'event_espresso'); |
|
1923 | + $action_desc = __('permanently deleted.', 'event_espresso'); |
|
1924 | + $this->_redirect_after_action($success, $what, $action_desc, array('action' => 'default'), TRUE); |
|
1925 | 1925 | } |
1926 | 1926 | |
1927 | 1927 | |
@@ -1933,31 +1933,31 @@ discard block |
||
1933 | 1933 | * @param EE_Registration $REG registration to be deleted permenantly |
1934 | 1934 | * @return boolean true = successful deletion, false = fail. |
1935 | 1935 | */ |
1936 | - protected function _delete_registration( EE_Registration $REG ) { |
|
1936 | + protected function _delete_registration(EE_Registration $REG) { |
|
1937 | 1937 | //first we start with the transaction... ultimately, we WILL not delete permanently if there are any related registrations on the transaction that are NOT trashed. |
1938 | 1938 | $TXN = $REG->get_first_related('Transaction'); |
1939 | 1939 | $REGS = $TXN->get_many_related('Registration'); |
1940 | 1940 | |
1941 | 1941 | $all_trashed = TRUE; |
1942 | - foreach ( $REGS as $registration ) { |
|
1943 | - if ( ! $registration->get('REG_deleted') ) |
|
1942 | + foreach ($REGS as $registration) { |
|
1943 | + if ( ! $registration->get('REG_deleted')) |
|
1944 | 1944 | $all_trashed = FALSE; |
1945 | 1945 | } |
1946 | 1946 | |
1947 | - if ( ! $all_trashed ) { |
|
1948 | - EE_Error::add_error( __('Unable to permanently delete this registration. Before this registration can be permanently deleted, all registrations made in the same transaction must be trashed as well. These registrations will be permanently deleted in the same action.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
1947 | + if ( ! $all_trashed) { |
|
1948 | + EE_Error::add_error(__('Unable to permanently delete this registration. Before this registration can be permanently deleted, all registrations made in the same transaction must be trashed as well. These registrations will be permanently deleted in the same action.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
1949 | 1949 | return false; |
1950 | 1950 | } |
1951 | 1951 | |
1952 | 1952 | //k made it here so that means we can delete all the related transactions and their answers (but let's do them separately from THIS one). |
1953 | - foreach ( $REGS as $registration ) { |
|
1953 | + foreach ($REGS as $registration) { |
|
1954 | 1954 | |
1955 | 1955 | //delete related answers |
1956 | 1956 | $registration->delete_related_permanently('Answer'); |
1957 | 1957 | |
1958 | 1958 | //remove relationship to EE_Attendee (but we ALWAYS leave the contact record intact) |
1959 | 1959 | $attendee = $registration->get_first_related('Attendee'); |
1960 | - if ( $attendee instanceof EE_Attendee ) { |
|
1960 | + if ($attendee instanceof EE_Attendee) { |
|
1961 | 1961 | $registration->_remove_relation_to($attendee, 'Attendee'); |
1962 | 1962 | } |
1963 | 1963 | |
@@ -1967,7 +1967,7 @@ discard block |
||
1967 | 1967 | //now delete permanently the checkins related to this registration. |
1968 | 1968 | $registration->delete_related_permanently('Checkin'); |
1969 | 1969 | |
1970 | - if ( $registration->ID() === $REG->ID() ) |
|
1970 | + if ($registration->ID() === $REG->ID()) |
|
1971 | 1971 | continue; //we don't want to delete permanently the existing registration just yet. |
1972 | 1972 | |
1973 | 1973 | //remove relation to transaction for these registrations if NOT the existing registrations |
@@ -2000,34 +2000,34 @@ discard block |
||
2000 | 2000 | * @return void |
2001 | 2001 | */ |
2002 | 2002 | public function new_registration() { |
2003 | - if ( ! $this->_set_reg_event() ) { |
|
2004 | - throw new EE_Error(__('Unable to continue with registering because there is no Event ID in the request', 'event_espresso') ); |
|
2003 | + if ( ! $this->_set_reg_event()) { |
|
2004 | + throw new EE_Error(__('Unable to continue with registering because there is no Event ID in the request', 'event_espresso')); |
|
2005 | 2005 | } |
2006 | - EE_Registry::instance()->REQ->set_espresso_page( TRUE ); |
|
2006 | + EE_Registry::instance()->REQ->set_espresso_page(TRUE); |
|
2007 | 2007 | |
2008 | 2008 | // gotta start with a clean slate if we're not coming here via ajax |
2009 | - if ( ! defined('DOING_AJAX' ) && ( ! isset( $this->_req_data['processing_registration'] ) || isset( $this->_req_data['step_error'] ))) { |
|
2010 | - EE_Registry::instance()->SSN->clear_session( __CLASS__, __FUNCTION__ ); |
|
2009 | + if ( ! defined('DOING_AJAX') && ( ! isset($this->_req_data['processing_registration']) || isset($this->_req_data['step_error']))) { |
|
2010 | + EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__); |
|
2011 | 2011 | } |
2012 | 2012 | |
2013 | - $this->_template_args['event_name'] = '' ; |
|
2013 | + $this->_template_args['event_name'] = ''; |
|
2014 | 2014 | // event name |
2015 | - if ( $this->_reg_event ) { |
|
2015 | + if ($this->_reg_event) { |
|
2016 | 2016 | $this->_template_args['event_name'] = $this->_reg_event->name(); |
2017 | - $edit_event_url = self::add_query_args_and_nonce( array( 'action'=>'edit', 'post'=>$this->_reg_event->ID() ), EVENTS_ADMIN_URL ); |
|
2018 | - $edit_event_lnk = '<a href="'.$edit_event_url.'" title="' . esc_attr__( 'Edit ', 'event_espresso' ) . $this->_reg_event->name() . '">' . __( 'Edit Event', 'event_espresso' ) . '</a>'; |
|
2019 | - $this->_template_args['event_name'] .= ' <span class="admin-page-header-edit-lnk not-bold">' . $edit_event_lnk . '</span>' ; |
|
2017 | + $edit_event_url = self::add_query_args_and_nonce(array('action'=>'edit', 'post'=>$this->_reg_event->ID()), EVENTS_ADMIN_URL); |
|
2018 | + $edit_event_lnk = '<a href="'.$edit_event_url.'" title="'.esc_attr__('Edit ', 'event_espresso').$this->_reg_event->name().'">'.__('Edit Event', 'event_espresso').'</a>'; |
|
2019 | + $this->_template_args['event_name'] .= ' <span class="admin-page-header-edit-lnk not-bold">'.$edit_event_lnk.'</span>'; |
|
2020 | 2020 | } |
2021 | 2021 | |
2022 | 2022 | $this->_template_args['step_content'] = $this->_get_registration_step_content(); |
2023 | 2023 | |
2024 | - if ( defined('DOING_AJAX' ) ) |
|
2024 | + if (defined('DOING_AJAX')) |
|
2025 | 2025 | $this->_return_json(); |
2026 | 2026 | |
2027 | 2027 | |
2028 | 2028 | // grab header |
2029 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_register_new_attendee.template.php'; |
|
2030 | - $this->_template_args['admin_page_content'] = EEH_Template::display_template( $template_path, $this->_template_args, TRUE ); |
|
2029 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_register_new_attendee.template.php'; |
|
2030 | + $this->_template_args['admin_page_content'] = EEH_Template::display_template($template_path, $this->_template_args, TRUE); |
|
2031 | 2031 | |
2032 | 2032 | //$this->_set_publish_post_box_vars( NULL, FALSE, FALSE, NULL, FALSE ); |
2033 | 2033 | // the details template wrapper |
@@ -2045,7 +2045,7 @@ discard block |
||
2045 | 2045 | */ |
2046 | 2046 | protected function _get_registration_step_content() { |
2047 | 2047 | |
2048 | - $template_path = REG_TEMPLATE_PATH . 'reg_admin_register_new_attendee_step_content.template.php'; |
|
2048 | + $template_path = REG_TEMPLATE_PATH.'reg_admin_register_new_attendee_step_content.template.php'; |
|
2049 | 2049 | $template_args = array( |
2050 | 2050 | 'title' => '', |
2051 | 2051 | 'content' => '', |
@@ -2066,11 +2066,11 @@ discard block |
||
2066 | 2066 | |
2067 | 2067 | //if the cart is empty then we know we're at step one so we'll display ticket selector |
2068 | 2068 | $cart = EE_Registry::instance()->SSN->get_session_data('cart'); |
2069 | - $step = empty( $cart ) ? 'ticket' : 'questions'; |
|
2070 | - switch ( $step ) { |
|
2069 | + $step = empty($cart) ? 'ticket' : 'questions'; |
|
2070 | + switch ($step) { |
|
2071 | 2071 | case 'ticket' : |
2072 | 2072 | $template_args['title'] = __('Step One: Select the Ticket for this registration', 'event_espresso'); |
2073 | - $template_args['content'] = EED_Ticket_Selector::instance()->display_ticket_selector( $this->_reg_event ); |
|
2073 | + $template_args['content'] = EED_Ticket_Selector::instance()->display_ticket_selector($this->_reg_event); |
|
2074 | 2074 | $template_args['step_button_text'] = __('Add Tickets and Continue to Registrant Details', 'event_espresso'); |
2075 | 2075 | $template_args['show_notification_toggle'] = FALSE; |
2076 | 2076 | break; |
@@ -2083,9 +2083,9 @@ discard block |
||
2083 | 2083 | break; |
2084 | 2084 | } |
2085 | 2085 | |
2086 | - $this->_set_add_edit_form_tags( 'process_reg_step', $hidden_fields ); //we come back to the process_registration_step route. |
|
2086 | + $this->_set_add_edit_form_tags('process_reg_step', $hidden_fields); //we come back to the process_registration_step route. |
|
2087 | 2087 | |
2088 | - return EEH_Template::display_template( $template_path, $template_args, TRUE ); |
|
2088 | + return EEH_Template::display_template($template_path, $template_args, TRUE); |
|
2089 | 2089 | } |
2090 | 2090 | |
2091 | 2091 | |
@@ -2099,11 +2099,11 @@ discard block |
||
2099 | 2099 | * @return boolean |
2100 | 2100 | */ |
2101 | 2101 | private function _set_reg_event() { |
2102 | - if ( is_object( $this->_reg_event )) { |
|
2102 | + if (is_object($this->_reg_event)) { |
|
2103 | 2103 | return TRUE; |
2104 | 2104 | } |
2105 | - $EVT_ID = ( ! empty( $this->_req_data['event_id'] )) ? absint( $this->_req_data['event_id'] ) : FALSE; |
|
2106 | - if ( ! $EVT_ID ) { |
|
2105 | + $EVT_ID = ( ! empty($this->_req_data['event_id'])) ? absint($this->_req_data['event_id']) : FALSE; |
|
2106 | + if ( ! $EVT_ID) { |
|
2107 | 2107 | return FALSE; |
2108 | 2108 | } |
2109 | 2109 | |
@@ -2124,62 +2124,62 @@ discard block |
||
2124 | 2124 | public function process_reg_step() { |
2125 | 2125 | |
2126 | 2126 | $this->_set_reg_event(); |
2127 | - EE_Registry::instance()->REQ->set_espresso_page( TRUE ); |
|
2127 | + EE_Registry::instance()->REQ->set_espresso_page(TRUE); |
|
2128 | 2128 | |
2129 | 2129 | //what step are we on? |
2130 | - $cart = EE_Registry::instance()->SSN->get_session_data( 'cart' ); |
|
2131 | - $step = empty( $cart ) ? 'ticket' : 'questions'; |
|
2130 | + $cart = EE_Registry::instance()->SSN->get_session_data('cart'); |
|
2131 | + $step = empty($cart) ? 'ticket' : 'questions'; |
|
2132 | 2132 | |
2133 | 2133 | //if doing ajax then we need to verify the nonce |
2134 | - if ( 'DOING_AJAX' ) { |
|
2135 | - $nonce = isset( $this->_req_data[$this->_req_nonce] ) ? sanitize_text_field( $this->_req_data[$this->_req_nonce] ) : ''; |
|
2136 | - $this->_verify_nonce( $nonce, $this->_req_nonce ); |
|
2134 | + if ('DOING_AJAX') { |
|
2135 | + $nonce = isset($this->_req_data[$this->_req_nonce]) ? sanitize_text_field($this->_req_data[$this->_req_nonce]) : ''; |
|
2136 | + $this->_verify_nonce($nonce, $this->_req_nonce); |
|
2137 | 2137 | } |
2138 | 2138 | |
2139 | - switch ( $step ) { |
|
2139 | + switch ($step) { |
|
2140 | 2140 | case 'ticket' : |
2141 | 2141 | //process ticket selection |
2142 | 2142 | $success = EED_Ticket_Selector::instance()->process_ticket_selections(); |
2143 | - if ( $success ) { |
|
2144 | - EE_Error::add_success( __('Tickets Selected. Now complete the registration.'), 'event_espresso'); |
|
2143 | + if ($success) { |
|
2144 | + EE_Error::add_success(__('Tickets Selected. Now complete the registration.'), 'event_espresso'); |
|
2145 | 2145 | } else { |
2146 | 2146 | $query_args['step_error'] = $this->_req_data['step_error'] = TRUE; |
2147 | 2147 | } |
2148 | - if ( defined('DOING_AJAX') ) { |
|
2148 | + if (defined('DOING_AJAX')) { |
|
2149 | 2149 | $this->new_registration(); //display next step |
2150 | 2150 | } else { |
2151 | 2151 | $query_args['action'] = 'new_registration'; |
2152 | 2152 | $query_args['processing_registration'] = true; |
2153 | 2153 | $query_args['event_id'] = $this->_reg_event->ID(); |
2154 | - $this->_redirect_after_action( FALSE, '', '', $query_args, TRUE ); |
|
2154 | + $this->_redirect_after_action(FALSE, '', '', $query_args, TRUE); |
|
2155 | 2155 | } |
2156 | 2156 | break; |
2157 | 2157 | case 'questions' : |
2158 | - if( ! isset( $this->_req_data[ 'txn_reg_status_change' ], $this->_req_data[ 'txn_reg_status_change' ][ 'send_notifications' ] ) ) { |
|
2159 | - add_filter( 'FHEE__EED_Messages___maybe_registration__deliver_notifications', '__return_false', 15 ); |
|
2158 | + if ( ! isset($this->_req_data['txn_reg_status_change'], $this->_req_data['txn_reg_status_change']['send_notifications'])) { |
|
2159 | + add_filter('FHEE__EED_Messages___maybe_registration__deliver_notifications', '__return_false', 15); |
|
2160 | 2160 | } |
2161 | 2161 | //process registration |
2162 | 2162 | $transaction = EED_Single_Page_Checkout::instance()->process_registration_from_admin(); |
2163 | - if ( ! $transaction instanceof EE_Transaction ) { |
|
2163 | + if ( ! $transaction instanceof EE_Transaction) { |
|
2164 | 2164 | $query_args = array( |
2165 | 2165 | 'action' => 'new_registration', |
2166 | 2166 | 'processing_registration' => true, |
2167 | 2167 | 'event_id' => $this->_reg_event->ID() |
2168 | 2168 | ); |
2169 | 2169 | |
2170 | - if ( defined('DOING_AJAX' )) { |
|
2170 | + if (defined('DOING_AJAX')) { |
|
2171 | 2171 | //display registration form again because there are errors (maybe validation?) |
2172 | 2172 | $this->new_registration(); |
2173 | 2173 | return; |
2174 | 2174 | } else { |
2175 | - $this->_redirect_after_action( FALSE, '', '', $query_args, TRUE ); |
|
2175 | + $this->_redirect_after_action(FALSE, '', '', $query_args, TRUE); |
|
2176 | 2176 | return; |
2177 | 2177 | } |
2178 | 2178 | } |
2179 | 2179 | /** @type EE_Transaction_Payments $transaction_payments */ |
2180 | - $transaction_payments = EE_Registry::instance()->load_class( 'Transaction_Payments' ); |
|
2180 | + $transaction_payments = EE_Registry::instance()->load_class('Transaction_Payments'); |
|
2181 | 2181 | // maybe update status, and make sure to save transaction if not done already |
2182 | - if ( ! $transaction_payments->update_transaction_status_based_on_total_paid( $transaction )) { |
|
2182 | + if ( ! $transaction_payments->update_transaction_status_based_on_total_paid($transaction)) { |
|
2183 | 2183 | $transaction->save(); |
2184 | 2184 | } |
2185 | 2185 | $query_args = array( |
@@ -2187,8 +2187,8 @@ discard block |
||
2187 | 2187 | 'TXN_ID' => $transaction->ID(), |
2188 | 2188 | 'page' => 'espresso_transactions' |
2189 | 2189 | ); |
2190 | - EE_Error::add_success( __('Registration Created. Please review the transaction and add any payments as necessary', 'event_espresso') ); |
|
2191 | - $this->_redirect_after_action( FALSE, '', '', $query_args, TRUE ); |
|
2190 | + EE_Error::add_success(__('Registration Created. Please review the transaction and add any payments as necessary', 'event_espresso')); |
|
2191 | + $this->_redirect_after_action(FALSE, '', '', $query_args, TRUE); |
|
2192 | 2192 | break; |
2193 | 2193 | } |
2194 | 2194 | |
@@ -2208,7 +2208,7 @@ discard block |
||
2208 | 2208 | * @return void |
2209 | 2209 | */ |
2210 | 2210 | protected function _attendee_contact_list_table() { |
2211 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
2211 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2212 | 2212 | $this->_search_btn_label = __('Contacts', 'event_espresso'); |
2213 | 2213 | $this->display_admin_list_table_page_with_no_sidebar(); |
2214 | 2214 | } |
@@ -2223,10 +2223,10 @@ discard block |
||
2223 | 2223 | * @access public |
2224 | 2224 | * @return array |
2225 | 2225 | */ |
2226 | - public function get_attendees( $per_page, $count = FALSE, $trash = FALSE ) { |
|
2226 | + public function get_attendees($per_page, $count = FALSE, $trash = FALSE) { |
|
2227 | 2227 | |
2228 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
2229 | - require_once( REG_ADMIN . 'EE_Attendee_Contact_List_Table.class.php' ); |
|
2228 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2229 | + require_once(REG_ADMIN.'EE_Attendee_Contact_List_Table.class.php'); |
|
2230 | 2230 | $ATT_MDL = EEM_Attendee::instance(); |
2231 | 2231 | |
2232 | 2232 | $this->_req_data['orderby'] = ! empty($this->_req_data['orderby']) ? $this->_req_data['orderby'] : ''; |
@@ -2254,47 +2254,47 @@ discard block |
||
2254 | 2254 | $orderby = 'ATT_lname'; |
2255 | 2255 | } |
2256 | 2256 | |
2257 | - $sort = ( isset( $this->_req_data['order'] ) && ! empty( $this->_req_data['order'] )) ? $this->_req_data['order'] : 'ASC'; |
|
2257 | + $sort = (isset($this->_req_data['order']) && ! empty($this->_req_data['order'])) ? $this->_req_data['order'] : 'ASC'; |
|
2258 | 2258 | |
2259 | - $current_page = isset( $this->_req_data['paged'] ) && !empty( $this->_req_data['paged'] ) ? $this->_req_data['paged'] : 1; |
|
2260 | - $per_page = isset( $per_page ) && !empty( $per_page ) ? $per_page : 10; |
|
2261 | - $per_page = isset( $this->_req_data['perpage'] ) && !empty( $this->_req_data['perpage'] ) ? $this->_req_data['perpage'] : $per_page; |
|
2259 | + $current_page = isset($this->_req_data['paged']) && ! empty($this->_req_data['paged']) ? $this->_req_data['paged'] : 1; |
|
2260 | + $per_page = isset($per_page) && ! empty($per_page) ? $per_page : 10; |
|
2261 | + $per_page = isset($this->_req_data['perpage']) && ! empty($this->_req_data['perpage']) ? $this->_req_data['perpage'] : $per_page; |
|
2262 | 2262 | |
2263 | 2263 | $_where = array(); |
2264 | 2264 | |
2265 | - if ( isset( $this->_req_data['s'] ) ) { |
|
2266 | - $sstr = '%' . $this->_req_data['s'] . '%'; |
|
2265 | + if (isset($this->_req_data['s'])) { |
|
2266 | + $sstr = '%'.$this->_req_data['s'].'%'; |
|
2267 | 2267 | $_where['OR'] = array( |
2268 | - 'Registration.Event.EVT_name' => array( 'LIKE', $sstr), |
|
2269 | - 'Registration.Event.EVT_desc' => array( 'LIKE', $sstr ), |
|
2270 | - 'Registration.Event.EVT_short_desc' => array( 'LIKE' , $sstr ), |
|
2271 | - 'ATT_fname' => array( 'LIKE', $sstr ), |
|
2272 | - 'ATT_lname' => array( 'LIKE', $sstr ), |
|
2273 | - 'ATT_short_bio' => array( 'LIKE', $sstr ), |
|
2274 | - 'ATT_email' => array('LIKE', $sstr ), |
|
2275 | - 'ATT_address' => array( 'LIKE', $sstr ), |
|
2276 | - 'ATT_address2' => array( 'LIKE', $sstr ), |
|
2277 | - 'ATT_city' => array( 'LIKE', $sstr ), |
|
2278 | - 'Country.CNT_name' => array( 'LIKE', $sstr ), |
|
2279 | - 'State.STA_name' => array('LIKE', $sstr ), |
|
2280 | - 'ATT_phone' => array( 'LIKE', $sstr ), |
|
2281 | - 'Registration.REG_final_price' => array( 'LIKE', $sstr ), |
|
2282 | - 'Registration.REG_code' => array( 'LIKE', $sstr ), |
|
2283 | - 'Registration.REG_count' => array( 'LIKE' , $sstr ), |
|
2284 | - 'Registration.REG_group_size' => array( 'LIKE' , $sstr ) |
|
2268 | + 'Registration.Event.EVT_name' => array('LIKE', $sstr), |
|
2269 | + 'Registration.Event.EVT_desc' => array('LIKE', $sstr), |
|
2270 | + 'Registration.Event.EVT_short_desc' => array('LIKE', $sstr), |
|
2271 | + 'ATT_fname' => array('LIKE', $sstr), |
|
2272 | + 'ATT_lname' => array('LIKE', $sstr), |
|
2273 | + 'ATT_short_bio' => array('LIKE', $sstr), |
|
2274 | + 'ATT_email' => array('LIKE', $sstr), |
|
2275 | + 'ATT_address' => array('LIKE', $sstr), |
|
2276 | + 'ATT_address2' => array('LIKE', $sstr), |
|
2277 | + 'ATT_city' => array('LIKE', $sstr), |
|
2278 | + 'Country.CNT_name' => array('LIKE', $sstr), |
|
2279 | + 'State.STA_name' => array('LIKE', $sstr), |
|
2280 | + 'ATT_phone' => array('LIKE', $sstr), |
|
2281 | + 'Registration.REG_final_price' => array('LIKE', $sstr), |
|
2282 | + 'Registration.REG_code' => array('LIKE', $sstr), |
|
2283 | + 'Registration.REG_count' => array('LIKE', $sstr), |
|
2284 | + 'Registration.REG_group_size' => array('LIKE', $sstr) |
|
2285 | 2285 | ); |
2286 | 2286 | } |
2287 | 2287 | |
2288 | 2288 | |
2289 | - $offset = ($current_page-1)*$per_page; |
|
2290 | - $limit = $count ? NULL : array( $offset, $per_page ); |
|
2289 | + $offset = ($current_page - 1) * $per_page; |
|
2290 | + $limit = $count ? NULL : array($offset, $per_page); |
|
2291 | 2291 | |
2292 | - if ( $trash ) { |
|
2293 | - $_where['status'] = array( '!=', 'publish' ); |
|
2294 | - $all_attendees = $count ? $ATT_MDL->count( array($_where,'order_by'=>array($orderby=>$sort), 'limit'=>$limit)): $ATT_MDL->get_all( array($_where,'order_by'=>array($orderby=>$sort), 'limit'=>$limit)); |
|
2292 | + if ($trash) { |
|
2293 | + $_where['status'] = array('!=', 'publish'); |
|
2294 | + $all_attendees = $count ? $ATT_MDL->count(array($_where, 'order_by'=>array($orderby=>$sort), 'limit'=>$limit)) : $ATT_MDL->get_all(array($_where, 'order_by'=>array($orderby=>$sort), 'limit'=>$limit)); |
|
2295 | 2295 | } else { |
2296 | - $_where['status'] = array( 'IN', array( 'publish' ) ); |
|
2297 | - $all_attendees = $count ? $ATT_MDL->count( array($_where, 'order_by'=>array($orderby=>$sort),'limit'=>$limit)) : $ATT_MDL->get_all( array($_where, 'order_by'=>array($orderby=>$sort), 'limit'=>$limit) ); |
|
2296 | + $_where['status'] = array('IN', array('publish')); |
|
2297 | + $all_attendees = $count ? $ATT_MDL->count(array($_where, 'order_by'=>array($orderby=>$sort), 'limit'=>$limit)) : $ATT_MDL->get_all(array($_where, 'order_by'=>array($orderby=>$sort), 'limit'=>$limit)); |
|
2298 | 2298 | } |
2299 | 2299 | |
2300 | 2300 | return $all_attendees; |
@@ -2311,10 +2311,10 @@ discard block |
||
2311 | 2311 | */ |
2312 | 2312 | protected function _resend_registration() { |
2313 | 2313 | $this->_process_resend_registration(); |
2314 | - $query_args = isset($this->_req_data['redirect_to'] ) ? array('action' => $this->_req_data['redirect_to'], '_REG_ID' => $this->_req_data['_REG_ID'] ) : array( |
|
2314 | + $query_args = isset($this->_req_data['redirect_to']) ? array('action' => $this->_req_data['redirect_to'], '_REG_ID' => $this->_req_data['_REG_ID']) : array( |
|
2315 | 2315 | 'action' => 'default' |
2316 | 2316 | ); |
2317 | - $this->_redirect_after_action(FALSE, '', '', $query_args, TRUE ); |
|
2317 | + $this->_redirect_after_action(FALSE, '', '', $query_args, TRUE); |
|
2318 | 2318 | } |
2319 | 2319 | |
2320 | 2320 | |
@@ -2322,27 +2322,27 @@ discard block |
||
2322 | 2322 | |
2323 | 2323 | |
2324 | 2324 | |
2325 | - public function _registrations_report(){ |
|
2326 | - if( ! defined( 'EE_USE_OLD_CSV_REPORT_CLASS' ) ) { |
|
2327 | - wp_redirect( EE_Admin_Page::add_query_args_and_nonce( |
|
2325 | + public function _registrations_report() { |
|
2326 | + if ( ! defined('EE_USE_OLD_CSV_REPORT_CLASS')) { |
|
2327 | + wp_redirect(EE_Admin_Page::add_query_args_and_nonce( |
|
2328 | 2328 | array( |
2329 | 2329 | 'page' => 'espresso_batch', |
2330 | 2330 | 'batch' => 'file', |
2331 | - 'EVT_ID' => isset( $this->_req_data[ 'EVT_ID'] ) ? $this->_req_data[ 'EVT_ID' ] : NULL, |
|
2332 | - 'job_handler' => urlencode( 'EventEspressoBatchRequest\JobHandlers\RegistrationsReport' ), |
|
2333 | - 'return_url' => urlencode( $this->_req_data[ 'return_url' ] ), |
|
2334 | - )) ); |
|
2331 | + 'EVT_ID' => isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : NULL, |
|
2332 | + 'job_handler' => urlencode('EventEspressoBatchRequest\JobHandlers\RegistrationsReport'), |
|
2333 | + 'return_url' => urlencode($this->_req_data['return_url']), |
|
2334 | + ))); |
|
2335 | 2335 | } else { |
2336 | - EE_Registry::instance()->load_helper( 'File' ); |
|
2336 | + EE_Registry::instance()->load_helper('File'); |
|
2337 | 2337 | $new_request_args = array( |
2338 | 2338 | 'export' => 'report', |
2339 | 2339 | 'action' => 'registrations_report_for_event', |
2340 | - 'EVT_ID' => isset( $this->_req_data[ 'EVT_ID'] ) ? $this->_req_data[ 'EVT_ID' ] : NULL, |
|
2340 | + 'EVT_ID' => isset($this->_req_data['EVT_ID']) ? $this->_req_data['EVT_ID'] : NULL, |
|
2341 | 2341 | ); |
2342 | 2342 | $this->_req_data = array_merge($this->_req_data, $new_request_args); |
2343 | 2343 | |
2344 | - if ( is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
2345 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
2344 | + if (is_readable(EE_CLASSES.'EE_Export.class.php')) { |
|
2345 | + require_once(EE_CLASSES.'EE_Export.class.php'); |
|
2346 | 2346 | $EE_Export = EE_Export::instance($this->_req_data); |
2347 | 2347 | $EE_Export->export(); |
2348 | 2348 | } |
@@ -2351,28 +2351,28 @@ discard block |
||
2351 | 2351 | |
2352 | 2352 | |
2353 | 2353 | |
2354 | - public function _contact_list_export(){ |
|
2355 | - EE_Registry::instance()->load_helper( 'File' ); |
|
2356 | - if ( is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
2357 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
2354 | + public function _contact_list_export() { |
|
2355 | + EE_Registry::instance()->load_helper('File'); |
|
2356 | + if (is_readable(EE_CLASSES.'EE_Export.class.php')) { |
|
2357 | + require_once(EE_CLASSES.'EE_Export.class.php'); |
|
2358 | 2358 | $EE_Export = EE_Export::instance($this->_req_data); |
2359 | 2359 | $EE_Export->export_attendees(); |
2360 | 2360 | } |
2361 | 2361 | } |
2362 | 2362 | |
2363 | - public function _contact_list_report(){ |
|
2364 | - if( ! defined( 'EE_USE_OLD_CSV_REPORT_CLASS' ) ) { |
|
2365 | - wp_redirect( EE_Admin_Page::add_query_args_and_nonce( |
|
2363 | + public function _contact_list_report() { |
|
2364 | + if ( ! defined('EE_USE_OLD_CSV_REPORT_CLASS')) { |
|
2365 | + wp_redirect(EE_Admin_Page::add_query_args_and_nonce( |
|
2366 | 2366 | array( |
2367 | 2367 | 'page' => 'espresso_batch', |
2368 | 2368 | 'batch' => 'file', |
2369 | - 'job_handler' => urlencode( 'EventEspressoBatchRequest\JobHandlers\AttendeesReport' ), |
|
2370 | - 'return_url' => urlencode( $this->_req_data[ 'return_url' ] ), |
|
2371 | - )) ); |
|
2369 | + 'job_handler' => urlencode('EventEspressoBatchRequest\JobHandlers\AttendeesReport'), |
|
2370 | + 'return_url' => urlencode($this->_req_data['return_url']), |
|
2371 | + ))); |
|
2372 | 2372 | } else { |
2373 | - EE_Registry::instance()->load_helper( 'File' ); |
|
2374 | - if ( is_readable(EE_CLASSES . 'EE_Export.class.php')) { |
|
2375 | - require_once(EE_CLASSES . 'EE_Export.class.php'); |
|
2373 | + EE_Registry::instance()->load_helper('File'); |
|
2374 | + if (is_readable(EE_CLASSES.'EE_Export.class.php')) { |
|
2375 | + require_once(EE_CLASSES.'EE_Export.class.php'); |
|
2376 | 2376 | $EE_Export = EE_Export::instance($this->_req_data); |
2377 | 2377 | $EE_Export->report_attendees(); |
2378 | 2378 | } |
@@ -2392,73 +2392,73 @@ discard block |
||
2392 | 2392 | * @return void |
2393 | 2393 | */ |
2394 | 2394 | protected function _duplicate_attendee() { |
2395 | - $action = !empty( $this->_req_data['return'] ) ? $this->_req_data['return'] : 'default'; |
|
2395 | + $action = ! empty($this->_req_data['return']) ? $this->_req_data['return'] : 'default'; |
|
2396 | 2396 | //verify we have necessary info |
2397 | - if ( empty($this->_req_data['_REG_ID'] ) ) { |
|
2398 | - EE_Error::add_error( __('Unable to create the contact for the registration because the required paramaters are not present (_REG_ID )', 'event_espresso'), __FILE__, __LINE__, __FUNCTION__ ); |
|
2399 | - $query_args = array( 'action' => $action ); |
|
2397 | + if (empty($this->_req_data['_REG_ID'])) { |
|
2398 | + EE_Error::add_error(__('Unable to create the contact for the registration because the required paramaters are not present (_REG_ID )', 'event_espresso'), __FILE__, __LINE__, __FUNCTION__); |
|
2399 | + $query_args = array('action' => $action); |
|
2400 | 2400 | $this->_redirect_after_action('', '', '', $query_args, TRUE); |
2401 | 2401 | } |
2402 | 2402 | |
2403 | 2403 | //okay necessary deets present... let's dupe the incoming attendee and attach to incoming registration. |
2404 | - $registration = EEM_Registration::instance()->get_one_by_ID( $this->_req_data['_REG_ID'] ); |
|
2404 | + $registration = EEM_Registration::instance()->get_one_by_ID($this->_req_data['_REG_ID']); |
|
2405 | 2405 | $attendee = $registration->attendee(); |
2406 | 2406 | |
2407 | 2407 | //remove relation of existing attendee on registration |
2408 | - $registration->_remove_relation_to($attendee, 'Attendee' ); |
|
2408 | + $registration->_remove_relation_to($attendee, 'Attendee'); |
|
2409 | 2409 | //new attendee |
2410 | 2410 | $new_attendee = clone $attendee; |
2411 | - $new_attendee->set( 'ATT_ID', 0 ); |
|
2411 | + $new_attendee->set('ATT_ID', 0); |
|
2412 | 2412 | $new_attendee->save(); |
2413 | 2413 | |
2414 | 2414 | //add new attendee to reg |
2415 | - $registration->_add_relation_to( $new_attendee, 'Attendee'); |
|
2415 | + $registration->_add_relation_to($new_attendee, 'Attendee'); |
|
2416 | 2416 | |
2417 | - EE_Error::add_success( __('New Contact record created. Now make any edits you wish to make for this contact.', 'event_espresso') ); |
|
2417 | + EE_Error::add_success(__('New Contact record created. Now make any edits you wish to make for this contact.', 'event_espresso')); |
|
2418 | 2418 | |
2419 | 2419 | //redirect to edit page for attendee |
2420 | - $query_args = array( 'post' => $new_attendee->ID(), 'action' => 'edit_attendee' ); |
|
2420 | + $query_args = array('post' => $new_attendee->ID(), 'action' => 'edit_attendee'); |
|
2421 | 2421 | |
2422 | - $this->_redirect_after_action( '', '', '', $query_args, TRUE ); |
|
2422 | + $this->_redirect_after_action('', '', '', $query_args, TRUE); |
|
2423 | 2423 | } |
2424 | 2424 | |
2425 | 2425 | |
2426 | 2426 | //related to cpt routes |
2427 | 2427 | protected function _insert_update_cpt_item($post_id, $post) { |
2428 | 2428 | $success = true; |
2429 | - $attendee = EEM_Attendee::instance()->get_one_by_ID( $post_id ); |
|
2429 | + $attendee = EEM_Attendee::instance()->get_one_by_ID($post_id); |
|
2430 | 2430 | //for attendee updates |
2431 | - if ( $post->post_type = 'espresso_attendees' && !empty( $attendee ) ) { |
|
2431 | + if ($post->post_type = 'espresso_attendees' && ! empty($attendee)) { |
|
2432 | 2432 | //note we should only be UPDATING attendees at this point. |
2433 | 2433 | $updated_fields = array( |
2434 | 2434 | 'ATT_fname' => $this->_req_data['ATT_fname'], |
2435 | 2435 | 'ATT_lname' => $this->_req_data['ATT_lname'], |
2436 | - 'ATT_full_name'=> $this->_req_data['ATT_fname'] . ' ' . $this->_req_data['ATT_lname'], |
|
2436 | + 'ATT_full_name'=> $this->_req_data['ATT_fname'].' '.$this->_req_data['ATT_lname'], |
|
2437 | 2437 | 'ATT_address' => isset($this->_req_data['ATT_address']) ? $this->_req_data['ATT_address'] : '', |
2438 | 2438 | 'ATT_address2' => isset($this->_req_data['ATT_address2']) ? $this->_req_data['ATT_address2'] : '', |
2439 | - 'ATT_city' => isset( $this->_req_data['ATT_city'] ) ? $this->_req_data['ATT_city'] : '', |
|
2440 | - 'STA_ID' => isset( $this->_req_data['STA_ID'] ) ? $this->_req_data['STA_ID'] : '', |
|
2441 | - 'CNT_ISO' => isset( $this->_req_data['CNT_ISO'] ) ? $this->_req_data['CNT_ISO'] : '', |
|
2442 | - 'ATT_zip' => isset( $this->_req_data['ATT_zip'] ) ? $this->_req_data['ATT_zip'] : '', |
|
2443 | - 'ATT_email' => isset( $this->_req_data['ATT_email'] ) ? $this->_req_data['ATT_email'] : '', |
|
2444 | - 'ATT_phone' => isset( $this->_req_data['ATT_phone'] ) ? $this->_req_data['ATT_phone'] : '' |
|
2439 | + 'ATT_city' => isset($this->_req_data['ATT_city']) ? $this->_req_data['ATT_city'] : '', |
|
2440 | + 'STA_ID' => isset($this->_req_data['STA_ID']) ? $this->_req_data['STA_ID'] : '', |
|
2441 | + 'CNT_ISO' => isset($this->_req_data['CNT_ISO']) ? $this->_req_data['CNT_ISO'] : '', |
|
2442 | + 'ATT_zip' => isset($this->_req_data['ATT_zip']) ? $this->_req_data['ATT_zip'] : '', |
|
2443 | + 'ATT_email' => isset($this->_req_data['ATT_email']) ? $this->_req_data['ATT_email'] : '', |
|
2444 | + 'ATT_phone' => isset($this->_req_data['ATT_phone']) ? $this->_req_data['ATT_phone'] : '' |
|
2445 | 2445 | ); |
2446 | - foreach ( $updated_fields as $field => $value ) { |
|
2446 | + foreach ($updated_fields as $field => $value) { |
|
2447 | 2447 | $attendee->set($field, $value); |
2448 | 2448 | } |
2449 | 2449 | |
2450 | 2450 | $success = $attendee->save(); |
2451 | 2451 | |
2452 | - $attendee_update_callbacks = apply_filters( 'FHEE__Registrations_Admin_Page__insert_update_cpt_item__attendee_update', array() ); |
|
2453 | - foreach ( $attendee_update_callbacks as $a_callback ) { |
|
2454 | - if ( FALSE === call_user_func_array( $a_callback, array($attendee, $this->_req_data ) ) ) { |
|
2455 | - throw new EE_Error( sprintf( __('The %s callback given for the "FHEE__Registrations_Admin_Page__insert_update_cpt_item__attendee_update" filter is not a valid callback. Please check the spelling.', 'event_espresso'), $a_callback ) ); |
|
2452 | + $attendee_update_callbacks = apply_filters('FHEE__Registrations_Admin_Page__insert_update_cpt_item__attendee_update', array()); |
|
2453 | + foreach ($attendee_update_callbacks as $a_callback) { |
|
2454 | + if (FALSE === call_user_func_array($a_callback, array($attendee, $this->_req_data))) { |
|
2455 | + throw new EE_Error(sprintf(__('The %s callback given for the "FHEE__Registrations_Admin_Page__insert_update_cpt_item__attendee_update" filter is not a valid callback. Please check the spelling.', 'event_espresso'), $a_callback)); |
|
2456 | 2456 | } |
2457 | 2457 | } |
2458 | 2458 | } |
2459 | 2459 | |
2460 | - if ( $success === FALSE ) |
|
2461 | - EE_Error::add_error(__('Something went wrong with updating the meta table data for the registration.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__ ); |
|
2460 | + if ($success === FALSE) |
|
2461 | + EE_Error::add_error(__('Something went wrong with updating the meta table data for the registration.', 'event_espresso'), __FILE__, __FUNCTION__, __LINE__); |
|
2462 | 2462 | |
2463 | 2463 | } |
2464 | 2464 | |
@@ -2478,17 +2478,17 @@ discard block |
||
2478 | 2478 | remove_meta_box('postexcerpt', __('Excerpt'), 'post_excerpt_meta_box', $this->_cpt_routes[$this->_req_action], 'normal', 'core'); |
2479 | 2479 | remove_meta_box('commentstatusdiv', $this->_cpt_routes[$this->_req_action], 'normal', 'core'); |
2480 | 2480 | |
2481 | - if ( post_type_supports( 'espresso_attendees', 'excerpt') ) { |
|
2482 | - add_meta_box('postexcerpt', __('Short Biography', 'event_espresso'), 'post_excerpt_meta_box', $this->_cpt_routes[$this->_req_action], 'normal' ); |
|
2481 | + if (post_type_supports('espresso_attendees', 'excerpt')) { |
|
2482 | + add_meta_box('postexcerpt', __('Short Biography', 'event_espresso'), 'post_excerpt_meta_box', $this->_cpt_routes[$this->_req_action], 'normal'); |
|
2483 | 2483 | } |
2484 | 2484 | |
2485 | - if ( post_type_supports( 'espresso_attendees', 'comments') ) { |
|
2485 | + if (post_type_supports('espresso_attendees', 'comments')) { |
|
2486 | 2486 | add_meta_box('commentsdiv', __('Notes on the Contact', 'event_espresso'), 'post_comment_meta_box', $this->_cpt_routes[$this->_req_action], 'normal', 'core'); |
2487 | 2487 | } |
2488 | 2488 | |
2489 | - add_meta_box('attendee_contact_info', __('Contact Info', 'event_espresso'), array( $this, 'attendee_contact_info'), $this->_cpt_routes[$this->_req_action], 'side', 'core' ); |
|
2490 | - add_meta_box('attendee_details_address', __('Address Details', 'event_espresso'), array($this, 'attendee_address_details'), $this->_cpt_routes[$this->_req_action], 'normal', 'core' ); |
|
2491 | - add_meta_box('attendee_registrations', __('Registrations for this Contact', 'event_espresso'), array( $this, 'attendee_registrations_meta_box'), $this->_cpt_routes[$this->_req_action], 'normal', 'high'); |
|
2489 | + add_meta_box('attendee_contact_info', __('Contact Info', 'event_espresso'), array($this, 'attendee_contact_info'), $this->_cpt_routes[$this->_req_action], 'side', 'core'); |
|
2490 | + add_meta_box('attendee_details_address', __('Address Details', 'event_espresso'), array($this, 'attendee_address_details'), $this->_cpt_routes[$this->_req_action], 'normal', 'core'); |
|
2491 | + add_meta_box('attendee_registrations', __('Registrations for this Contact', 'event_espresso'), array($this, 'attendee_registrations_meta_box'), $this->_cpt_routes[$this->_req_action], 'normal', 'high'); |
|
2492 | 2492 | } |
2493 | 2493 | |
2494 | 2494 | |
@@ -2497,10 +2497,10 @@ discard block |
||
2497 | 2497 | * @param WP_Post $post wp post object |
2498 | 2498 | * @return string attendee contact info ( and form ) |
2499 | 2499 | */ |
2500 | - public function attendee_contact_info( $post ) { |
|
2500 | + public function attendee_contact_info($post) { |
|
2501 | 2501 | //get attendee object ( should already have it ) |
2502 | 2502 | $this->_template_args['attendee'] = $this->_cpt_model_obj; |
2503 | - $template = REG_TEMPLATE_PATH . 'attendee_contact_info_metabox_content.template.php'; |
|
2503 | + $template = REG_TEMPLATE_PATH.'attendee_contact_info_metabox_content.template.php'; |
|
2504 | 2504 | EEH_Template::display_template($template, $this->_template_args); |
2505 | 2505 | } |
2506 | 2506 | |
@@ -2516,12 +2516,12 @@ discard block |
||
2516 | 2516 | $this->_template_args['attendee'] = $this->_cpt_model_obj; |
2517 | 2517 | $this->_template_args['state_html'] = EEH_Form_Fields::generate_form_input( |
2518 | 2518 | new EE_Question_Form_Input( |
2519 | - EE_Question::new_instance( array( |
|
2519 | + EE_Question::new_instance(array( |
|
2520 | 2520 | 'QST_ID' => 0, |
2521 | 2521 | 'QST_display_text' => __('State/Province', 'event_espresso'), |
2522 | 2522 | 'QST_system' => 'admin-state' |
2523 | 2523 | )), |
2524 | - EE_Answer::new_instance( array( |
|
2524 | + EE_Answer::new_instance(array( |
|
2525 | 2525 | 'ANS_ID' => 0, |
2526 | 2526 | 'ANS_value' => $this->_cpt_model_obj->state_ID() |
2527 | 2527 | )), |
@@ -2534,12 +2534,12 @@ discard block |
||
2534 | 2534 | )); |
2535 | 2535 | $this->_template_args['country_html'] = EEH_Form_Fields::generate_form_input( |
2536 | 2536 | new EE_Question_Form_Input( |
2537 | - EE_Question::new_instance( array( |
|
2537 | + EE_Question::new_instance(array( |
|
2538 | 2538 | 'QST_ID' => 0, |
2539 | 2539 | 'QST_display_text' => __('Country', 'event_espresso'), |
2540 | 2540 | 'QST_system' => 'admin-country' |
2541 | 2541 | )), |
2542 | - EE_Answer::new_instance( array( |
|
2542 | + EE_Answer::new_instance(array( |
|
2543 | 2543 | 'ANS_ID' => 0, |
2544 | 2544 | 'ANS_value' => $this->_cpt_model_obj->country_ID() |
2545 | 2545 | )), |
@@ -2550,8 +2550,8 @@ discard block |
||
2550 | 2550 | 'append_qstn_id' => FALSE |
2551 | 2551 | ) |
2552 | 2552 | )); |
2553 | - $template = REG_TEMPLATE_PATH . 'attendee_address_details_metabox_content.template.php'; |
|
2554 | - EEH_Template::display_template($template, $this->_template_args ); |
|
2553 | + $template = REG_TEMPLATE_PATH.'attendee_address_details_metabox_content.template.php'; |
|
2554 | + EEH_Template::display_template($template, $this->_template_args); |
|
2555 | 2555 | |
2556 | 2556 | } |
2557 | 2557 | |
@@ -2561,11 +2561,11 @@ discard block |
||
2561 | 2561 | * @access protected |
2562 | 2562 | * @return void |
2563 | 2563 | */ |
2564 | - public function attendee_registrations_meta_box( $post ) { |
|
2564 | + public function attendee_registrations_meta_box($post) { |
|
2565 | 2565 | |
2566 | 2566 | $this->_template_args['attendee'] = $this->_cpt_model_obj; |
2567 | 2567 | $this->_template_args['registrations'] = $this->_cpt_model_obj->get_many_related('Registration'); |
2568 | - $template = REG_TEMPLATE_PATH . 'attendee_registrations_main_meta_box.template.php'; |
|
2568 | + $template = REG_TEMPLATE_PATH.'attendee_registrations_main_meta_box.template.php'; |
|
2569 | 2569 | EEH_Template::display_template($template, $this->_template_args); |
2570 | 2570 | |
2571 | 2571 | } |
@@ -2579,8 +2579,8 @@ discard block |
||
2579 | 2579 | * @return string html for new form. |
2580 | 2580 | */ |
2581 | 2581 | public function after_title_form_fields($post) { |
2582 | - if ( $post->post_type == 'espresso_attendees' ) { |
|
2583 | - $template = REG_TEMPLATE_PATH . 'attendee_details_after_title_form_fields.template.php'; |
|
2582 | + if ($post->post_type == 'espresso_attendees') { |
|
2583 | + $template = REG_TEMPLATE_PATH.'attendee_details_after_title_form_fields.template.php'; |
|
2584 | 2584 | $template_args['attendee'] = $this->_cpt_model_obj; |
2585 | 2585 | EEH_Template::display_template($template, $template_args); |
2586 | 2586 | } |
@@ -2597,21 +2597,21 @@ discard block |
||
2597 | 2597 | * @access protected |
2598 | 2598 | * @return void |
2599 | 2599 | */ |
2600 | - protected function _trash_or_restore_attendees( $trash = TRUE ) { |
|
2600 | + protected function _trash_or_restore_attendees($trash = TRUE) { |
|
2601 | 2601 | |
2602 | - do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
|
2602 | + do_action('AHEE_log', __FILE__, __FUNCTION__, ''); |
|
2603 | 2603 | |
2604 | 2604 | $ATT_MDL = EEM_Attendee::instance(); |
2605 | 2605 | |
2606 | 2606 | $success = 1; |
2607 | 2607 | //Checkboxes |
2608 | - if (!empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
2608 | + if ( ! empty($this->_req_data['checkbox']) && is_array($this->_req_data['checkbox'])) { |
|
2609 | 2609 | // if array has more than one element than success message should be plural |
2610 | - $success = count( $this->_req_data['checkbox'] ) > 1 ? 2 : 1; |
|
2610 | + $success = count($this->_req_data['checkbox']) > 1 ? 2 : 1; |
|
2611 | 2611 | // cycle thru checkboxes |
2612 | - while (list( $ATT_ID, $value ) = each($this->_req_data['checkbox'])) { |
|
2613 | - $updated = $trash ? $ATT_MDL->update_by_ID(array( 'status' => 'trash' ), $ATT_ID) : $ATT_MDL->update_by_ID( array('status' => 'publish' ), $ATT_ID); |
|
2614 | - if ( !$updated ) { |
|
2612 | + while (list($ATT_ID, $value) = each($this->_req_data['checkbox'])) { |
|
2613 | + $updated = $trash ? $ATT_MDL->update_by_ID(array('status' => 'trash'), $ATT_ID) : $ATT_MDL->update_by_ID(array('status' => 'publish'), $ATT_ID); |
|
2614 | + if ( ! $updated) { |
|
2615 | 2615 | $success = 0; |
2616 | 2616 | } |
2617 | 2617 | } |
@@ -2620,18 +2620,18 @@ discard block |
||
2620 | 2620 | // grab single id and delete |
2621 | 2621 | $ATT_ID = absint($this->_req_data['ATT_ID']); |
2622 | 2622 | //get attendee |
2623 | - $att = $ATT_MDL->get_one_by_ID( $ATT_ID ); |
|
2623 | + $att = $ATT_MDL->get_one_by_ID($ATT_ID); |
|
2624 | 2624 | $updated = $trash ? $att->set_status('trash') : $att->set_status('publish'); |
2625 | 2625 | $updated = $att->save(); |
2626 | - if ( ! $updated ) { |
|
2626 | + if ( ! $updated) { |
|
2627 | 2627 | $success = 0; |
2628 | 2628 | } |
2629 | 2629 | |
2630 | 2630 | } |
2631 | 2631 | |
2632 | - $what = $success > 1 ? __( 'Contacts', 'event_espresso' ) : __( 'Contact', 'event_espresso' ); |
|
2633 | - $action_desc = $trash ? __( 'moved to the trash', 'event_espresso' ) : __( 'restored', 'event_espresso' ); |
|
2634 | - $this->_redirect_after_action( $success, $what, $action_desc, array( 'action' => 'contact_list' ) ); |
|
2632 | + $what = $success > 1 ? __('Contacts', 'event_espresso') : __('Contact', 'event_espresso'); |
|
2633 | + $action_desc = $trash ? __('moved to the trash', 'event_espresso') : __('restored', 'event_espresso'); |
|
2634 | + $this->_redirect_after_action($success, $what, $action_desc, array('action' => 'contact_list')); |
|
2635 | 2635 | |
2636 | 2636 | } |
2637 | 2637 |
@@ -1,26 +1,26 @@ discard block |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
2 | 2 | /** |
3 | - * Event Espresso |
|
4 | - * |
|
5 | - * Event Registration and Management Plugin for WordPress |
|
6 | - * |
|
7 | - * @ package Event Espresso |
|
8 | - * @ author Seth Shoultes |
|
9 | - * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | - * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
11 | - * @ link {@link http://www.eventespresso.com} |
|
12 | - * @ since 4.0 |
|
13 | - * |
|
14 | - * ------------------------------------------------------------------------ |
|
15 | - * |
|
16 | - * Registrations_Admin_Page class |
|
17 | - * |
|
18 | - * @package Event Espresso |
|
19 | - * @subpackage includes/core/admin/transactions/Registrations_Admin_Page.core.php |
|
20 | - * @author Brent Christensen |
|
21 | - * |
|
22 | - * ------------------------------------------------------------------------ |
|
23 | - */ |
|
3 | + * Event Espresso |
|
4 | + * |
|
5 | + * Event Registration and Management Plugin for WordPress |
|
6 | + * |
|
7 | + * @ package Event Espresso |
|
8 | + * @ author Seth Shoultes |
|
9 | + * @ copyright (c) 2008-2011 Event Espresso All Rights Reserved. |
|
10 | + * @ license {@link http://eventespresso.com/support/terms-conditions/} * see Plugin Licensing * |
|
11 | + * @ link {@link http://www.eventespresso.com} |
|
12 | + * @ since 4.0 |
|
13 | + * |
|
14 | + * ------------------------------------------------------------------------ |
|
15 | + * |
|
16 | + * Registrations_Admin_Page class |
|
17 | + * |
|
18 | + * @package Event Espresso |
|
19 | + * @subpackage includes/core/admin/transactions/Registrations_Admin_Page.core.php |
|
20 | + * @author Brent Christensen |
|
21 | + * |
|
22 | + * ------------------------------------------------------------------------ |
|
23 | + */ |
|
24 | 24 | class Registrations_Admin_Page extends EE_Admin_Page_CPT { |
25 | 25 | |
26 | 26 | /** |
@@ -163,9 +163,9 @@ discard block |
||
163 | 163 | |
164 | 164 | /** |
165 | 165 | * grab url requests and route them |
166 | - * @access private |
|
167 | - * @return void |
|
168 | - */ |
|
166 | + * @access private |
|
167 | + * @return void |
|
168 | + */ |
|
169 | 169 | public function _set_page_routes() { |
170 | 170 | |
171 | 171 | $this->_get_registration_status_array(); |
@@ -436,7 +436,7 @@ discard block |
||
436 | 436 | 'title' => __('Registrations Other', 'event_espresso'), |
437 | 437 | 'filename' => 'registrations_overview_other' |
438 | 438 | ) |
439 | - ), |
|
439 | + ), |
|
440 | 440 | 'help_tour' => array( 'Registration_Overview_Help_Tour' ), |
441 | 441 | 'qtips' => array('Registration_List_Table_Tips'), |
442 | 442 | 'list_table' => 'EE_Registrations_List_Table', |
@@ -450,7 +450,7 @@ discard block |
||
450 | 450 | 'url' => isset($this->_req_data['_REG_ID']) ? add_query_arg(array('_REG_ID' => $this->_req_data['_REG_ID'] ), $this->_current_page_view_url ) : $this->_admin_base_url, |
451 | 451 | 'persistent' => FALSE |
452 | 452 | ), |
453 | - 'help_tabs' => array( |
|
453 | + 'help_tabs' => array( |
|
454 | 454 | 'registrations_details_help_tab' => array( |
455 | 455 | 'title' => __('Registration Details', 'event_espresso'), |
456 | 456 | 'filename' => 'registrations_details' |
@@ -514,7 +514,7 @@ discard block |
||
514 | 514 | 'order' => 20 |
515 | 515 | ), |
516 | 516 | 'list_table' => 'EE_Attendee_Contact_List_Table', |
517 | - 'help_tabs' => array( |
|
517 | + 'help_tabs' => array( |
|
518 | 518 | 'registrations_contact_list_help_tab' => array( |
519 | 519 | 'title' => __('Registrations Contact List', 'event_espresso'), |
520 | 520 | 'filename' => 'registrations_contact_list' |
@@ -531,7 +531,7 @@ discard block |
||
531 | 531 | 'title' => __('Contact List Other', 'event_espresso'), |
532 | 532 | 'filename' => 'registrations_contact_list_other' |
533 | 533 | ) |
534 | - ), |
|
534 | + ), |
|
535 | 535 | 'help_tour' => array( 'Contact_List_Help_Tour' ), |
536 | 536 | 'metaboxes' => array(), |
537 | 537 | 'require_nonce' => FALSE |
@@ -565,9 +565,9 @@ discard block |
||
565 | 565 | |
566 | 566 | /** |
567 | 567 | * get list of registration statuses |
568 | - * @access private |
|
569 | - * @return void |
|
570 | - */ |
|
568 | + * @access private |
|
569 | + * @return void |
|
570 | + */ |
|
571 | 571 | private function _get_registration_status_array() { |
572 | 572 | self::$_reg_status = EEM_Registration::reg_status_array( array(), TRUE); |
573 | 573 | } |
@@ -885,7 +885,7 @@ discard block |
||
885 | 885 | return TRUE; |
886 | 886 | } |
887 | 887 | |
888 | - $REG = EEM_Registration::instance(); |
|
888 | + $REG = EEM_Registration::instance(); |
|
889 | 889 | |
890 | 890 | $REG_ID = ( ! empty( $this->_req_data['_REG_ID'] )) ? absint( $this->_req_data['_REG_ID'] ) : FALSE; |
891 | 891 | |
@@ -1108,9 +1108,9 @@ discard block |
||
1108 | 1108 | |
1109 | 1109 | /** |
1110 | 1110 | * generates HTML for the View Registration Details Admin page |
1111 | - * @access protected |
|
1112 | - * @return void |
|
1113 | - */ |
|
1111 | + * @access protected |
|
1112 | + * @return void |
|
1113 | + */ |
|
1114 | 1114 | protected function _registration_details() { |
1115 | 1115 | |
1116 | 1116 | $this->_template_args = array(); |
@@ -1188,9 +1188,9 @@ discard block |
||
1188 | 1188 | |
1189 | 1189 | /** |
1190 | 1190 | * _set_approve_or_decline_reg_status_buttons |
1191 | - * @access protected |
|
1192 | - * @return string |
|
1193 | - */ |
|
1191 | + * @access protected |
|
1192 | + * @return string |
|
1193 | + */ |
|
1194 | 1194 | public function set_reg_status_buttons_metabox() { |
1195 | 1195 | |
1196 | 1196 | //is registration for free event OR for a completed transaction? This will determine whether the set to pending option is shown. |
@@ -1379,10 +1379,10 @@ discard block |
||
1379 | 1379 | |
1380 | 1380 | /** |
1381 | 1381 | * approve_registration |
1382 | - * @access protected |
|
1383 | - * @param bool $notify whether or not to notify the registrant about their approval. |
|
1384 | - * @return void |
|
1385 | - */ |
|
1382 | + * @access protected |
|
1383 | + * @param bool $notify whether or not to notify the registrant about their approval. |
|
1384 | + * @return void |
|
1385 | + */ |
|
1386 | 1386 | protected function approve_registration( $notify = false ) { |
1387 | 1387 | $this->_reg_status_change_return( EEM_Registration::status_id_approved, $notify ); |
1388 | 1388 | } |
@@ -1392,10 +1392,10 @@ discard block |
||
1392 | 1392 | |
1393 | 1393 | /** |
1394 | 1394 | * decline_registration |
1395 | - * @access protected |
|
1396 | - * @param bool $notify whether or not to notify the registrant about their approval. |
|
1397 | - * @return void |
|
1398 | - */ |
|
1395 | + * @access protected |
|
1396 | + * @param bool $notify whether or not to notify the registrant about their approval. |
|
1397 | + * @return void |
|
1398 | + */ |
|
1399 | 1399 | protected function decline_registration( $notify = false ) { |
1400 | 1400 | $this->_reg_status_change_return( EEM_Registration::status_id_declined, $notify ); |
1401 | 1401 | } |
@@ -1405,10 +1405,10 @@ discard block |
||
1405 | 1405 | |
1406 | 1406 | /** |
1407 | 1407 | * cancel_registration |
1408 | - * @access protected |
|
1409 | - * @param bool $notify whether or not to notify the registrant about their approval. |
|
1410 | - * @return void |
|
1411 | - */ |
|
1408 | + * @access protected |
|
1409 | + * @param bool $notify whether or not to notify the registrant about their approval. |
|
1410 | + * @return void |
|
1411 | + */ |
|
1412 | 1412 | protected function cancel_registration( $notify = false ) { |
1413 | 1413 | $this->_reg_status_change_return( EEM_Registration::status_id_cancelled, $notify ); |
1414 | 1414 | } |
@@ -1419,10 +1419,10 @@ discard block |
||
1419 | 1419 | |
1420 | 1420 | /** |
1421 | 1421 | * not_approve_registration |
1422 | - * @access protected |
|
1423 | - * @param bool $notify whether or not to notify the registrant about their approval. |
|
1424 | - * @return void |
|
1425 | - */ |
|
1422 | + * @access protected |
|
1423 | + * @param bool $notify whether or not to notify the registrant about their approval. |
|
1424 | + * @return void |
|
1425 | + */ |
|
1426 | 1426 | protected function not_approve_registration( $notify = false ) { |
1427 | 1427 | $this->_reg_status_change_return( EEM_Registration::status_id_not_approved, $notify ); |
1428 | 1428 | } |
@@ -1431,10 +1431,10 @@ discard block |
||
1431 | 1431 | |
1432 | 1432 | /** |
1433 | 1433 | * decline_registration |
1434 | - * @access protected |
|
1435 | - * @param bool $notify whether or not to notify the registrant about their approval. |
|
1436 | - * @return void |
|
1437 | - */ |
|
1434 | + * @access protected |
|
1435 | + * @param bool $notify whether or not to notify the registrant about their approval. |
|
1436 | + * @return void |
|
1437 | + */ |
|
1438 | 1438 | protected function pending_registration( $notify = false ) { |
1439 | 1439 | $this->_reg_status_change_return( EEM_Registration::status_id_pending_payment, $notify ); |
1440 | 1440 | } |
@@ -1444,9 +1444,9 @@ discard block |
||
1444 | 1444 | |
1445 | 1445 | /** |
1446 | 1446 | * generates HTML for the Registration main meta box |
1447 | - * @access public |
|
1448 | - * @return void |
|
1449 | - */ |
|
1447 | + * @access public |
|
1448 | + * @return void |
|
1449 | + */ |
|
1450 | 1450 | public function _reg_details_meta_box() { |
1451 | 1451 | EEH_Autoloader::register_line_item_display_autoloaders(); |
1452 | 1452 | EEH_Autoloader::register_line_item_filter_autoloaders(); |
@@ -1529,7 +1529,7 @@ discard block |
||
1529 | 1529 | * |
1530 | 1530 | * @access public |
1531 | 1531 | * @return void |
1532 | - */ |
|
1532 | + */ |
|
1533 | 1533 | public function _reg_questions_meta_box() { |
1534 | 1534 | //allow someone to override this method entirely |
1535 | 1535 | if( apply_filters( 'FHEE__Registrations_Admin_Page___reg_questions_meta_box__do_default', true, $this, $this->_registration ) ) { |
@@ -1731,12 +1731,12 @@ discard block |
||
1731 | 1731 | |
1732 | 1732 | /** |
1733 | 1733 | * generates HTML for the Registration main meta box |
1734 | - * @access public |
|
1735 | - * @return void |
|
1736 | - */ |
|
1734 | + * @access public |
|
1735 | + * @return void |
|
1736 | + */ |
|
1737 | 1737 | public function _reg_attendees_meta_box() { |
1738 | 1738 | |
1739 | - $REG = EEM_Registration::instance(); |
|
1739 | + $REG = EEM_Registration::instance(); |
|
1740 | 1740 | //get all other registrations on this transaction, and cache |
1741 | 1741 | //the attendees for them so we don't have to run another query using force_join |
1742 | 1742 | $registrations = $REG->get_all(array( |
@@ -1789,9 +1789,9 @@ discard block |
||
1789 | 1789 | |
1790 | 1790 | /** |
1791 | 1791 | * generates HTML for the Edit Registration side meta box |
1792 | - * @access public |
|
1793 | - * @return void |
|
1794 | - */ |
|
1792 | + * @access public |
|
1793 | + * @return void |
|
1794 | + */ |
|
1795 | 1795 | public function _reg_registrant_side_meta_box() { |
1796 | 1796 | |
1797 | 1797 | /*@var $attendee EE_Attendee */ |
@@ -2170,9 +2170,9 @@ discard block |
||
2170 | 2170 | |
2171 | 2171 | /** |
2172 | 2172 | * set_reg_event |
2173 | - * @access private |
|
2174 | - * @return boolean |
|
2175 | - */ |
|
2173 | + * @access private |
|
2174 | + * @return boolean |
|
2175 | + */ |
|
2176 | 2176 | private function _set_reg_event() { |
2177 | 2177 | if ( is_object( $this->_reg_event )) { |
2178 | 2178 | return TRUE; |
@@ -2312,9 +2312,9 @@ discard block |
||
2312 | 2312 | |
2313 | 2313 | /** |
2314 | 2314 | * generates HTML for the Attendee Contact List |
2315 | - * @access protected |
|
2316 | - * @return void |
|
2317 | - */ |
|
2315 | + * @access protected |
|
2316 | + * @return void |
|
2317 | + */ |
|
2318 | 2318 | protected function _attendee_contact_list_table() { |
2319 | 2319 | do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
2320 | 2320 | $this->_search_btn_label = __('Contacts', 'event_espresso'); |
@@ -2328,9 +2328,9 @@ discard block |
||
2328 | 2328 | /** |
2329 | 2329 | * get_attendees |
2330 | 2330 | * @param bool $count whether to return count or data. |
2331 | - * @access public |
|
2332 | - * @return array |
|
2333 | - */ |
|
2331 | + * @access public |
|
2332 | + * @return array |
|
2333 | + */ |
|
2334 | 2334 | public function get_attendees( $per_page, $count = FALSE, $trash = FALSE ) { |
2335 | 2335 | |
2336 | 2336 | do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
@@ -2666,9 +2666,9 @@ discard block |
||
2666 | 2666 | |
2667 | 2667 | /** |
2668 | 2668 | * _attendee_details |
2669 | - * @access protected |
|
2670 | - * @return void |
|
2671 | - */ |
|
2669 | + * @access protected |
|
2670 | + * @return void |
|
2671 | + */ |
|
2672 | 2672 | public function attendee_registrations_meta_box( $post ) { |
2673 | 2673 | |
2674 | 2674 | $this->_template_args['attendee'] = $this->_cpt_model_obj; |
@@ -2701,10 +2701,10 @@ discard block |
||
2701 | 2701 | |
2702 | 2702 | /** |
2703 | 2703 | * _trash_or_restore_attendee |
2704 | - * @param boolean $trash - whether to move item to trash (TRUE) or restore it (FALSE) |
|
2705 | - * @access protected |
|
2706 | - * @return void |
|
2707 | - */ |
|
2704 | + * @param boolean $trash - whether to move item to trash (TRUE) or restore it (FALSE) |
|
2705 | + * @access protected |
|
2706 | + * @return void |
|
2707 | + */ |
|
2708 | 2708 | protected function _trash_or_restore_attendees( $trash = TRUE ) { |
2709 | 2709 | |
2710 | 2710 | do_action( 'AHEE_log', __FILE__, __FUNCTION__, '' ); |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <div id="admin-primary-mbox-dv" class="admin-primary-mbox-dv"> |
2 | 2 | |
3 | 3 | <h3 class="admin-primary-mbox-h4 hdr-has-icon"> |
4 | - <span class="dashicons dashicons-cart"></span><?php _e( 'Transaction Items', 'event_espresso' );?> |
|
4 | + <span class="dashicons dashicons-cart"></span><?php _e('Transaction Items', 'event_espresso'); ?> |
|
5 | 5 | </h3> |
6 | 6 | |
7 | 7 | <div class="admin-primary-mbox-tbl-wrap"> |
@@ -10,27 +10,27 @@ discard block |
||
10 | 10 | </div> |
11 | 11 | |
12 | 12 | <a id="display-additional-transaction-session-info" class="display-the-hidden smaller-text" rel="additional-transaction-session-info"> |
13 | - <span class="dashicons dashicons-plus-alt"></span><?php _e( 'view additional transaction session details', 'event_espresso' );?> |
|
13 | + <span class="dashicons dashicons-plus-alt"></span><?php _e('view additional transaction session details', 'event_espresso'); ?> |
|
14 | 14 | </a> |
15 | 15 | |
16 | 16 | <div id="additional-transaction-session-info-dv" class="hidden"> |
17 | 17 | |
18 | 18 | <a id="hide-additional-transaction-session-info" class="hide-the-displayed hidden smaller-text" rel="additional-transaction-session-info"> |
19 | - <span class="dashicons dashicons-dismiss"></span><?php _e( 'hide additional transaction session details', 'event_espresso' );?> |
|
19 | + <span class="dashicons dashicons-dismiss"></span><?php _e('hide additional transaction session details', 'event_espresso'); ?> |
|
20 | 20 | </a> |
21 | 21 | <br class="clear"/> |
22 | 22 | |
23 | - <h3 class="admin-primary-mbox-h4"><?php _e( 'Transaction Session Details', 'event_espresso' );?></h3> |
|
23 | + <h3 class="admin-primary-mbox-h4"><?php _e('Transaction Session Details', 'event_espresso'); ?></h3> |
|
24 | 24 | |
25 | 25 | <table id="admin-primary-mbox-txn-extra-session-info-tbl" class="form-table skinny-rows"> |
26 | 26 | <tbody> |
27 | - <?php foreach ( $txn_details as $key => $txn_detail ) : ?> |
|
27 | + <?php foreach ($txn_details as $key => $txn_detail) : ?> |
|
28 | 28 | <tr> |
29 | 29 | <th> |
30 | - <label for="<?php echo $key;?>"><?php echo $txn_detail['label'];?></label> |
|
30 | + <label for="<?php echo $key; ?>"><?php echo $txn_detail['label']; ?></label> |
|
31 | 31 | </th> |
32 | 32 | <td> |
33 | - <?php echo $txn_detail['value'];?> |
|
33 | + <?php echo $txn_detail['value']; ?> |
|
34 | 34 | </td> |
35 | 35 | </tr> |
36 | 36 | <?php endforeach; // $txn_details?> |
@@ -40,10 +40,10 @@ discard block |
||
40 | 40 | <br class="clear"/> |
41 | 41 | |
42 | 42 | |
43 | - <?php if ( $attendee instanceof EE_Attendee && ( $grand_raw_total > 0 || $TXN_status != 'TCM' || ! empty( $payments ) ) ) : ?> |
|
43 | + <?php if ($attendee instanceof EE_Attendee && ($grand_raw_total > 0 || $TXN_status != 'TCM' || ! empty($payments))) : ?> |
|
44 | 44 | |
45 | 45 | <h3 class="admin-primary-mbox-h4 hdr-has-icon"> |
46 | - <span class="ee-icon ee-icon-cash"></span><?php _e( 'Payment Details', 'event_espresso' );?> |
|
46 | + <span class="ee-icon ee-icon-cash"></span><?php _e('Payment Details', 'event_espresso'); ?> |
|
47 | 47 | </h3> |
48 | 48 | |
49 | 49 | <div class="admin-primary-mbox-tbl-wrap"> |
@@ -52,75 +52,75 @@ discard block |
||
52 | 52 | <tr> |
53 | 53 | <th></th> |
54 | 54 | <th class="jst-cntr"></th> |
55 | - <th class="jst-cntr"><?php _e( 'ID', 'event_espresso' );?></th> |
|
56 | - <th class="jst-left"><?php _e( 'Date', 'event_espresso' );?></th> |
|
57 | - <th class="jst-cntr"><?php _e( 'Source', 'event_espresso' );?></th> |
|
58 | - <th class="jst-left"><?php _e( 'Method', 'event_espresso' );?></th> |
|
59 | - <th class="jst-left"><?php _e( 'Gateway Response', 'event_espresso' );?></th> |
|
60 | - <th class="jst-left"><?php _e( 'TXN ID / CHQ #', 'event_espresso' );?></th> |
|
61 | - <th class="jst-left"><?php _e( 'P.O. / S.O. #', 'event_espresso' );?></th> |
|
62 | - <th class="jst-left"><?php _e( 'Notes / Extra Accounting', 'event_espresso' );?></th> |
|
63 | - <!--<th class="jst-left"><?php _e( 'Details', 'event_espresso' );?></th>--> |
|
64 | - <th class="jst-cntr"><?php _e( 'Amount', 'event_espresso' );?></th> |
|
55 | + <th class="jst-cntr"><?php _e('ID', 'event_espresso'); ?></th> |
|
56 | + <th class="jst-left"><?php _e('Date', 'event_espresso'); ?></th> |
|
57 | + <th class="jst-cntr"><?php _e('Source', 'event_espresso'); ?></th> |
|
58 | + <th class="jst-left"><?php _e('Method', 'event_espresso'); ?></th> |
|
59 | + <th class="jst-left"><?php _e('Gateway Response', 'event_espresso'); ?></th> |
|
60 | + <th class="jst-left"><?php _e('TXN ID / CHQ #', 'event_espresso'); ?></th> |
|
61 | + <th class="jst-left"><?php _e('P.O. / S.O. #', 'event_espresso'); ?></th> |
|
62 | + <th class="jst-left"><?php _e('Notes / Extra Accounting', 'event_espresso'); ?></th> |
|
63 | + <!--<th class="jst-left"><?php _e('Details', 'event_espresso'); ?></th>--> |
|
64 | + <th class="jst-cntr"><?php _e('Amount', 'event_espresso'); ?></th> |
|
65 | 65 | </tr> |
66 | 66 | </thead> |
67 | 67 | <tbody> |
68 | - <?php if ( $payments ) : ?> |
|
68 | + <?php if ($payments) : ?> |
|
69 | 69 | <?php $payment_total = 0; ?> |
70 | - <?php foreach ( $payments as $PAY_ID => $payment ) : ?> |
|
71 | - <tr id="txn-admin-payment-tr-<?php echo $PAY_ID;?>"> |
|
70 | + <?php foreach ($payments as $PAY_ID => $payment) : ?> |
|
71 | + <tr id="txn-admin-payment-tr-<?php echo $PAY_ID; ?>"> |
|
72 | 72 | <td> |
73 | 73 | <span id="payment-status-<?php echo $PAY_ID; ?>" class="ee-status-strip-td ee-status-strip pymt-status-<?php echo $payment->STS_ID(); ?>"></span> |
74 | - <div id="payment-STS_ID-<?php echo $PAY_ID;?>" class="hidden"><?php echo $payment->STS_ID();?></div> |
|
75 | - <div id="reg-payments-<?php echo $PAY_ID;?>" class="hidden"><?php echo json_encode( $existing_reg_payments[ $PAY_ID ] );?></div> |
|
74 | + <div id="payment-STS_ID-<?php echo $PAY_ID; ?>" class="hidden"><?php echo $payment->STS_ID(); ?></div> |
|
75 | + <div id="reg-payments-<?php echo $PAY_ID; ?>" class="hidden"><?php echo json_encode($existing_reg_payments[$PAY_ID]); ?></div> |
|
76 | 76 | </td> |
77 | 77 | <td class=" jst-cntr"> |
78 | 78 | <ul class="txn-overview-actions-ul"> |
79 | 79 | <li> |
80 | - <a class="txn-admin-payment-action-edit-lnk" title="<?php esc_attr_e( 'Edit Payment', 'event_espresso' );?>" data-payment-id="<?php echo $PAY_ID;?>"> |
|
80 | + <a class="txn-admin-payment-action-edit-lnk" title="<?php esc_attr_e('Edit Payment', 'event_espresso'); ?>" data-payment-id="<?php echo $PAY_ID; ?>"> |
|
81 | 81 | <div class="dashicons dashicons-edit" style="margin: 0;"></div> |
82 | 82 | </a> |
83 | 83 | </li> |
84 | 84 | <li> |
85 | - <a class="txn-admin-payment-action-delete-lnk" title="<?php esc_attr_e( 'Delete Payment', 'event_espresso' );?>" data-payment-id="<?php echo $PAY_ID;?>"> |
|
85 | + <a class="txn-admin-payment-action-delete-lnk" title="<?php esc_attr_e('Delete Payment', 'event_espresso'); ?>" data-payment-id="<?php echo $PAY_ID; ?>"> |
|
86 | 86 | <div class="dashicons dashicons-trash" style="margin: 0;"></div> |
87 | 87 | </a> |
88 | 88 | </li> |
89 | 89 | </ul> |
90 | 90 | </td> |
91 | 91 | <td class=" jst-rght"> |
92 | - <div id="payment-id-<?php echo $PAY_ID;?>"><?php echo $PAY_ID;?></div> |
|
92 | + <div id="payment-id-<?php echo $PAY_ID; ?>"><?php echo $PAY_ID; ?></div> |
|
93 | 93 | </td> |
94 | 94 | <td class=" jst-left"> |
95 | - <div id="payment-date-<?php echo $PAY_ID;?>" class="payment-date-dv"><?php echo $payment->timestamp('Y-m-d', 'h:i a');?></div> |
|
95 | + <div id="payment-date-<?php echo $PAY_ID; ?>" class="payment-date-dv"><?php echo $payment->timestamp('Y-m-d', 'h:i a'); ?></div> |
|
96 | 96 | </td> |
97 | 97 | <td class=" jst-cntr"> |
98 | - <div id="payment-method-<?php echo $PAY_ID;?>"> |
|
99 | - <?php echo $payment->source();?> |
|
98 | + <div id="payment-method-<?php echo $PAY_ID; ?>"> |
|
99 | + <?php echo $payment->source(); ?> |
|
100 | 100 | </div> |
101 | 101 | </td> |
102 | 102 | <td class=" jst-left"> |
103 | - <div id="payment-gateway-<?php echo $PAY_ID;?>"> |
|
104 | - <?php echo $payment->payment_method() ? $payment->payment_method()->admin_name() : __("Unknown", 'event_espresso');?> |
|
103 | + <div id="payment-gateway-<?php echo $PAY_ID; ?>"> |
|
104 | + <?php echo $payment->payment_method() ? $payment->payment_method()->admin_name() : __("Unknown", 'event_espresso'); ?> |
|
105 | 105 | </div> |
106 | - <div id="payment-gateway-id-<?php echo $PAY_ID;?>" class="hidden"><?php echo $payment->payment_method() ? $payment->payment_method()->ID() : 0;?></div> |
|
106 | + <div id="payment-gateway-id-<?php echo $PAY_ID; ?>" class="hidden"><?php echo $payment->payment_method() ? $payment->payment_method()->ID() : 0; ?></div> |
|
107 | 107 | </td> |
108 | 108 | <td class=" jst-left"> |
109 | - <div id="payment-response-<?php echo $PAY_ID;?>"><?php echo $payment->gateway_response();?></div> |
|
109 | + <div id="payment-response-<?php echo $PAY_ID; ?>"><?php echo $payment->gateway_response(); ?></div> |
|
110 | 110 | </td> |
111 | 111 | <td class=" jst-left"> |
112 | - <div id="payment-txn-id-chq-nmbr-<?php echo $PAY_ID;?>"><?php echo $payment->txn_id_chq_nmbr();?></div> |
|
112 | + <div id="payment-txn-id-chq-nmbr-<?php echo $PAY_ID; ?>"><?php echo $payment->txn_id_chq_nmbr(); ?></div> |
|
113 | 113 | </td> |
114 | 114 | <td class=" jst-left"> |
115 | - <div id="payment-po-nmbr-<?php echo $PAY_ID;?>"><?php echo $payment->po_number();?></div> |
|
115 | + <div id="payment-po-nmbr-<?php echo $PAY_ID; ?>"><?php echo $payment->po_number(); ?></div> |
|
116 | 116 | </td> |
117 | 117 | <td class=" jst-left"> |
118 | - <div id="payment-accntng-<?php echo $PAY_ID;?>"><?php echo $payment->extra_accntng();?></div> |
|
118 | + <div id="payment-accntng-<?php echo $PAY_ID; ?>"><?php echo $payment->extra_accntng(); ?></div> |
|
119 | 119 | </td> |
120 | 120 | <td class=" jst-rght"> |
121 | - <?php $payment_class = $payment->amount() > 0 ? 'txn-admin-payment-status-' . $payment->STS_ID() : 'txn-admin-payment-status-PDC'; ?> |
|
122 | - <span class="<?php echo $payment_class;?>"> |
|
123 | - <div id="payment-amount-<?php echo $PAY_ID;?>" style="display:inline;"><?php echo EEH_Template::format_currency($payment->amount(), FALSE, FALSE ); ?></div> |
|
121 | + <?php $payment_class = $payment->amount() > 0 ? 'txn-admin-payment-status-'.$payment->STS_ID() : 'txn-admin-payment-status-PDC'; ?> |
|
122 | + <span class="<?php echo $payment_class; ?>"> |
|
123 | + <div id="payment-amount-<?php echo $PAY_ID; ?>" style="display:inline;"><?php echo EEH_Template::format_currency($payment->amount(), FALSE, FALSE); ?></div> |
|
124 | 124 | </span> |
125 | 125 | </td> |
126 | 126 | </tr> |
@@ -130,25 +130,25 @@ discard block |
||
130 | 130 | <?php endforeach; // $payment?> |
131 | 131 | <?php |
132 | 132 | $pay_totals_class = $payment_total > $grand_raw_total ? ' important-notice' : ''; |
133 | - $overpaid = $payment_total > $grand_raw_total ? '<span id="overpaid">' . __( 'This transaction has been overpaid ! ', 'event_espresso' ) . '</span>' : ''; |
|
133 | + $overpaid = $payment_total > $grand_raw_total ? '<span id="overpaid">'.__('This transaction has been overpaid ! ', 'event_espresso').'</span>' : ''; |
|
134 | 134 | ?> |
135 | 135 | <tr id="txn-admin-no-payments-tr" class="admin-primary-mbox-total-tr hidden"> |
136 | 136 | <td class=" jst-rght" colspan="11"> |
137 | - <span class="important-notice"><?php _e( 'No payments have been applied to this transaction yet. Click "Apply Payment" below to make a payment.', 'event_espresso' ); ?></span> |
|
137 | + <span class="important-notice"><?php _e('No payments have been applied to this transaction yet. Click "Apply Payment" below to make a payment.', 'event_espresso'); ?></span> |
|
138 | 138 | </td> |
139 | 139 | </tr> |
140 | - <tr id="txn-admin-payments-total-tr" class="admin-primary-mbox-total-tr<?php echo $pay_totals_class;?>"> |
|
141 | - <th class=" jst-rght" colspan="10"><span id="payments-total-spn"><?php echo $overpaid . sprintf( __( 'Payments Total %s', 'event_espresso' ), '(' . EE_Registry::instance()->CFG->currency->code . ')' );?></span></th> |
|
142 | - <th class=" jst-rght"><span id="txn-admin-payment-total"><?php echo EEH_Template::format_currency($payment_total, FALSE, FALSE);?></span></th> |
|
140 | + <tr id="txn-admin-payments-total-tr" class="admin-primary-mbox-total-tr<?php echo $pay_totals_class; ?>"> |
|
141 | + <th class=" jst-rght" colspan="10"><span id="payments-total-spn"><?php echo $overpaid.sprintf(__('Payments Total %s', 'event_espresso'), '('.EE_Registry::instance()->CFG->currency->code.')'); ?></span></th> |
|
142 | + <th class=" jst-rght"><span id="txn-admin-payment-total"><?php echo EEH_Template::format_currency($payment_total, FALSE, FALSE); ?></span></th> |
|
143 | 143 | </tr> |
144 | 144 | <?php else : ?> |
145 | 145 | <tr id="txn-admin-no-payments-tr" class="admin-primary-mbox-total-tr"> |
146 | 146 | <td class=" jst-rght" colspan="11"> |
147 | - <span class="important-notice"><?php _e( 'No payments have been applied to this transaction yet. Click "Apply Payment" below to make a payment.', 'event_espresso' ); ?></span> |
|
147 | + <span class="important-notice"><?php _e('No payments have been applied to this transaction yet. Click "Apply Payment" below to make a payment.', 'event_espresso'); ?></span> |
|
148 | 148 | </td> |
149 | 149 | </tr> |
150 | 150 | <tr id="txn-admin-payments-total-tr" class="admin-primary-mbox-total-tr hidden"> |
151 | - <th class=" jst-rght" colspan="10"><span id="payments-total-spn"><?php echo __( 'Payments Total', 'event_espresso' );?></span></th> |
|
151 | + <th class=" jst-rght" colspan="10"><span id="payments-total-spn"><?php echo __('Payments Total', 'event_espresso'); ?></span></th> |
|
152 | 152 | <th class=" jst-rght"><span id="txn-admin-payment-total"></span></th> |
153 | 153 | </tr> |
154 | 154 | <?php endif; // $payments?> |
@@ -161,12 +161,12 @@ discard block |
||
161 | 161 | <td class=" jst-cntr"> |
162 | 162 | <ul class="txn-overview-actions-ul"> |
163 | 163 | <li> |
164 | - <a class="txn-admin-payment-action-edit-lnk" title="<?php esc_attr_e( 'Edit Payment', 'event_espresso' );?>" data-payment-id="PAY_ID"> |
|
164 | + <a class="txn-admin-payment-action-edit-lnk" title="<?php esc_attr_e('Edit Payment', 'event_espresso'); ?>" data-payment-id="PAY_ID"> |
|
165 | 165 | <div class="dashicons dashicons-edit" style="margin: 0;"></div> |
166 | 166 | </a> |
167 | 167 | </li> |
168 | 168 | <li> |
169 | - <a class="txn-admin-payment-action-delete-lnk" title="<?php esc_attr_e( 'Delete Payment', 'event_espresso' );?>" data-payment-id="PAY_ID"> |
|
169 | + <a class="txn-admin-payment-action-delete-lnk" title="<?php esc_attr_e('Delete Payment', 'event_espresso'); ?>" data-payment-id="PAY_ID"> |
|
170 | 170 | <div class="dashicons dashicons-trash" style="margin: 0;"></div> |
171 | 171 | </a> |
172 | 172 | </li> |
@@ -213,12 +213,12 @@ discard block |
||
213 | 213 | <ul id="txn-admin-payment-options-ul"> |
214 | 214 | <li> |
215 | 215 | <a id="display-txn-admin-apply-payment" class="button-primary no-icon no-hide" rel="txn-admin-apply-payment" > <!--display-the-hidden --> |
216 | - <?php _e( 'Apply Payment', 'event_espresso' );?> |
|
216 | + <?php _e('Apply Payment', 'event_espresso'); ?> |
|
217 | 217 | </a> |
218 | 218 | </li> |
219 | 219 | <li> |
220 | 220 | <a id="display-txn-admin-apply-refund" class="button-secondary no-icon no-hide" rel="txn-admin-apply-refund" > <!--display-the-hidden --> |
221 | - <?php _e( 'Apply Refund', 'event_espresso' );?> |
|
221 | + <?php _e('Apply Refund', 'event_espresso'); ?> |
|
222 | 222 | </a> |
223 | 223 | </li> |
224 | 224 | </ul> |
@@ -228,14 +228,14 @@ discard block |
||
228 | 228 | |
229 | 229 | <h2 id="admin-modal-dialog-apply-payment-h2" class="admin-modal-dialog-h2 hdr-has-icon" style="display:none;"> |
230 | 230 | <div class="ee-icon ee-icon-cash-add float-left"></div> |
231 | - <?php echo __( 'Apply a Payment to Transaction #', 'event_espresso' ) . $txn_nmbr['value'];?> |
|
231 | + <?php echo __('Apply a Payment to Transaction #', 'event_espresso').$txn_nmbr['value']; ?> |
|
232 | 232 | </h2> |
233 | 233 | |
234 | 234 | <h2 id="admin-modal-dialog-edit-payment-h2" class="admin-modal-dialog-h2 hdr-has-icon" style="display:none;"> |
235 | 235 | <div class="ee-icon ee-icon-cash-edit float-left"></div> |
236 | 236 | <?php |
237 | 237 | echo sprintf( |
238 | - __( 'Edit Payment #%s for Transaction #%s', 'event_espresso' ), |
|
238 | + __('Edit Payment #%s for Transaction #%s', 'event_espresso'), |
|
239 | 239 | '<span></span>', |
240 | 240 | $txn_nmbr['value'] |
241 | 241 | ); |
@@ -246,7 +246,7 @@ discard block |
||
246 | 246 | <div class="ee-icon ee-icon-cash-edit float-left"></div> |
247 | 247 | <?php |
248 | 248 | echo sprintf( |
249 | - __( 'Edit Refund #%s for Transaction #%s', 'event_espresso' ), |
|
249 | + __('Edit Refund #%s for Transaction #%s', 'event_espresso'), |
|
250 | 250 | '<span></span>', |
251 | 251 | $txn_nmbr['value'] |
252 | 252 | ); |
@@ -255,14 +255,14 @@ discard block |
||
255 | 255 | |
256 | 256 | <h2 id="admin-modal-dialog-apply-refund-h2" class="admin-modal-dialog-h2 hdr-has-icon" style="display:none;"> |
257 | 257 | <div class="ee-icon ee-icon-cash-remove float-left"></div> |
258 | - <?php echo __( 'Apply a Refund to Transaction #', 'event_espresso' ) . $txn_nmbr['value'];?> |
|
258 | + <?php echo __('Apply a Refund to Transaction #', 'event_espresso').$txn_nmbr['value']; ?> |
|
259 | 259 | </h2> |
260 | 260 | |
261 | 261 | <form name="txn-admin-apply-payment-frm" id="txn-admin-apply-payment-frm" action="<?php echo $apply_payment_form_url; ?>"> |
262 | 262 | <div class="admin-modal-dialog-wrap"> |
263 | 263 | <div class="admin-modal-dialog-inner"> |
264 | 264 | |
265 | - <input type="hidden" name="espresso_apply_payment_nonce" id="espresso_apply_payment_nonce" value="<?php echo wp_create_nonce( 'espresso_apply_payment_nonce' );?>"/> |
|
265 | + <input type="hidden" name="espresso_apply_payment_nonce" id="espresso_apply_payment_nonce" value="<?php echo wp_create_nonce('espresso_apply_payment_nonce'); ?>"/> |
|
266 | 266 | <input type="hidden" name="espresso_ajax" id="espresso-ajax" value="0"/> |
267 | 267 | <input type="hidden" name="noheader" id="txn-admin-noheader-inp" value="0"/> |
268 | 268 | <input type="hidden" name="txn_admin_payment[PAY_ID]" id="txn-admin-payment-payment-id-inp" class="txn-admin-apply-payment-inp" value="0"/> |
@@ -270,108 +270,108 @@ discard block |
||
270 | 270 | <input type="hidden" name="txn_admin_payment[type]" id="txn-admin-payment-type-inp" value="1"/> |
271 | 271 | <input type="hidden" name="txn_admin_payment[details]" id="txn-admin-payment-details-inp" value=""/> |
272 | 272 | <input type="hidden" name="txn_admin_delete_payment_form_url" id="txn-admin-delete-payment-form-url-inp" value="<?php echo $delete_payment_form_url; ?>"/> |
273 | - <input type="hidden" name="txn_admin_todays_date" id="txn-admin-todays-date-inp" value="<?php echo date( 'Y-m-d h:i a', current_time( 'timestamp' )); ?>"/> |
|
273 | + <input type="hidden" name="txn_admin_todays_date" id="txn-admin-todays-date-inp" value="<?php echo date('Y-m-d h:i a', current_time('timestamp')); ?>"/> |
|
274 | 274 | |
275 | 275 | <div class="txn-admin-apply-payment-date-dv admin-modal-dialog-row"> |
276 | - <div class="validation-notice-dv"><?php _e( 'The following is a required field', 'event_espresso' );?></div> |
|
277 | - <label for="txn-admin-payment-date-inp" class=""><?php _e( 'Payment Date', 'event_espresso' );?></label> |
|
278 | - <input name="txn_admin_payment[date]" id="txn-admin-payment-date-inp" class="txn-admin-apply-payment-inp required" type="text" value="<?php echo date( 'Y-m-d h:i a', current_time( 'timestamp' )); ?>"/> |
|
279 | - <p class="description"><?php _e( 'The date the payment was actually made on', 'event_espresso' );?></p> |
|
276 | + <div class="validation-notice-dv"><?php _e('The following is a required field', 'event_espresso'); ?></div> |
|
277 | + <label for="txn-admin-payment-date-inp" class=""><?php _e('Payment Date', 'event_espresso'); ?></label> |
|
278 | + <input name="txn_admin_payment[date]" id="txn-admin-payment-date-inp" class="txn-admin-apply-payment-inp required" type="text" value="<?php echo date('Y-m-d h:i a', current_time('timestamp')); ?>"/> |
|
279 | + <p class="description"><?php _e('The date the payment was actually made on', 'event_espresso'); ?></p> |
|
280 | 280 | </div> |
281 | 281 | |
282 | 282 | <div class="txn-admin-apply-payment-amount-dv admin-modal-dialog-row"> |
283 | - <div class="validation-notice-dv"><?php _e( 'The following is a required field', 'event_espresso' );?></div> |
|
284 | - <label for="txn-admin-payment-amount-inp" class=""><?php _e( 'Amount', 'event_espresso' );?></label> |
|
283 | + <div class="validation-notice-dv"><?php _e('The following is a required field', 'event_espresso'); ?></div> |
|
284 | + <label for="txn-admin-payment-amount-inp" class=""><?php _e('Amount', 'event_espresso'); ?></label> |
|
285 | 285 | <input name="txn_admin_payment[amount]" id="txn-admin-payment-amount-inp" class="txn-admin-apply-payment-inp required" type="text" value=""/> |
286 | - <p class="description"><?php _e( 'The amount of the payment', 'event_espresso' );?></p> |
|
286 | + <p class="description"><?php _e('The amount of the payment', 'event_espresso'); ?></p> |
|
287 | 287 | </div> |
288 | 288 | |
289 | 289 | <div class="txn-admin-apply-payment-method-dv admin-modal-dialog-row"> |
290 | - <div class="validation-notice-dv"><?php _e( 'The following is a required field', 'event_espresso' );?></div> |
|
291 | - <label for="txn-admin-payment-method-inp" class=""><?php _e( 'Method of Payment', 'event_espresso' );?></label> |
|
290 | + <div class="validation-notice-dv"><?php _e('The following is a required field', 'event_espresso'); ?></div> |
|
291 | + <label for="txn-admin-payment-method-inp" class=""><?php _e('Method of Payment', 'event_espresso'); ?></label> |
|
292 | 292 | <select name="txn_admin_payment[PMD_ID]" id="txn-admin-payment-method-slct" class="txn-admin-apply-payment-slct required" type="text" > |
293 | - <?php foreach ( $payment_methods as $method ) : ?> |
|
293 | + <?php foreach ($payment_methods as $method) : ?> |
|
294 | 294 | <?php $selected = $method->slug() == 'cash' ? ' selected="selected"' : ''; ?> |
295 | - <option id="payment-method-opt-<?php echo $method->slug(); ?>" value="<?php echo $method->ID(); ?>"<?php echo $selected; ?>><?php echo sanitize_key( $method->admin_desc() ) ? substr( $method->admin_desc(), 0, 128) : $method->admin_name() ; ?> </option> |
|
295 | + <option id="payment-method-opt-<?php echo $method->slug(); ?>" value="<?php echo $method->ID(); ?>"<?php echo $selected; ?>><?php echo sanitize_key($method->admin_desc()) ? substr($method->admin_desc(), 0, 128) : $method->admin_name(); ?> </option> |
|
296 | 296 | <?php endforeach; ?> |
297 | 297 | </select> |
298 | - <p class="description"><?php _e( 'Whether the payment was made via PayPal, Credit Card, Cheque, or Cash', 'event_espresso' );?></p> |
|
298 | + <p class="description"><?php _e('Whether the payment was made via PayPal, Credit Card, Cheque, or Cash', 'event_espresso'); ?></p> |
|
299 | 299 | </div> |
300 | 300 | |
301 | 301 | <div class="mop-PP mop-CC mop-CHQ mop"> |
302 | 302 | <div class="txn-admin-apply-payment-gw-txn-id-dv admin-modal-dialog-row"> |
303 | - <label for="txn-admin-payment-txn-id-inp" class=""><?php _e( 'TXN ID / CHQ #', 'event_espresso' );?></label> |
|
303 | + <label for="txn-admin-payment-txn-id-inp" class=""><?php _e('TXN ID / CHQ #', 'event_espresso'); ?></label> |
|
304 | 304 | <input name="txn_admin_payment[txn_id_chq_nmbr]" id="txn-admin-payment-txn-id-chq-nmbr-inp" class="txn-admin-apply-payment-inp" type="text" maxlength="100"/> |
305 | - <p class="description"><?php _e( 'The Transaction ID sent back from the payment gateway, or the Cheque #', 'event_espresso' );?></p> |
|
305 | + <p class="description"><?php _e('The Transaction ID sent back from the payment gateway, or the Cheque #', 'event_espresso'); ?></p> |
|
306 | 306 | </div> |
307 | 307 | </div> |
308 | 308 | |
309 | 309 | <div class="mop-CC mop" style="display:none"> |
310 | 310 | <div class="txn-admin-apply-payment-response-dv admin-modal-dialog-row"> |
311 | - <label for="txn-admin-payment-gateway-response-inp" class=""><?php _e( 'Gateway Response', 'event_espresso' );?></label> |
|
311 | + <label for="txn-admin-payment-gateway-response-inp" class=""><?php _e('Gateway Response', 'event_espresso'); ?></label> |
|
312 | 312 | <input name="txn_admin_payment[gateway_response]" id="txn-admin-payment-gateway-response-inp" class="txn-admin-apply-payment-inp" type="text"/> |
313 | - <p class="description"><?php _e( 'The gateway response string (optional)', 'event_espresso' );?></p> |
|
313 | + <p class="description"><?php _e('The gateway response string (optional)', 'event_espresso'); ?></p> |
|
314 | 314 | </div> |
315 | 315 | </div> |
316 | 316 | |
317 | 317 | <div class="mop-PP mop-CC mop"> |
318 | 318 | <div class="txn-admin-apply-payment-status-dv admin-modal-dialog-row"> |
319 | - <label for="txn-admin-payment-status-inp" class=""><?php _e( 'Payment Status', 'event_espresso' );?></label> |
|
319 | + <label for="txn-admin-payment-status-inp" class=""><?php _e('Payment Status', 'event_espresso'); ?></label> |
|
320 | 320 | <select name="txn_admin_payment[status]" id="txn-admin-payment-status-slct" class="txn-admin-apply-payment-slct" type="text" > |
321 | - <?php foreach ( $payment_status as $STS_ID => $STS_code ) : ?> |
|
321 | + <?php foreach ($payment_status as $STS_ID => $STS_code) : ?> |
|
322 | 322 | <?php $selected = $STS_ID == 'PAP' ? ' selected="selected"' : ''; ?> |
323 | 323 | <option id="payment-status-opt-<?php echo $STS_ID; ?>" value="<?php echo $STS_ID; ?>"<?php echo $selected; ?>><?php echo $STS_code; ?> </option> |
324 | 324 | <?php endforeach; ?> |
325 | 325 | </select> |
326 | - <p class="description"><?php _e( 'Whether the payment was approved, cancelled, declined or failed after submission to the gateway', 'event_espresso' );?></p> |
|
326 | + <p class="description"><?php _e('Whether the payment was approved, cancelled, declined or failed after submission to the gateway', 'event_espresso'); ?></p> |
|
327 | 327 | </div> |
328 | 328 | </div> |
329 | 329 | |
330 | 330 | <div class="txn-admin-apply-payment-po-nmbr-dv admin-modal-dialog-row"> |
331 | - <label for="txn-admin-payment-po-nmbr-inp" class=""><?php _e( 'P.O. / S.O. #', 'event_espresso' );?></label> |
|
331 | + <label for="txn-admin-payment-po-nmbr-inp" class=""><?php _e('P.O. / S.O. #', 'event_espresso'); ?></label> |
|
332 | 332 | <input name="txn_admin_payment[po_number]" id="txn-admin-payment-po-nmbr-inp" class="txn-admin-apply-payment-inp" type="text" maxlength="100"/> |
333 | - <p class="description"><?php _e( 'The Purchase or Sales Order Number if any (optional)', 'event_espresso' );?></p> |
|
333 | + <p class="description"><?php _e('The Purchase or Sales Order Number if any (optional)', 'event_espresso'); ?></p> |
|
334 | 334 | </div> |
335 | 335 | |
336 | 336 | <div class="txn-admin-apply-payment-accounting-dv admin-modal-dialog-row"> |
337 | - <label for="txn-admin-payment-accounting-inp" class="last"><?php _e( 'Notes / Extra Accounting', 'event_espresso' );?></label> |
|
337 | + <label for="txn-admin-payment-accounting-inp" class="last"><?php _e('Notes / Extra Accounting', 'event_espresso'); ?></label> |
|
338 | 338 | <input name="txn_admin_payment[accounting]" id="txn-admin-payment-accounting-inp" class="txn-admin-apply-payment-inp" type="text" value="<?php echo $REG_code; ?>" maxlength="100"/> <input type="hidden" id="txn-admin-reg-code-inp" value="<?php echo $REG_code; ?>"/> |
339 | - <p class="description"><?php _e( 'An extra field you may use for accounting purposes or simple notes. Defaults to the primary registrant\'s registration code.', 'event_espresso' );?></p> |
|
339 | + <p class="description"><?php _e('An extra field you may use for accounting purposes or simple notes. Defaults to the primary registrant\'s registration code.', 'event_espresso'); ?></p> |
|
340 | 340 | </div> |
341 | 341 | |
342 | 342 | <div class="txn-admin-apply-payment-registrations-dv admin-modal-dialog-row"> |
343 | - <label for="txn-admin-payment-registrations-inp" class="last"><?php _e( 'Registrations to Apply Payment to:', 'event_espresso' ); ?></label> |
|
343 | + <label for="txn-admin-payment-registrations-inp" class="last"><?php _e('Registrations to Apply Payment to:', 'event_espresso'); ?></label> |
|
344 | 344 | <label class="txn-admin-apply-payment-to-registrations-lbl"> |
345 | 345 | <input type="radio" value="1" id="txn-admin-apply-payment-to-all-registrations-inp" name="txn_admin_payment[apply_to_all_registrations]" checked="checked"/> |
346 | - <?php _e( 'ALL Registrations', 'event_espresso' ); ?> |
|
346 | + <?php _e('ALL Registrations', 'event_espresso'); ?> |
|
347 | 347 | </label> |
348 | 348 | <label class="txn-admin-apply-payment-to-registrations-lbl"> |
349 | 349 | <input type="radio" value="0" id="txn-admin-apply-payment-to-some-registrations-inp" name="txn_admin_payment[apply_to_all_registrations]" /> |
350 | - <?php _e( 'Just the following Registrations', 'event_espresso' ); ?> |
|
350 | + <?php _e('Just the following Registrations', 'event_espresso'); ?> |
|
351 | 351 | </label> |
352 | 352 | <?php echo $registrations_to_apply_payment_to; ?> |
353 | 353 | </div> |
354 | 354 | |
355 | 355 | <div class="txn-admin-payment-reg-status-dv admin-modal-dialog-row"> |
356 | - <label for="txn-admin-payment-reg-status-inp" class="last"><?php _e( 'Change Registration Status?', 'event_espresso' );?></label> |
|
356 | + <label for="txn-admin-payment-reg-status-inp" class="last"><?php _e('Change Registration Status?', 'event_espresso'); ?></label> |
|
357 | 357 | <?php echo $status_change_select; ?> |
358 | - <p class="description"><?php _e( 'If you wish to change the status for the registrations selected above, then select which status from this dropdown.', 'event_espresso' ); ?></p> |
|
358 | + <p class="description"><?php _e('If you wish to change the status for the registrations selected above, then select which status from this dropdown.', 'event_espresso'); ?></p> |
|
359 | 359 | <br/> |
360 | 360 | </div> |
361 | 361 | |
362 | 362 | <div class="txn-admin-apply-payment-send-notifications-dv admin-modal-dialog-row"> |
363 | 363 | |
364 | - <label for="txn-admin-payment-send-notifications-inp" class="last"><?php _e( 'Send Related Messages?', 'event_espresso' );?></label> |
|
364 | + <label for="txn-admin-payment-send-notifications-inp" class="last"><?php _e('Send Related Messages?', 'event_espresso'); ?></label> |
|
365 | 365 | <label class="txn-admin-payment-send-notifications-lbl"> |
366 | 366 | <input type="checkbox" value="1" name="txn_payments[send_notifications]" checked="checked" aria-checked="true" style="vertical-align: middle;"> |
367 | - <?php _e( 'Payment Messages?', 'event_espresso' ); ?> |
|
367 | + <?php _e('Payment Messages?', 'event_espresso'); ?> |
|
368 | 368 | </label> |
369 | 369 | <label class="txn-admin-payment-send-notifications-lbl"> |
370 | 370 | <input type="checkbox" value="1" name="txn_reg_status_change[send_notifications]" style="vertical-align: middle;"> |
371 | - <?php _e( 'Registration Messages?', 'event_espresso' ); ?> |
|
371 | + <?php _e('Registration Messages?', 'event_espresso'); ?> |
|
372 | 372 | </label> |
373 | 373 | <br class="clear-float"/> |
374 | - <p class="description"><?php printf( __('By default %1$sa payment message is sent to the primary registrant%2$s after submitting this form.%3$sHowever, if you check the "Registration Messages" box, the system will also send any related messages matching the status of the registrations to %1$seach registration for this transaction%2$s.', 'event_espresso'), '<strong>', '</strong>', '<br />' ); ?></p> |
|
374 | + <p class="description"><?php printf(__('By default %1$sa payment message is sent to the primary registrant%2$s after submitting this form.%3$sHowever, if you check the "Registration Messages" box, the system will also send any related messages matching the status of the registrations to %1$seach registration for this transaction%2$s.', 'event_espresso'), '<strong>', '</strong>', '<br />'); ?></p> |
|
375 | 375 | <label></label> |
376 | 376 | </div> |
377 | 377 | <div class="clear"></div> |
@@ -382,27 +382,27 @@ discard block |
||
382 | 382 | <ul id="admin-modal-dialog-options-ul"> |
383 | 383 | <li> |
384 | 384 | <a id="txn-admin-modal-dialog-apply-payment-lnk" class="button-primary no-icon" style="display:none;" > |
385 | - <?php _e( 'Apply Payment', 'event_espresso' );?> |
|
385 | + <?php _e('Apply Payment', 'event_espresso'); ?> |
|
386 | 386 | </a> |
387 | 387 | </li> |
388 | 388 | <li> |
389 | 389 | <a id="txn-admin-modal-dialog-edit-payment-lnk" class="button-primary no-icon" style="display:none;" > |
390 | - <?php _e( 'Save Payment Details', 'event_espresso' );?> |
|
390 | + <?php _e('Save Payment Details', 'event_espresso'); ?> |
|
391 | 391 | </a> |
392 | 392 | </li> |
393 | 393 | <li> |
394 | 394 | <a id="txn-admin-modal-dialog-edit-refund-lnk" class="button-primary no-icon" style="display:none;" > |
395 | - <?php _e( 'Save Refund Details', 'event_espresso' );?> |
|
395 | + <?php _e('Save Refund Details', 'event_espresso'); ?> |
|
396 | 396 | </a> |
397 | 397 | </li> |
398 | 398 | <li> |
399 | 399 | <a id="txn-admin-modal-dialog-apply-refund-lnk" class="button-primary no-icon" style="display:none;" > |
400 | - <?php _e( 'Apply Refund', 'event_espresso' );?> |
|
400 | + <?php _e('Apply Refund', 'event_espresso'); ?> |
|
401 | 401 | </a> |
402 | 402 | </li> |
403 | 403 | <li> |
404 | 404 | <a id="txn-admin-modal-dialog-cancel-lnk" class="button-secondary no-icon" > |
405 | - <?php _e( 'Cancel', 'event_espresso' );?> |
|
405 | + <?php _e('Cancel', 'event_espresso'); ?> |
|
406 | 406 | </a> |
407 | 407 | </li> |
408 | 408 | <li> |
@@ -419,29 +419,29 @@ discard block |
||
419 | 419 | |
420 | 420 | <h2 id="admin-modal-dialog-delete-payment-h2" class="admin-modal-dialog-h2 hdr-has-icon" style="display:none;"> |
421 | 421 | <span class="ee-icon ee-icon-cash-add"></span> |
422 | - <?php echo __( 'Delete Payment/Refund for Transaction #', 'event_espresso' ) . $txn_nmbr['value'];?> |
|
422 | + <?php echo __('Delete Payment/Refund for Transaction #', 'event_espresso').$txn_nmbr['value']; ?> |
|
423 | 423 | </h2> |
424 | 424 | |
425 | 425 | <form name="txn-admin-delete-payment-frm" id="txn-admin-delete-payment-frm" action="<?php echo $delete_payment_url; ?>"> |
426 | 426 | <div class="admin-modal-dialog-wrap"> |
427 | 427 | <div class="admin-modal-dialog-inner"> |
428 | 428 | |
429 | - <input type="hidden" name="espresso_delete_payment_nonce" id="espresso_delete_payment_nonce" value="<?php echo wp_create_nonce( 'espresso_delete_payment_nonce' );?>"/> |
|
429 | + <input type="hidden" name="espresso_delete_payment_nonce" id="espresso_delete_payment_nonce" value="<?php echo wp_create_nonce('espresso_delete_payment_nonce'); ?>"/> |
|
430 | 430 | <input type="hidden" name="delete_espresso_ajax" id="delete-espresso-ajax" value="0"/> |
431 | 431 | <input type="hidden" name="delete_noheader" id="delete-txn-admin-noheader-inp" value="0"/> |
432 | 432 | <input type="hidden" name="delete_txn_admin_payment[PAY_ID]" id="delete-txn-admin-payment-payment-id-inp" class="txn-admin-apply-payment-inp" value="0"/> |
433 | 433 | <input type="hidden" name="delete_txn_admin_payment[TXN_ID]" id="delete-txn-admin-payment-txn-id-inp" value="<?php echo $txn_nmbr['value']; ?>"/> |
434 | 434 | |
435 | 435 | <div class="txn-admin-apply-payment-accounting-dv admin-modal-dialog-row"> |
436 | - <label for="delete-txn-admin-payment-reg-status-inp" class="last"><?php _e( 'Change Registration Status?', 'event_espresso' );?></label> |
|
436 | + <label for="delete-txn-admin-payment-reg-status-inp" class="last"><?php _e('Change Registration Status?', 'event_espresso'); ?></label> |
|
437 | 437 | <?php echo $delete_status_change_select; ?> |
438 | - <p class="description"><?php printf( __('If you wish to change the status of all the registrations associated with this transaction after deleting this payment/refund, then select which status from this dropdown. %sNote: ALL registrations associated with this transaction will be updated to this new status.%s', 'event_espresso'), '<strong>', '</strong>' ); ?></p> |
|
438 | + <p class="description"><?php printf(__('If you wish to change the status of all the registrations associated with this transaction after deleting this payment/refund, then select which status from this dropdown. %sNote: ALL registrations associated with this transaction will be updated to this new status.%s', 'event_espresso'), '<strong>', '</strong>'); ?></p> |
|
439 | 439 | </div> |
440 | 440 | |
441 | 441 | <div class="ee-attention txn-admin-apply-payment-accounting-dv admin-modal-dialog-row"> |
442 | - <label for="delete-txn-admin-payment-accounting-inp" class="last"><?php _e( 'Send Related Messages?', 'event_espresso' );?></label> |
|
442 | + <label for="delete-txn-admin-payment-accounting-inp" class="last"><?php _e('Send Related Messages?', 'event_espresso'); ?></label> |
|
443 | 443 | <input type="checkbox" value="1" name="delete_txn_reg_status_change[send_notifications]"> |
444 | - <p class="description"><?php _e( 'If you check this box, the system will send any related registration messages matching the status of the registrations to each registration for this transaction. No Payment notifications are sent when deleting a payment.', 'event_espresso' );?></p> |
|
444 | + <p class="description"><?php _e('If you check this box, the system will send any related registration messages matching the status of the registrations to each registration for this transaction. No Payment notifications are sent when deleting a payment.', 'event_espresso'); ?></p> |
|
445 | 445 | </div> |
446 | 446 | <div class="clear"></div> |
447 | 447 | |
@@ -451,12 +451,12 @@ discard block |
||
451 | 451 | <ul id="del-admin-modal-dialog-options-ul"> |
452 | 452 | <li> |
453 | 453 | <a id="txn-admin-modal-dialog-delete-lnk" class="button-primary no-icon" style="display:none;" > |
454 | - <?php _e( 'Delete', 'event_espresso' );?> |
|
454 | + <?php _e('Delete', 'event_espresso'); ?> |
|
455 | 455 | </a> |
456 | 456 | </li> |
457 | 457 | <li> |
458 | 458 | <a id="del-txn-admin-modal-dialog-cancel-lnk" class="button-secondary no-icon" > |
459 | - <?php _e( 'Cancel', 'event_espresso' );?> |
|
459 | + <?php _e('Cancel', 'event_espresso'); ?> |
|
460 | 460 | </a> |
461 | 461 | </li> |
462 | 462 | <li> |
@@ -472,30 +472,30 @@ discard block |
||
472 | 472 | <?php endif; // $grand_raw_total > 0?> |
473 | 473 | |
474 | 474 | <?php |
475 | - if ( WP_DEBUG ) { |
|
476 | - $delivered_messages = get_option( 'EED_Messages__payment', array() ); |
|
477 | - if ( isset( $delivered_messages[ $TXN_ID ] )) { |
|
475 | + if (WP_DEBUG) { |
|
476 | + $delivered_messages = get_option('EED_Messages__payment', array()); |
|
477 | + if (isset($delivered_messages[$TXN_ID])) { |
|
478 | 478 | ?> |
479 | - <h4 class="admin-primary-mbox-h4 hdr-has-icon"><span class="dashicons dashicons-email-alt"></span><?php _e( 'Messages Sent to Primary Registrant', 'event_espresso' );?></h4> |
|
479 | + <h4 class="admin-primary-mbox-h4 hdr-has-icon"><span class="dashicons dashicons-email-alt"></span><?php _e('Messages Sent to Primary Registrant', 'event_espresso'); ?></h4> |
|
480 | 480 | |
481 | 481 | <div class="admin-primary-mbox-tbl-wrap"> |
482 | 482 | <table class="admin-primary-mbox-tbl"> |
483 | 483 | <thead> |
484 | 484 | <tr> |
485 | - <th class="jst-left"><?php _e( 'Date & Time', 'event_espresso' );?></th> |
|
486 | - <th class="jst-left"><?php _e( 'Message Type', 'event_espresso' );?></th> |
|
487 | - <th class="jst-left"><?php _e( 'Payment Status Upon Sending', 'event_espresso' );?></th> |
|
488 | - <th class="jst-left"><?php _e( 'TXN Status Upon Sending', 'event_espresso' );?></th> |
|
485 | + <th class="jst-left"><?php _e('Date & Time', 'event_espresso'); ?></th> |
|
486 | + <th class="jst-left"><?php _e('Message Type', 'event_espresso'); ?></th> |
|
487 | + <th class="jst-left"><?php _e('Payment Status Upon Sending', 'event_espresso'); ?></th> |
|
488 | + <th class="jst-left"><?php _e('TXN Status Upon Sending', 'event_espresso'); ?></th> |
|
489 | 489 | </tr> |
490 | 490 | </thead> |
491 | 491 | <tbody> |
492 | - <?php foreach ( $delivered_messages[ $TXN_ID ] as $timestamp => $delivered_message ) : |
|
492 | + <?php foreach ($delivered_messages[$TXN_ID] as $timestamp => $delivered_message) : |
|
493 | 493 | ?> |
494 | 494 | <tr> |
495 | - <td class="jst-left"><?php echo gmdate( get_option('date_format') . ' ' . get_option('time_format'), ( $timestamp + ( get_option( 'gmt_offset' ) * HOUR_IN_SECONDS ) ) );?></td> |
|
496 | - <td class="jst-left"><?php echo isset( $delivered_message['message_type'] ) ? $delivered_message['message_type'] : '';?></td> |
|
497 | - <td class="jst-left"><?php echo isset( $delivered_message['pay_status'] ) ? $delivered_message['pay_status'] : '';?></td> |
|
498 | - <td class="jst-left"><?php echo isset( $delivered_message['txn_status'] ) ? $delivered_message['txn_status'] : '';?></td> |
|
495 | + <td class="jst-left"><?php echo gmdate(get_option('date_format').' '.get_option('time_format'), ($timestamp + (get_option('gmt_offset') * HOUR_IN_SECONDS))); ?></td> |
|
496 | + <td class="jst-left"><?php echo isset($delivered_message['message_type']) ? $delivered_message['message_type'] : ''; ?></td> |
|
497 | + <td class="jst-left"><?php echo isset($delivered_message['pay_status']) ? $delivered_message['pay_status'] : ''; ?></td> |
|
498 | + <td class="jst-left"><?php echo isset($delivered_message['txn_status']) ? $delivered_message['txn_status'] : ''; ?></td> |
|
499 | 499 | </tr> |
500 | 500 | <?php endforeach; // $delivered_messages?> |
501 | 501 | </tbody> |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | * |
22 | 22 | * ------------------------------------------------------------------------ |
23 | 23 | */ |
24 | -require_once ( EE_MODELS . 'EEM_Soft_Delete_Base.model.php' ); |
|
25 | -require_once ( EE_CLASSES . 'EE_Ticket.class.php' ); |
|
24 | +require_once (EE_MODELS.'EEM_Soft_Delete_Base.model.php'); |
|
25 | +require_once (EE_CLASSES.'EE_Ticket.class.php'); |
|
26 | 26 | |
27 | 27 | class EEM_Ticket extends EEM_Soft_Delete_Base { |
28 | 28 | |
@@ -35,36 +35,36 @@ discard block |
||
35 | 35 | * @access private |
36 | 36 | * @param string $timezone string representing the timezone we want to set for returned Date Time Strings (and any incoming timezone data that gets saved). Note this just sends the timezone info to the date time model field objects. Default is NULL (and will be assumed using the set timezone in the 'timezone_string' wp option) |
37 | 37 | */ |
38 | - protected function __construct( $timezone ) { |
|
39 | - $this->singular_item = __('Ticket','event_espresso'); |
|
40 | - $this->plural_item = __('Tickets','event_espresso'); |
|
38 | + protected function __construct($timezone) { |
|
39 | + $this->singular_item = __('Ticket', 'event_espresso'); |
|
40 | + $this->plural_item = __('Tickets', 'event_espresso'); |
|
41 | 41 | |
42 | 42 | $this->_tables = array( |
43 | 43 | 'Ticket'=> new EE_Primary_Table('esp_ticket', 'TKT_ID') |
44 | 44 | ); |
45 | 45 | $this->_fields = array( |
46 | 46 | 'Ticket'=>array( |
47 | - 'TKT_ID'=> new EE_Primary_Key_Int_Field('TKT_ID', __('Ticket ID','event_espresso')), |
|
48 | - 'TTM_ID'=>new EE_Foreign_Key_Int_Field('TTM_ID', __('Ticket Template ID','event_espresso'), false, 0, 'Ticket_Template'), |
|
47 | + 'TKT_ID'=> new EE_Primary_Key_Int_Field('TKT_ID', __('Ticket ID', 'event_espresso')), |
|
48 | + 'TTM_ID'=>new EE_Foreign_Key_Int_Field('TTM_ID', __('Ticket Template ID', 'event_espresso'), false, 0, 'Ticket_Template'), |
|
49 | 49 | 'TKT_name'=>new EE_Plain_Text_Field('TKT_name', __('Ticket Name', 'event_espresso'), false, ''), |
50 | - 'TKT_description'=>new EE_Full_HTML_Field('TKT_description', __('Description of Ticket', 'event_espresso'), false, '' ), |
|
51 | - 'TKT_start_date'=>new EE_Datetime_Field('TKT_start_date', __('Start time/date of Ticket','event_espresso'), false, time(), $timezone ), |
|
52 | - 'TKT_end_date'=>new EE_Datetime_Field('TKT_end_date', __('End time/date of Ticket','event_espresso'), false, time(), $timezone ), |
|
53 | - 'TKT_min'=>new EE_Integer_Field('TKT_min', __('Minimum quantity of this ticket that must be purchased', 'event_espresso'), false, 0 ), |
|
54 | - 'TKT_max'=>new EE_Infinite_Integer_Field('TKT_max', __('Maximum quantity of this ticket that can be purchased in one transaction', 'event_espresso'), false, EE_INF ), |
|
50 | + 'TKT_description'=>new EE_Full_HTML_Field('TKT_description', __('Description of Ticket', 'event_espresso'), false, ''), |
|
51 | + 'TKT_start_date'=>new EE_Datetime_Field('TKT_start_date', __('Start time/date of Ticket', 'event_espresso'), false, time(), $timezone), |
|
52 | + 'TKT_end_date'=>new EE_Datetime_Field('TKT_end_date', __('End time/date of Ticket', 'event_espresso'), false, time(), $timezone), |
|
53 | + 'TKT_min'=>new EE_Integer_Field('TKT_min', __('Minimum quantity of this ticket that must be purchased', 'event_espresso'), false, 0), |
|
54 | + 'TKT_max'=>new EE_Infinite_Integer_Field('TKT_max', __('Maximum quantity of this ticket that can be purchased in one transaction', 'event_espresso'), false, EE_INF), |
|
55 | 55 | 'TKT_price'=> new EE_Money_Field('TKT_price', 'Final calculated price for ticket', false, 0), |
56 | 56 | 'TKT_sold' => new EE_Integer_Field('TKT_sold', __('Number of this ticket sold', 'event_espresso'), false, 0), |
57 | - 'TKT_qty'=>new EE_Infinite_Integer_Field('TKT_qty', __('Quantity of this ticket that is available','event_espresso'), false, EE_INF), |
|
58 | - 'TKT_reserved'=>new EE_Integer_Field('TKT_reserved', __('Quantity of this ticket that is reserved, but not yet fully purchased','event_espresso'), false, 0 ), |
|
59 | - 'TKT_uses'=>new EE_Infinite_Integer_Field('TKT_uses', __('Number of datetimes this ticket can be used at', 'event_espresso'), false, EE_INF ), |
|
60 | - 'TKT_required'=>new EE_Boolean_Field('TKT_required', __("Flag indicating whether this ticket must be purchased with a transaction", "event_espresso"), false, false ), |
|
61 | - 'TKT_taxable'=>new EE_Boolean_Field('TKT_taxable', __("Flag indicating whether there is tax applied on this ticket", "event_espresso"), false,false), |
|
62 | - 'TKT_is_default'=>new EE_Boolean_Field('TKT_is_default', __('Flag indicating that this ticket is a default ticket', 'event_espresso'), false, false ), |
|
57 | + 'TKT_qty'=>new EE_Infinite_Integer_Field('TKT_qty', __('Quantity of this ticket that is available', 'event_espresso'), false, EE_INF), |
|
58 | + 'TKT_reserved'=>new EE_Integer_Field('TKT_reserved', __('Quantity of this ticket that is reserved, but not yet fully purchased', 'event_espresso'), false, 0), |
|
59 | + 'TKT_uses'=>new EE_Infinite_Integer_Field('TKT_uses', __('Number of datetimes this ticket can be used at', 'event_espresso'), false, EE_INF), |
|
60 | + 'TKT_required'=>new EE_Boolean_Field('TKT_required', __("Flag indicating whether this ticket must be purchased with a transaction", "event_espresso"), false, false), |
|
61 | + 'TKT_taxable'=>new EE_Boolean_Field('TKT_taxable', __("Flag indicating whether there is tax applied on this ticket", "event_espresso"), false, false), |
|
62 | + 'TKT_is_default'=>new EE_Boolean_Field('TKT_is_default', __('Flag indicating that this ticket is a default ticket', 'event_espresso'), false, false), |
|
63 | 63 | 'TKT_order' => new EE_Integer_Field('TKT_order', __('The order in which the Ticket is displayed in the editor (used for autosaves when the form doesn\'t have the ticket ID yet)', 'event_espresso'), false, 0), |
64 | - 'TKT_row' => new EE_Integer_Field('TKT_row', __('How tickets are displayed in the ui', 'event_espresso'), false, 0 ), |
|
64 | + 'TKT_row' => new EE_Integer_Field('TKT_row', __('How tickets are displayed in the ui', 'event_espresso'), false, 0), |
|
65 | 65 | 'TKT_deleted' => new EE_Trashed_Flag_Field('TKT_deleted', __('Flag indicating if this has been archived or not', 'event_espresso'), false, false), |
66 | - 'TKT_wp_user' => new EE_WP_User_Field('TKT_wp_user', __('Ticket Creator ID', 'event_espresso'), FALSE ), |
|
67 | - 'TKT_parent' => new EE_Integer_Field('TKT_parent', __('Indicates what TKT_ID is the parent of this TKT_ID (used in autosaves/revisions)'), true, 0 ) |
|
66 | + 'TKT_wp_user' => new EE_WP_User_Field('TKT_wp_user', __('Ticket Creator ID', 'event_espresso'), FALSE), |
|
67 | + 'TKT_parent' => new EE_Integer_Field('TKT_parent', __('Indicates what TKT_ID is the parent of this TKT_ID (used in autosaves/revisions)'), true, 0) |
|
68 | 68 | )); |
69 | 69 | $this->_model_relations = array( |
70 | 70 | 'Datetime'=>new EE_HABTM_Relation('Datetime_Ticket'), |
@@ -76,12 +76,12 @@ discard block |
||
76 | 76 | ); |
77 | 77 | |
78 | 78 | //this model is generally available for reading |
79 | - $this->_cap_restriction_generators[ EEM_Base::caps_read ] = new EE_Restriction_Generator_Default_Public('TKT_is_default', 'Datetime.Event'); |
|
79 | + $this->_cap_restriction_generators[EEM_Base::caps_read] = new EE_Restriction_Generator_Default_Public('TKT_is_default', 'Datetime.Event'); |
|
80 | 80 | //account for default tickets in the caps |
81 | - $this->_cap_restriction_generators[ EEM_Base::caps_read_admin ] = new EE_Restriction_Generator_Default_Protected( 'TKT_is_default', 'Datetime.Event' ); |
|
82 | - $this->_cap_restriction_generators[ EEM_Base::caps_edit ] = new EE_Restriction_Generator_Default_Protected( 'TKT_is_default', 'Datetime.Event' ); |
|
83 | - $this->_cap_restriction_generators[ EEM_Base::caps_delete ] = new EE_Restriction_Generator_Default_Protected( 'TKT_is_default', 'Datetime.Event' ); |
|
84 | - parent::__construct( $timezone ); |
|
81 | + $this->_cap_restriction_generators[EEM_Base::caps_read_admin] = new EE_Restriction_Generator_Default_Protected('TKT_is_default', 'Datetime.Event'); |
|
82 | + $this->_cap_restriction_generators[EEM_Base::caps_edit] = new EE_Restriction_Generator_Default_Protected('TKT_is_default', 'Datetime.Event'); |
|
83 | + $this->_cap_restriction_generators[EEM_Base::caps_delete] = new EE_Restriction_Generator_Default_Protected('TKT_is_default', 'Datetime.Event'); |
|
84 | + parent::__construct($timezone); |
|
85 | 85 | } |
86 | 86 | |
87 | 87 | |
@@ -92,9 +92,9 @@ discard block |
||
92 | 92 | */ |
93 | 93 | public function get_all_default_tickets() { |
94 | 94 | /** @type EE_Ticket[] $tickets */ |
95 | - $tickets = $this->get_all( array( array('TKT_is_default' => 1), 'order_by' => array('TKT_ID' => 'ASC')) ); |
|
95 | + $tickets = $this->get_all(array(array('TKT_is_default' => 1), 'order_by' => array('TKT_ID' => 'ASC'))); |
|
96 | 96 | //we need to set the start date and end date to today's date and the start of the default dtt |
97 | - return $this->_set_default_dates( $tickets ); |
|
97 | + return $this->_set_default_dates($tickets); |
|
98 | 98 | } |
99 | 99 | |
100 | 100 | |
@@ -104,11 +104,11 @@ discard block |
||
104 | 104 | * @param EE_Ticket[] $tickets |
105 | 105 | * @return EE_Ticket[] |
106 | 106 | */ |
107 | - private function _set_default_dates( $tickets ) { |
|
108 | - foreach ( $tickets as $ticket ) { |
|
109 | - $ticket->set('TKT_start_date', (int)$this->current_time_for_query('TKT_start_date', true) ); |
|
110 | - $ticket->set('TKT_end_date', (int)$this->current_time_for_query( 'TKT_end_date', true ) + (60 * 60 * 24 * 30 ) ); |
|
111 | - $ticket->set_end_time( $this->convert_datetime_for_query( 'TKT_end_date', '11:59 pm', 'g:i a', $this->_timezone ) ); |
|
107 | + private function _set_default_dates($tickets) { |
|
108 | + foreach ($tickets as $ticket) { |
|
109 | + $ticket->set('TKT_start_date', (int) $this->current_time_for_query('TKT_start_date', true)); |
|
110 | + $ticket->set('TKT_end_date', (int) $this->current_time_for_query('TKT_end_date', true) + (60 * 60 * 24 * 30)); |
|
111 | + $ticket->set_end_time($this->convert_datetime_for_query('TKT_end_date', '11:59 pm', 'g:i a', $this->_timezone)); |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | return $tickets; |
@@ -123,8 +123,8 @@ discard block |
||
123 | 123 | * @param array $query_params |
124 | 124 | * @return int |
125 | 125 | */ |
126 | - public function sum_tickets_currently_available_at_datetime($DTT_ID, $query_params = array()){ |
|
127 | - return EEM_Datetime::instance()->sum_tickets_currently_available_at_datetime( $DTT_ID, $query_params ); |
|
126 | + public function sum_tickets_currently_available_at_datetime($DTT_ID, $query_params = array()) { |
|
127 | + return EEM_Datetime::instance()->sum_tickets_currently_available_at_datetime($DTT_ID, $query_params); |
|
128 | 128 | } |
129 | 129 | |
130 | 130 | |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | * @param EE_Ticket[] $tickets |
135 | 135 | * @return void |
136 | 136 | */ |
137 | - public function update_tickets_sold($tickets){ |
|
138 | - foreach($tickets as $ticket){ |
|
137 | + public function update_tickets_sold($tickets) { |
|
138 | + foreach ($tickets as $ticket) { |
|
139 | 139 | /* @var $ticket EE_Ticket */ |
140 | 140 | $ticket->update_tickets_sold(); |
141 | 141 | } |
@@ -13,7 +13,7 @@ discard block |
||
13 | 13 | //is for lower than 4.8.33 |
14 | 14 | add_filter( |
15 | 15 | 'FHEE__EED_Core_Rest_Api___register_rpc_routes__this_versions_routes', |
16 | - array( $this, 'remove_checkin_routes_earlier_than_4_8_33' ), |
|
16 | + array($this, 'remove_checkin_routes_earlier_than_4_8_33'), |
|
17 | 17 | 10, |
18 | 18 | 2 |
19 | 19 | ); |
@@ -26,9 +26,9 @@ discard block |
||
26 | 26 | * @param string $version |
27 | 27 | * @return array like $routes_on_this_version |
28 | 28 | */ |
29 | - public function remove_checkin_routes_earlier_than_4_8_33( $routes_on_this_version, $version ) { |
|
30 | - if( $this->applies_to_version( $version ) ) { |
|
31 | - unset( $routes_on_this_version[ 'registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)' ] ); |
|
29 | + public function remove_checkin_routes_earlier_than_4_8_33($routes_on_this_version, $version) { |
|
30 | + if ($this->applies_to_version($version)) { |
|
31 | + unset($routes_on_this_version['registrations/(?P<REG_ID>\d+)/toggle_checkin_for_datetime/(?P<DTT_ID>\d+)']); |
|
32 | 32 | } |
33 | 33 | return $routes_on_this_version; |
34 | 34 | } |
@@ -1,8 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | namespace EventEspresso\core\libraries\rest_api\controllers; |
3 | 3 | |
4 | -if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
5 | - exit( 'No direct script access allowed' ); |
|
4 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
5 | + exit('No direct script access allowed'); |
|
6 | 6 | } |
7 | 7 | |
8 | 8 | /** |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | protected $_requested_version; |
37 | 37 | |
38 | 38 | public function __construct() { |
39 | - $this->_debug_mode = defined( 'EE_REST_API_DEBUG_MODE' ) ? EE_REST_API_DEBUG_MODE : false; |
|
39 | + $this->_debug_mode = defined('EE_REST_API_DEBUG_MODE') ? EE_REST_API_DEBUG_MODE : false; |
|
40 | 40 | } |
41 | 41 | |
42 | 42 | |
@@ -44,7 +44,7 @@ discard block |
||
44 | 44 | * Sets the version the user requested |
45 | 45 | * @param string $version eg '4.8' |
46 | 46 | */ |
47 | - public function set_requested_version( $version ) { |
|
47 | + public function set_requested_version($version) { |
|
48 | 48 | $this->_requested_version = $version; |
49 | 49 | } |
50 | 50 | |
@@ -53,8 +53,8 @@ discard block |
||
53 | 53 | * @param string $key |
54 | 54 | * @param string|array $info |
55 | 55 | */ |
56 | - protected function _set_debug_info( $key, $info ){ |
|
57 | - $this->_debug_info[ $key ] = $info; |
|
56 | + protected function _set_debug_info($key, $info) { |
|
57 | + $this->_debug_info[$key] = $info; |
|
58 | 58 | } |
59 | 59 | |
60 | 60 | /** |
@@ -62,13 +62,13 @@ discard block |
||
62 | 62 | * @param \WP_Error $wp_error_response |
63 | 63 | * @return \WP_Error |
64 | 64 | */ |
65 | - protected function _add_ee_errors_to_response( \WP_Error $wp_error_response ) { |
|
65 | + protected function _add_ee_errors_to_response(\WP_Error $wp_error_response) { |
|
66 | 66 | $notices_during_checkin = \EE_Error::get_raw_notices(); |
67 | - if( ! empty( $notices_during_checkin[ 'errors' ] ) ) { |
|
68 | - foreach( $notices_during_checkin[ 'errors' ] as $error_code => $error_message ) { |
|
67 | + if ( ! empty($notices_during_checkin['errors'])) { |
|
68 | + foreach ($notices_during_checkin['errors'] as $error_code => $error_message) { |
|
69 | 69 | $wp_error_response->add( |
70 | - sanitize_key( $error_code ), |
|
71 | - strip_tags( $error_message ) ); |
|
70 | + sanitize_key($error_code), |
|
71 | + strip_tags($error_message) ); |
|
72 | 72 | } |
73 | 73 | } |
74 | 74 | return $wp_error_response; |
@@ -86,26 +86,26 @@ discard block |
||
86 | 86 | * @param array|\WP_Error|\Exception $response |
87 | 87 | * @return \WP_REST_Response |
88 | 88 | */ |
89 | - public function send_response( $response ) { |
|
90 | - if( $response instanceof \Exception ) { |
|
91 | - $response = new \WP_Error( $response->getCode(), $response->getMessage() ); |
|
89 | + public function send_response($response) { |
|
90 | + if ($response instanceof \Exception) { |
|
91 | + $response = new \WP_Error($response->getCode(), $response->getMessage()); |
|
92 | 92 | } |
93 | - if( $response instanceof \WP_Error ) { |
|
94 | - $response = $this->_add_ee_errors_to_response( $response ); |
|
95 | - $rest_response = $this->_create_rest_response_from_wp_error( $response ); |
|
96 | - }else{ |
|
97 | - $rest_response = new \WP_REST_Response( $response, 200 ); |
|
93 | + if ($response instanceof \WP_Error) { |
|
94 | + $response = $this->_add_ee_errors_to_response($response); |
|
95 | + $rest_response = $this->_create_rest_response_from_wp_error($response); |
|
96 | + } else { |
|
97 | + $rest_response = new \WP_REST_Response($response, 200); |
|
98 | 98 | } |
99 | 99 | $headers = array(); |
100 | - if( $this->_debug_mode && is_array( $this->_debug_info ) ) { |
|
101 | - foreach( $this->_debug_info as $debug_key => $debug_info ) { |
|
102 | - if( is_array( $debug_info ) ) { |
|
103 | - $debug_info = json_encode( $debug_info ); |
|
100 | + if ($this->_debug_mode && is_array($this->_debug_info)) { |
|
101 | + foreach ($this->_debug_info as $debug_key => $debug_info) { |
|
102 | + if (is_array($debug_info)) { |
|
103 | + $debug_info = json_encode($debug_info); |
|
104 | 104 | } |
105 | - $headers[ 'X-EE4-Debug-' . ucwords( $debug_key ) ] = $debug_info; |
|
105 | + $headers['X-EE4-Debug-'.ucwords($debug_key)] = $debug_info; |
|
106 | 106 | } |
107 | 107 | } |
108 | - $rest_response->set_headers( $headers ); |
|
108 | + $rest_response->set_headers($headers); |
|
109 | 109 | return $rest_response; |
110 | 110 | } |
111 | 111 | |
@@ -116,31 +116,31 @@ discard block |
||
116 | 116 | * @param \WP_Error $wp_error |
117 | 117 | * @return \WP_REST_Response |
118 | 118 | */ |
119 | - protected function _create_rest_response_from_wp_error( \WP_Error $wp_error ) { |
|
119 | + protected function _create_rest_response_from_wp_error(\WP_Error $wp_error) { |
|
120 | 120 | $error_data = $wp_error->get_error_data(); |
121 | - if ( is_array( $error_data ) && isset( $error_data['status'] ) ) { |
|
121 | + if (is_array($error_data) && isset($error_data['status'])) { |
|
122 | 122 | $status = $error_data['status']; |
123 | 123 | } else { |
124 | 124 | $status = 500; |
125 | 125 | } |
126 | 126 | |
127 | 127 | $errors = array(); |
128 | - foreach ( (array) $wp_error->errors as $code => $messages ) { |
|
129 | - foreach ( (array) $messages as $message ) { |
|
128 | + foreach ((array) $wp_error->errors as $code => $messages) { |
|
129 | + foreach ((array) $messages as $message) { |
|
130 | 130 | $errors[] = array( |
131 | 131 | 'code' => $code, |
132 | 132 | 'message' => $message, |
133 | - 'data' => $wp_error->get_error_data( $code ) |
|
133 | + 'data' => $wp_error->get_error_data($code) |
|
134 | 134 | ); |
135 | 135 | } |
136 | 136 | } |
137 | - $data = isset( $errors[0] ) ? $errors[0] : array(); |
|
138 | - if ( count( $errors ) > 1 ) { |
|
137 | + $data = isset($errors[0]) ? $errors[0] : array(); |
|
138 | + if (count($errors) > 1) { |
|
139 | 139 | // Remove the primary error. |
140 | - array_shift( $errors ); |
|
140 | + array_shift($errors); |
|
141 | 141 | $data['additional_errors'] = $errors; |
142 | 142 | } |
143 | - return new \WP_REST_Response( $data, $status ); |
|
143 | + return new \WP_REST_Response($data, $status); |
|
144 | 144 | } |
145 | 145 | |
146 | 146 | /** |
@@ -150,14 +150,14 @@ discard block |
||
150 | 150 | * @param string $route |
151 | 151 | * @return string |
152 | 152 | */ |
153 | - public function get_requested_version( $route ) { |
|
153 | + public function get_requested_version($route) { |
|
154 | 154 | $matches = $this->parse_route( |
155 | 155 | $route, |
156 | - '~' . \EED_Core_Rest_Api::ee_api_namespace_for_regex . '~', |
|
157 | - array( 'version' ) |
|
156 | + '~'.\EED_Core_Rest_Api::ee_api_namespace_for_regex.'~', |
|
157 | + array('version') |
|
158 | 158 | ); |
159 | - if( isset( $matches[ 'version' ] ) ) { |
|
160 | - return $matches[ 'version' ]; |
|
159 | + if (isset($matches['version'])) { |
|
160 | + return $matches['version']; |
|
161 | 161 | } else { |
162 | 162 | return \EED_Core_Rest_Api::latest_rest_api_version(); |
163 | 163 | } |
@@ -182,23 +182,23 @@ discard block |
||
182 | 182 | * array( 'model' => 'foo', 'id' => 'bar' ) |
183 | 183 | * @throws \EE_Error if it couldn't be parsed |
184 | 184 | */ |
185 | - public function parse_route( $route, $regex, $match_keys ) { |
|
185 | + public function parse_route($route, $regex, $match_keys) { |
|
186 | 186 | $indexed_matches = array(); |
187 | - $success = preg_match( $regex, $route, $matches ); |
|
188 | - if( |
|
189 | - is_array( $matches ) ) { |
|
187 | + $success = preg_match($regex, $route, $matches); |
|
188 | + if ( |
|
189 | + is_array($matches) ) { |
|
190 | 190 | //skip the overall regex match. Who cares |
191 | - for( $i = 1; $i <= count( $match_keys ); $i++ ) { |
|
192 | - if( ! isset( $matches[ $i ] ) ) { |
|
191 | + for ($i = 1; $i <= count($match_keys); $i++) { |
|
192 | + if ( ! isset($matches[$i])) { |
|
193 | 193 | $success = false; |
194 | 194 | } else { |
195 | - $indexed_matches[ $match_keys[ $i - 1 ] ] = $matches[ $i ]; |
|
195 | + $indexed_matches[$match_keys[$i - 1]] = $matches[$i]; |
|
196 | 196 | } |
197 | 197 | } |
198 | 198 | } |
199 | - if( ! $success ) { |
|
199 | + if ( ! $success) { |
|
200 | 200 | throw new \EE_Error( |
201 | - __( 'We could not parse the URL. Please contact Event Espresso Support', 'event_espresso' ), |
|
201 | + __('We could not parse the URL. Please contact Event Espresso Support', 'event_espresso'), |
|
202 | 202 | 'endpoint_parsing_error' |
203 | 203 | ); |
204 | 204 | } |