@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('NO direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -43,25 +43,25 @@ discard block |
||
43 | 43 | * @param array $data |
44 | 44 | * @throws \EE_Error |
45 | 45 | */ |
46 | - public function __construct( $data ) { |
|
46 | + public function __construct($data) { |
|
47 | 47 | |
48 | 48 | //test for valid params |
49 | - if ( ! ( $data[0] instanceof EE_Transaction )) |
|
50 | - throw new EE_Error( __('Incoming data for the Gateways data handler must have an EE_Transaction object as the value for the first array index.', 'event_espresso') ); |
|
49 | + if ( ! ($data[0] instanceof EE_Transaction)) |
|
50 | + throw new EE_Error(__('Incoming data for the Gateways data handler must have an EE_Transaction object as the value for the first array index.', 'event_espresso')); |
|
51 | 51 | |
52 | - if ( empty( $data[1] ) || ! $data[1] instanceof EE_Payment ) |
|
53 | - $pmt_obj = $this->_get_empty_payment_obj( $data[0] ); |
|
52 | + if (empty($data[1]) || ! $data[1] instanceof EE_Payment) |
|
53 | + $pmt_obj = $this->_get_empty_payment_obj($data[0]); |
|
54 | 54 | |
55 | - if ( ! empty( $data[2] ) ) { |
|
55 | + if ( ! empty($data[2])) { |
|
56 | 56 | $filtered_reg_status = $data[2]; |
57 | 57 | } |
58 | 58 | |
59 | 59 | $data = array( |
60 | 60 | 'txn_obj' => $data[0], |
61 | 61 | 'pmt_obj' => isset($pmt_obj) ? $pmt_obj : $data[1], |
62 | - 'filtered_reg_status' => isset( $filtered_reg_status ) ? $filtered_reg_status : null |
|
62 | + 'filtered_reg_status' => isset($filtered_reg_status) ? $filtered_reg_status : null |
|
63 | 63 | ); |
64 | - parent::__construct( $data ); |
|
64 | + parent::__construct($data); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | |
@@ -71,8 +71,8 @@ discard block |
||
71 | 71 | * @param \EE_Transaction $txn |
72 | 72 | * @return \EE_Payment |
73 | 73 | */ |
74 | - private function _get_empty_payment_obj( EE_Transaction $txn ) { |
|
75 | - $PMT = EE_Payment::new_instance( array( |
|
74 | + private function _get_empty_payment_obj(EE_Transaction $txn) { |
|
75 | + $PMT = EE_Payment::new_instance(array( |
|
76 | 76 | 'STS_ID' => EEM_Payment::status_id_pending, |
77 | 77 | 'PAY_timestamp' => time(), |
78 | 78 | 'PMD_ID' => $txn->payment_method_ID(), |
@@ -100,9 +100,9 @@ discard block |
||
100 | 100 | |
101 | 101 | |
102 | 102 | //other data from the session (if possible) |
103 | - $this->user_id = isset( $session_data['user_id'] ) ? $session_data['user_id'] : ''; |
|
104 | - $this->ip_address = isset( $session_data['ip_address'] ) ? $session_data['ip_address'] : ''; |
|
105 | - $this->user_agent = isset( $session_data['user_agent'] ) ? $session_data['user_agent'] : ''; |
|
103 | + $this->user_id = isset($session_data['user_id']) ? $session_data['user_id'] : ''; |
|
104 | + $this->ip_address = isset($session_data['ip_address']) ? $session_data['ip_address'] : ''; |
|
105 | + $this->user_agent = isset($session_data['user_agent']) ? $session_data['user_agent'] : ''; |
|
106 | 106 | $this->init_access = $this->last_access = ''; |
107 | 107 | |
108 | 108 | $this->reg_objs = $this->txn->get_many_related('Registration'); |
@@ -1,7 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
4 | 4 | exit('NO direct script access allowed'); |
5 | +} |
|
5 | 6 | |
6 | 7 | /** |
7 | 8 | * Event Espresso |
@@ -46,11 +47,13 @@ discard block |
||
46 | 47 | public function __construct( $data ) { |
47 | 48 | |
48 | 49 | //test for valid params |
49 | - if ( ! ( $data[0] instanceof EE_Transaction )) |
|
50 | - throw new EE_Error( __('Incoming data for the Gateways data handler must have an EE_Transaction object as the value for the first array index.', 'event_espresso') ); |
|
50 | + if ( ! ( $data[0] instanceof EE_Transaction )) { |
|
51 | + throw new EE_Error( __('Incoming data for the Gateways data handler must have an EE_Transaction object as the value for the first array index.', 'event_espresso') ); |
|
52 | + } |
|
51 | 53 | |
52 | - if ( empty( $data[1] ) || ! $data[1] instanceof EE_Payment ) |
|
53 | - $pmt_obj = $this->_get_empty_payment_obj( $data[0] ); |
|
54 | + if ( empty( $data[1] ) || ! $data[1] instanceof EE_Payment ) { |
|
55 | + $pmt_obj = $this->_get_empty_payment_obj( $data[0] ); |
|
56 | + } |
|
54 | 57 | |
55 | 58 | if ( ! empty( $data[2] ) ) { |
56 | 59 | $filtered_reg_status = $data[2]; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('NO direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * For the constructor of this special preview class. We're either looking for an event id or empty data. If we have an event id (or ids) then we'll use that as the source for the "dummy" data. If the data is empty then we'll get the first three published events from the users database and use that as a source. |
43 | 43 | * @param array $data |
44 | 44 | */ |
45 | - public function __construct( $data = array() ) { |
|
45 | + public function __construct($data = array()) { |
|
46 | 46 | |
47 | 47 | $data = empty($data) ? array() : $data['event_ids']; |
48 | 48 | $this->_setup_attendees_events(); |
@@ -65,8 +65,8 @@ discard block |
||
65 | 65 | |
66 | 66 | $answers_n_questions = $this->_get_some_q_and_as(); |
67 | 67 | |
68 | - if ( count( $events ) < 1 ) { |
|
69 | - throw new EE_Error( __('We can\'t generate a preview for you because there are no active events in your database', 'event_espresso' ) ); |
|
68 | + if (count($events) < 1) { |
|
69 | + throw new EE_Error(__('We can\'t generate a preview for you because there are no active events in your database', 'event_espresso')); |
|
70 | 70 | } |
71 | 71 | |
72 | 72 | |
@@ -76,11 +76,11 @@ discard block |
||
76 | 76 | |
77 | 77 | //we'll actually use the generated line_item identifiers for our loop |
78 | 78 | $dtts = array(); |
79 | - foreach( $events as $id => $event ) { |
|
79 | + foreach ($events as $id => $event) { |
|
80 | 80 | $this->_events[$id]['ID'] = $id; |
81 | 81 | $this->_events[$id]['name'] = $event->get('EVT_name'); |
82 | 82 | $datetime = $event->get_first_related('Datetime'); |
83 | - $tickets = $datetime instanceof EE_Datetime ? $datetime->get_many_related('Ticket', array('default_where_conditions' => 'none') ) : array(); |
|
83 | + $tickets = $datetime instanceof EE_Datetime ? $datetime->get_many_related('Ticket', array('default_where_conditions' => 'none')) : array(); |
|
84 | 84 | $this->_events[$id]['event'] = $event; |
85 | 85 | $this->_events[$id]['reg_objs'] = array(); |
86 | 86 | $this->_events[$id]['tkt_objs'] = $tickets; |
@@ -88,15 +88,15 @@ discard block |
||
88 | 88 | |
89 | 89 | $dttcache = array(); |
90 | 90 | $tkts = array(); |
91 | - foreach ( $tickets as $ticket ) { |
|
91 | + foreach ($tickets as $ticket) { |
|
92 | 92 | $tkts[$ticket->ID()]['ticket'] = $ticket; |
93 | 93 | $reldatetime = $ticket->datetimes(); |
94 | 94 | $tkts[$ticket->ID()]['dtt_objs'] = $reldatetime; |
95 | 95 | $tkts[$ticket->ID()]['att_objs'] = $attendees; |
96 | 96 | $tkts[$ticket->ID()]['count'] = count($attendees); |
97 | 97 | $tkts[$ticket->ID()]['EE_Event'] = $event; |
98 | - foreach ( $reldatetime as $datetime ) { |
|
99 | - if ( !isset( $dtts[$datetime->ID()] ) ) { |
|
98 | + foreach ($reldatetime as $datetime) { |
|
99 | + if ( ! isset($dtts[$datetime->ID()])) { |
|
100 | 100 | $this->_events[$id]['dtt_objs'][$datetime->ID()] = $datetime; |
101 | 101 | $dtts[$datetime->ID()]['datetime'] = $datetime; |
102 | 102 | $dtts[$datetime->ID()]['tkt_objs'][] = $ticket; |
@@ -106,26 +106,26 @@ discard block |
||
106 | 106 | } |
107 | 107 | } |
108 | 108 | |
109 | - $this->_events[$id]['total_attendees'] = count( $attendees ); |
|
109 | + $this->_events[$id]['total_attendees'] = count($attendees); |
|
110 | 110 | $this->_events[$id]['att_objs'] = $attendees; |
111 | 111 | |
112 | 112 | //let's also setup the dummy attendees property! |
113 | - foreach ( $attendees as $att_key => $attendee ) { |
|
114 | - $this->_attendees[$att_key]['line_ref'][] = $id; //so later it can be determined what events this attendee registered for! |
|
113 | + foreach ($attendees as $att_key => $attendee) { |
|
114 | + $this->_attendees[$att_key]['line_ref'][] = $id; //so later it can be determined what events this attendee registered for! |
|
115 | 115 | $this->_attendees[$att_key]['evt_objs'][] = $event; |
116 | 116 | $this->_attendees[$att_key]['att_obj'] = $attendee; |
117 | 117 | //$this->_attendees[$att_key]['registration_id'] = 0; |
118 | 118 | $this->_attendees[$att_key]['attendee_email'] = $attendee->email(); |
119 | 119 | $this->_attendees[$att_key]['tkt_objs'] = $tickets; |
120 | - if ( $att_key == 999999991 ) { |
|
120 | + if ($att_key == 999999991) { |
|
121 | 121 | $this->_attendees[$att_key]['ans_objs'][999] = $answers_n_questions['answers'][999]; |
122 | 122 | $this->_attendees[$att_key]['ans_objs'][1002] = $answers_n_questions['answers'][1002]; |
123 | 123 | $this->_attendees[$att_key]['ans_objs'][1005] = $answers_n_questions['answers'][1005]; |
124 | - } elseif ( $att_key == 999999992 ) { |
|
124 | + } elseif ($att_key == 999999992) { |
|
125 | 125 | $this->_attendees[$att_key]['ans_objs'][1000] = $answers_n_questions['answers'][1000]; |
126 | 126 | $this->_attendees[$att_key]['ans_objs'][1003] = $answers_n_questions['answers'][1003]; |
127 | 127 | $this->_attendees[$att_key]['ans_objs'][1006] = $answers_n_questions['answers'][1006]; |
128 | - } elseif ( $att_key == 999999993 ) { |
|
128 | + } elseif ($att_key == 999999993) { |
|
129 | 129 | $this->_attendees[$att_key]['ans_objs'][1001] = $answers_n_questions['answers'][1001]; |
130 | 130 | $this->_attendees[$att_key]['ans_objs'][1004] = $answers_n_questions['answers'][1004]; |
131 | 131 | $this->_attendees[$att_key]['ans_objs'][1007] = $answers_n_questions['answers'][1007]; |
@@ -198,11 +198,11 @@ discard block |
||
198 | 198 | |
199 | 199 | //let's generate the attendee objects |
200 | 200 | $attendees = array(); |
201 | - $var_array = array('fname','lname','email','address','address2','city','staid','cntry','zip','phone','deleted','attid'); |
|
201 | + $var_array = array('fname', 'lname', 'email', 'address', 'address2', 'city', 'staid', 'cntry', 'zip', 'phone', 'deleted', 'attid'); |
|
202 | 202 | |
203 | - EE_Registry::instance()->load_class( 'Attendee', array(), FALSE, TRUE, TRUE ); |
|
204 | - foreach ( $dummy_attendees as $dummy ) { |
|
205 | - $att = array_combine( $var_array, $dummy ); |
|
203 | + EE_Registry::instance()->load_class('Attendee', array(), FALSE, TRUE, TRUE); |
|
204 | + foreach ($dummy_attendees as $dummy) { |
|
205 | + $att = array_combine($var_array, $dummy); |
|
206 | 206 | extract($att); |
207 | 207 | $attendees[$attid] = EE_Attendee::new_instance( |
208 | 208 | array( |
@@ -303,19 +303,19 @@ discard block |
||
303 | 303 | $qst_columns = array('QST_ID', 'QST_display_text', 'QST_system'); |
304 | 304 | $ans_columns = array('ANS_ID', 'QST_ID', 'ANS_value'); |
305 | 305 | |
306 | - EE_Registry::instance()->load_class( 'Question', array(), FALSE, TRUE, TRUE ); |
|
307 | - EE_Registry::instance()->load_class( 'Answer', array(), FALSE, TRUE, TRUE ); |
|
306 | + EE_Registry::instance()->load_class('Question', array(), FALSE, TRUE, TRUE); |
|
307 | + EE_Registry::instance()->load_class('Answer', array(), FALSE, TRUE, TRUE); |
|
308 | 308 | |
309 | 309 | //first the questions |
310 | - foreach ( $quests_array as $qst ) { |
|
311 | - $qstobj = array_combine( $qst_columns, $qst ); |
|
310 | + foreach ($quests_array as $qst) { |
|
311 | + $qstobj = array_combine($qst_columns, $qst); |
|
312 | 312 | $qsts[$qstobj['QST_ID']] = EE_Question::new_instance($qstobj); |
313 | 313 | } |
314 | 314 | |
315 | 315 | //now the answers (and we'll setup our arrays) |
316 | 316 | $q_n_as = array(); |
317 | - foreach ( $ans_array as $ans ) { |
|
318 | - $ansobj = array_combine( $ans_columns, $ans ); |
|
317 | + foreach ($ans_array as $ans) { |
|
318 | + $ansobj = array_combine($ans_columns, $ans); |
|
319 | 319 | $ansobj = EE_Answer::new_instance($ansobj); |
320 | 320 | $q_n_as['answers'][$ansobj->ID()] = $ansobj; |
321 | 321 | $q_n_as['questions'][$ansobj->ID()] = $qsts[$ansobj->get('QST_ID')]; |
@@ -337,17 +337,17 @@ discard block |
||
337 | 337 | * @param array $event_ids if set, this will be an array of event ids to obtain events for. |
338 | 338 | * @return array An array of event objects from the db. |
339 | 339 | */ |
340 | - private function _get_some_events( $event_ids = array() ) { |
|
340 | + private function _get_some_events($event_ids = array()) { |
|
341 | 341 | global $wpdb; |
342 | 342 | |
343 | 343 | //HEY, if we have an evt_id then we want to make sure we use that for the preview (because a specific event template is being viewed); |
344 | - $event_ids = isset( $_REQUEST['evt_id'] ) && !empty($_REQUEST['evt_id'] ) ? array( $_REQUEST['evt_id'] ) : array(); |
|
344 | + $event_ids = isset($_REQUEST['evt_id']) && ! empty($_REQUEST['evt_id']) ? array($_REQUEST['evt_id']) : array(); |
|
345 | 345 | |
346 | - $limit = !empty( $event_ids ) ? NULL : apply_filters( 'FHEE__EE_Messages_Preview_incoming_data___get_some_events__limit', '0,1' ); |
|
346 | + $limit = ! empty($event_ids) ? NULL : apply_filters('FHEE__EE_Messages_Preview_incoming_data___get_some_events__limit', '0,1'); |
|
347 | 347 | |
348 | - $where = !empty($event_ids) ? array('EVT_ID' => array( 'IN', $event_ids ), 'Datetime.Ticket.TKT_ID' => array('>', 1) ) : array('Datetime.Ticket.TKT_ID' => array('>', 1) ); |
|
348 | + $where = ! empty($event_ids) ? array('EVT_ID' => array('IN', $event_ids), 'Datetime.Ticket.TKT_ID' => array('>', 1)) : array('Datetime.Ticket.TKT_ID' => array('>', 1)); |
|
349 | 349 | |
350 | - $events = EE_Registry::instance()->load_model('Event')->get_all(array($where, 'limit' => $limit ) ); |
|
350 | + $events = EE_Registry::instance()->load_model('Event')->get_all(array($where, 'limit' => $limit)); |
|
351 | 351 | |
352 | 352 | return $events; |
353 | 353 | } |
@@ -361,13 +361,13 @@ discard block |
||
361 | 361 | |
362 | 362 | //need to figure out the running total for test purposes so... we're going to create a temp cart and add the tickets to it! |
363 | 363 | |
364 | - EE_Registry::instance()->SSN->clear_session( __CLASS__, __FUNCTION__ ); |
|
364 | + EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__); |
|
365 | 365 | |
366 | 366 | $cart = EE_Cart::reset(); |
367 | 367 | |
368 | 368 | |
369 | 369 | //add tickets to cart |
370 | - foreach ( $this->tickets as $ticket ) { |
|
370 | + foreach ($this->tickets as $ticket) { |
|
371 | 371 | $cart->add_ticket_to_cart($ticket['ticket']); |
372 | 372 | } |
373 | 373 | |
@@ -391,13 +391,13 @@ discard block |
||
391 | 391 | //note we're setting up a reg object for each attendee in each event but ALSO adding to the reg_object array. |
392 | 392 | $this->reg_objs = array(); |
393 | 393 | $regid = 9999990; |
394 | - foreach ( $this->_attendees as $key => $attendee ) { |
|
394 | + foreach ($this->_attendees as $key => $attendee) { |
|
395 | 395 | //note we need to setup reg_objects for each event this attendee belongs to |
396 | 396 | $regatt = $attendee['att_obj']->ID(); |
397 | 397 | $regtxn = $this->txn->ID(); |
398 | 398 | $regcnt = 1; |
399 | - foreach ( $attendee['line_ref'] as $evtid ) { |
|
400 | - foreach ( $this->_events[$evtid]['tkt_objs'] as $ticket ) { |
|
399 | + foreach ($attendee['line_ref'] as $evtid) { |
|
400 | + foreach ($this->_events[$evtid]['tkt_objs'] as $ticket) { |
|
401 | 401 | $reg_array = array( |
402 | 402 | 'EVT_ID' => $evtid, |
403 | 403 | 'ATT_ID' => $regatt, |
@@ -407,14 +407,14 @@ discard block |
||
407 | 407 | 'REG_date' => time(), |
408 | 408 | 'REG_final_price' => $ticket->get('TKT_price'), |
409 | 409 | 'REG_session' => 'dummy_session_id', |
410 | - 'REG_code' => $regid . '-dummy-generated-code', |
|
411 | - 'REG_url_link' => $regcnt . '-daafpapasdlfakasdfpqasdfasdf', |
|
410 | + 'REG_code' => $regid.'-dummy-generated-code', |
|
411 | + 'REG_url_link' => $regcnt.'-daafpapasdlfakasdfpqasdfasdf', |
|
412 | 412 | 'REG_count' => $regcnt, |
413 | 413 | 'REG_group_size' => $this->_events[$evtid]['total_attendees'], |
414 | 414 | 'REG_att_is_going' => TRUE, |
415 | 415 | 'REG_ID' => $regid |
416 | 416 | ); |
417 | - $REG_OBJ = EE_Registration::new_instance( $reg_array ); |
|
417 | + $REG_OBJ = EE_Registration::new_instance($reg_array); |
|
418 | 418 | $this->_attendees[$key]['reg_objs'][$regid] = $REG_OBJ; |
419 | 419 | $this->_events[$evtid]['reg_objs'][] = $REG_OBJ; |
420 | 420 | $this->reg_objs[] = $REG_OBJ; |
@@ -430,40 +430,40 @@ discard block |
||
430 | 430 | |
431 | 431 | //setup line items! |
432 | 432 | EE_Registry::instance()->load_helper('Line_Item'); |
433 | - $line_item_total = EEH_Line_Item::create_total_line_item( $this->txn ); |
|
433 | + $line_item_total = EEH_Line_Item::create_total_line_item($this->txn); |
|
434 | 434 | |
435 | 435 | //add tickets |
436 | - foreach ( $this->tickets as $tktid => $item ) { |
|
436 | + foreach ($this->tickets as $tktid => $item) { |
|
437 | 437 | $qty = $item['count']; |
438 | 438 | $ticket = $item['ticket']; |
439 | - EEH_Line_Item::add_ticket_purchase( $line_item_total, $ticket, $qty ); |
|
439 | + EEH_Line_Item::add_ticket_purchase($line_item_total, $ticket, $qty); |
|
440 | 440 | } |
441 | 441 | |
442 | - $shipping_line_item = EE_Line_Item::new_instance( array( |
|
443 | - 'LIN_name' => __( 'Shipping Surcharge', 'event_espresso' ), |
|
444 | - 'LIN_desc' => __( 'Sent via Millenium Falcon', 'event_espresso' ), |
|
442 | + $shipping_line_item = EE_Line_Item::new_instance(array( |
|
443 | + 'LIN_name' => __('Shipping Surcharge', 'event_espresso'), |
|
444 | + 'LIN_desc' => __('Sent via Millenium Falcon', 'event_espresso'), |
|
445 | 445 | 'LIN_unit_price' => 20, |
446 | 446 | 'LIN_quantity' => 1, |
447 | 447 | 'LIN_is_taxable' => TRUE, |
448 | 448 | 'LIN_total' => 20, |
449 | 449 | 'LIN_type' => EEM_Line_Item::type_line_item |
450 | 450 | )); |
451 | - EEH_Line_Item::add_item($line_item_total, $shipping_line_item ); |
|
452 | - $this->additional_line_items = array( $shipping_line_item ); |
|
451 | + EEH_Line_Item::add_item($line_item_total, $shipping_line_item); |
|
452 | + $this->additional_line_items = array($shipping_line_item); |
|
453 | 453 | |
454 | 454 | //now let's add taxes |
455 | - EEH_Line_Item::apply_taxes( $line_item_total ); |
|
455 | + EEH_Line_Item::apply_taxes($line_item_total); |
|
456 | 456 | |
457 | 457 | //now we should be able to get the items we need from this object |
458 | - $event_line_items = EEH_Line_Item::get_pre_tax_subtotal( $line_item_total )->children(); |
|
458 | + $event_line_items = EEH_Line_Item::get_pre_tax_subtotal($line_item_total)->children(); |
|
459 | 459 | $line_items = array(); |
460 | - foreach ( $event_line_items as $line_id => $line_item ) { |
|
461 | - if ( ! $line_item instanceof EE_Line_Item || $line_item->OBJ_type() !== 'Event' ) { |
|
460 | + foreach ($event_line_items as $line_id => $line_item) { |
|
461 | + if ( ! $line_item instanceof EE_Line_Item || $line_item->OBJ_type() !== 'Event') { |
|
462 | 462 | continue; |
463 | 463 | } |
464 | - $ticket_line_items = EEH_Line_Item::get_ticket_line_items( $line_item ); |
|
465 | - foreach ( $ticket_line_items as $ticket_line_id => $ticket_line_item ) { |
|
466 | - if ( ! $ticket_line_item instanceof EE_Line_Item ) { |
|
464 | + $ticket_line_items = EEH_Line_Item::get_ticket_line_items($line_item); |
|
465 | + foreach ($ticket_line_items as $ticket_line_id => $ticket_line_item) { |
|
466 | + if ( ! $ticket_line_item instanceof EE_Line_Item) { |
|
467 | 467 | continue; |
468 | 468 | } |
469 | 469 | $this->tickets[$ticket_line_item->OBJ_ID()]['line_item'] = $ticket_line_item; |
@@ -479,11 +479,11 @@ discard block |
||
479 | 479 | //add proper total to transaction object. |
480 | 480 | $grand_total = $line_item_total->recalculate_total_including_taxes(); |
481 | 481 | $this->grand_total_line_item = $line_item_total; |
482 | - $this->txn->set_total( $grand_total ); |
|
482 | + $this->txn->set_total($grand_total); |
|
483 | 483 | |
484 | 484 | |
485 | 485 | //add additional details for each registration |
486 | - foreach ( $this->reg_objs as $reg ) { |
|
486 | + foreach ($this->reg_objs as $reg) { |
|
487 | 487 | $this->_registrations[$reg->ID()]['tkt_obj'] = $this->tickets[$reg->get('TKT_ID')]['ticket']; |
488 | 488 | $this->_registrations[$reg->ID()]['evt_obj'] = $this->_events[$reg->get('EVT_ID')]['event']; |
489 | 489 | $this->_registrations[$reg->ID()]['reg_obj'] = $reg; |
@@ -514,7 +514,7 @@ discard block |
||
514 | 514 | $this->reg_info = array(); |
515 | 515 | |
516 | 516 | //let's set a reg_obj for messengers expecting one. |
517 | - $this->reg_obj = array_pop( $this->_attendees[999999991]['reg_objs'] ); |
|
517 | + $this->reg_obj = array_pop($this->_attendees[999999991]['reg_objs']); |
|
518 | 518 | |
519 | 519 | |
520 | 520 | //the below are just dummy items. |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('NO direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -50,20 +50,20 @@ discard block |
||
50 | 50 | * @param EE_Registration|array $data |
51 | 51 | * @throws \EE_Error |
52 | 52 | */ |
53 | - public function __construct( $data ) { |
|
53 | + public function __construct($data) { |
|
54 | 54 | $filtered_reg_status = null; |
55 | 55 | |
56 | - if ( ! is_array( $data ) && $data instanceof EE_Registration ) { |
|
56 | + if ( ! is_array($data) && $data instanceof EE_Registration) { |
|
57 | 57 | $this->reg_obj = $data; |
58 | 58 | } else { |
59 | - $this->reg_obj = is_array( $data ) && isset( $data[0] ) && $data[0] instanceof EE_Registration ? $data[0] : null; |
|
60 | - $filtered_reg_status = is_array( $data ) && ! empty( $data[1] ) ? $data[1] : null; |
|
59 | + $this->reg_obj = is_array($data) && isset($data[0]) && $data[0] instanceof EE_Registration ? $data[0] : null; |
|
60 | + $filtered_reg_status = is_array($data) && ! empty($data[1]) ? $data[1] : null; |
|
61 | 61 | } |
62 | 62 | |
63 | - if ( ! $this->reg_obj instanceof EE_Registration ) { |
|
63 | + if ( ! $this->reg_obj instanceof EE_Registration) { |
|
64 | 64 | throw new EE_Error( |
65 | 65 | sprintf( |
66 | - __( '%1$s requires the incoming data argument to be an instance of %2$s or an array where the first value is an instance of %2$s', 'event_espresso'), |
|
66 | + __('%1$s requires the incoming data argument to be an instance of %2$s or an array where the first value is an instance of %2$s', 'event_espresso'), |
|
67 | 67 | 'EE_Messages_REG_incoming_data', |
68 | 68 | 'EE_Registration' |
69 | 69 | ) |
@@ -92,16 +92,16 @@ discard block |
||
92 | 92 | $this->txn = $this->reg_obj->transaction(); |
93 | 93 | //possible session stuff? |
94 | 94 | $session = $this->txn->session_data(); |
95 | - $session_data = $session instanceof EE_Session ? $session->get_session_data() : array(); |
|
95 | + $session_data = $session instanceof EE_Session ? $session->get_session_data() : array(); |
|
96 | 96 | |
97 | 97 | //other data from the session (if possible) |
98 | - $this->user_id = isset( $session_data['user_id'] ) ? $session_data['user_id'] : ''; |
|
99 | - $this->ip_address = isset( $session_data['ip_address'] ) ? $session_data['ip_address'] : ''; |
|
100 | - $this->user_agent = isset( $session_data['user_agent'] ) ? $session_data['user_agent'] : ''; |
|
98 | + $this->user_id = isset($session_data['user_id']) ? $session_data['user_id'] : ''; |
|
99 | + $this->ip_address = isset($session_data['ip_address']) ? $session_data['ip_address'] : ''; |
|
100 | + $this->user_agent = isset($session_data['user_agent']) ? $session_data['user_agent'] : ''; |
|
101 | 101 | $this->init_access = $this->last_access = ''; |
102 | 102 | |
103 | 103 | $this->payment = $this->txn->get_first_related('Payment'); |
104 | - $this->payment = empty( $this->payment ) ? EE_Payment::new_instance( array( |
|
104 | + $this->payment = empty($this->payment) ? EE_Payment::new_instance(array( |
|
105 | 105 | 'STS_ID' => EEM_Payment::status_id_pending, |
106 | 106 | 'PAY_timestamp' => time(), |
107 | 107 | 'PMD_ID' => $this->txn->payment_method_ID(), |
@@ -6,8 +6,9 @@ |
||
6 | 6 | * @package Event Espresso |
7 | 7 | * @subpackage messages |
8 | 8 | */ |
9 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
9 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
10 | 10 | exit('NO direct script access allowed'); |
11 | +} |
|
11 | 12 | |
12 | 13 | /** |
13 | 14 | * |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) |
|
4 | 4 | exit('NO direct script access allowed'); |
5 | 5 | |
6 | 6 | /** |
@@ -123,7 +123,7 @@ discard block |
||
123 | 123 | * @access public |
124 | 124 | * @return void |
125 | 125 | */ |
126 | - public function __construct( EE_Messages $messages, $messenger_name, $message_type_name, $GRP_ID = 0 ) { |
|
126 | + public function __construct(EE_Messages $messages, $messenger_name, $message_type_name, $GRP_ID = 0) { |
|
127 | 127 | $this->_EE_MSG = $messages; |
128 | 128 | |
129 | 129 | //set the model object |
@@ -135,10 +135,10 @@ discard block |
||
135 | 135 | $this->_mt_name = $message_type_name; |
136 | 136 | |
137 | 137 | //make sure required props have been set |
138 | - if ( empty( $this->_m_name) || empty( $this->_mt_name ) ) { |
|
138 | + if (empty($this->_m_name) || empty($this->_mt_name)) { |
|
139 | 139 | $msg[] = __('Message Templates cannot be generated because the Messenger and Message Types haven\'t been defined for the generator.', 'event_espresso'); |
140 | 140 | $msg[] = __('You need to set the "$m_name" and "$mt_name" properties', 'event_espresso'); |
141 | - throw new EE_Error( implode( '||', $msg ) ); |
|
141 | + throw new EE_Error(implode('||', $msg)); |
|
142 | 142 | } |
143 | 143 | |
144 | 144 | $this->_init(); |
@@ -154,20 +154,20 @@ discard block |
||
154 | 154 | * @param string $template_pack This corresponds to a template pack class reference which will contain information about where to obtain the templates. |
155 | 155 | * @return void |
156 | 156 | */ |
157 | - final private function _set_templates( $template_pack ) { |
|
157 | + final private function _set_templates($template_pack) { |
|
158 | 158 | |
159 | 159 | //get the corresponding template pack object (if present. If not then we just load the default and add a notice). The class name should be something like 'EE_Messages_Template_Pack_Default' where "default' would be the incoming template pack reference. |
160 | - $class_name = 'EE_Messages_Template_Pack_' . str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $template_pack ) ) ); |
|
160 | + $class_name = 'EE_Messages_Template_Pack_'.str_replace(' ', '_', ucwords(str_replace('_', ' ', $template_pack))); |
|
161 | 161 | |
162 | - if ( ! class_exists( $class_name ) ) { |
|
163 | - EE_Error::add_error( sprintf( __('The template pack represented by a class corresponding to "%s" does not exist. Likely the autoloader for this class has the wrong path or the incoming reference is mispelled. The default template pack been used to generate the templates instead.', 'event_espresso'), $class_name ), __FILE__, __FUNCTION__, __LINE__ ); |
|
162 | + if ( ! class_exists($class_name)) { |
|
163 | + EE_Error::add_error(sprintf(__('The template pack represented by a class corresponding to "%s" does not exist. Likely the autoloader for this class has the wrong path or the incoming reference is mispelled. The default template pack been used to generate the templates instead.', 'event_espresso'), $class_name), __FILE__, __FUNCTION__, __LINE__); |
|
164 | 164 | $class_name = 'EE_Messages_Template_Pack_Default'; |
165 | 165 | } |
166 | 166 | |
167 | 167 | $template_pack = new $class_name; |
168 | 168 | |
169 | 169 | //get all the templates from the template pack. |
170 | - $this->_templates = $template_pack->get_templates( $this->_messenger, $this->_message_type ); |
|
170 | + $this->_templates = $template_pack->get_templates($this->_messenger, $this->_message_type); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | |
@@ -185,29 +185,29 @@ discard block |
||
185 | 185 | $active_message_types = $this->_EE_MSG->get_installed_message_types(); |
186 | 186 | |
187 | 187 | //check if messenger is active |
188 | - if ( !isset($active_messengers[$this->_m_name] ) ) { |
|
188 | + if ( ! isset($active_messengers[$this->_m_name])) { |
|
189 | 189 | $msg[] = __('Message Templates cannot be generated because the given messenger is not active', 'event_espresso'); |
190 | - $msg[] = sprintf( __('The "$_m_name" property has "%s" as its value. Check the spelling and make sure it matches an available messenger', 'event_espresso'), $this->_m_name ); |
|
191 | - throw new EE_Error( implode( '||', $msg ) ); |
|
190 | + $msg[] = sprintf(__('The "$_m_name" property has "%s" as its value. Check the spelling and make sure it matches an available messenger', 'event_espresso'), $this->_m_name); |
|
191 | + throw new EE_Error(implode('||', $msg)); |
|
192 | 192 | } |
193 | 193 | |
194 | 194 | //check if message type is installed |
195 | - if ( !isset($active_messengers[$this->_m_name] ) ) { |
|
195 | + if ( ! isset($active_messengers[$this->_m_name])) { |
|
196 | 196 | $msg[] = __('Message Templates cannot be generated because the given message type is not installed', 'event_espresso'); |
197 | - $msg[] = sprintf( __('The "$_mt_name" property has "%s" as its value. Check the spelling and make sure it matches an available message type', 'event_espresso'), $this->_mt_name ); |
|
198 | - throw new EE_Error( implode( '||', $msg ) ); |
|
197 | + $msg[] = sprintf(__('The "$_mt_name" property has "%s" as its value. Check the spelling and make sure it matches an available message type', 'event_espresso'), $this->_mt_name); |
|
198 | + throw new EE_Error(implode('||', $msg)); |
|
199 | 199 | } |
200 | 200 | |
201 | 201 | $this->_messenger = $active_messengers[$this->_m_name]; |
202 | 202 | $this->_message_type = $active_message_types[$this->_mt_name]; |
203 | 203 | |
204 | 204 | //verify we have the messenger and message type objects |
205 | - if ( ! $this->_messenger instanceof EE_messenger ) { |
|
206 | - throw new EE_Error( sprintf( __('The _messenger property must be an instance of EE_messenger by this point. It isn\'t. Something has gone wrong. Here is the value it holds:<br /> %s', 'event_espresso' ), print_r( $this->_messenger, TRUE ) ) ); |
|
205 | + if ( ! $this->_messenger instanceof EE_messenger) { |
|
206 | + throw new EE_Error(sprintf(__('The _messenger property must be an instance of EE_messenger by this point. It isn\'t. Something has gone wrong. Here is the value it holds:<br /> %s', 'event_espresso'), print_r($this->_messenger, TRUE))); |
|
207 | 207 | } |
208 | 208 | |
209 | - if ( ! $this->_message_type instanceof EE_message_type ) { |
|
210 | - throw new EE_Error( sprintf( __('The _message_type property must be an instance of EE_message_type by this point. It isn\'t. Something has gone wrong. Here is the value it holds:<br /> %s', 'event_espresso' ), print_r( $this->_message_type, TRUE ) ) ); |
|
209 | + if ( ! $this->_message_type instanceof EE_message_type) { |
|
210 | + throw new EE_Error(sprintf(__('The _message_type property must be an instance of EE_message_type by this point. It isn\'t. Something has gone wrong. Here is the value it holds:<br /> %s', 'event_espresso'), print_r($this->_message_type, TRUE))); |
|
211 | 211 | } |
212 | 212 | |
213 | 213 | |
@@ -235,13 +235,13 @@ discard block |
||
235 | 235 | public function create_new_templates() { |
236 | 236 | $template_pack = 'default'; |
237 | 237 | //if we have the GRP_ID then let's use that to see if there is a set template pack and use that for the new templates. |
238 | - if ( !empty( $this->_GRP_ID ) ) { |
|
239 | - $mtpg = EEM_Message_Template_Group::instance()->get_one_by_ID( $this->_GRP_ID ); |
|
238 | + if ( ! empty($this->_GRP_ID)) { |
|
239 | + $mtpg = EEM_Message_Template_Group::instance()->get_one_by_ID($this->_GRP_ID); |
|
240 | 240 | $template_pack = $mtpg instanceof EE_Message_Template_Group ? $mtpg->get_template_pack_name() : 'default'; |
241 | 241 | //we also need to reset the template variation to default |
242 | - $mtpg->set_template_pack_variation( 'default' ); |
|
242 | + $mtpg->set_template_pack_variation('default'); |
|
243 | 243 | } |
244 | - return $this->_create_new_templates( $template_pack ); |
|
244 | + return $this->_create_new_templates($template_pack); |
|
245 | 245 | } |
246 | 246 | |
247 | 247 | |
@@ -254,15 +254,15 @@ discard block |
||
254 | 254 | * @param string $template_pack This corresponds to a template pack class reference which will contain information about where to obtain the templates. |
255 | 255 | * @return mixed (array|bool) success array or false. |
256 | 256 | */ |
257 | - private function _create_new_templates( $template_pack ) { |
|
257 | + private function _create_new_templates($template_pack) { |
|
258 | 258 | |
259 | - $this->_set_templates( $template_pack ); |
|
259 | + $this->_set_templates($template_pack); |
|
260 | 260 | |
261 | 261 | //necessary properties are set, let's save the default templates |
262 | 262 | |
263 | - if ( empty( $this->_GRP_ID ) ) { |
|
263 | + if (empty($this->_GRP_ID)) { |
|
264 | 264 | |
265 | - $main_template_data = array( |
|
265 | + $main_template_data = array( |
|
266 | 266 | 'MTP_messenger' => $this->_messenger->name, |
267 | 267 | 'MTP_message_type' => $this->_message_type->name, |
268 | 268 | 'MTP_is_override' => 0, |
@@ -274,24 +274,24 @@ discard block |
||
274 | 274 | |
275 | 275 | |
276 | 276 | //let's insert the above and get our GRP_ID, then reset the template data array to just include the GRP_ID |
277 | - $grp_id = $this->_EEM_data->insert( $main_template_data ); |
|
277 | + $grp_id = $this->_EEM_data->insert($main_template_data); |
|
278 | 278 | |
279 | - if ( empty( $grp_id ) ) return $grp_id; |
|
279 | + if (empty($grp_id)) return $grp_id; |
|
280 | 280 | $this->_GRP_ID = $grp_id; |
281 | 281 | } |
282 | 282 | |
283 | - $template_data = array( 'GRP_ID' => $this->_GRP_ID ); |
|
283 | + $template_data = array('GRP_ID' => $this->_GRP_ID); |
|
284 | 284 | |
285 | - foreach ( $this->_contexts as $context => $details ) { |
|
286 | - foreach ( $this->_fields as $field => $field_type ) { |
|
287 | - if ( $field != 'extra' ) { |
|
285 | + foreach ($this->_contexts as $context => $details) { |
|
286 | + foreach ($this->_fields as $field => $field_type) { |
|
287 | + if ($field != 'extra') { |
|
288 | 288 | $template_data['MTP_context'] = $context; |
289 | 289 | $template_data['MTP_template_field'] = $field; |
290 | 290 | $template_data['MTP_content'] = $this->_templates[$context][$field]; |
291 | 291 | |
292 | 292 | $MTP = EEM_Message_Template::instance()->insert($template_data); |
293 | - if ( !$MTP ) { |
|
294 | - EE_Error::add_error( sprintf(__('There was an error in saving new template data for %s messenger, %s message type, %s context and %s template field.', 'event_espresso'), $this->_messenger->name, $this->_message_type->name, $context, $field), __FILE__, __FUNCTION__, __LINE__ ); |
|
293 | + if ( ! $MTP) { |
|
294 | + EE_Error::add_error(sprintf(__('There was an error in saving new template data for %s messenger, %s message type, %s context and %s template field.', 'event_espresso'), $this->_messenger->name, $this->_message_type->name, $context, $field), __FILE__, __FUNCTION__, __LINE__); |
|
295 | 295 | return false; |
296 | 296 | } |
297 | 297 | } |
@@ -1,7 +1,8 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if (!defined('EVENT_ESPRESSO_VERSION') ) |
|
3 | +if (!defined('EVENT_ESPRESSO_VERSION') ) { |
|
4 | 4 | exit('NO direct script access allowed'); |
5 | +} |
|
5 | 6 | |
6 | 7 | /** |
7 | 8 | * Event Espresso |
@@ -276,7 +277,9 @@ discard block |
||
276 | 277 | //let's insert the above and get our GRP_ID, then reset the template data array to just include the GRP_ID |
277 | 278 | $grp_id = $this->_EEM_data->insert( $main_template_data ); |
278 | 279 | |
279 | - if ( empty( $grp_id ) ) return $grp_id; |
|
280 | + if ( empty( $grp_id ) ) { |
|
281 | + return $grp_id; |
|
282 | + } |
|
280 | 283 | $this->_GRP_ID = $grp_id; |
281 | 284 | } |
282 | 285 |
@@ -1,10 +1,10 @@ |
||
1 | 1 | <?php |
2 | 2 | /** |
3 | - * This file contains the EE_Messages_Template_ Pack_Default |
|
4 | - * @package Event Espresso |
|
5 | - * @subpackage messages |
|
6 | - * @since 4.5.0 |
|
7 | - */ |
|
3 | + * This file contains the EE_Messages_Template_ Pack_Default |
|
4 | + * @package Event Espresso |
|
5 | + * @subpackage messages |
|
6 | + * @since 4.5.0 |
|
7 | + */ |
|
8 | 8 | if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
9 | 9 | |
10 | 10 | /** |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | $this->label = __('Default', 'event_espresso'); |
22 | 22 | $this->dbref = 'default'; |
23 | 23 | $this->description = __('This is the default template pack included with Event Espress core messages system.', 'event_espresso'); |
24 | - $this->_base_url = EE_PLUGIN_DIR_URL . 'core/libraries/messages/defaults/default/'; |
|
25 | - $this->_base_path = EE_LIBRARIES . 'messages/defaults/default/'; |
|
24 | + $this->_base_url = EE_PLUGIN_DIR_URL.'core/libraries/messages/defaults/default/'; |
|
25 | + $this->_base_path = EE_LIBRARIES.'messages/defaults/default/'; |
|
26 | 26 | $this->_supports = array( |
27 | 27 | 'email' => array( |
28 | 28 | 'cancelled_registration', 'declined_registration', 'not_approved_registration', 'pending_approval', 'registration', |
@@ -33,9 +33,9 @@ discard block |
||
33 | 33 | 'receipt', 'invoice' |
34 | 34 | ) |
35 | 35 | ); |
36 | - $this->_default_variation_labels= array( |
|
37 | - 'email' => __('Default', 'event_espresso' ), |
|
38 | - 'html' => __('Simple', 'event_espresso' ) |
|
36 | + $this->_default_variation_labels = array( |
|
37 | + 'email' => __('Default', 'event_espresso'), |
|
38 | + 'html' => __('Simple', 'event_espresso') |
|
39 | 39 | ); |
40 | 40 | $this->_variations = array( |
41 | 41 | 'html' => array( |
@@ -63,18 +63,18 @@ discard block |
||
63 | 63 | |
64 | 64 | |
65 | 65 | |
66 | - public function get_default_variation( $messenger, $message_type, $type, $url, $file_extension ) { |
|
66 | + public function get_default_variation($messenger, $message_type, $type, $url, $file_extension) { |
|
67 | 67 | $base = $url ? $this->_base_url : $this->_base_path; |
68 | 68 | $base_path = $this->_base_path; |
69 | 69 | //possible variation paths considering whether message type is present or not in the file name. |
70 | - $path_string = 'variations/' . $messenger . '_' . $message_type . '_' . $type . '_default' . $file_extension; |
|
71 | - $default_path_string = 'variations/' . $messenger . '_' . $type . '_default' . $file_extension; |
|
70 | + $path_string = 'variations/'.$messenger.'_'.$message_type.'_'.$type.'_default'.$file_extension; |
|
71 | + $default_path_string = 'variations/'.$messenger.'_'.$type.'_default'.$file_extension; |
|
72 | 72 | //first see if fully validated file exists. |
73 | - if ( is_readable( $base_path . $path_string ) ) { |
|
74 | - $variation_path = $base . $path_string; |
|
73 | + if (is_readable($base_path.$path_string)) { |
|
74 | + $variation_path = $base.$path_string; |
|
75 | 75 | //otherwise see if default exists. |
76 | - } elseif ( is_readable( $base_path . $default_path_string ) ) { |
|
77 | - $variation_path = $base . $default_path_string; |
|
76 | + } elseif (is_readable($base_path.$default_path_string)) { |
|
77 | + $variation_path = $base.$default_path_string; |
|
78 | 78 | } else { |
79 | 79 | //no matches found so nothing is present. |
80 | 80 | $variation_path = ''; |
@@ -5,7 +5,9 @@ |
||
5 | 5 | * @subpackage plugin api, messages |
6 | 6 | * @since 4.5.0 |
7 | 7 | */ |
8 | -if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
8 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
9 | + exit('No direct script access allowed'); |
|
10 | +} |
|
9 | 11 | |
10 | 12 | /** |
11 | 13 | * Use this to register or deregister a new message template pack variation for the EE messages system. |
@@ -31,9 +31,9 @@ discard block |
||
31 | 31 | <tbody> |
32 | 32 | <tr> |
33 | 33 | <td> |
34 | - <h2><?php printf( __( 'Hello, %s', 'event_espresso' ), '[RECIPIENT_FNAME]' ); ?>:</h2> |
|
34 | + <h2><?php printf(__('Hello, %s', 'event_espresso'), '[RECIPIENT_FNAME]'); ?>:</h2> |
|
35 | 35 | |
36 | - <p class="lead"><?php _e( 'Your registration was cancelled for the following tickets:', 'event_espresso' ); ?></p> |
|
36 | + <p class="lead"><?php _e('Your registration was cancelled for the following tickets:', 'event_espresso'); ?></p> |
|
37 | 37 | </td> |
38 | 38 | </tr> |
39 | 39 | </tbody> |
@@ -62,10 +62,10 @@ discard block |
||
62 | 62 | <tbody> |
63 | 63 | <tr> |
64 | 64 | <td> |
65 | - <h5><?php _e( 'Connect with Us:', 'event_espresso' ); ?></h5> |
|
66 | - <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e( 'Facebook', 'event_espresso' ); ?></a> |
|
67 | - <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e( 'Twitter', 'event_espresso' ); ?></a> |
|
68 | - <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e( 'Google+', 'event_espresso' ); ?></a> |
|
65 | + <h5><?php _e('Connect with Us:', 'event_espresso'); ?></h5> |
|
66 | + <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e('Facebook', 'event_espresso'); ?></a> |
|
67 | + <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e('Twitter', 'event_espresso'); ?></a> |
|
68 | + <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e('Google+', 'event_espresso'); ?></a> |
|
69 | 69 | </td> |
70 | 70 | </tr> |
71 | 71 | </tbody> |
@@ -75,9 +75,9 @@ discard block |
||
75 | 75 | <tbody> |
76 | 76 | <tr> |
77 | 77 | <td> |
78 | - <h5><?php _e( 'Contact Info:', 'event_espresso' ); ?></h5> |
|
79 | - <?php _e( 'Phone:', 'event_espresso' ); ?> <strong>[CO_PHONE]</strong> |
|
80 | - <?php _e( 'Email:', 'event_espresso' ); ?> |
|
78 | + <h5><?php _e('Contact Info:', 'event_espresso'); ?></h5> |
|
79 | + <?php _e('Phone:', 'event_espresso'); ?> <strong>[CO_PHONE]</strong> |
|
80 | + <?php _e('Email:', 'event_espresso'); ?> |
|
81 | 81 | <strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong> |
82 | 82 | </td> |
83 | 83 | </tr> |
@@ -31,9 +31,9 @@ discard block |
||
31 | 31 | <tbody> |
32 | 32 | <tr> |
33 | 33 | <td> |
34 | - <h2><?php printf( __( 'Hello, %s:', 'event_espresso' ), '[EVENT_AUTHOR_FNAME]' ); ?></h2> |
|
34 | + <h2><?php printf(__('Hello, %s:', 'event_espresso'), '[EVENT_AUTHOR_FNAME]'); ?></h2> |
|
35 | 35 | |
36 | - <p class="lead"><?php _e( 'Registrations were cancelled for the following events.', 'event_espresso' ); ?></p> |
|
36 | + <p class="lead"><?php _e('Registrations were cancelled for the following events.', 'event_espresso'); ?></p> |
|
37 | 37 | </td> |
38 | 38 | </tr> |
39 | 39 | </tbody> |
@@ -59,10 +59,10 @@ discard block |
||
59 | 59 | <tbody> |
60 | 60 | <tr> |
61 | 61 | <td> |
62 | - <h5><?php _e( 'Connect with Us:', 'event_espresso' ); ?></h5> |
|
63 | - <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e( 'Facebook', 'event_espresso' ); ?></a> |
|
64 | - <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e( 'Twitter', 'event_espresso' ); ?></a> |
|
65 | - <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e( 'Google+', 'event_espresso' ); ?></a> |
|
62 | + <h5><?php _e('Connect with Us:', 'event_espresso'); ?></h5> |
|
63 | + <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e('Facebook', 'event_espresso'); ?></a> |
|
64 | + <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e('Twitter', 'event_espresso'); ?></a> |
|
65 | + <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e('Google+', 'event_espresso'); ?></a> |
|
66 | 66 | </td> |
67 | 67 | </tr> |
68 | 68 | </tbody> |
@@ -72,9 +72,9 @@ discard block |
||
72 | 72 | <tbody> |
73 | 73 | <tr> |
74 | 74 | <td> |
75 | - <h5><?php _e( 'Contact Info:', 'event_espresso' ); ?></h5> |
|
76 | - <?php _e( 'Phone:', 'event_espresso' ); ?> <strong>[CO_PHONE]</strong> |
|
77 | - <?php _e( 'Email:', 'event_espresso' ); ?> |
|
75 | + <h5><?php _e('Contact Info:', 'event_espresso'); ?></h5> |
|
76 | + <?php _e('Phone:', 'event_espresso'); ?> <strong>[CO_PHONE]</strong> |
|
77 | + <?php _e('Email:', 'event_espresso'); ?> |
|
78 | 78 | <strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong> |
79 | 79 | </td> |
80 | 80 | </tr> |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | <tbody> |
32 | 32 | <tr> |
33 | 33 | <td> |
34 | - <h2><?php printf( __( 'Hello, %s:', 'event_espresso' ), '[RECIPIENT_FNAME]' ); ?></h2> |
|
35 | - <p class="lead"><?php _e( 'Your registration was declined for the following tickets:', 'event_espresso' ); ?></p> |
|
34 | + <h2><?php printf(__('Hello, %s:', 'event_espresso'), '[RECIPIENT_FNAME]'); ?></h2> |
|
35 | + <p class="lead"><?php _e('Your registration was declined for the following tickets:', 'event_espresso'); ?></p> |
|
36 | 36 | </td> |
37 | 37 | </tr> |
38 | 38 | </tbody> |
@@ -61,10 +61,10 @@ discard block |
||
61 | 61 | <tbody> |
62 | 62 | <tr> |
63 | 63 | <td> |
64 | - <h5><?php _e( 'Connect with Us:', 'event_espresso' ); ?></h5> |
|
65 | - <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e( 'Facebook', 'event_espresso' ); ?></a> |
|
66 | - <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e( 'Twitter', 'event_espresso' ); ?></a> |
|
67 | - <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e( 'Google+', 'event_espresso' ); ?></a> |
|
64 | + <h5><?php _e('Connect with Us:', 'event_espresso'); ?></h5> |
|
65 | + <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e('Facebook', 'event_espresso'); ?></a> |
|
66 | + <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e('Twitter', 'event_espresso'); ?></a> |
|
67 | + <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e('Google+', 'event_espresso'); ?></a> |
|
68 | 68 | </td> |
69 | 69 | </tr> |
70 | 70 | </tbody> |
@@ -74,9 +74,9 @@ discard block |
||
74 | 74 | <tbody> |
75 | 75 | <tr> |
76 | 76 | <td> |
77 | - <h5><?php _e( 'Contact Info:', 'event_espresso' ); ?></h5> |
|
78 | - <?php _e( 'Phone:', 'event_espresso' ); ?> <strong>[CO_PHONE]</strong> |
|
79 | - <?php _e( 'Email:', 'event_espresso' ); ?> |
|
77 | + <h5><?php _e('Contact Info:', 'event_espresso'); ?></h5> |
|
78 | + <?php _e('Phone:', 'event_espresso'); ?> <strong>[CO_PHONE]</strong> |
|
79 | + <?php _e('Email:', 'event_espresso'); ?> |
|
80 | 80 | <strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong> |
81 | 81 | </td> |
82 | 82 | </tr> |
@@ -31,8 +31,8 @@ discard block |
||
31 | 31 | <tbody> |
32 | 32 | <tr> |
33 | 33 | <td> |
34 | - <h2><?php printf( __( 'Hello, %s:', 'event_espresso' ), '[EVENT_AUTHOR_FNAME]' ); ?></h2> |
|
35 | - <p class="lead"><?php _e( 'Registrations were declined for the following events:', 'event_espresso' ); ?></p> |
|
34 | + <h2><?php printf(__('Hello, %s:', 'event_espresso'), '[EVENT_AUTHOR_FNAME]'); ?></h2> |
|
35 | + <p class="lead"><?php _e('Registrations were declined for the following events:', 'event_espresso'); ?></p> |
|
36 | 36 | </td> |
37 | 37 | </tr> |
38 | 38 | </tbody> |
@@ -58,10 +58,10 @@ discard block |
||
58 | 58 | <tbody> |
59 | 59 | <tr> |
60 | 60 | <td> |
61 | - <h5><?php _e( 'Connect with Us:', 'event_espresso' ); ?></h5> |
|
62 | - <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e( 'Facebook', 'event_espresso' ); ?></a> |
|
63 | - <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e( 'Twitter', 'event_espresso' ); ?></a> |
|
64 | - <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e( 'Google+', 'event_espresso' ); ?></a> |
|
61 | + <h5><?php _e('Connect with Us:', 'event_espresso'); ?></h5> |
|
62 | + <a class="soc-btn fb" href="[CO_FACEBOOK_URL]"><?php _e('Facebook', 'event_espresso'); ?></a> |
|
63 | + <a class="soc-btn tw" href="[CO_TWITTER_URL]"><?php _e('Twitter', 'event_espresso'); ?></a> |
|
64 | + <a class="soc-btn gp" href="[CO_GOOGLE_URL]"><?php _e('Google+', 'event_espresso'); ?></a> |
|
65 | 65 | </td> |
66 | 66 | </tr> |
67 | 67 | </tbody> |
@@ -71,9 +71,9 @@ discard block |
||
71 | 71 | <tbody> |
72 | 72 | <tr> |
73 | 73 | <td> |
74 | - <h5><?php _e( 'Contact Info:', 'event_espresso' ); ?></h5> |
|
75 | - <?php _e( 'Phone:', 'event_espresso' ); ?> <strong>[CO_PHONE]</strong> |
|
76 | - <?php _e( 'Email:', 'event_espresso' ); ?> |
|
74 | + <h5><?php _e('Contact Info:', 'event_espresso'); ?></h5> |
|
75 | + <?php _e('Phone:', 'event_espresso'); ?> <strong>[CO_PHONE]</strong> |
|
76 | + <?php _e('Email:', 'event_espresso'); ?> |
|
77 | 77 | <strong><a href="mailto:[CO_EMAIL]" target="_blank">[CO_EMAIL]</a></strong> |
78 | 78 | </td> |
79 | 79 | </tr> |