@@ -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 | /** |
@@ -29,8 +29,8 @@ discard block |
||
29 | 29 | * 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. |
30 | 30 | * @param array $data |
31 | 31 | */ |
32 | - public function __construct( $data = array() ) { |
|
33 | - $this->_data = isset( $data['event_ids'] ) ? $data['event_ids'] : array(); |
|
32 | + public function __construct($data = array()) { |
|
33 | + $this->_data = isset($data['event_ids']) ? $data['event_ids'] : array(); |
|
34 | 34 | $this->_setup_attendees_events(); |
35 | 35 | parent::__construct($data); |
36 | 36 | } |
@@ -46,7 +46,7 @@ discard block |
||
46 | 46 | * |
47 | 47 | * @return array The prepped data for db |
48 | 48 | */ |
49 | - static public function convert_data_for_persistent_storage( $data ) { |
|
49 | + static public function convert_data_for_persistent_storage($data) { |
|
50 | 50 | return $data; |
51 | 51 | } |
52 | 52 | |
@@ -61,7 +61,7 @@ discard block |
||
61 | 61 | * |
62 | 62 | * @return array |
63 | 63 | */ |
64 | - static public function convert_data_from_persistent_storage( $data ) { |
|
64 | + static public function convert_data_from_persistent_storage($data) { |
|
65 | 65 | return $data; |
66 | 66 | } |
67 | 67 | |
@@ -78,12 +78,12 @@ discard block |
||
78 | 78 | $attendees = $this->_get_some_attendees(); |
79 | 79 | |
80 | 80 | //if empty $data we'll do a query to get some events from the server. otherwise we'll retrieve the event data for the given ids. |
81 | - $events = $this->_get_some_events( $this->_data ); |
|
81 | + $events = $this->_get_some_events($this->_data); |
|
82 | 82 | |
83 | 83 | $answers_n_questions = $this->_get_some_q_and_as(); |
84 | 84 | |
85 | - if ( count( $events ) < 1 ) { |
|
86 | - throw new EE_Error( __('We can\'t generate a preview for you because there are no active events in your database', 'event_espresso' ) ); |
|
85 | + if (count($events) < 1) { |
|
86 | + throw new EE_Error(__('We can\'t generate a preview for you because there are no active events in your database', 'event_espresso')); |
|
87 | 87 | } |
88 | 88 | |
89 | 89 | |
@@ -93,14 +93,14 @@ discard block |
||
93 | 93 | |
94 | 94 | //we'll actually use the generated line_item identifiers for our loop |
95 | 95 | $dtts = $tkts = array(); |
96 | - foreach( $events as $id => $event ) { |
|
97 | - if ( ! $event instanceof EE_Event ) { |
|
96 | + foreach ($events as $id => $event) { |
|
97 | + if ( ! $event instanceof EE_Event) { |
|
98 | 98 | continue; |
99 | 99 | } |
100 | 100 | $this->_events[$id]['ID'] = $id; |
101 | 101 | $this->_events[$id]['name'] = $event->get('EVT_name'); |
102 | 102 | $datetime = $event->get_first_related('Datetime'); |
103 | - $tickets = $datetime instanceof EE_Datetime ? $datetime->get_many_related('Ticket', array('default_where_conditions' => 'none') ) : array(); |
|
103 | + $tickets = $datetime instanceof EE_Datetime ? $datetime->get_many_related('Ticket', array('default_where_conditions' => 'none')) : array(); |
|
104 | 104 | $this->_events[$id]['event'] = $event; |
105 | 105 | $this->_events[$id]['reg_objs'] = array(); |
106 | 106 | $this->_events[$id]['tkt_objs'] = $tickets; |
@@ -108,51 +108,51 @@ discard block |
||
108 | 108 | |
109 | 109 | $dttcache = array(); |
110 | 110 | $tkts = array(); |
111 | - foreach ( $tickets as $ticket ) { |
|
112 | - if ( ! $ticket instanceof EE_Ticket ) { |
|
111 | + foreach ($tickets as $ticket) { |
|
112 | + if ( ! $ticket instanceof EE_Ticket) { |
|
113 | 113 | continue; |
114 | 114 | } |
115 | 115 | $reldatetime = $ticket->datetimes(); |
116 | - $tkts[ $ticket->ID() ] = array(); |
|
117 | - $tkts[ $ticket->ID() ][ 'ticket' ] = $ticket; |
|
118 | - $tkts[ $ticket->ID() ][ 'dtt_objs' ] = $reldatetime; |
|
119 | - $tkts[ $ticket->ID() ][ 'att_objs' ] = $attendees; |
|
120 | - $tkts[ $ticket->ID() ][ 'count' ] = count( $attendees ); |
|
121 | - $tkts[ $ticket->ID() ][ 'EE_Event' ] = $event; |
|
122 | - foreach ( $reldatetime as $datetime ) { |
|
123 | - if ( $datetime instanceof EE_Datetime && ! isset( $dtts[ $datetime->ID() ] ) ) { |
|
124 | - $this->_events[ $id ][ 'dtt_objs' ][ $datetime->ID() ] = $datetime; |
|
125 | - $dtts[ $datetime->ID() ][ 'datetime' ] = $datetime; |
|
126 | - $dtts[ $datetime->ID() ][ 'tkt_objs' ][] = $ticket; |
|
127 | - $dtts[ $datetime->ID() ][ 'evt_objs' ][] = $event; |
|
128 | - $dttcache[ $datetime->ID() ] = $datetime; |
|
116 | + $tkts[$ticket->ID()] = array(); |
|
117 | + $tkts[$ticket->ID()]['ticket'] = $ticket; |
|
118 | + $tkts[$ticket->ID()]['dtt_objs'] = $reldatetime; |
|
119 | + $tkts[$ticket->ID()]['att_objs'] = $attendees; |
|
120 | + $tkts[$ticket->ID()]['count'] = count($attendees); |
|
121 | + $tkts[$ticket->ID()]['EE_Event'] = $event; |
|
122 | + foreach ($reldatetime as $datetime) { |
|
123 | + if ($datetime instanceof EE_Datetime && ! isset($dtts[$datetime->ID()])) { |
|
124 | + $this->_events[$id]['dtt_objs'][$datetime->ID()] = $datetime; |
|
125 | + $dtts[$datetime->ID()]['datetime'] = $datetime; |
|
126 | + $dtts[$datetime->ID()]['tkt_objs'][] = $ticket; |
|
127 | + $dtts[$datetime->ID()]['evt_objs'][] = $event; |
|
128 | + $dttcache[$datetime->ID()] = $datetime; |
|
129 | 129 | } |
130 | 130 | } |
131 | 131 | } |
132 | 132 | |
133 | - $this->_events[$id]['total_attendees'] = count( $attendees ); |
|
133 | + $this->_events[$id]['total_attendees'] = count($attendees); |
|
134 | 134 | $this->_events[$id]['att_objs'] = $attendees; |
135 | 135 | |
136 | 136 | //let's also setup the dummy attendees property! |
137 | - foreach ( $attendees as $att_key => $attendee ) { |
|
138 | - if ( ! $attendee instanceof EE_Attendee ) { |
|
137 | + foreach ($attendees as $att_key => $attendee) { |
|
138 | + if ( ! $attendee instanceof EE_Attendee) { |
|
139 | 139 | continue; |
140 | 140 | } |
141 | - $this->_attendees[$att_key]['line_ref'][] = $id; //so later it can be determined what events this attendee registered for! |
|
141 | + $this->_attendees[$att_key]['line_ref'][] = $id; //so later it can be determined what events this attendee registered for! |
|
142 | 142 | $this->_attendees[$att_key]['evt_objs'][] = $event; |
143 | 143 | $this->_attendees[$att_key]['att_obj'] = $attendee; |
144 | 144 | //$this->_attendees[$att_key]['registration_id'] = 0; |
145 | 145 | $this->_attendees[$att_key]['attendee_email'] = $attendee->email(); |
146 | 146 | $this->_attendees[$att_key]['tkt_objs'] = $tickets; |
147 | - if ( $att_key == 999999991 ) { |
|
147 | + if ($att_key == 999999991) { |
|
148 | 148 | $this->_attendees[$att_key]['ans_objs'][999] = $answers_n_questions['answers'][999]; |
149 | 149 | $this->_attendees[$att_key]['ans_objs'][1002] = $answers_n_questions['answers'][1002]; |
150 | 150 | $this->_attendees[$att_key]['ans_objs'][1005] = $answers_n_questions['answers'][1005]; |
151 | - } elseif ( $att_key == 999999992 ) { |
|
151 | + } elseif ($att_key == 999999992) { |
|
152 | 152 | $this->_attendees[$att_key]['ans_objs'][1000] = $answers_n_questions['answers'][1000]; |
153 | 153 | $this->_attendees[$att_key]['ans_objs'][1003] = $answers_n_questions['answers'][1003]; |
154 | 154 | $this->_attendees[$att_key]['ans_objs'][1006] = $answers_n_questions['answers'][1006]; |
155 | - } elseif ( $att_key == 999999993 ) { |
|
155 | + } elseif ($att_key == 999999993) { |
|
156 | 156 | $this->_attendees[$att_key]['ans_objs'][1001] = $answers_n_questions['answers'][1001]; |
157 | 157 | $this->_attendees[$att_key]['ans_objs'][1004] = $answers_n_questions['answers'][1004]; |
158 | 158 | $this->_attendees[$att_key]['ans_objs'][1007] = $answers_n_questions['answers'][1007]; |
@@ -225,11 +225,11 @@ discard block |
||
225 | 225 | |
226 | 226 | //let's generate the attendee objects |
227 | 227 | $attendees = array(); |
228 | - $var_array = array('fname','lname','email','address','address2','city','staid','cntry','zip','phone','deleted','attid'); |
|
228 | + $var_array = array('fname', 'lname', 'email', 'address', 'address2', 'city', 'staid', 'cntry', 'zip', 'phone', 'deleted', 'attid'); |
|
229 | 229 | |
230 | 230 | //EE_Registry::instance()->load_class( 'Attendee', array(), FALSE, false, TRUE ); |
231 | - foreach ( $dummy_attendees as $dummy ) { |
|
232 | - $att = array_combine( $var_array, $dummy ); |
|
231 | + foreach ($dummy_attendees as $dummy) { |
|
232 | + $att = array_combine($var_array, $dummy); |
|
233 | 233 | extract($att); |
234 | 234 | /** @var $fname string */ |
235 | 235 | /** @var $lname string */ |
@@ -346,15 +346,15 @@ discard block |
||
346 | 346 | |
347 | 347 | $qsts = array(); |
348 | 348 | //first the questions |
349 | - foreach ( $quests_array as $qst ) { |
|
350 | - $qstobj = array_combine( $qst_columns, $qst ); |
|
349 | + foreach ($quests_array as $qst) { |
|
350 | + $qstobj = array_combine($qst_columns, $qst); |
|
351 | 351 | $qsts[$qstobj['QST_ID']] = EE_Question::new_instance($qstobj); |
352 | 352 | } |
353 | 353 | |
354 | 354 | //now the answers (and we'll setup our arrays) |
355 | 355 | $q_n_as = array(); |
356 | - foreach ( $ans_array as $ans ) { |
|
357 | - $ansobj = array_combine( $ans_columns, $ans ); |
|
356 | + foreach ($ans_array as $ans) { |
|
357 | + $ansobj = array_combine($ans_columns, $ans); |
|
358 | 358 | $ansobj = EE_Answer::new_instance($ansobj); |
359 | 359 | $q_n_as['answers'][$ansobj->ID()] = $ansobj; |
360 | 360 | $q_n_as['questions'][$ansobj->ID()] = $qsts[$ansobj->get('QST_ID')]; |
@@ -376,25 +376,25 @@ discard block |
||
376 | 376 | * @param array $event_ids if set, this will be an array of event ids to obtain events for. |
377 | 377 | * @return array An array of event objects from the db. |
378 | 378 | */ |
379 | - private function _get_some_events( $event_ids = array() ) { |
|
379 | + private function _get_some_events($event_ids = array()) { |
|
380 | 380 | |
381 | 381 | //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); |
382 | - $event_ids = isset( $_REQUEST['evt_id'] ) && !empty( $_REQUEST['evt_id'] ) |
|
383 | - ? array( $_REQUEST['evt_id'] ) |
|
382 | + $event_ids = isset($_REQUEST['evt_id']) && ! empty($_REQUEST['evt_id']) |
|
383 | + ? array($_REQUEST['evt_id']) |
|
384 | 384 | : $event_ids; |
385 | 385 | |
386 | - $limit = !empty( $event_ids ) |
|
386 | + $limit = ! empty($event_ids) |
|
387 | 387 | ? NULL |
388 | - : apply_filters( 'FHEE__EE_Messages_Preview_incoming_data___get_some_events__limit', '0,1' ); |
|
388 | + : apply_filters('FHEE__EE_Messages_Preview_incoming_data___get_some_events__limit', '0,1'); |
|
389 | 389 | |
390 | - $where = ! empty( $event_ids ) |
|
390 | + $where = ! empty($event_ids) |
|
391 | 391 | ? array( |
392 | - 'EVT_ID' => array( 'IN', $event_ids ), |
|
393 | - 'Datetime.Ticket.TKT_ID' => array( '>', 1 ) |
|
392 | + 'EVT_ID' => array('IN', $event_ids), |
|
393 | + 'Datetime.Ticket.TKT_ID' => array('>', 1) |
|
394 | 394 | ) |
395 | - : array( 'Datetime.Ticket.TKT_ID' => array( '>', 1 ) ); |
|
395 | + : array('Datetime.Ticket.TKT_ID' => array('>', 1)); |
|
396 | 396 | |
397 | - $events = EE_Registry::instance()->load_model('Event')->get_all(array($where, 'limit' => $limit ) ); |
|
397 | + $events = EE_Registry::instance()->load_model('Event')->get_all(array($where, 'limit' => $limit)); |
|
398 | 398 | |
399 | 399 | return $events; |
400 | 400 | } |
@@ -407,17 +407,17 @@ discard block |
||
407 | 407 | protected function _setup_data() { |
408 | 408 | |
409 | 409 | //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! |
410 | - if ( EE_Registry::instance()->SSN instanceof EE_Session ) { |
|
411 | - EE_Registry::instance()->SSN->clear_session( __CLASS__, __FUNCTION__ ); |
|
410 | + if (EE_Registry::instance()->SSN instanceof EE_Session) { |
|
411 | + EE_Registry::instance()->SSN->clear_session(__CLASS__, __FUNCTION__); |
|
412 | 412 | $session = EE_Registry::instance()->SSN; |
413 | 413 | } else { |
414 | - $session = EE_Registry::instance()->load_core( 'Session' ); |
|
414 | + $session = EE_Registry::instance()->load_core('Session'); |
|
415 | 415 | } |
416 | - $cart = EE_Cart::instance( null, $session ); |
|
416 | + $cart = EE_Cart::instance(null, $session); |
|
417 | 417 | |
418 | 418 | |
419 | 419 | //add tickets to cart |
420 | - foreach ( $this->tickets as $ticket ) { |
|
420 | + foreach ($this->tickets as $ticket) { |
|
421 | 421 | $cart->add_ticket_to_cart($ticket['ticket']); |
422 | 422 | } |
423 | 423 | |
@@ -441,14 +441,14 @@ discard block |
||
441 | 441 | //note we're setting up a reg object for each attendee in each event but ALSO adding to the reg_object array. |
442 | 442 | $this->reg_objs = array(); |
443 | 443 | $regid = 9999990; |
444 | - foreach ( $this->_attendees as $key => $attendee ) { |
|
444 | + foreach ($this->_attendees as $key => $attendee) { |
|
445 | 445 | //note we need to setup reg_objects for each event this attendee belongs to |
446 | 446 | $regatt = $attendee['att_obj'] instanceof EE_Attendee ? $attendee['att_obj']->ID() : null; |
447 | 447 | $regtxn = $this->txn->ID(); |
448 | 448 | $regcnt = 1; |
449 | - foreach ( $attendee['line_ref'] as $evtid ) { |
|
450 | - foreach ( $this->_events[$evtid]['tkt_objs'] as $ticket ) { |
|
451 | - if ( ! $ticket instanceof EE_Ticket ) { |
|
449 | + foreach ($attendee['line_ref'] as $evtid) { |
|
450 | + foreach ($this->_events[$evtid]['tkt_objs'] as $ticket) { |
|
451 | + if ( ! $ticket instanceof EE_Ticket) { |
|
452 | 452 | continue; |
453 | 453 | } |
454 | 454 | $reg_array = array( |
@@ -460,14 +460,14 @@ discard block |
||
460 | 460 | 'REG_date' => time(), |
461 | 461 | 'REG_final_price' => $ticket->get('TKT_price'), |
462 | 462 | 'REG_session' => 'dummy_session_id', |
463 | - 'REG_code' => $regid . '-dummy-generated-code', |
|
464 | - 'REG_url_link' => $regcnt . '-daafpapasdlfakasdfpqasdfasdf', |
|
463 | + 'REG_code' => $regid.'-dummy-generated-code', |
|
464 | + 'REG_url_link' => $regcnt.'-daafpapasdlfakasdfpqasdfasdf', |
|
465 | 465 | 'REG_count' => $regcnt, |
466 | 466 | 'REG_group_size' => $this->_events[$evtid]['total_attendees'], |
467 | 467 | 'REG_att_is_going' => TRUE, |
468 | 468 | 'REG_ID' => $regid |
469 | 469 | ); |
470 | - $REG_OBJ = EE_Registration::new_instance( $reg_array ); |
|
470 | + $REG_OBJ = EE_Registration::new_instance($reg_array); |
|
471 | 471 | $this->_attendees[$key]['reg_objs'][$regid] = $REG_OBJ; |
472 | 472 | $this->_events[$evtid]['reg_objs'][] = $REG_OBJ; |
473 | 473 | $this->reg_objs[] = $REG_OBJ; |
@@ -483,40 +483,40 @@ discard block |
||
483 | 483 | |
484 | 484 | //setup line items! |
485 | 485 | EE_Registry::instance()->load_helper('Line_Item'); |
486 | - $line_item_total = EEH_Line_Item::create_total_line_item( $this->txn ); |
|
486 | + $line_item_total = EEH_Line_Item::create_total_line_item($this->txn); |
|
487 | 487 | |
488 | 488 | //add tickets |
489 | - foreach ( $this->tickets as $tktid => $item ) { |
|
489 | + foreach ($this->tickets as $tktid => $item) { |
|
490 | 490 | $qty = $item['count']; |
491 | 491 | $ticket = $item['ticket']; |
492 | - EEH_Line_Item::add_ticket_purchase( $line_item_total, $ticket, $qty ); |
|
492 | + EEH_Line_Item::add_ticket_purchase($line_item_total, $ticket, $qty); |
|
493 | 493 | } |
494 | 494 | |
495 | - $shipping_line_item = EE_Line_Item::new_instance( array( |
|
496 | - 'LIN_name' => __( 'Shipping Surcharge', 'event_espresso' ), |
|
497 | - 'LIN_desc' => __( 'Sent via Millenium Falcon', 'event_espresso' ), |
|
495 | + $shipping_line_item = EE_Line_Item::new_instance(array( |
|
496 | + 'LIN_name' => __('Shipping Surcharge', 'event_espresso'), |
|
497 | + 'LIN_desc' => __('Sent via Millenium Falcon', 'event_espresso'), |
|
498 | 498 | 'LIN_unit_price' => 20, |
499 | 499 | 'LIN_quantity' => 1, |
500 | 500 | 'LIN_is_taxable' => TRUE, |
501 | 501 | 'LIN_total' => 20, |
502 | 502 | 'LIN_type' => EEM_Line_Item::type_line_item |
503 | 503 | )); |
504 | - EEH_Line_Item::add_item($line_item_total, $shipping_line_item ); |
|
505 | - $this->additional_line_items = array( $shipping_line_item ); |
|
504 | + EEH_Line_Item::add_item($line_item_total, $shipping_line_item); |
|
505 | + $this->additional_line_items = array($shipping_line_item); |
|
506 | 506 | |
507 | 507 | //now let's add taxes |
508 | - EEH_Line_Item::apply_taxes( $line_item_total ); |
|
508 | + EEH_Line_Item::apply_taxes($line_item_total); |
|
509 | 509 | |
510 | 510 | //now we should be able to get the items we need from this object |
511 | - $event_line_items = EEH_Line_Item::get_pre_tax_subtotal( $line_item_total )->children(); |
|
511 | + $event_line_items = EEH_Line_Item::get_pre_tax_subtotal($line_item_total)->children(); |
|
512 | 512 | $line_items = array(); |
513 | - foreach ( $event_line_items as $line_id => $line_item ) { |
|
514 | - if ( ! $line_item instanceof EE_Line_Item || $line_item->OBJ_type() !== 'Event' ) { |
|
513 | + foreach ($event_line_items as $line_id => $line_item) { |
|
514 | + if ( ! $line_item instanceof EE_Line_Item || $line_item->OBJ_type() !== 'Event') { |
|
515 | 515 | continue; |
516 | 516 | } |
517 | - $ticket_line_items = EEH_Line_Item::get_ticket_line_items( $line_item ); |
|
518 | - foreach ( $ticket_line_items as $ticket_line_id => $ticket_line_item ) { |
|
519 | - if ( ! $ticket_line_item instanceof EE_Line_Item ) { |
|
517 | + $ticket_line_items = EEH_Line_Item::get_ticket_line_items($line_item); |
|
518 | + foreach ($ticket_line_items as $ticket_line_id => $ticket_line_item) { |
|
519 | + if ( ! $ticket_line_item instanceof EE_Line_Item) { |
|
520 | 520 | continue; |
521 | 521 | } |
522 | 522 | $this->tickets[$ticket_line_item->OBJ_ID()]['line_item'] = $ticket_line_item; |
@@ -532,12 +532,12 @@ discard block |
||
532 | 532 | //add proper total to transaction object. |
533 | 533 | $grand_total = $line_item_total->recalculate_total_including_taxes(); |
534 | 534 | $this->grand_total_line_item = $line_item_total; |
535 | - $this->txn->set_total( $grand_total ); |
|
535 | + $this->txn->set_total($grand_total); |
|
536 | 536 | |
537 | 537 | |
538 | 538 | //add additional details for each registration |
539 | - foreach ( $this->reg_objs as $reg ) { |
|
540 | - if ( ! $reg instanceof EE_Registration ) { |
|
539 | + foreach ($this->reg_objs as $reg) { |
|
540 | + if ( ! $reg instanceof EE_Registration) { |
|
541 | 541 | continue; |
542 | 542 | } |
543 | 543 | $this->_registrations[$reg->ID()]['tkt_obj'] = $this->tickets[$reg->get('TKT_ID')]['ticket']; |
@@ -562,17 +562,17 @@ discard block |
||
562 | 562 | ? $this->_attendees[999999991]['att_obj']->fname() |
563 | 563 | : '', |
564 | 564 | |
565 | - 'lname' => $this->_attendees[ 999999991 ][ 'att_obj' ] instanceof EE_Attendee |
|
565 | + 'lname' => $this->_attendees[999999991]['att_obj'] instanceof EE_Attendee |
|
566 | 566 | ? $this->_attendees[999999991]['att_obj']->lname() |
567 | 567 | : '', |
568 | 568 | |
569 | - 'email' => $this->_attendees[ 999999991 ][ 'att_obj' ] instanceof EE_Attendee |
|
569 | + 'email' => $this->_attendees[999999991]['att_obj'] instanceof EE_Attendee |
|
570 | 570 | ? $this->_attendees[999999991]['att_obj']->email() |
571 | 571 | : '', |
572 | 572 | |
573 | 573 | 'att_obj' => $this->_attendees[999999991]['att_obj'], |
574 | 574 | |
575 | - 'reg_obj' => array_shift( $attendees_to_shift[999999991]['reg_objs'] ) |
|
575 | + 'reg_obj' => array_shift($attendees_to_shift[999999991]['reg_objs']) |
|
576 | 576 | ); |
577 | 577 | |
578 | 578 | //reg_info property |
@@ -580,7 +580,7 @@ discard block |
||
580 | 580 | $this->reg_info = array(); |
581 | 581 | |
582 | 582 | //let's set a reg_obj for messengers expecting one. |
583 | - $this->reg_obj = array_pop( $this->_attendees[999999991]['reg_objs'] ); |
|
583 | + $this->reg_obj = array_pop($this->_attendees[999999991]['reg_objs']); |
|
584 | 584 | |
585 | 585 | |
586 | 586 | //the below are just dummy items. |
@@ -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 | /** |
@@ -29,20 +29,20 @@ discard block |
||
29 | 29 | * @param EE_Registration|array $data |
30 | 30 | * @throws \EE_Error |
31 | 31 | */ |
32 | - public function __construct( $data ) { |
|
32 | + public function __construct($data) { |
|
33 | 33 | $filtered_reg_status = null; |
34 | 34 | |
35 | - if ( ! is_array( $data ) && $data instanceof EE_Registration ) { |
|
35 | + if ( ! is_array($data) && $data instanceof EE_Registration) { |
|
36 | 36 | $this->reg_obj = $data; |
37 | 37 | } else { |
38 | - $this->reg_obj = is_array( $data ) && isset( $data[0] ) && $data[0] instanceof EE_Registration ? $data[0] : null; |
|
39 | - $filtered_reg_status = is_array( $data ) && ! empty( $data[1] ) ? $data[1] : null; |
|
38 | + $this->reg_obj = is_array($data) && isset($data[0]) && $data[0] instanceof EE_Registration ? $data[0] : null; |
|
39 | + $filtered_reg_status = is_array($data) && ! empty($data[1]) ? $data[1] : null; |
|
40 | 40 | } |
41 | 41 | |
42 | - if ( ! $this->reg_obj instanceof EE_Registration ) { |
|
42 | + if ( ! $this->reg_obj instanceof EE_Registration) { |
|
43 | 43 | throw new EE_Error( |
44 | 44 | sprintf( |
45 | - __( '%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'), |
|
45 | + __('%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'), |
|
46 | 46 | 'EE_Messages_REG_incoming_data', |
47 | 47 | 'EE_Registration' |
48 | 48 | ) |
@@ -64,18 +64,18 @@ discard block |
||
64 | 64 | * |
65 | 65 | * @return array The prepped data for db |
66 | 66 | */ |
67 | - static public function convert_data_for_persistent_storage( $data ) { |
|
67 | + static public function convert_data_for_persistent_storage($data) { |
|
68 | 68 | $prepped_data = array(); |
69 | - if ( ! is_array( $data ) && $data instanceof EE_Registration ) { |
|
69 | + if ( ! is_array($data) && $data instanceof EE_Registration) { |
|
70 | 70 | $prepped_data['Registration'] = $data->ID(); |
71 | 71 | return $prepped_data; |
72 | - } elseif ( ! is_array( $data ) ) { |
|
72 | + } elseif ( ! is_array($data)) { |
|
73 | 73 | return array(); |
74 | 74 | } else { |
75 | - if ( $data[0] instanceof EE_Registration ) { |
|
75 | + if ($data[0] instanceof EE_Registration) { |
|
76 | 76 | $prepped_data['Registration'] = $data[0]; |
77 | 77 | } |
78 | - if ( ! empty( $data[1] ) ) { |
|
78 | + if ( ! empty($data[1])) { |
|
79 | 79 | $prepped_data['filter'] = $data[1]; |
80 | 80 | } |
81 | 81 | } |
@@ -91,17 +91,17 @@ discard block |
||
91 | 91 | * |
92 | 92 | * @return mixed |
93 | 93 | */ |
94 | - static public function convert_data_from_persistent_storage( $data ) { |
|
94 | + static public function convert_data_from_persistent_storage($data) { |
|
95 | 95 | $registration = null; |
96 | 96 | //$data['Registration'] could be either an ID (back compat) or a registration object (prepped using old system). |
97 | - if ( isset( $data[ 'Registration' ] ) ) { |
|
98 | - $registration = $data[ 'Registration' ] instanceof EE_Registration |
|
99 | - ? $data[ 'Registration' ] |
|
100 | - : EEM_Registration::instance()->get_one_by_ID( $data[ 'Registration' ] ); |
|
97 | + if (isset($data['Registration'])) { |
|
98 | + $registration = $data['Registration'] instanceof EE_Registration |
|
99 | + ? $data['Registration'] |
|
100 | + : EEM_Registration::instance()->get_one_by_ID($data['Registration']); |
|
101 | 101 | } |
102 | 102 | $prepped_data = array( |
103 | 103 | 0 => $registration, |
104 | - 1 => isset( $data['filter'] ) ? $data['filter'] : null |
|
104 | + 1 => isset($data['filter']) ? $data['filter'] : null |
|
105 | 105 | ); |
106 | 106 | return $prepped_data; |
107 | 107 | } |
@@ -119,18 +119,18 @@ discard block |
||
119 | 119 | $this->txn = $this->reg_obj->transaction(); |
120 | 120 | //possible session stuff? |
121 | 121 | $session = $this->txn->session_data(); |
122 | - $session_data = $session instanceof EE_Session ? $session->get_session_data() : array(); |
|
122 | + $session_data = $session instanceof EE_Session ? $session->get_session_data() : array(); |
|
123 | 123 | |
124 | 124 | //other data from the session (if possible) |
125 | - $this->user_id = isset( $session_data['user_id'] ) ? $session_data['user_id'] : ''; |
|
126 | - $this->ip_address = isset( $session_data['ip_address'] ) ? $session_data['ip_address'] : ''; |
|
127 | - $this->user_agent = isset( $session_data['user_agent'] ) ? $session_data['user_agent'] : ''; |
|
125 | + $this->user_id = isset($session_data['user_id']) ? $session_data['user_id'] : ''; |
|
126 | + $this->ip_address = isset($session_data['ip_address']) ? $session_data['ip_address'] : ''; |
|
127 | + $this->user_agent = isset($session_data['user_agent']) ? $session_data['user_agent'] : ''; |
|
128 | 128 | $this->init_access = $this->last_access = ''; |
129 | 129 | |
130 | 130 | $this->payment = $this->txn->get_first_related('Payment'); |
131 | 131 | // if there is no payments associated with the transaction |
132 | 132 | // then we just create a default payment object for potential parsing. |
133 | - $this->payment = empty( $this->payment ) |
|
133 | + $this->payment = empty($this->payment) |
|
134 | 134 | ? EE_Payment::new_instance( |
135 | 135 | array( |
136 | 136 | 'STS_ID' => EEM_Payment::status_id_pending, |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'NO direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('NO direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -109,14 +109,14 @@ discard block |
||
109 | 109 | * about where to obtain the templates. |
110 | 110 | * |
111 | 111 | */ |
112 | - final private function _set_templates( $template_pack ) { |
|
112 | + final private function _set_templates($template_pack) { |
|
113 | 113 | |
114 | 114 | //get the corresponding template pack object (if present. If not then we just load the default and add a |
115 | 115 | //notice). The class name should be something like 'EE_Messages_Template_Pack_Default' where "default' would be |
116 | 116 | //the incoming template pack reference. |
117 | - $class_name = 'EE_Messages_Template_Pack_' . str_replace( ' ', '_', ucwords( str_replace( '_', ' ', $template_pack ) ) ); |
|
117 | + $class_name = 'EE_Messages_Template_Pack_'.str_replace(' ', '_', ucwords(str_replace('_', ' ', $template_pack))); |
|
118 | 118 | |
119 | - if ( ! class_exists( $class_name ) ) { |
|
119 | + if ( ! class_exists($class_name)) { |
|
120 | 120 | EE_Error::add_error( |
121 | 121 | sprintf( |
122 | 122 | __( |
@@ -135,7 +135,7 @@ discard block |
||
135 | 135 | $template_pack = new $class_name; |
136 | 136 | |
137 | 137 | //get all the templates from the template pack. |
138 | - $this->_templates = $template_pack->get_templates( $this->_messenger, $this->_message_type ); |
|
138 | + $this->_templates = $template_pack->get_templates($this->_messenger, $this->_message_type); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | |
@@ -159,15 +159,15 @@ discard block |
||
159 | 159 | public function create_new_templates() { |
160 | 160 | $template_pack = 'default'; |
161 | 161 | //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. |
162 | - if ( ! empty( $this->_GRP_ID ) ) { |
|
163 | - $message_template_group = $this->_message_template_group_model->get_one_by_ID( $this->_GRP_ID ); |
|
162 | + if ( ! empty($this->_GRP_ID)) { |
|
163 | + $message_template_group = $this->_message_template_group_model->get_one_by_ID($this->_GRP_ID); |
|
164 | 164 | $template_pack = $message_template_group instanceof EE_Message_Template_Group |
165 | 165 | ? $message_template_group->get_template_pack_name() |
166 | 166 | : 'default'; |
167 | 167 | //we also need to reset the template variation to default |
168 | - $message_template_group->set_template_pack_variation( 'default' ); |
|
168 | + $message_template_group->set_template_pack_variation('default'); |
|
169 | 169 | } |
170 | - return $this->_create_new_templates( $template_pack ); |
|
170 | + return $this->_create_new_templates($template_pack); |
|
171 | 171 | } |
172 | 172 | |
173 | 173 | |
@@ -181,12 +181,12 @@ discard block |
||
181 | 181 | * which will contain information about where to obtain the templates. |
182 | 182 | * @return mixed (array|bool) success array or false. |
183 | 183 | */ |
184 | - protected function _create_new_templates( $template_pack ) { |
|
184 | + protected function _create_new_templates($template_pack) { |
|
185 | 185 | |
186 | - $this->_set_templates( $template_pack ); |
|
186 | + $this->_set_templates($template_pack); |
|
187 | 187 | |
188 | 188 | //necessary properties are set, let's save the default templates |
189 | - if ( empty( $this->_GRP_ID ) ) { |
|
189 | + if (empty($this->_GRP_ID)) { |
|
190 | 190 | $main_template_data = array( |
191 | 191 | 'MTP_messenger' => $this->_messenger->name, |
192 | 192 | 'MTP_message_type' => $this->_message_type->name, |
@@ -197,24 +197,24 @@ discard block |
||
197 | 197 | 'MTP_is_active' => 1, |
198 | 198 | ); |
199 | 199 | //let's insert the above and get our GRP_ID, then reset the template data array to just include the GRP_ID |
200 | - $grp_id = $this->_message_template_group_model->insert( $main_template_data ); |
|
201 | - if ( empty( $grp_id ) ) { |
|
200 | + $grp_id = $this->_message_template_group_model->insert($main_template_data); |
|
201 | + if (empty($grp_id)) { |
|
202 | 202 | return $grp_id; |
203 | 203 | } |
204 | 204 | $this->_GRP_ID = $grp_id; |
205 | 205 | } |
206 | 206 | |
207 | - $template_data = array( 'GRP_ID' => $this->_GRP_ID ); |
|
207 | + $template_data = array('GRP_ID' => $this->_GRP_ID); |
|
208 | 208 | |
209 | - foreach ( $this->_contexts as $context => $details ) { |
|
210 | - foreach ( $this->_fields as $field => $field_type ) { |
|
211 | - if ( $field != 'extra' ) { |
|
209 | + foreach ($this->_contexts as $context => $details) { |
|
210 | + foreach ($this->_fields as $field => $field_type) { |
|
211 | + if ($field != 'extra') { |
|
212 | 212 | $template_data['MTP_context'] = $context; |
213 | 213 | $template_data['MTP_template_field'] = $field; |
214 | - $template_data['MTP_content'] = $this->_templates[ $context ][ $field ]; |
|
214 | + $template_data['MTP_content'] = $this->_templates[$context][$field]; |
|
215 | 215 | |
216 | - $MTP = $this->_message_template_model->insert( $template_data ); |
|
217 | - if ( ! $MTP ) { |
|
216 | + $MTP = $this->_message_template_model->insert($template_data); |
|
217 | + if ( ! $MTP) { |
|
218 | 218 | EE_Error::add_error( |
219 | 219 | sprintf( |
220 | 220 | __( |
@@ -238,7 +238,7 @@ discard block |
||
238 | 238 | |
239 | 239 | return array( |
240 | 240 | 'GRP_ID' => $this->_GRP_ID, |
241 | - 'MTP_context' => key( $this->_contexts ) |
|
241 | + 'MTP_context' => key($this->_contexts) |
|
242 | 242 | ); |
243 | 243 | } |
244 | 244 |
@@ -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 | /** |
@@ -29,7 +29,7 @@ discard block |
||
29 | 29 | /** |
30 | 30 | * This sets up the email messenger for the EE_messages (notifications) subsystem in EE. |
31 | 31 | */ |
32 | -class EE_Email_messenger extends EE_messenger { |
|
32 | +class EE_Email_messenger extends EE_messenger { |
|
33 | 33 | |
34 | 34 | /** |
35 | 35 | * The following are the properties that email requires for the message going out. |
@@ -77,7 +77,7 @@ discard block |
||
77 | 77 | protected function _set_valid_shortcodes() { |
78 | 78 | //remember by leaving the other fields not set, those fields will inherit the valid shortcodes from the message type. |
79 | 79 | $this->_valid_shortcodes = array( |
80 | - 'to' => array('email','event_author', 'primary_registration_details', 'recipient_details'), |
|
80 | + 'to' => array('email', 'event_author', 'primary_registration_details', 'recipient_details'), |
|
81 | 81 | 'from' => array('email', 'event_author', 'primary_registration_details', 'recipient_details') |
82 | 82 | ); |
83 | 83 | } |
@@ -111,7 +111,7 @@ discard block |
||
111 | 111 | 'shortcodes' => array('organization', 'primary_registration_details', 'event_author', 'primary_registration_details', 'recipient_details') |
112 | 112 | ), |
113 | 113 | 'content' => array( |
114 | - 'shortcodes' => array('event_list','attendee_list', 'ticket_list', 'organization', 'primary_registration_details', 'primary_registration_list', 'event_author', 'recipient_details', 'recipient_list', 'transaction', 'messenger') |
|
114 | + 'shortcodes' => array('event_list', 'attendee_list', 'ticket_list', 'organization', 'primary_registration_details', 'primary_registration_list', 'event_author', 'recipient_details', 'recipient_list', 'transaction', 'messenger') |
|
115 | 115 | ), |
116 | 116 | 'attendee_list' => array( |
117 | 117 | 'shortcodes' => array('attendee', 'event_list', 'ticket_list'), |
@@ -122,7 +122,7 @@ discard block |
||
122 | 122 | 'required' => array('[EVENT_LIST]') |
123 | 123 | ), |
124 | 124 | 'ticket_list' => array( |
125 | - 'shortcodes' => array('event_list', 'attendee_list', 'ticket', 'datetime_list','primary_registration_details', 'recipient_details'), |
|
125 | + 'shortcodes' => array('event_list', 'attendee_list', 'ticket', 'datetime_list', 'primary_registration_details', 'recipient_details'), |
|
126 | 126 | 'required' => array('[TICKET_LIST]') |
127 | 127 | ), |
128 | 128 | 'datetime_list' => array( |
@@ -141,21 +141,21 @@ discard block |
||
141 | 141 | * |
142 | 142 | * @since 4.5.0 |
143 | 143 | */ |
144 | - public function do_secondary_messenger_hooks( $sending_messenger_name ) { |
|
145 | - if ( $sending_messenger_name = 'html' ) { |
|
146 | - add_filter( 'FHEE__EE_Messages_Template_Pack__get_variation', array( $this, 'add_email_css' ), 10, 8 ); |
|
144 | + public function do_secondary_messenger_hooks($sending_messenger_name) { |
|
145 | + if ($sending_messenger_name = 'html') { |
|
146 | + add_filter('FHEE__EE_Messages_Template_Pack__get_variation', array($this, 'add_email_css'), 10, 8); |
|
147 | 147 | } |
148 | 148 | } |
149 | 149 | |
150 | 150 | |
151 | 151 | |
152 | 152 | |
153 | - public function add_email_css( $variation_path, $messenger, $message_type, $type, $variation, $file_extension, $url, EE_Messages_Template_Pack $template_pack ) { |
|
153 | + public function add_email_css($variation_path, $messenger, $message_type, $type, $variation, $file_extension, $url, EE_Messages_Template_Pack $template_pack) { |
|
154 | 154 | //prevent recursion on this callback. |
155 | - remove_filter( 'FHEE__EE_Messages_Template_Pack__get_variation', array( $this, 'add_email_css' ), 10 ); |
|
156 | - $variation = $this->get_variation( $template_pack, $message_type, $url, 'main', $variation, FALSE ); |
|
155 | + remove_filter('FHEE__EE_Messages_Template_Pack__get_variation', array($this, 'add_email_css'), 10); |
|
156 | + $variation = $this->get_variation($template_pack, $message_type, $url, 'main', $variation, FALSE); |
|
157 | 157 | |
158 | - add_filter( 'FHEE__EE_Messages_Template_Pack__get_variation', array( $this, 'add_email_css' ), 10, 8 ); |
|
158 | + add_filter('FHEE__EE_Messages_Template_Pack__get_variation', array($this, 'add_email_css'), 10, 8); |
|
159 | 159 | return $variation; |
160 | 160 | } |
161 | 161 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | 'required' => FALSE, |
188 | 188 | 'validation' => FALSE, |
189 | 189 | 'format' => '%s', |
190 | - 'value' => sprintf( __('Test email sent from %s', 'event_espresso'), get_bloginfo('name') ), |
|
190 | + 'value' => sprintf(__('Test email sent from %s', 'event_espresso'), get_bloginfo('name')), |
|
191 | 191 | 'default'=> '', |
192 | 192 | 'css_class' => '' |
193 | 193 | ) |
@@ -349,16 +349,16 @@ discard block |
||
349 | 349 | * @return bool | WP_Error true if message delivered, false if it didn't deliver OR bubble up any error object if present. |
350 | 350 | */ |
351 | 351 | protected function _send_message() { |
352 | - $success = wp_mail( |
|
353 | - html_entity_decode( $this->_to, ENT_QUOTES, "UTF-8" ), |
|
354 | - stripslashes( html_entity_decode( $this->_subject, ENT_QUOTES, "UTF-8" )), |
|
352 | + $success = wp_mail( |
|
353 | + html_entity_decode($this->_to, ENT_QUOTES, "UTF-8"), |
|
354 | + stripslashes(html_entity_decode($this->_subject, ENT_QUOTES, "UTF-8")), |
|
355 | 355 | $this->_body(), |
356 | 356 | $this->_headers() |
357 | 357 | ); |
358 | - if ( ! $success ) { |
|
358 | + if ( ! $success) { |
|
359 | 359 | EE_Error::add_error( |
360 | 360 | sprintf( |
361 | - __( 'The email did not send successfully.%3$sThe WordPress wp_mail function is used for sending mails but does not give any useful information when an email fails to send.%3$sIt is possible the "to" address (%1$s) or "from" address (%2$s) is invalid.%3$s', 'event_espresso'), |
|
361 | + __('The email did not send successfully.%3$sThe WordPress wp_mail function is used for sending mails but does not give any useful information when an email fails to send.%3$sIt is possible the "to" address (%1$s) or "from" address (%2$s) is invalid.%3$s', 'event_espresso'), |
|
362 | 362 | $this->_to, |
363 | 363 | $this->_from, |
364 | 364 | '<br />' |
@@ -377,7 +377,7 @@ discard block |
||
377 | 377 | * @return string html body of the message content and the related css. |
378 | 378 | */ |
379 | 379 | protected function _preview() { |
380 | - return $this->_body( true ); |
|
380 | + return $this->_body(true); |
|
381 | 381 | } |
382 | 382 | |
383 | 383 | |
@@ -391,18 +391,18 @@ discard block |
||
391 | 391 | * @return string formatted header for email |
392 | 392 | */ |
393 | 393 | protected function _headers() { |
394 | - $from = stripslashes_deep( html_entity_decode($this->_from, ENT_QUOTES,"UTF-8" ) ); |
|
394 | + $from = stripslashes_deep(html_entity_decode($this->_from, ENT_QUOTES, "UTF-8")); |
|
395 | 395 | $headers = array( |
396 | 396 | 'MIME-Version: 1.0', |
397 | - 'From:' . $from, |
|
398 | - 'Reply-To:' . $from, |
|
397 | + 'From:'.$from, |
|
398 | + 'Reply-To:'.$from, |
|
399 | 399 | 'Content-Type:text/html; charset=utf-8' |
400 | 400 | ); |
401 | 401 | |
402 | 402 | //but wait! Header's for the from is NOT reliable because some plugins don't respect From: as set in the header. |
403 | - add_filter( 'wp_mail_from', array( $this, 'set_from_address' ), 100 ); |
|
404 | - add_filter( 'wp_mail_from_name', array( $this, 'set_from_name' ), 100 ); |
|
405 | - return apply_filters( 'FHEE__EE_Email_messenger___headers', $headers, $this->_incoming_message_type, $this ); |
|
403 | + add_filter('wp_mail_from', array($this, 'set_from_address'), 100); |
|
404 | + add_filter('wp_mail_from_name', array($this, 'set_from_name'), 100); |
|
405 | + return apply_filters('FHEE__EE_Email_messenger___headers', $headers, $this->_incoming_message_type, $this); |
|
406 | 406 | } |
407 | 407 | |
408 | 408 | |
@@ -418,19 +418,19 @@ discard block |
||
418 | 418 | * @return array |
419 | 419 | */ |
420 | 420 | private function _parse_from() { |
421 | - if ( strpos( $this->_from, '<' ) !== false ) { |
|
422 | - $from_name = substr( $this->_from, 0, strpos( $this->_from, '<' ) - 1 ); |
|
423 | - $from_name = str_replace( '"', '', $from_name ); |
|
424 | - $from_name = trim( $from_name ); |
|
425 | - |
|
426 | - $from_email = substr( $this->_from, strpos( $this->_from, '<' ) + 1 ); |
|
427 | - $from_email = str_replace( '>', '', $from_email ); |
|
428 | - $from_email = trim( $from_email ); |
|
421 | + if (strpos($this->_from, '<') !== false) { |
|
422 | + $from_name = substr($this->_from, 0, strpos($this->_from, '<') - 1); |
|
423 | + $from_name = str_replace('"', '', $from_name); |
|
424 | + $from_name = trim($from_name); |
|
425 | + |
|
426 | + $from_email = substr($this->_from, strpos($this->_from, '<') + 1); |
|
427 | + $from_email = str_replace('>', '', $from_email); |
|
428 | + $from_email = trim($from_email); |
|
429 | 429 | } else { |
430 | 430 | $from_name = ''; |
431 | - $from_email = trim( $this->_from ); |
|
431 | + $from_email = trim($this->_from); |
|
432 | 432 | } |
433 | - return array( $from_name, $from_email ); |
|
433 | + return array($from_name, $from_email); |
|
434 | 434 | } |
435 | 435 | |
436 | 436 | |
@@ -443,7 +443,7 @@ discard block |
||
443 | 443 | * |
444 | 444 | * @param string $from_email What the original from_email is. |
445 | 445 | */ |
446 | - public function set_from_address( $from_email ) { |
|
446 | + public function set_from_address($from_email) { |
|
447 | 447 | $parsed_from = $this->_parse_from(); |
448 | 448 | return $parsed_from[1]; |
449 | 449 | } |
@@ -458,13 +458,13 @@ discard block |
||
458 | 458 | * |
459 | 459 | * @param string $from_name The original from_name. |
460 | 460 | */ |
461 | - public function set_from_name( $from_name ) { |
|
461 | + public function set_from_name($from_name) { |
|
462 | 462 | $parsed_from = $this->_parse_from(); |
463 | - if ( is_array( $parsed_from) && ! empty( $parsed_from[0] ) ) { |
|
464 | - $from_name = $parsed_from[0]; |
|
463 | + if (is_array($parsed_from) && ! empty($parsed_from[0])) { |
|
464 | + $from_name = $parsed_from[0]; |
|
465 | 465 | } |
466 | 466 | |
467 | - return stripslashes_deep( html_entity_decode($from_name, ENT_QUOTES,"UTF-8" ) ); |
|
467 | + return stripslashes_deep(html_entity_decode($from_name, ENT_QUOTES, "UTF-8")); |
|
468 | 468 | } |
469 | 469 | |
470 | 470 | |
@@ -475,14 +475,14 @@ discard block |
||
475 | 475 | * @param bool $preview will determine whether this is preview template or not. |
476 | 476 | * @return string formatted body for email. |
477 | 477 | */ |
478 | - protected function _body( $preview = false ) { |
|
478 | + protected function _body($preview = false) { |
|
479 | 479 | //setup template args! |
480 | 480 | $this->_template_args = array( |
481 | 481 | 'subject' => $this->_subject, |
482 | 482 | 'from' => $this->_from, |
483 | - 'main_body' => wpautop(stripslashes_deep( html_entity_decode($this->_content, ENT_QUOTES,"UTF-8" ) )) |
|
483 | + 'main_body' => wpautop(stripslashes_deep(html_entity_decode($this->_content, ENT_QUOTES, "UTF-8"))) |
|
484 | 484 | ); |
485 | - $body = $this->_get_main_template( $preview ); |
|
485 | + $body = $this->_get_main_template($preview); |
|
486 | 486 | |
487 | 487 | /** |
488 | 488 | * This filter allows one to bypass the CSSToInlineStyles tool and leave the body untouched. |
@@ -490,17 +490,17 @@ discard block |
||
490 | 490 | * @type bool $preview Indicates whether a preview is being generated or not. |
491 | 491 | * @return bool true indicates to use the inliner, false bypasses it. |
492 | 492 | */ |
493 | - if ( apply_filters( 'FHEE__EE_Email_messenger__apply_CSSInliner ', true, $preview ) ) { |
|
493 | + if (apply_filters('FHEE__EE_Email_messenger__apply_CSSInliner ', true, $preview)) { |
|
494 | 494 | |
495 | 495 | //require CssToInlineStyles library and its dependencies via composer autoloader |
496 | - require_once EE_THIRD_PARTY . 'cssinliner/vendor/autoload.php'; |
|
496 | + require_once EE_THIRD_PARTY.'cssinliner/vendor/autoload.php'; |
|
497 | 497 | |
498 | 498 | //now if this isn't a preview, let's setup the body so it has inline styles |
499 | - if ( ! $preview || ( $preview && defined( 'DOING_AJAX' ) ) ) { |
|
500 | - $style = file_get_contents( $this->get_variation( $this->_tmp_pack, $this->_incoming_message_type->name, FALSE, 'main', $this->_variation ), TRUE ); |
|
501 | - $CSS = new TijsVerkoyen\CssToInlineStyles\CssToInlineStyles( $body, $style ); |
|
502 | - $body = ltrim( $CSS->convert( true ), ">\n" ); //for some reason the library has a bracket and new line at the beginning. This takes care of that. |
|
503 | - $body = ltrim( $body, "<?" ); //see https://events.codebasehq.com/projects/event-espresso/tickets/8609 |
|
499 | + if ( ! $preview || ($preview && defined('DOING_AJAX'))) { |
|
500 | + $style = file_get_contents($this->get_variation($this->_tmp_pack, $this->_incoming_message_type->name, FALSE, 'main', $this->_variation), TRUE); |
|
501 | + $CSS = new TijsVerkoyen\CssToInlineStyles\CssToInlineStyles($body, $style); |
|
502 | + $body = ltrim($CSS->convert(true), ">\n"); //for some reason the library has a bracket and new line at the beginning. This takes care of that. |
|
503 | + $body = ltrim($body, "<?"); //see https://events.codebasehq.com/projects/event-espresso/tickets/8609 |
|
504 | 504 | } |
505 | 505 | |
506 | 506 | } |
@@ -519,8 +519,8 @@ discard block |
||
519 | 519 | public function get_existing_test_settings() { |
520 | 520 | $settings = parent::get_existing_test_settings(); |
521 | 521 | //override subject if present because we always want it to be fresh. |
522 | - if ( is_array( $settings ) && ! empty( $settings['subject'] ) ) { |
|
523 | - $settings['subject'] = sprintf( __('Test email sent from %s', 'event_espresso'), get_bloginfo('name') ); |
|
522 | + if (is_array($settings) && ! empty($settings['subject'])) { |
|
523 | + $settings['subject'] = sprintf(__('Test email sent from %s', 'event_espresso'), get_bloginfo('name')); |
|
524 | 524 | } |
525 | 525 | return $settings; |
526 | 526 | } |
@@ -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 |
@@ -197,8 +198,10 @@ discard block |
||
197 | 198 | $sc_to_verify = !empty($matches[0] ) ? $matches[0][0] . ']' : $shortcode; |
198 | 199 | |
199 | 200 | //first we want to make sure this is a valid shortcode |
200 | - if ( !array_key_exists($sc_to_verify, $this->_shortcodes ) ) |
|
201 | - return false; //get out, this parser doesn't handle the incoming shortcode. |
|
201 | + if ( !array_key_exists($sc_to_verify, $this->_shortcodes ) ) { |
|
202 | + return false; |
|
203 | + } |
|
204 | + //get out, this parser doesn't handle the incoming shortcode. |
|
202 | 205 | $this->_data = $data; |
203 | 206 | $this->_extra_data = $extra_data; |
204 | 207 | $this->_set_messages_properties(); |
@@ -276,8 +279,9 @@ discard block |
||
276 | 279 | } |
277 | 280 | |
278 | 281 | //next test to make sure we've got got a data index in the incoming data array |
279 | - if ( !isset( $this->_data['data'] ) ) |
|
280 | - throw new EE_Error( __('The incoming data does not have the required data index in its array', 'event_espresso') ); |
|
282 | + if ( !isset( $this->_data['data'] ) ) { |
|
283 | + throw new EE_Error( __('The incoming data does not have the required data index in its array', 'event_espresso') ); |
|
284 | + } |
|
281 | 285 | |
282 | 286 | //all is well let's make sure _extra_data always has the values needed. |
283 | 287 | //let's make sure that extra_data includes all templates (for later parsing if necessary) |
@@ -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 | /** |
@@ -171,7 +171,7 @@ discard block |
||
171 | 171 | |
172 | 172 | |
173 | 173 | public function get_shortcode_helper() { |
174 | - if ( ! $this->_shortcode_helper instanceof EEH_Parse_Shortcodes ) { |
|
174 | + if ( ! $this->_shortcode_helper instanceof EEH_Parse_Shortcodes) { |
|
175 | 175 | $this->_set_shortcode_helper(); |
176 | 176 | } |
177 | 177 | return $this->_shortcode_helper; |
@@ -185,25 +185,25 @@ discard block |
||
185 | 185 | * @param mixed (object|array) $extra_data extra incoming data (usually EE_Messages_Addressee) |
186 | 186 | * @return string parsed shortcode. |
187 | 187 | */ |
188 | - public function parser($shortcode, $data, $extra_data = array() ) { |
|
188 | + public function parser($shortcode, $data, $extra_data = array()) { |
|
189 | 189 | |
190 | 190 | //filter setup shortcodes |
191 | 191 | $this->_shortcodes = $this->get_shortcodes(); |
192 | 192 | |
193 | 193 | //we need to setup any dynamic shortcodes so that they work with the array_key_exists |
194 | - $sc = preg_match_all( '/(\[[A-Za-z0-9\_]+_\*)/', $shortcode, $matches ); |
|
195 | - $sc_to_verify = !empty($matches[0] ) ? $matches[0][0] . ']' : $shortcode; |
|
194 | + $sc = preg_match_all('/(\[[A-Za-z0-9\_]+_\*)/', $shortcode, $matches); |
|
195 | + $sc_to_verify = ! empty($matches[0]) ? $matches[0][0].']' : $shortcode; |
|
196 | 196 | |
197 | 197 | //first we want to make sure this is a valid shortcode |
198 | - if ( !array_key_exists($sc_to_verify, $this->_shortcodes ) ) |
|
198 | + if ( ! array_key_exists($sc_to_verify, $this->_shortcodes)) |
|
199 | 199 | return false; //get out, this parser doesn't handle the incoming shortcode. |
200 | 200 | $this->_data = $data; |
201 | 201 | $this->_extra_data = $extra_data; |
202 | 202 | $this->_set_messages_properties(); |
203 | - $parsed = apply_filters( 'FHEE__' . get_class($this) . '__parser_after', $this->_parser($shortcode), $shortcode, $data, $extra_data, $this ); |
|
203 | + $parsed = apply_filters('FHEE__'.get_class($this).'__parser_after', $this->_parser($shortcode), $shortcode, $data, $extra_data, $this); |
|
204 | 204 | |
205 | 205 | //note the below filter applies to ALL shortcode parsers... be careful! |
206 | - $parsed = apply_filters( 'FHEE__EE_Shortcodes__parser_after', $parsed, $shortcode, $data, $extra_data, $this ); |
|
206 | + $parsed = apply_filters('FHEE__EE_Shortcodes__parser_after', $parsed, $shortcode, $data, $extra_data, $this); |
|
207 | 207 | return $parsed; |
208 | 208 | } |
209 | 209 | |
@@ -219,10 +219,10 @@ discard block |
||
219 | 219 | * @return array array of shortcodes => description pairs |
220 | 220 | */ |
221 | 221 | public function get_shortcodes() { |
222 | - $this->_shortcodes = apply_filters( 'FHEE__' . get_class($this) . '__shortcodes', $this->_shortcodes, $this ); |
|
222 | + $this->_shortcodes = apply_filters('FHEE__'.get_class($this).'__shortcodes', $this->_shortcodes, $this); |
|
223 | 223 | |
224 | 224 | //note the below filter applies to ALL shortcode parsers... be careful! |
225 | - $this->_shortcodes = apply_filters( 'FHEE__EE_Shortcodes__shortcodes', $this->_shortcodes, $this ); |
|
225 | + $this->_shortcodes = apply_filters('FHEE__EE_Shortcodes__shortcodes', $this->_shortcodes, $this); |
|
226 | 226 | |
227 | 227 | return $this->_shortcodes; |
228 | 228 | } |
@@ -252,7 +252,7 @@ discard block |
||
252 | 252 | * @param mixed (object|array) $data incoming data for the parser. The data could be either an object or array because there are some shortcodes that might be replaced by prepared data that has multiple items in a list (i.e. list of attendees in an event and we're showing fname/lname for each attendee). In this case data will be in an array. Otherwise the data shoudl be in a properly formatted object. The EEH_Parse_Shortcodes.helper.php describes the data object we're expecting. |
253 | 253 | * @return string parsed shortcode |
254 | 254 | */ |
255 | - abstract protected function _parser( $shortcode ); |
|
255 | + abstract protected function _parser($shortcode); |
|
256 | 256 | |
257 | 257 | |
258 | 258 | |
@@ -264,22 +264,22 @@ discard block |
||
264 | 264 | protected function _validate_list_requirements() { |
265 | 265 | |
266 | 266 | //first test to make sure we've got an array! |
267 | - if ( !is_array($this->_data) ) { |
|
268 | - throw new EE_Error( sprintf( __('Expecting an array for the data sent to %s. Instead it was %s', 'event_espresso'), get_class($this), gettype( $this->_data ) ) ); |
|
267 | + if ( ! is_array($this->_data)) { |
|
268 | + throw new EE_Error(sprintf(__('Expecting an array for the data sent to %s. Instead it was %s', 'event_espresso'), get_class($this), gettype($this->_data))); |
|
269 | 269 | } |
270 | 270 | |
271 | 271 | //next test to make sure we've got the required template in the index! |
272 | - if ( !isset( $this->_data['template'] ) ) { |
|
273 | - throw new EE_Error( sprintf( __('The incoming data does not have the required template index in its array', 'event_espresso') ) ); |
|
272 | + if ( ! isset($this->_data['template'])) { |
|
273 | + throw new EE_Error(sprintf(__('The incoming data does not have the required template index in its array', 'event_espresso'))); |
|
274 | 274 | } |
275 | 275 | |
276 | 276 | //next test to make sure we've got got a data index in the incoming data array |
277 | - if ( !isset( $this->_data['data'] ) ) |
|
278 | - throw new EE_Error( __('The incoming data does not have the required data index in its array', 'event_espresso') ); |
|
277 | + if ( ! isset($this->_data['data'])) |
|
278 | + throw new EE_Error(__('The incoming data does not have the required data index in its array', 'event_espresso')); |
|
279 | 279 | |
280 | 280 | //all is well let's make sure _extra_data always has the values needed. |
281 | 281 | //let's make sure that extra_data includes all templates (for later parsing if necessary) |
282 | - if ( empty( $this->_extra_data ) || ( empty( $this->_extra_data['data'] ) && empty( $this->_extra_data['template'] ) ) ) { |
|
282 | + if (empty($this->_extra_data) || (empty($this->_extra_data['data']) && empty($this->_extra_data['template']))) { |
|
283 | 283 | $this->_extra_data['data'] = $this->_data['data']; |
284 | 284 | $this->_extra_data['template'] = $this->_data['template']; |
285 | 285 | } |
@@ -296,16 +296,16 @@ discard block |
||
296 | 296 | * |
297 | 297 | * @return array An array with the attributes |
298 | 298 | */ |
299 | - protected function _get_shortcode_attrs( $shortcode ) { |
|
299 | + protected function _get_shortcode_attrs($shortcode) { |
|
300 | 300 | //make sure the required wp helper function is present |
301 | 301 | //require the shortcode file if necessary |
302 | - if ( ! function_exists( 'shortcode_parse_atts' ) ) { |
|
303 | - require_once( ABSPATH . WPINC . '/shortcodes.php'); |
|
302 | + if ( ! function_exists('shortcode_parse_atts')) { |
|
303 | + require_once(ABSPATH.WPINC.'/shortcodes.php'); |
|
304 | 304 | } |
305 | 305 | |
306 | 306 | //let's get any attributes that may be present and set the defaults. |
307 | - $shortcode_to_parse = str_replace( '[', '', str_replace( ']', '', $shortcode ) ); |
|
308 | - return shortcode_parse_atts( $shortcode_to_parse ); |
|
307 | + $shortcode_to_parse = str_replace('[', '', str_replace(']', '', $shortcode)); |
|
308 | + return shortcode_parse_atts($shortcode_to_parse); |
|
309 | 309 | } |
310 | 310 | |
311 | 311 | |
@@ -320,7 +320,7 @@ discard block |
||
320 | 320 | */ |
321 | 321 | protected function _set_messages_properties() { |
322 | 322 | //should be in _extra_data |
323 | - if ( isset( $this->_extra_data['messenger'] ) ) { |
|
323 | + if (isset($this->_extra_data['messenger'])) { |
|
324 | 324 | $this->_messenger = $this->_extra_data['messenger']; |
325 | 325 | $this->_message_type = $this->_extra_data['message_type']; |
326 | 326 | $this->_context = $this->_extra_data['message'] instanceof EE_Message ? $this->_extra_data['message']->context() : ''; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | -if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
3 | - exit( 'No direct script access allowed' ); |
|
2 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
3 | + exit('No direct script access allowed'); |
|
4 | 4 | } |
5 | 5 | |
6 | 6 | /** |
@@ -15,15 +15,15 @@ discard block |
||
15 | 15 | * @author Mike Nelson |
16 | 16 | * |
17 | 17 | */ |
18 | -class EE_Phone_Input extends EE_Text_Input{ |
|
18 | +class EE_Phone_Input extends EE_Text_Input { |
|
19 | 19 | /** |
20 | 20 | * @param array $options |
21 | 21 | */ |
22 | - function __construct($options = array()){ |
|
23 | - $this->_add_validation_strategy( new EE_Text_Validation_Strategy( |
|
24 | - __( 'Please enter a valid phone number. Eg 123-456-7890 or 1234567890', 'event_espresso' ), |
|
22 | + function __construct($options = array()) { |
|
23 | + $this->_add_validation_strategy(new EE_Text_Validation_Strategy( |
|
24 | + __('Please enter a valid phone number. Eg 123-456-7890 or 1234567890', 'event_espresso'), |
|
25 | 25 | '~^(([\d]{10})|([\d]{3}-[\d]{3}-[\d]{4}))$~')); |
26 | - parent::__construct( $options ); |
|
26 | + parent::__construct($options); |
|
27 | 27 | } |
28 | 28 | } |
29 | 29 |
@@ -1,5 +1,5 @@ discard block |
||
1 | -<?php if ( !defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
2 | - exit( 'No direct script access allowed' ); |
|
1 | +<?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
2 | + exit('No direct script access allowed'); |
|
3 | 3 | } |
4 | 4 | /** |
5 | 5 | * Event Espresso |
@@ -37,9 +37,9 @@ discard block |
||
37 | 37 | * date_format and the second value is the time format |
38 | 38 | * @return EE_Question |
39 | 39 | */ |
40 | - public static function new_instance( $props_n_values = array(), $timezone = null, $date_formats = array() ) { |
|
41 | - $has_object = parent::_check_for_object( $props_n_values, __CLASS__, $timezone, $date_formats ); |
|
42 | - return $has_object ? $has_object : new self( $props_n_values, false, $timezone, $date_formats ); |
|
40 | + public static function new_instance($props_n_values = array(), $timezone = null, $date_formats = array()) { |
|
41 | + $has_object = parent::_check_for_object($props_n_values, __CLASS__, $timezone, $date_formats); |
|
42 | + return $has_object ? $has_object : new self($props_n_values, false, $timezone, $date_formats); |
|
43 | 43 | } |
44 | 44 | |
45 | 45 | |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | * the website will be used. |
51 | 51 | * @return EE_Question |
52 | 52 | */ |
53 | - public static function new_instance_from_db( $props_n_values = array(), $timezone = null ) { |
|
54 | - return new self( $props_n_values, TRUE, $timezone ); |
|
53 | + public static function new_instance_from_db($props_n_values = array(), $timezone = null) { |
|
54 | + return new self($props_n_values, TRUE, $timezone); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 | |
@@ -62,8 +62,8 @@ discard block |
||
62 | 62 | * @access public |
63 | 63 | * @param string $QST_display_text |
64 | 64 | */ |
65 | - public function set_display_text( $QST_display_text = '' ) { |
|
66 | - $this->set( 'QST_display_text', $QST_display_text ); |
|
65 | + public function set_display_text($QST_display_text = '') { |
|
66 | + $this->set('QST_display_text', $QST_display_text); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | |
@@ -74,8 +74,8 @@ discard block |
||
74 | 74 | * @access public |
75 | 75 | * @param string $QST_admin_label |
76 | 76 | */ |
77 | - public function set_admin_label( $QST_admin_label = '' ) { |
|
78 | - $this->set( 'QST_admin_label', $QST_admin_label ); |
|
77 | + public function set_admin_label($QST_admin_label = '') { |
|
78 | + $this->set('QST_admin_label', $QST_admin_label); |
|
79 | 79 | } |
80 | 80 | |
81 | 81 | |
@@ -86,8 +86,8 @@ discard block |
||
86 | 86 | * @access public |
87 | 87 | * @param mixed $QST_system |
88 | 88 | */ |
89 | - public function set_system_ID( $QST_system = '' ) { |
|
90 | - $this->set( 'QST_system', $QST_system ); |
|
89 | + public function set_system_ID($QST_system = '') { |
|
90 | + $this->set('QST_system', $QST_system); |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | |
@@ -98,8 +98,8 @@ discard block |
||
98 | 98 | * @access public |
99 | 99 | * @param string $QST_type |
100 | 100 | */ |
101 | - public function set_question_type( $QST_type = '' ) { |
|
102 | - $this->set( 'QST_type', $QST_type ); |
|
101 | + public function set_question_type($QST_type = '') { |
|
102 | + $this->set('QST_type', $QST_type); |
|
103 | 103 | } |
104 | 104 | |
105 | 105 | |
@@ -110,8 +110,8 @@ discard block |
||
110 | 110 | * @access public |
111 | 111 | * @param bool $QST_required |
112 | 112 | */ |
113 | - public function set_required( $QST_required = FALSE ) { |
|
114 | - $this->set( 'QST_required', $QST_required ); |
|
113 | + public function set_required($QST_required = FALSE) { |
|
114 | + $this->set('QST_required', $QST_required); |
|
115 | 115 | } |
116 | 116 | |
117 | 117 | |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | * @access public |
123 | 123 | * @param string $QST_required_text |
124 | 124 | */ |
125 | - public function set_required_text( $QST_required_text = '' ) { |
|
126 | - $this->set( 'QST_required_text', $QST_required_text ); |
|
125 | + public function set_required_text($QST_required_text = '') { |
|
126 | + $this->set('QST_required_text', $QST_required_text); |
|
127 | 127 | } |
128 | 128 | |
129 | 129 | |
@@ -134,8 +134,8 @@ discard block |
||
134 | 134 | * @access public |
135 | 135 | * @param int $QST_order |
136 | 136 | */ |
137 | - public function set_order( $QST_order = 0 ) { |
|
138 | - $this->set( 'QST_order', $QST_order ); |
|
137 | + public function set_order($QST_order = 0) { |
|
138 | + $this->set('QST_order', $QST_order); |
|
139 | 139 | } |
140 | 140 | |
141 | 141 | |
@@ -146,8 +146,8 @@ discard block |
||
146 | 146 | * @access public |
147 | 147 | * @param bool $QST_admin_only |
148 | 148 | */ |
149 | - public function set_admin_only( $QST_admin_only = FALSE ) { |
|
150 | - $this->set( 'QST_admin_only', $QST_admin_only ); |
|
149 | + public function set_admin_only($QST_admin_only = FALSE) { |
|
150 | + $this->set('QST_admin_only', $QST_admin_only); |
|
151 | 151 | } |
152 | 152 | |
153 | 153 | |
@@ -158,8 +158,8 @@ discard block |
||
158 | 158 | * @access public |
159 | 159 | * @param int $QST_wp_user |
160 | 160 | */ |
161 | - public function set_wp_user( $QST_wp_user = 1 ) { |
|
162 | - $this->set( 'QST_wp_user', $QST_wp_user ); |
|
161 | + public function set_wp_user($QST_wp_user = 1) { |
|
162 | + $this->set('QST_wp_user', $QST_wp_user); |
|
163 | 163 | } |
164 | 164 | |
165 | 165 | |
@@ -175,8 +175,8 @@ discard block |
||
175 | 175 | * @access public |
176 | 176 | * @param bool $QST_deleted |
177 | 177 | */ |
178 | - public function set_deleted( $QST_deleted = FALSE ) { |
|
179 | - $this->set( 'QST_deleted', $QST_deleted ); |
|
178 | + public function set_deleted($QST_deleted = FALSE) { |
|
179 | + $this->set('QST_deleted', $QST_deleted); |
|
180 | 180 | } |
181 | 181 | |
182 | 182 | |
@@ -187,7 +187,7 @@ discard block |
||
187 | 187 | * @return string |
188 | 188 | */ |
189 | 189 | public function display_text() { |
190 | - return $this->get( 'QST_display_text' ); |
|
190 | + return $this->get('QST_display_text'); |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | |
@@ -198,7 +198,7 @@ discard block |
||
198 | 198 | * @return string |
199 | 199 | */ |
200 | 200 | public function admin_label() { |
201 | - return $this->get( 'QST_admin_label' ); |
|
201 | + return $this->get('QST_admin_label'); |
|
202 | 202 | } |
203 | 203 | |
204 | 204 | |
@@ -209,7 +209,7 @@ discard block |
||
209 | 209 | * @return string |
210 | 210 | */ |
211 | 211 | public function system_ID() { |
212 | - return $this->get( 'QST_system' ); |
|
212 | + return $this->get('QST_system'); |
|
213 | 213 | } |
214 | 214 | |
215 | 215 | |
@@ -220,7 +220,7 @@ discard block |
||
220 | 220 | * @return boolean |
221 | 221 | */ |
222 | 222 | public function required() { |
223 | - return $this->get( 'QST_required' ); |
|
223 | + return $this->get('QST_required'); |
|
224 | 224 | } |
225 | 225 | |
226 | 226 | |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | * @return string |
233 | 233 | */ |
234 | 234 | public function required_text() { |
235 | - return $this->get( 'QST_required_text' ); |
|
235 | + return $this->get('QST_required_text'); |
|
236 | 236 | } |
237 | 237 | |
238 | 238 | |
@@ -243,7 +243,7 @@ discard block |
||
243 | 243 | * @return string |
244 | 244 | */ |
245 | 245 | public function type() { |
246 | - return $this->get( 'QST_type' ); |
|
246 | + return $this->get('QST_type'); |
|
247 | 247 | } |
248 | 248 | |
249 | 249 | |
@@ -255,7 +255,7 @@ discard block |
||
255 | 255 | * @return int |
256 | 256 | */ |
257 | 257 | public function order() { |
258 | - return $this->get( 'QST_order' ); |
|
258 | + return $this->get('QST_order'); |
|
259 | 259 | } |
260 | 260 | |
261 | 261 | |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | * @return boolean |
268 | 268 | */ |
269 | 269 | public function admin_only() { |
270 | - return $this->get( 'QST_admin_only' ); |
|
270 | + return $this->get('QST_admin_only'); |
|
271 | 271 | } |
272 | 272 | |
273 | 273 | |
@@ -278,7 +278,7 @@ discard block |
||
278 | 278 | * @return int |
279 | 279 | */ |
280 | 280 | public function wp_user() { |
281 | - return $this->get( 'QST_wp_user' ); |
|
281 | + return $this->get('QST_wp_user'); |
|
282 | 282 | } |
283 | 283 | |
284 | 284 | |
@@ -289,7 +289,7 @@ discard block |
||
289 | 289 | * @return boolean |
290 | 290 | */ |
291 | 291 | public function deleted() { |
292 | - return $this->get( 'QST_deleted' ); |
|
292 | + return $this->get('QST_deleted'); |
|
293 | 293 | } |
294 | 294 | |
295 | 295 | |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | * @return EE_Answer[] |
300 | 300 | */ |
301 | 301 | public function answers() { |
302 | - return $this->get_many_related( 'Answer' ); |
|
302 | + return $this->get_many_related('Answer'); |
|
303 | 303 | } |
304 | 304 | |
305 | 305 | |
@@ -309,7 +309,7 @@ discard block |
||
309 | 309 | * @return boolean true = has answers, false = no answers. |
310 | 310 | */ |
311 | 311 | public function has_answers() { |
312 | - return $this->count_related( 'Answer' ) > 0 ? TRUE : FALSE; |
|
312 | + return $this->count_related('Answer') > 0 ? TRUE : FALSE; |
|
313 | 313 | } |
314 | 314 | |
315 | 315 | |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @return EE_Question_Group[] |
320 | 320 | */ |
321 | 321 | public function question_groups() { |
322 | - return $this->get_many_related( 'Question_Group' ); |
|
322 | + return $this->get_many_related('Question_Group'); |
|
323 | 323 | } |
324 | 324 | |
325 | 325 | |
@@ -333,24 +333,24 @@ discard block |
||
333 | 333 | * whether it was trashed or not. |
334 | 334 | * @return EE_Question_Option[] |
335 | 335 | */ |
336 | - public function options( $notDeletedOptionsOnly = TRUE, $selected_value_to_always_include = NULL ) { |
|
337 | - if ( ! $this->ID() ) { |
|
336 | + public function options($notDeletedOptionsOnly = TRUE, $selected_value_to_always_include = NULL) { |
|
337 | + if ( ! $this->ID()) { |
|
338 | 338 | return array(); |
339 | 339 | } |
340 | 340 | $query_params = array(); |
341 | - if ( $selected_value_to_always_include ) { |
|
342 | - if ( is_array( $selected_value_to_always_include ) ) { |
|
343 | - $query_params[ 0 ][ 'OR*options-query' ][ 'QSO_value' ] = array( 'IN', $selected_value_to_always_include ); |
|
341 | + if ($selected_value_to_always_include) { |
|
342 | + if (is_array($selected_value_to_always_include)) { |
|
343 | + $query_params[0]['OR*options-query']['QSO_value'] = array('IN', $selected_value_to_always_include); |
|
344 | 344 | } else { |
345 | - $query_params[ 0 ][ 'OR*options-query' ][ 'QSO_value' ] = $selected_value_to_always_include; |
|
345 | + $query_params[0]['OR*options-query']['QSO_value'] = $selected_value_to_always_include; |
|
346 | 346 | } |
347 | 347 | } |
348 | - if ( $notDeletedOptionsOnly ) { |
|
349 | - $query_params[ 0 ][ 'OR*options-query' ][ 'QSO_deleted' ] = FALSE; |
|
348 | + if ($notDeletedOptionsOnly) { |
|
349 | + $query_params[0]['OR*options-query']['QSO_deleted'] = FALSE; |
|
350 | 350 | } |
351 | 351 | //order by QSO_order |
352 | - $query_params[ 'order_by' ] = array( 'QSO_order' => 'ASC' ); |
|
353 | - return $this->get_many_related( 'Question_Option', $query_params ); |
|
352 | + $query_params['order_by'] = array('QSO_order' => 'ASC'); |
|
353 | + return $this->get_many_related('Question_Option', $query_params); |
|
354 | 354 | } |
355 | 355 | |
356 | 356 | |
@@ -360,7 +360,7 @@ discard block |
||
360 | 360 | * @return \EE_Question_Option[] |
361 | 361 | */ |
362 | 362 | public function temp_options() { |
363 | - return $this->_model_relations[ 'Question_Option' ]; |
|
363 | + return $this->_model_relations['Question_Option']; |
|
364 | 364 | } |
365 | 365 | |
366 | 366 | |
@@ -371,8 +371,8 @@ discard block |
||
371 | 371 | * @param EE_Question_Option $option |
372 | 372 | * @return boolean success |
373 | 373 | */ |
374 | - public function add_option( EE_Question_Option $option ) { |
|
375 | - return $this->_add_relation_to( $option, 'Question_Option' ); |
|
374 | + public function add_option(EE_Question_Option $option) { |
|
375 | + return $this->_add_relation_to($option, 'Question_Option'); |
|
376 | 376 | } |
377 | 377 | |
378 | 378 | |
@@ -382,8 +382,8 @@ discard block |
||
382 | 382 | * @param EE_Question_Option $option |
383 | 383 | * @return boolean success |
384 | 384 | */ |
385 | - public function add_temp_option( EE_Question_Option $option ) { |
|
386 | - $this->_model_relations[ 'Question_Option' ][ ] = $option; |
|
385 | + public function add_temp_option(EE_Question_Option $option) { |
|
386 | + $this->_model_relations['Question_Option'][] = $option; |
|
387 | 387 | return TRUE; |
388 | 388 | } |
389 | 389 | |
@@ -394,8 +394,8 @@ discard block |
||
394 | 394 | * @param EE_Question_Option $option |
395 | 395 | * @return boolean success |
396 | 396 | */ |
397 | - public function remove_option( EE_Question_Option $option ) { |
|
398 | - return $this->_remove_relation_to( $option, 'Question_Option' ); |
|
397 | + public function remove_option(EE_Question_Option $option) { |
|
398 | + return $this->_remove_relation_to($option, 'Question_Option'); |
|
399 | 399 | } |
400 | 400 | |
401 | 401 | |
@@ -404,8 +404,8 @@ discard block |
||
404 | 404 | * @return bool |
405 | 405 | */ |
406 | 406 | public function is_system_question() { |
407 | - $system_ID = $this->get( 'QST_system' ); |
|
408 | - return ! empty( $system_ID ) ? TRUE : FALSE; |
|
407 | + $system_ID = $this->get('QST_system'); |
|
408 | + return ! empty($system_ID) ? TRUE : FALSE; |
|
409 | 409 | } |
410 | 410 | |
411 | 411 | |
@@ -418,8 +418,8 @@ discard block |
||
418 | 418 | */ |
419 | 419 | public function set_order_to_latest() { |
420 | 420 | $latest_order = $this->get_model()->get_latest_question_order(); |
421 | - $latest_order ++; |
|
422 | - $this->set( 'QST_order', $latest_order ); |
|
421 | + $latest_order++; |
|
422 | + $this->set('QST_order', $latest_order); |
|
423 | 423 | } |
424 | 424 | |
425 | 425 | |
@@ -438,20 +438,20 @@ discard block |
||
438 | 438 | * Duplicates this question and its question options |
439 | 439 | * @return \EE_Question |
440 | 440 | */ |
441 | - public function duplicate( $options = array() ) { |
|
441 | + public function duplicate($options = array()) { |
|
442 | 442 | $new_question = clone $this; |
443 | - $new_question->set( 'QST_ID', null ); |
|
444 | - $new_question->set_display_text( sprintf( __( '%s **Duplicate**', 'event_espresso' ), $this->display_text() ) ); |
|
445 | - $new_question->set_admin_label( sprintf( __( '%s **Duplicate**', 'event_espresso' ), $this->admin_label() ) ); |
|
446 | - $new_question->set_system_ID( null ); |
|
447 | - $new_question->set_wp_user( get_current_user_id() ); |
|
443 | + $new_question->set('QST_ID', null); |
|
444 | + $new_question->set_display_text(sprintf(__('%s **Duplicate**', 'event_espresso'), $this->display_text())); |
|
445 | + $new_question->set_admin_label(sprintf(__('%s **Duplicate**', 'event_espresso'), $this->admin_label())); |
|
446 | + $new_question->set_system_ID(null); |
|
447 | + $new_question->set_wp_user(get_current_user_id()); |
|
448 | 448 | //if we're duplicating a trashed question, assume we don't want the new one to be trashed |
449 | - $new_question->set_deleted( false ); |
|
449 | + $new_question->set_deleted(false); |
|
450 | 450 | $success = $new_question->save(); |
451 | - if( $success ) { |
|
451 | + if ($success) { |
|
452 | 452 | //we don't totally want to duplicate the question options, because we want them to be for the NEW question |
453 | - foreach( $this->options() as $question_option ) { |
|
454 | - $question_option->duplicate( array( 'QST_ID' => $new_question->ID() ) ); |
|
453 | + foreach ($this->options() as $question_option) { |
|
454 | + $question_option->duplicate(array('QST_ID' => $new_question->ID())); |
|
455 | 455 | } |
456 | 456 | return $new_question; |
457 | 457 | } else { |
@@ -464,7 +464,7 @@ discard block |
||
464 | 464 | * @return int|float |
465 | 465 | */ |
466 | 466 | public function max() { |
467 | - return $this->get( 'QST_max' ); |
|
467 | + return $this->get('QST_max'); |
|
468 | 468 | } |
469 | 469 | |
470 | 470 | /** |
@@ -472,8 +472,8 @@ discard block |
||
472 | 472 | * @param int|float $new_max |
473 | 473 | * @return void |
474 | 474 | */ |
475 | - public function set_max( $new_max ) { |
|
476 | - $this->set( 'QST_max', $new_max ); |
|
475 | + public function set_max($new_max) { |
|
476 | + $this->set('QST_max', $new_max); |
|
477 | 477 | } |
478 | 478 | |
479 | 479 | |
@@ -485,7 +485,7 @@ discard block |
||
485 | 485 | * @param array $input_constructor_args |
486 | 486 | * @return EE_Form_Input_Base |
487 | 487 | */ |
488 | - public function generate_form_input( $registration = null, $answer = null, $input_constructor_args = array() ) { |
|
488 | + public function generate_form_input($registration = null, $answer = null, $input_constructor_args = array()) { |
|
489 | 489 | $identifier = $this->is_system_question() ? $this->system_ID() : $this->ID(); |
490 | 490 | |
491 | 491 | $input_constructor_args = array_merge( |
@@ -496,27 +496,27 @@ discard block |
||
496 | 496 | ), |
497 | 497 | $input_constructor_args |
498 | 498 | ); |
499 | - if( ! $answer instanceof EE_Answer && $registration instanceof EE_Registration ) { |
|
500 | - $answer = EEM_Answer::instance()->get_registration_question_answer_object( $registration, $this->ID() ); |
|
499 | + if ( ! $answer instanceof EE_Answer && $registration instanceof EE_Registration) { |
|
500 | + $answer = EEM_Answer::instance()->get_registration_question_answer_object($registration, $this->ID()); |
|
501 | 501 | } |
502 | 502 | // has this question been answered ? |
503 | - if ( $answer instanceof EE_Answer ) { |
|
503 | + if ($answer instanceof EE_Answer) { |
|
504 | 504 | //answer gets htmlspecialchars called on it, undo that please |
505 | 505 | //beceause the form input's display strategy may call esc_attr too |
506 | 506 | //which also does html special characters |
507 | 507 | $values_with_html_special_chars = $answer->value(); |
508 | - if( is_array( $values_with_html_special_chars ) ) { |
|
509 | - $default_value = array_map( 'htmlspecialchars_decode', $values_with_html_special_chars ); |
|
508 | + if (is_array($values_with_html_special_chars)) { |
|
509 | + $default_value = array_map('htmlspecialchars_decode', $values_with_html_special_chars); |
|
510 | 510 | } else { |
511 | - $default_value = htmlspecialchars_decode( $values_with_html_special_chars ); |
|
511 | + $default_value = htmlspecialchars_decode($values_with_html_special_chars); |
|
512 | 512 | } |
513 | 513 | $input_constructor_args['default'] = $default_value; |
514 | 514 | } |
515 | - $max_max_for_question = EEM_Question::instance()->absolute_max_for_system_question( $this->system_ID() ); |
|
516 | - if( EEM_Question::instance()->question_type_is_in_category( $this->type(), 'text' ) ) { |
|
517 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_Max_Length_Validation_Strategy( |
|
515 | + $max_max_for_question = EEM_Question::instance()->absolute_max_for_system_question($this->system_ID()); |
|
516 | + if (EEM_Question::instance()->question_type_is_in_category($this->type(), 'text')) { |
|
517 | + $input_constructor_args['validation_strategies'][] = new EE_Max_Length_Validation_Strategy( |
|
518 | 518 | null, |
519 | - min( $max_max_for_question, $this->max() ) |
|
519 | + min($max_max_for_question, $this->max()) |
|
520 | 520 | ); |
521 | 521 | } |
522 | 522 | $input_constructor_args = apply_filters( |
@@ -528,22 +528,22 @@ discard block |
||
528 | 528 | ); |
529 | 529 | |
530 | 530 | $result = null; |
531 | - switch ( $this->type() ) { |
|
531 | + switch ($this->type()) { |
|
532 | 532 | // Text |
533 | 533 | case EEM_Question::QST_type_text : |
534 | - $result = new EE_Text_Input( $input_constructor_args ); |
|
534 | + $result = new EE_Text_Input($input_constructor_args); |
|
535 | 535 | break; |
536 | 536 | // Textarea |
537 | 537 | case EEM_Question::QST_type_textarea : |
538 | - $result = new EE_Text_Area_Input( $input_constructor_args ); |
|
538 | + $result = new EE_Text_Area_Input($input_constructor_args); |
|
539 | 539 | break; |
540 | 540 | // Radio Buttons |
541 | 541 | case EEM_Question::QST_type_radio : |
542 | - $result = new EE_Radio_Button_Input( $this->options(), $input_constructor_args ); |
|
542 | + $result = new EE_Radio_Button_Input($this->options(), $input_constructor_args); |
|
543 | 543 | break; |
544 | 544 | // Dropdown |
545 | 545 | case EEM_Question::QST_type_dropdown : |
546 | - $result = new EE_Select_Input( $this->options(), $input_constructor_args ); |
|
546 | + $result = new EE_Select_Input($this->options(), $input_constructor_args); |
|
547 | 547 | break; |
548 | 548 | // State Dropdown |
549 | 549 | case EEM_Question::QST_type_state : |
@@ -554,7 +554,7 @@ discard block |
||
554 | 554 | $registration, |
555 | 555 | $answer |
556 | 556 | ); |
557 | - $result = new EE_State_Select_Input( $state_options, $input_constructor_args ); |
|
557 | + $result = new EE_State_Select_Input($state_options, $input_constructor_args); |
|
558 | 558 | break; |
559 | 559 | // Country Dropdown |
560 | 560 | case EEM_Question::QST_type_country : |
@@ -565,49 +565,49 @@ discard block |
||
565 | 565 | $registration, |
566 | 566 | $answer |
567 | 567 | ); |
568 | - $result = new EE_Country_Select_Input( $country_options, $input_constructor_args ); |
|
568 | + $result = new EE_Country_Select_Input($country_options, $input_constructor_args); |
|
569 | 569 | break; |
570 | 570 | // Checkboxes |
571 | 571 | case EEM_Question::QST_type_checkbox : |
572 | - $result = new EE_Checkbox_Multi_Input( $this->options(), $input_constructor_args ); |
|
572 | + $result = new EE_Checkbox_Multi_Input($this->options(), $input_constructor_args); |
|
573 | 573 | break; |
574 | 574 | // Date |
575 | 575 | case EEM_Question::QST_type_date : |
576 | - $result = new EE_Datepicker_Input( $input_constructor_args ); |
|
576 | + $result = new EE_Datepicker_Input($input_constructor_args); |
|
577 | 577 | break; |
578 | 578 | case EEM_Question::QST_type_html_textarea : |
579 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_Simple_HTML_Validation_Strategy(); |
|
580 | - $result = new EE_Text_Area_Input( $input_constructor_args ); |
|
581 | - $result->remove_validation_strategy( 'EE_Plaintext_Validation_Strategy' ); |
|
579 | + $input_constructor_args['validation_strategies'][] = new EE_Simple_HTML_Validation_Strategy(); |
|
580 | + $result = new EE_Text_Area_Input($input_constructor_args); |
|
581 | + $result->remove_validation_strategy('EE_Plaintext_Validation_Strategy'); |
|
582 | 582 | break; |
583 | 583 | case EEM_Question::QST_type_email : |
584 | - $result = new EE_Email_Input( $input_constructor_args ); |
|
584 | + $result = new EE_Email_Input($input_constructor_args); |
|
585 | 585 | break; |
586 | 586 | case EEM_Question::QST_type_us_phone : |
587 | - $result = new EE_Phone_Input( $input_constructor_args ); |
|
587 | + $result = new EE_Phone_Input($input_constructor_args); |
|
588 | 588 | break; |
589 | 589 | case EEM_Question::QST_type_int : |
590 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_Int_Validation_Strategy(); |
|
591 | - $result = new EE_Text_Input( $input_constructor_args ); |
|
590 | + $input_constructor_args['validation_strategies'][] = new EE_Int_Validation_Strategy(); |
|
591 | + $result = new EE_Text_Input($input_constructor_args); |
|
592 | 592 | break; |
593 | 593 | case EEM_Question::QST_type_decimal : |
594 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_Float_Validation_Strategy(); |
|
595 | - $result = new EE_Text_Input( $input_constructor_args ); |
|
594 | + $input_constructor_args['validation_strategies'][] = new EE_Float_Validation_Strategy(); |
|
595 | + $result = new EE_Text_Input($input_constructor_args); |
|
596 | 596 | break; |
597 | 597 | case EEM_Question::QST_type_url : |
598 | - $input_constructor_args[ 'validation_strategies' ][] = new EE_URL_Validation_Strategy(); |
|
599 | - $result = new EE_Text_Input( $input_constructor_args ); |
|
598 | + $input_constructor_args['validation_strategies'][] = new EE_URL_Validation_Strategy(); |
|
599 | + $result = new EE_Text_Input($input_constructor_args); |
|
600 | 600 | break; |
601 | 601 | case EEM_Question::QST_type_year : |
602 | 602 | $result = new EE_Year_Input( |
603 | 603 | $input_constructor_args, |
604 | - apply_filters( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__year_question__four_digit', true, $this ), |
|
605 | - apply_filters( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__year_question__early_range', 100, $this ), |
|
606 | - apply_filters( 'FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__year_question__end_range', 100, $this ) |
|
604 | + apply_filters('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__year_question__four_digit', true, $this), |
|
605 | + apply_filters('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__year_question__early_range', 100, $this), |
|
606 | + apply_filters('FHEE__EE_SPCO_Reg_Step_Attendee_Information___generate_question_input__year_question__end_range', 100, $this) |
|
607 | 607 | ); |
608 | 608 | break; |
609 | 609 | case EEM_Question::QST_type_multi_select : |
610 | - $result = new EE_Select_Multiple_Input( $this->options(), $input_constructor_args ); |
|
610 | + $result = new EE_Select_Multiple_Input($this->options(), $input_constructor_args); |
|
611 | 611 | break; |
612 | 612 | // fallback |
613 | 613 | default : |
@@ -618,12 +618,12 @@ discard block |
||
618 | 618 | $this, |
619 | 619 | $input_constructor_args |
620 | 620 | ); |
621 | - if( ! $default_input ){ |
|
622 | - $default_input = new EE_Text_Input( $input_constructor_args ); |
|
621 | + if ( ! $default_input) { |
|
622 | + $default_input = new EE_Text_Input($input_constructor_args); |
|
623 | 623 | } |
624 | 624 | $result = $default_input; |
625 | 625 | } |
626 | - return apply_filters( 'FHEE__EE_Question__generate_form_input__return', $result, $registration, $this, $answer ); |
|
626 | + return apply_filters('FHEE__EE_Question__generate_form_input__return', $result, $registration, $this, $answer); |
|
627 | 627 | } |
628 | 628 | |
629 | 629 |
@@ -369,7 +369,7 @@ discard block |
||
369 | 369 | * Adds an option for this question. Note: if the option were previously associated with a different |
370 | 370 | * Question, that relationship will be overwritten. |
371 | 371 | * @param EE_Question_Option $option |
372 | - * @return boolean success |
|
372 | + * @return EE_Base_Class success |
|
373 | 373 | */ |
374 | 374 | public function add_option( EE_Question_Option $option ) { |
375 | 375 | return $this->_add_relation_to( $option, 'Question_Option' ); |
@@ -392,7 +392,7 @@ discard block |
||
392 | 392 | /** |
393 | 393 | * Marks the option as deleted. |
394 | 394 | * @param EE_Question_Option $option |
395 | - * @return boolean success |
|
395 | + * @return EE_Base_Class success |
|
396 | 396 | */ |
397 | 397 | public function remove_option( EE_Question_Option $option ) { |
398 | 398 | return $this->_remove_relation_to( $option, 'Question_Option' ); |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | -if ( ! defined( 'EVENT_ESPRESSO_VERSION' ) ) { |
|
4 | - exit( 'No direct script access allowed' ); |
|
3 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
4 | + exit('No direct script access allowed'); |
|
5 | 5 | } |
6 | 6 | |
7 | 7 | |
@@ -134,14 +134,14 @@ discard block |
||
134 | 134 | * @return EE_Messenger_Collection |
135 | 135 | */ |
136 | 136 | protected function _initialize_collections() { |
137 | - if ( $this->_initialized ) { |
|
137 | + if ($this->_initialized) { |
|
138 | 138 | return; |
139 | 139 | } |
140 | 140 | $this->_initialized = true; |
141 | 141 | $this->_messenger_collection_loader->load_messengers_from_folder(); |
142 | 142 | $this->_message_type_collection_loader->load_message_types_from_folder(); |
143 | 143 | $this->_set_active_messengers_and_message_types(); |
144 | - $this->get_has_activated_messengers_option( true ); |
|
144 | + $this->get_has_activated_messengers_option(true); |
|
145 | 145 | } |
146 | 146 | |
147 | 147 | |
@@ -170,8 +170,8 @@ discard block |
||
170 | 170 | * @param string $messenger_name |
171 | 171 | * @return \EE_messenger |
172 | 172 | */ |
173 | - public function get_messenger( $messenger_name ) { |
|
174 | - return $this->messenger_collection()->get_by_info( $messenger_name ); |
|
173 | + public function get_messenger($messenger_name) { |
|
174 | + return $this->messenger_collection()->get_by_info($messenger_name); |
|
175 | 175 | } |
176 | 176 | |
177 | 177 | |
@@ -182,9 +182,9 @@ discard block |
||
182 | 182 | * @param string $messenger |
183 | 183 | * @return EE_messenger | null |
184 | 184 | */ |
185 | - public function get_active_messenger( $messenger ) { |
|
185 | + public function get_active_messenger($messenger) { |
|
186 | 186 | $this->_initialize_collections(); |
187 | - return ! empty( $this->_active_messengers[ $messenger ] ) ? $this->_active_messengers[ $messenger ] : null; |
|
187 | + return ! empty($this->_active_messengers[$messenger]) ? $this->_active_messengers[$messenger] : null; |
|
188 | 188 | } |
189 | 189 | |
190 | 190 | |
@@ -193,11 +193,11 @@ discard block |
||
193 | 193 | * @return \EE_messenger[] |
194 | 194 | */ |
195 | 195 | public function installed_messengers() { |
196 | - if ( empty( $this->_installed_messengers ) ) { |
|
196 | + if (empty($this->_installed_messengers)) { |
|
197 | 197 | $this->_installed_messengers = array(); |
198 | 198 | $this->messenger_collection()->rewind(); |
199 | - while ( $this->messenger_collection()->valid() ) { |
|
200 | - $this->_installed_messengers[ $this->messenger_collection()->current()->name ] = $this->messenger_collection()->current(); |
|
199 | + while ($this->messenger_collection()->valid()) { |
|
200 | + $this->_installed_messengers[$this->messenger_collection()->current()->name] = $this->messenger_collection()->current(); |
|
201 | 201 | $this->messenger_collection()->next(); |
202 | 202 | } |
203 | 203 | } |
@@ -211,14 +211,14 @@ discard block |
||
211 | 211 | * @return \EE_messenger |
212 | 212 | * @throws \EE_Error |
213 | 213 | */ |
214 | - public function valid_messenger( $messenger_name ) { |
|
215 | - $messenger = $this->get_messenger( $messenger_name ); |
|
216 | - if ( $messenger instanceof EE_messenger ) { |
|
214 | + public function valid_messenger($messenger_name) { |
|
215 | + $messenger = $this->get_messenger($messenger_name); |
|
216 | + if ($messenger instanceof EE_messenger) { |
|
217 | 217 | return $messenger; |
218 | 218 | } |
219 | 219 | throw new EE_Error( |
220 | 220 | sprintf( |
221 | - __( 'The "%1$s" messenger is either invalid or not installed', 'event_espresso' ), |
|
221 | + __('The "%1$s" messenger is either invalid or not installed', 'event_espresso'), |
|
222 | 222 | $messenger_name |
223 | 223 | ) |
224 | 224 | ); |
@@ -250,8 +250,8 @@ discard block |
||
250 | 250 | * @param string $message_type_name |
251 | 251 | * @return \EE_message_type |
252 | 252 | */ |
253 | - public function get_message_type( $message_type_name ) { |
|
254 | - return $this->message_type_collection()->get_by_info( $message_type_name ); |
|
253 | + public function get_message_type($message_type_name) { |
|
254 | + return $this->message_type_collection()->get_by_info($message_type_name); |
|
255 | 255 | } |
256 | 256 | |
257 | 257 | |
@@ -263,9 +263,9 @@ discard block |
||
263 | 263 | * @param string $message_type_name |
264 | 264 | * @return \EE_message_type|null |
265 | 265 | */ |
266 | - public function get_active_message_type_for_messenger( $messenger_name, $message_type_name ) { |
|
267 | - return $this->is_message_type_active_for_messenger( $messenger_name, $message_type_name ) |
|
268 | - ? $this->get_message_type( $message_type_name ) |
|
266 | + public function get_active_message_type_for_messenger($messenger_name, $message_type_name) { |
|
267 | + return $this->is_message_type_active_for_messenger($messenger_name, $message_type_name) |
|
268 | + ? $this->get_message_type($message_type_name) |
|
269 | 269 | : null; |
270 | 270 | } |
271 | 271 | |
@@ -279,9 +279,9 @@ discard block |
||
279 | 279 | * |
280 | 280 | * @return bool |
281 | 281 | */ |
282 | - public function is_message_type_active_for_messenger( $messenger_name, $message_type_name ) { |
|
282 | + public function is_message_type_active_for_messenger($messenger_name, $message_type_name) { |
|
283 | 283 | $this->_initialize_collections(); |
284 | - return ! empty( $this->_active_message_types[ $messenger_name ]['settings'][ $messenger_name . '-message_types' ][ $message_type_name ] ); |
|
284 | + return ! empty($this->_active_message_types[$messenger_name]['settings'][$messenger_name.'-message_types'][$message_type_name]); |
|
285 | 285 | } |
286 | 286 | |
287 | 287 | |
@@ -292,9 +292,9 @@ discard block |
||
292 | 292 | * @param string $messenger_name the name of the messenger to check if active. |
293 | 293 | * @return bool |
294 | 294 | */ |
295 | - public function is_messenger_active( $messenger_name ) { |
|
295 | + public function is_messenger_active($messenger_name) { |
|
296 | 296 | $this->_initialize_collections(); |
297 | - return ! empty( $this->_active_message_types[ $messenger_name ] ); |
|
297 | + return ! empty($this->_active_message_types[$messenger_name]); |
|
298 | 298 | } |
299 | 299 | |
300 | 300 | |
@@ -305,11 +305,11 @@ discard block |
||
305 | 305 | * @param string $message_type_name The slug of the message type getting the settings for. |
306 | 306 | * @return array |
307 | 307 | */ |
308 | - public function get_message_type_settings_for_messenger( $messenger_name, $message_type_name ) { |
|
308 | + public function get_message_type_settings_for_messenger($messenger_name, $message_type_name) { |
|
309 | 309 | $settings = array(); |
310 | - if ( $this->is_message_type_active_for_messenger( $messenger_name, $message_type_name ) ) { |
|
311 | - $settings = isset( $this->_active_message_types[ $messenger_name ]['settings'][ $messenger_name . '-message_types' ][ $message_type_name ]['settings'] ) |
|
312 | - ? $this->_active_message_types[ $messenger_name ]['settings'][ $messenger_name . '-message_types' ][ $message_type_name ]['settings'] |
|
310 | + if ($this->is_message_type_active_for_messenger($messenger_name, $message_type_name)) { |
|
311 | + $settings = isset($this->_active_message_types[$messenger_name]['settings'][$messenger_name.'-message_types'][$message_type_name]['settings']) |
|
312 | + ? $this->_active_message_types[$messenger_name]['settings'][$messenger_name.'-message_types'][$message_type_name]['settings'] |
|
313 | 313 | : array(); |
314 | 314 | } |
315 | 315 | return $settings; |
@@ -324,11 +324,11 @@ discard block |
||
324 | 324 | * @param string $messenger_name |
325 | 325 | * @return bool |
326 | 326 | */ |
327 | - public function messenger_has_active_message_types( $messenger_name ) { |
|
327 | + public function messenger_has_active_message_types($messenger_name) { |
|
328 | 328 | $this->_initialize_collections(); |
329 | 329 | return |
330 | - ! empty( $this->_active_message_types[ $messenger_name ] ) |
|
331 | - && ! empty( $this->_active_message_types[ $messenger_name ]['settings'][ $messenger_name . '-message_types' ] ); |
|
330 | + ! empty($this->_active_message_types[$messenger_name]) |
|
331 | + && ! empty($this->_active_message_types[$messenger_name]['settings'][$messenger_name.'-message_types']); |
|
332 | 332 | } |
333 | 333 | |
334 | 334 | |
@@ -341,15 +341,15 @@ discard block |
||
341 | 341 | * @param string $messenger_name The messenger being checked |
342 | 342 | * @return EE_message_type[] (or empty array if none present) |
343 | 343 | */ |
344 | - public function get_active_message_types_for_messenger( $messenger_name ) { |
|
344 | + public function get_active_message_types_for_messenger($messenger_name) { |
|
345 | 345 | $message_types = array(); |
346 | - if ( ! $this->messenger_has_active_message_types( $messenger_name ) ) { |
|
346 | + if ( ! $this->messenger_has_active_message_types($messenger_name)) { |
|
347 | 347 | return $message_types; |
348 | 348 | } |
349 | 349 | $installed_message_types = $this->installed_message_types(); |
350 | - foreach ( $installed_message_types as $message_type_name => $message_type ) { |
|
351 | - if ( $this->is_message_type_active_for_messenger( $messenger_name, $message_type_name ) ) { |
|
352 | - $message_types[ $message_type_name ] = $message_type; |
|
350 | + foreach ($installed_message_types as $message_type_name => $message_type) { |
|
351 | + if ($this->is_message_type_active_for_messenger($messenger_name, $message_type_name)) { |
|
352 | + $message_types[$message_type_name] = $message_type; |
|
353 | 353 | } |
354 | 354 | } |
355 | 355 | return $message_types; |
@@ -367,12 +367,12 @@ discard block |
||
367 | 367 | public function list_of_active_message_types() { |
368 | 368 | $active_message_type_names = array(); |
369 | 369 | $this->_initialize_collections(); |
370 | - foreach ( $this->_active_message_types as $messenger => $messenger_settings ) { |
|
371 | - if ( ! isset( $messenger_settings['settings'][ $messenger . '-message_types' ] ) ) { |
|
370 | + foreach ($this->_active_message_types as $messenger => $messenger_settings) { |
|
371 | + if ( ! isset($messenger_settings['settings'][$messenger.'-message_types'])) { |
|
372 | 372 | continue; |
373 | 373 | } |
374 | - foreach ( $messenger_settings['settings'][ $messenger . '-message_types' ] as $message_type_name => $message_type_config ) { |
|
375 | - if ( ! in_array( $message_type_name, $active_message_type_names ) ) { |
|
374 | + foreach ($messenger_settings['settings'][$messenger.'-message_types'] as $message_type_name => $message_type_config) { |
|
375 | + if ( ! in_array($message_type_name, $active_message_type_names)) { |
|
376 | 376 | $active_message_type_names[] = $message_type_name; |
377 | 377 | } |
378 | 378 | } |
@@ -392,9 +392,9 @@ discard block |
||
392 | 392 | $active_message_types = array(); |
393 | 393 | $installed_message_types = $this->installed_message_types(); |
394 | 394 | $active_message_type_names = $this->list_of_active_message_types(); |
395 | - foreach ( $active_message_type_names as $active_message_type_name ) { |
|
396 | - if ( isset( $installed_message_types[ $active_message_type_name ] ) ) { |
|
397 | - $active_message_types[ $active_message_type_name ] = $installed_message_types[ $active_message_type_name ]; |
|
395 | + foreach ($active_message_type_names as $active_message_type_name) { |
|
396 | + if (isset($installed_message_types[$active_message_type_name])) { |
|
397 | + $active_message_types[$active_message_type_name] = $installed_message_types[$active_message_type_name]; |
|
398 | 398 | } |
399 | 399 | } |
400 | 400 | return $active_message_types; |
@@ -406,10 +406,10 @@ discard block |
||
406 | 406 | * @return \EE_message_type[] |
407 | 407 | */ |
408 | 408 | public function installed_message_types() { |
409 | - if ( empty( $this->_installed_message_types ) ) { |
|
409 | + if (empty($this->_installed_message_types)) { |
|
410 | 410 | $this->message_type_collection()->rewind(); |
411 | - while ( $this->message_type_collection()->valid() ) { |
|
412 | - $this->_installed_message_types[ $this->message_type_collection()->current()->name ] = $this->message_type_collection()->current(); |
|
411 | + while ($this->message_type_collection()->valid()) { |
|
412 | + $this->_installed_message_types[$this->message_type_collection()->current()->name] = $this->message_type_collection()->current(); |
|
413 | 413 | $this->message_type_collection()->next(); |
414 | 414 | } |
415 | 415 | } |
@@ -422,14 +422,14 @@ discard block |
||
422 | 422 | * @return \EE_message_type |
423 | 423 | * @throws \EE_Error |
424 | 424 | */ |
425 | - public function valid_message_type( $message_type_name ) { |
|
426 | - $message_type = $this->get_message_type( $message_type_name ); |
|
427 | - if ( $message_type instanceof EE_message_type ) { |
|
425 | + public function valid_message_type($message_type_name) { |
|
426 | + $message_type = $this->get_message_type($message_type_name); |
|
427 | + if ($message_type instanceof EE_message_type) { |
|
428 | 428 | return $message_type; |
429 | 429 | } |
430 | 430 | throw new EE_Error( |
431 | 431 | sprintf( |
432 | - __( 'The "%1$s" message type is either invalid or not installed', 'event_espresso' ), |
|
432 | + __('The "%1$s" message type is either invalid or not installed', 'event_espresso'), |
|
433 | 433 | $message_type_name |
434 | 434 | ) |
435 | 435 | ); |
@@ -445,9 +445,9 @@ discard block |
||
445 | 445 | * @return boolean |
446 | 446 | * @throws \EE_Error |
447 | 447 | */ |
448 | - public function valid_message_type_for_messenger( EE_messenger $messenger, $message_type_name ) { |
|
448 | + public function valid_message_type_for_messenger(EE_messenger $messenger, $message_type_name) { |
|
449 | 449 | $valid_message_types = $messenger->get_valid_message_types(); |
450 | - if ( ! in_array( $message_type_name, $valid_message_types ) ) { |
|
450 | + if ( ! in_array($message_type_name, $valid_message_types)) { |
|
451 | 451 | throw new EE_Error( |
452 | 452 | sprintf( |
453 | 453 | __( |
@@ -474,9 +474,9 @@ discard block |
||
474 | 474 | * |
475 | 475 | * @return array |
476 | 476 | */ |
477 | - public function get_active_messengers_option( $reset = false) { |
|
478 | - if ( $reset ) { |
|
479 | - $this->_active_message_types = get_option( 'ee_active_messengers', array() ); |
|
477 | + public function get_active_messengers_option($reset = false) { |
|
478 | + if ($reset) { |
|
479 | + $this->_active_message_types = get_option('ee_active_messengers', array()); |
|
480 | 480 | } |
481 | 481 | return $this->_active_message_types; |
482 | 482 | } |
@@ -490,11 +490,11 @@ discard block |
||
490 | 490 | * representing this data is used. |
491 | 491 | * @return bool FALSE if not updated, TRUE if updated. |
492 | 492 | */ |
493 | - public function update_active_messengers_option( $active_messenger_settings = array() ) { |
|
494 | - $active_messenger_settings = empty( $active_messenger_settings ) ? $this->_active_message_types : $active_messenger_settings; |
|
493 | + public function update_active_messengers_option($active_messenger_settings = array()) { |
|
494 | + $active_messenger_settings = empty($active_messenger_settings) ? $this->_active_message_types : $active_messenger_settings; |
|
495 | 495 | //make sure _active_message_types is updated (this is the internal cache for the settings). |
496 | 496 | $this->_active_message_types = $active_messenger_settings; |
497 | - return update_option( 'ee_active_messengers', $active_messenger_settings ); |
|
497 | + return update_option('ee_active_messengers', $active_messenger_settings); |
|
498 | 498 | } |
499 | 499 | |
500 | 500 | |
@@ -509,9 +509,9 @@ discard block |
||
509 | 509 | * |
510 | 510 | * @return array |
511 | 511 | */ |
512 | - public function get_has_activated_messengers_option( $reset = false ) { |
|
513 | - if ( $reset ) { |
|
514 | - $this->_has_activated_messengers_and_message_types = get_option( 'ee_has_activated_messenger', array() ); |
|
512 | + public function get_has_activated_messengers_option($reset = false) { |
|
513 | + if ($reset) { |
|
514 | + $this->_has_activated_messengers_and_message_types = get_option('ee_has_activated_messenger', array()); |
|
515 | 515 | } |
516 | 516 | return $this->_has_activated_messengers_and_message_types; |
517 | 517 | } |
@@ -526,11 +526,11 @@ discard block |
||
526 | 526 | * |
527 | 527 | * @return bool FALSE if not updated, TRUE if updated. |
528 | 528 | */ |
529 | - public function update_has_activated_messengers_option( $has_activated_messengers = array() ) { |
|
530 | - $has_activated_messengers = empty( $has_activated_messengers ) |
|
529 | + public function update_has_activated_messengers_option($has_activated_messengers = array()) { |
|
530 | + $has_activated_messengers = empty($has_activated_messengers) |
|
531 | 531 | ? $this->_has_activated_messengers_and_message_types |
532 | 532 | : $has_activated_messengers; |
533 | - return update_option( 'ee_has_activated_messenger', $has_activated_messengers ); |
|
533 | + return update_option('ee_has_activated_messenger', $has_activated_messengers); |
|
534 | 534 | } |
535 | 535 | |
536 | 536 | |
@@ -552,8 +552,8 @@ discard block |
||
552 | 552 | //echo "\n\n " . __LINE__ . ") " . __METHOD__ . "() \n"; |
553 | 553 | // list of activated messengers as set via the admin |
554 | 554 | // note calling `get_active_messengers_options` also initializes the _active_message_types property. |
555 | - $this->get_active_messengers_option( true ); |
|
556 | - $this->ensure_messengers_are_active( array(), false, true ); |
|
555 | + $this->get_active_messengers_option(true); |
|
556 | + $this->ensure_messengers_are_active(array(), false, true); |
|
557 | 557 | $this->update_active_messengers_option(); |
558 | 558 | $this->update_has_activated_messengers_option(); |
559 | 559 | } |
@@ -571,11 +571,11 @@ discard block |
||
571 | 571 | * @param bool $update_option Whether to update the option in the db or not. |
572 | 572 | * @return boolean true if either already active or successfully activated. |
573 | 573 | */ |
574 | - public function ensure_messenger_is_active( $messenger_name, $update_option = true ) { |
|
575 | - if ( ! isset( $this->_active_messengers[ $messenger_name ] ) ) { |
|
574 | + public function ensure_messenger_is_active($messenger_name, $update_option = true) { |
|
575 | + if ( ! isset($this->_active_messengers[$messenger_name])) { |
|
576 | 576 | try { |
577 | - $this->activate_messenger( $messenger_name, array(), $update_option ); |
|
578 | - } catch( EE_Error $e ) { |
|
577 | + $this->activate_messenger($messenger_name, array(), $update_option); |
|
578 | + } catch (EE_Error $e) { |
|
579 | 579 | EE_Error::add_error( |
580 | 580 | $e->getMessage(), |
581 | 581 | __FILE__, |
@@ -602,25 +602,25 @@ discard block |
||
602 | 602 | * and a messenger is indicated as active, but is NOT installed, then it will automatically be |
603 | 603 | * deactivated. |
604 | 604 | */ |
605 | - public function ensure_messengers_are_active( $messenger_names = array(), $update_option = true, $verify = false ) { |
|
606 | - $messenger_names = empty( $messenger_names ) ? array_keys( $this->_active_message_types ) : $messenger_names; |
|
605 | + public function ensure_messengers_are_active($messenger_names = array(), $update_option = true, $verify = false) { |
|
606 | + $messenger_names = empty($messenger_names) ? array_keys($this->_active_message_types) : $messenger_names; |
|
607 | 607 | |
608 | 608 | $not_installed = array(); |
609 | - foreach( $messenger_names as $messenger_name ) { |
|
610 | - if ( $verify && ! $this->messenger_collection()->has_by_name( $messenger_name ) ) { |
|
609 | + foreach ($messenger_names as $messenger_name) { |
|
610 | + if ($verify && ! $this->messenger_collection()->has_by_name($messenger_name)) { |
|
611 | 611 | $not_installed[] = $messenger_name; |
612 | - $this->deactivate_messenger( $messenger_name ); |
|
612 | + $this->deactivate_messenger($messenger_name); |
|
613 | 613 | continue; |
614 | 614 | } |
615 | - $this->ensure_messenger_is_active( $messenger_name, $update_option ); |
|
615 | + $this->ensure_messenger_is_active($messenger_name, $update_option); |
|
616 | 616 | } |
617 | 617 | |
618 | - if ( ! empty( $not_installed_messenger ) ) { |
|
618 | + if ( ! empty($not_installed_messenger)) { |
|
619 | 619 | EE_Error::add_error( |
620 | 620 | sprintf( |
621 | - __( 'The following messengers are either not installed or are invalid:%1$s %2$s', 'event_espresso' ), |
|
621 | + __('The following messengers are either not installed or are invalid:%1$s %2$s', 'event_espresso'), |
|
622 | 622 | '<br />', |
623 | - implode( ', ', $not_installed_messenger ) |
|
623 | + implode(', ', $not_installed_messenger) |
|
624 | 624 | ), |
625 | 625 | __FILE__, __FUNCTION__, __LINE__ |
626 | 626 | ); |
@@ -639,18 +639,18 @@ discard block |
||
639 | 639 | * @return bool Returns true if already is active or if was activated successfully. |
640 | 640 | * @throws \EE_Error |
641 | 641 | */ |
642 | - public function ensure_message_type_is_active( $message_type_name, $messenger_name, $update_option = true ) { |
|
642 | + public function ensure_message_type_is_active($message_type_name, $messenger_name, $update_option = true) { |
|
643 | 643 | // grab the messenger to work with. |
644 | - $messenger = $this->valid_messenger( $messenger_name ); |
|
645 | - if ( $this->valid_message_type_for_messenger( $messenger, $message_type_name ) ) { |
|
644 | + $messenger = $this->valid_messenger($messenger_name); |
|
645 | + if ($this->valid_message_type_for_messenger($messenger, $message_type_name)) { |
|
646 | 646 | //ensure messenger is active (that's an inherent coupling between active message types and the |
647 | 647 | //messenger they are being activated for. |
648 | 648 | try { |
649 | - if ( ! $this->is_message_type_active_for_messenger( $messenger_name, $message_type_name ) ) { |
|
649 | + if ( ! $this->is_message_type_active_for_messenger($messenger_name, $message_type_name)) { |
|
650 | 650 | //all is good so let's just get it active |
651 | - $this->activate_messenger( $messenger_name, array( $message_type_name ), $update_option ); |
|
651 | + $this->activate_messenger($messenger_name, array($message_type_name), $update_option); |
|
652 | 652 | } |
653 | - } catch( EE_Error $e ) { |
|
653 | + } catch (EE_Error $e) { |
|
654 | 654 | EE_Error::add_error( |
655 | 655 | $e->getMessage(), |
656 | 656 | __FILE__, |
@@ -674,14 +674,14 @@ discard block |
||
674 | 674 | * @param string $messenger_name The name of the messenger that the message types are to be activated on. |
675 | 675 | * @param bool $update_option Whether to persist the activation to the database or not (default true). |
676 | 676 | */ |
677 | - public function ensure_message_types_are_active( $message_type_names, $messenger_name, $update_option = true ) { |
|
677 | + public function ensure_message_types_are_active($message_type_names, $messenger_name, $update_option = true) { |
|
678 | 678 | $message_type_names = (array) $message_type_names; |
679 | - foreach ( $message_type_names as $message_type_name ) { |
|
679 | + foreach ($message_type_names as $message_type_name) { |
|
680 | 680 | // note, intentionally not updating option here because we're in a loop. |
681 | 681 | // We'll follow the instructions of the incoming $update_option argument after the loop. |
682 | - $this->ensure_message_type_is_active( $message_type_name, $messenger_name, false ); |
|
682 | + $this->ensure_message_type_is_active($message_type_name, $messenger_name, false); |
|
683 | 683 | } |
684 | - if ( $update_option ) { |
|
684 | + if ($update_option) { |
|
685 | 685 | $this->update_active_messengers_option(); |
686 | 686 | $this->update_has_activated_messengers_option(); |
687 | 687 | } |
@@ -708,24 +708,24 @@ discard block |
||
708 | 708 | ) { |
709 | 709 | $templates = array(); |
710 | 710 | // grab the messenger to work with. |
711 | - $messenger = $this->messenger_collection()->get_by_info( $messenger_name ); |
|
711 | + $messenger = $this->messenger_collection()->get_by_info($messenger_name); |
|
712 | 712 | // it's inactive. Activate it. |
713 | - if ( $messenger instanceof EE_messenger ) { |
|
714 | - $this->_active_messengers[ $messenger->name ] = $messenger; |
|
713 | + if ($messenger instanceof EE_messenger) { |
|
714 | + $this->_active_messengers[$messenger->name] = $messenger; |
|
715 | 715 | //activate incoming message types set to be activated with messenger. |
716 | - $message_type_names = $this->_activate_message_types( $messenger, $message_type_names ); |
|
716 | + $message_type_names = $this->_activate_message_types($messenger, $message_type_names); |
|
717 | 717 | // setup any initial settings for the messenger if necessary. |
718 | - $this->add_settings_for_messenger( $messenger->name ); |
|
719 | - if ( $update_active_messengers_option ) { |
|
718 | + $this->add_settings_for_messenger($messenger->name); |
|
719 | + if ($update_active_messengers_option) { |
|
720 | 720 | $this->update_active_messengers_option(); |
721 | 721 | $this->update_has_activated_messengers_option(); |
722 | 722 | } |
723 | 723 | //generate new templates if necessary and ensure all related templates that are already in the database are |
724 | 724 | //marked active. Note, this will also deactivate a message type for a messenger if the template |
725 | 725 | //cannot be successfully created during its attempt (only happens for global template attempts). |
726 | - if ( ! empty( $message_type_names ) ) { |
|
727 | - $templates = EEH_MSG_Template::generate_new_templates( $messenger->name, $message_type_names, 0, true ); |
|
728 | - EEH_MSG_Template::update_to_active( array( $messenger->name ), $message_type_names ); |
|
726 | + if ( ! empty($message_type_names)) { |
|
727 | + $templates = EEH_MSG_Template::generate_new_templates($messenger->name, $message_type_names, 0, true); |
|
728 | + EEH_MSG_Template::update_to_active(array($messenger->name), $message_type_names); |
|
729 | 729 | } |
730 | 730 | } |
731 | 731 | return $templates; |
@@ -744,29 +744,29 @@ discard block |
||
744 | 744 | * |
745 | 745 | * @return array |
746 | 746 | */ |
747 | - protected function _activate_message_types( EE_messenger $messenger, $message_type_names = array() ) { |
|
747 | + protected function _activate_message_types(EE_messenger $messenger, $message_type_names = array()) { |
|
748 | 748 | //If $message_type_names is empty, AND $this->_active_message_types is empty, then that means |
749 | 749 | //things have never been initialized (which should happen on EEH_Activation::generate_message_templates). |
750 | 750 | //So ONLY then do we need to actually grab defaults and cycle through them. Otherwise we |
751 | 751 | //only override _active_message_types when an explicit array of $message_type_names has been provided. |
752 | - $message_type_names = empty( $message_type_names ) && ! isset( $this->_active_message_types[ $messenger->name ] ) |
|
752 | + $message_type_names = empty($message_type_names) && ! isset($this->_active_message_types[$messenger->name]) |
|
753 | 753 | ? $messenger->get_default_message_types() |
754 | 754 | : (array) $message_type_names; |
755 | 755 | |
756 | 756 | //now we ALWAYS need to make sure that the messenger is active for the message types we're activating! |
757 | - if ( ! isset( $this->_active_message_types[ $messenger->name ] ) ) { |
|
758 | - $this->_active_message_types[ $messenger->name ]['settings'] = array(); |
|
757 | + if ( ! isset($this->_active_message_types[$messenger->name])) { |
|
758 | + $this->_active_message_types[$messenger->name]['settings'] = array(); |
|
759 | 759 | } |
760 | 760 | |
761 | - if ( $message_type_names ) { |
|
761 | + if ($message_type_names) { |
|
762 | 762 | // cycle thru message types |
763 | - foreach ( $message_type_names as $message_type_name ) { |
|
763 | + foreach ($message_type_names as $message_type_name) { |
|
764 | 764 | //only register the message type as active IF it isn't already active! |
765 | 765 | //and if its actually installed. |
766 | 766 | if ( |
767 | - ! $this->is_message_type_active_for_messenger( $messenger->name, $message_type_name ) |
|
767 | + ! $this->is_message_type_active_for_messenger($messenger->name, $message_type_name) |
|
768 | 768 | ) { |
769 | - $this->add_settings_for_message_type( $messenger->name, $message_type_name ); |
|
769 | + $this->add_settings_for_message_type($messenger->name, $message_type_name); |
|
770 | 770 | $this->_set_messenger_has_activated_message_type( |
771 | 771 | $messenger, |
772 | 772 | $message_type_name |
@@ -789,24 +789,24 @@ discard block |
||
789 | 789 | * @param string $message_type_name The name of the message type adding the settings for |
790 | 790 | * @param array $new_settings Any new settings being set for the message type and messenger |
791 | 791 | */ |
792 | - public function add_settings_for_message_type( $messenger_name, $message_type_name, $new_settings = array() ) { |
|
792 | + public function add_settings_for_message_type($messenger_name, $message_type_name, $new_settings = array()) { |
|
793 | 793 | // get installed message type from collection |
794 | - $message_type = $this->message_type_collection()->get_by_info( $message_type_name ); |
|
795 | - $existing_settings = $this->get_message_type_settings_for_messenger( $messenger_name, $message_type_name ); |
|
794 | + $message_type = $this->message_type_collection()->get_by_info($message_type_name); |
|
795 | + $existing_settings = $this->get_message_type_settings_for_messenger($messenger_name, $message_type_name); |
|
796 | 796 | //we need to setup any initial settings for message types |
797 | - if ( $message_type instanceof EE_message_type ) { |
|
797 | + if ($message_type instanceof EE_message_type) { |
|
798 | 798 | $default_settings = $message_type->get_admin_settings_fields(); |
799 | - foreach ( $default_settings as $field => $values ) { |
|
800 | - if ( isset( $new_settings[ $field ] ) ) { |
|
801 | - $existing_settings[ $field ] = $new_settings[ $field ]; |
|
799 | + foreach ($default_settings as $field => $values) { |
|
800 | + if (isset($new_settings[$field])) { |
|
801 | + $existing_settings[$field] = $new_settings[$field]; |
|
802 | 802 | continue; |
803 | 803 | } |
804 | - if ( ! isset( $existing_settings[ $field ] ) ) { |
|
805 | - $existing_settings[ $field ] = $values['default']; |
|
804 | + if ( ! isset($existing_settings[$field])) { |
|
805 | + $existing_settings[$field] = $values['default']; |
|
806 | 806 | } |
807 | 807 | } |
808 | 808 | } |
809 | - $this->_active_message_types[ $messenger_name ]['settings'][ $messenger_name . '-message_types' ][ $message_type_name ]['settings'] = $existing_settings; |
|
809 | + $this->_active_message_types[$messenger_name]['settings'][$messenger_name.'-message_types'][$message_type_name]['settings'] = $existing_settings; |
|
810 | 810 | } |
811 | 811 | |
812 | 812 | |
@@ -819,14 +819,14 @@ discard block |
||
819 | 819 | * @param \EE_messenger $messenger |
820 | 820 | * @param string $message_type_name |
821 | 821 | */ |
822 | - protected function _set_messenger_has_activated_message_type( EE_messenger $messenger, $message_type_name ) { |
|
822 | + protected function _set_messenger_has_activated_message_type(EE_messenger $messenger, $message_type_name) { |
|
823 | 823 | // make sure this messenger has a record in the has_activated array |
824 | - if ( ! isset( $this->_has_activated_messengers_and_message_types[ $messenger->name ] ) ) { |
|
825 | - $this->_has_activated_messengers_and_message_types[ $messenger->name ] = array(); |
|
824 | + if ( ! isset($this->_has_activated_messengers_and_message_types[$messenger->name])) { |
|
825 | + $this->_has_activated_messengers_and_message_types[$messenger->name] = array(); |
|
826 | 826 | } |
827 | 827 | // check if message type has already been added |
828 | - if ( ! in_array( $message_type_name, $this->_has_activated_messengers_and_message_types[ $messenger->name ] ) ) { |
|
829 | - $this->_has_activated_messengers_and_message_types[ $messenger->name ][] = $message_type_name; |
|
828 | + if ( ! in_array($message_type_name, $this->_has_activated_messengers_and_message_types[$messenger->name])) { |
|
829 | + $this->_has_activated_messengers_and_message_types[$messenger->name][] = $message_type_name; |
|
830 | 830 | } |
831 | 831 | } |
832 | 832 | |
@@ -841,20 +841,20 @@ discard block |
||
841 | 841 | * @param string $messenger_name The name of the messenger the settings is being added for. |
842 | 842 | * @param array $new_settings An array of settings to update the existing settings. |
843 | 843 | */ |
844 | - public function add_settings_for_messenger( $messenger_name, $new_settings = array() ) { |
|
845 | - $messenger = $this->get_messenger( $messenger_name ); |
|
846 | - if ( $messenger instanceof EE_messenger ) { |
|
844 | + public function add_settings_for_messenger($messenger_name, $new_settings = array()) { |
|
845 | + $messenger = $this->get_messenger($messenger_name); |
|
846 | + if ($messenger instanceof EE_messenger) { |
|
847 | 847 | $msgr_settings = $messenger->get_admin_settings_fields(); |
848 | - if ( ! empty( $msgr_settings ) ) { |
|
849 | - foreach ( $msgr_settings as $field => $value ) { |
|
848 | + if ( ! empty($msgr_settings)) { |
|
849 | + foreach ($msgr_settings as $field => $value) { |
|
850 | 850 | //is there a new setting for this? |
851 | - if ( isset( $new_settings[ $field ] ) ) { |
|
852 | - $this->_active_message_types[ $messenger->name ]['settings'][ $field ] = $new_settings[ $field ]; |
|
851 | + if (isset($new_settings[$field])) { |
|
852 | + $this->_active_message_types[$messenger->name]['settings'][$field] = $new_settings[$field]; |
|
853 | 853 | continue; |
854 | 854 | } |
855 | 855 | //only set the default if it isn't already set. |
856 | - if ( ! isset( $this->_active_message_types[ $messenger->name ]['settings'][ $field ] ) ) { |
|
857 | - $this->_active_message_types[ $messenger->name ]['settings'][ $field ] = $value; |
|
856 | + if ( ! isset($this->_active_message_types[$messenger->name]['settings'][$field])) { |
|
857 | + $this->_active_message_types[$messenger->name]['settings'][$field] = $value; |
|
858 | 858 | } |
859 | 859 | } |
860 | 860 | } |
@@ -869,13 +869,13 @@ discard block |
||
869 | 869 | * @param string|EE_messenger $messenger_name name of messenger |
870 | 870 | * @return void |
871 | 871 | */ |
872 | - public function deactivate_messenger( $messenger_name ) { |
|
873 | - if ( $messenger_name instanceof EE_messenger ) { |
|
872 | + public function deactivate_messenger($messenger_name) { |
|
873 | + if ($messenger_name instanceof EE_messenger) { |
|
874 | 874 | $messenger_name = $messenger_name->name; |
875 | 875 | } |
876 | - unset( $this->_active_messengers[ $messenger_name ] ); |
|
877 | - unset( $this->_active_message_types[ $messenger_name ] ); |
|
878 | - $this->_message_template_group_model->deactivate_message_template_groups_for( $messenger_name ); |
|
876 | + unset($this->_active_messengers[$messenger_name]); |
|
877 | + unset($this->_active_message_types[$messenger_name]); |
|
878 | + $this->_message_template_group_model->deactivate_message_template_groups_for($messenger_name); |
|
879 | 879 | $this->update_active_messengers_option(); |
880 | 880 | } |
881 | 881 | |
@@ -885,16 +885,16 @@ discard block |
||
885 | 885 | * |
886 | 886 | * @param string $message_type_name name of message type being deactivated |
887 | 887 | */ |
888 | - public function deactivate_message_type( $message_type_name ) { |
|
889 | - if ( $message_type_name instanceof EE_message_type ) { |
|
888 | + public function deactivate_message_type($message_type_name) { |
|
889 | + if ($message_type_name instanceof EE_message_type) { |
|
890 | 890 | $message_type_name = $message_type_name->name; |
891 | 891 | } |
892 | - foreach ( $this->_active_message_types as $messenger => $settings ) { |
|
892 | + foreach ($this->_active_message_types as $messenger => $settings) { |
|
893 | 893 | unset( |
894 | - $this->_active_message_types[ $messenger ]['settings'][ $messenger . '-message_types' ][ $message_type_name ] |
|
894 | + $this->_active_message_types[$messenger]['settings'][$messenger.'-message_types'][$message_type_name] |
|
895 | 895 | ); |
896 | 896 | } |
897 | - $this->_message_template_group_model->deactivate_message_template_groups_for( '', $message_type_name ); |
|
897 | + $this->_message_template_group_model->deactivate_message_template_groups_for('', $message_type_name); |
|
898 | 898 | $this->update_active_messengers_option(); |
899 | 899 | } |
900 | 900 | |
@@ -908,11 +908,11 @@ discard block |
||
908 | 908 | * @param string $message_type_name Name of message type being deactivated. |
909 | 909 | * @param string $messenger_name Name of messenger the message type is being deactivated for. |
910 | 910 | */ |
911 | - public function deactivate_message_type_for_messenger( $message_type_name, $messenger_name ) { |
|
912 | - if ( $this->is_message_type_active_for_messenger( $messenger_name, $message_type_name ) ) { |
|
913 | - unset( $this->_active_message_types[ $messenger_name ]['settings'][ $messenger_name . '-message_types' ][ $message_type_name ] ); |
|
911 | + public function deactivate_message_type_for_messenger($message_type_name, $messenger_name) { |
|
912 | + if ($this->is_message_type_active_for_messenger($messenger_name, $message_type_name)) { |
|
913 | + unset($this->_active_message_types[$messenger_name]['settings'][$messenger_name.'-message_types'][$message_type_name]); |
|
914 | 914 | } |
915 | - $this->_message_template_group_model->deactivate_message_template_groups_for( array( $messenger_name ), array( $message_type_name ) ); |
|
915 | + $this->_message_template_group_model->deactivate_message_template_groups_for(array($messenger_name), array($message_type_name)); |
|
916 | 916 | $this->update_active_messengers_option(); |
917 | 917 | } |
918 | 918 | |
@@ -929,12 +929,12 @@ discard block |
||
929 | 929 | * |
930 | 930 | * @return bool true is a generating messenger and can be sent OR FALSE meaning cannot send. |
931 | 931 | */ |
932 | - public function is_generating_messenger_and_active( EE_messenger $messenger, EE_message_type $message_type ) { |
|
932 | + public function is_generating_messenger_and_active(EE_messenger $messenger, EE_message_type $message_type) { |
|
933 | 933 | //get the $messengers the message type says it can be used with. |
934 | - foreach ( $message_type->with_messengers() as $generating_messenger => $secondary_messengers ) { |
|
934 | + foreach ($message_type->with_messengers() as $generating_messenger => $secondary_messengers) { |
|
935 | 935 | if ( |
936 | 936 | $messenger->name === $generating_messenger |
937 | - && $this->is_message_type_active_for_messenger( $messenger->name, $message_type->name ) |
|
937 | + && $this->is_message_type_active_for_messenger($messenger->name, $message_type->name) |
|
938 | 938 | ) { |
939 | 939 | return true; |
940 | 940 | } |
@@ -971,25 +971,25 @@ discard block |
||
971 | 971 | * or all contexts indexed by message type. |
972 | 972 | * @return array |
973 | 973 | */ |
974 | - public function get_all_contexts( $slugs_only = true ) { |
|
974 | + public function get_all_contexts($slugs_only = true) { |
|
975 | 975 | $key = $slugs_only ? 'slugs' : 'all'; |
976 | 976 | // check if contexts has been setup yet. |
977 | - if ( empty( $this->_contexts[ $key ] ) ) { |
|
977 | + if (empty($this->_contexts[$key])) { |
|
978 | 978 | // So let's get all active message type objects and loop through to get all unique contexts |
979 | - foreach ( $this->get_active_message_type_objects() as $message_type ) { |
|
980 | - if ( $message_type instanceof EE_message_type ) { |
|
979 | + foreach ($this->get_active_message_type_objects() as $message_type) { |
|
980 | + if ($message_type instanceof EE_message_type) { |
|
981 | 981 | $message_type_contexts = $message_type->get_contexts(); |
982 | - if ( $slugs_only ) { |
|
983 | - foreach ( $message_type_contexts as $context => $context_details ) { |
|
984 | - $this->_contexts[ $key ][ $context ] = $context_details[ 'label' ]; |
|
982 | + if ($slugs_only) { |
|
983 | + foreach ($message_type_contexts as $context => $context_details) { |
|
984 | + $this->_contexts[$key][$context] = $context_details['label']; |
|
985 | 985 | } |
986 | 986 | } else { |
987 | - $this->_contexts[ $key ][ $message_type->name ] = $message_type_contexts; |
|
987 | + $this->_contexts[$key][$message_type->name] = $message_type_contexts; |
|
988 | 988 | } |
989 | 989 | } |
990 | 990 | } |
991 | 991 | } |
992 | - return ! empty( $this->_contexts[ $key ] ) ? $this->_contexts[ $key ] : array(); |
|
992 | + return ! empty($this->_contexts[$key]) ? $this->_contexts[$key] : array(); |
|
993 | 993 | } |
994 | 994 | |
995 | 995 | |
@@ -1008,9 +1008,9 @@ discard block |
||
1008 | 1008 | $installed_message_types = $this->installed_message_types(); |
1009 | 1009 | $all_message_types_valid = true; |
1010 | 1010 | //loop through list of active message types and verify they are installed. |
1011 | - foreach( $list_of_active_message_type_names as $message_type_name ) { |
|
1012 | - if ( ! isset( $installed_message_types[$message_type_name] ) ) { |
|
1013 | - $this->deactivate_message_type( $message_type_name ); |
|
1011 | + foreach ($list_of_active_message_type_names as $message_type_name) { |
|
1012 | + if ( ! isset($installed_message_types[$message_type_name])) { |
|
1013 | + $this->deactivate_message_type($message_type_name); |
|
1014 | 1014 | $all_message_types_valid = false; |
1015 | 1015 | } |
1016 | 1016 | } |
@@ -1029,10 +1029,10 @@ discard block |
||
1029 | 1029 | * @param $messenger_name |
1030 | 1030 | * @return bool |
1031 | 1031 | */ |
1032 | - public function has_message_type_been_activated_for_messenger( $message_type_name, $messenger_name ) { |
|
1032 | + public function has_message_type_been_activated_for_messenger($message_type_name, $messenger_name) { |
|
1033 | 1033 | $has_activated = $this->get_has_activated_messengers_option(); |
1034 | - return isset( $has_activated[ $messenger_name ] ) |
|
1035 | - && in_array( $message_type_name, $has_activated[ $messenger_name ] ); |
|
1034 | + return isset($has_activated[$messenger_name]) |
|
1035 | + && in_array($message_type_name, $has_activated[$messenger_name]); |
|
1036 | 1036 | } |
1037 | 1037 | } |
1038 | 1038 | // End of file EE_Message_Resource_Manager.lib.php |
@@ -50,79 +50,79 @@ discard block |
||
50 | 50 | * @throws \EE_Error |
51 | 51 | * } |
52 | 52 | */ |
53 | - public static function register( $mt_name = NULL, $setup_args = array() ) { |
|
53 | + public static function register($mt_name = NULL, $setup_args = array()) { |
|
54 | 54 | //required fields MUST be present, so let's make sure they are. |
55 | 55 | if ( |
56 | - ! isset( $mt_name ) |
|
57 | - || ! is_array( $setup_args ) |
|
58 | - || empty( $setup_args['mtfilename'] ) || empty( $setup_args['autoloadpaths'] ) |
|
59 | - ){ |
|
56 | + ! isset($mt_name) |
|
57 | + || ! is_array($setup_args) |
|
58 | + || empty($setup_args['mtfilename']) || empty($setup_args['autoloadpaths']) |
|
59 | + ) { |
|
60 | 60 | throw new EE_Error( |
61 | - __( 'In order to register a message type with EE_Register_Message_Type::register, you must include a unique name for the message type, plus an array containing the following keys: "mtfilename", "autoloadpaths"', 'event_espresso' ) |
|
61 | + __('In order to register a message type with EE_Register_Message_Type::register, you must include a unique name for the message type, plus an array containing the following keys: "mtfilename", "autoloadpaths"', 'event_espresso') |
|
62 | 62 | ); |
63 | 63 | } |
64 | 64 | |
65 | 65 | //make sure we don't register twice |
66 | - if( isset( self::$_ee_message_type_registry[ $mt_name ] ) ){ |
|
66 | + if (isset(self::$_ee_message_type_registry[$mt_name])) { |
|
67 | 67 | return; |
68 | 68 | } |
69 | 69 | |
70 | 70 | //make sure this was called in the right place! |
71 | 71 | if ( |
72 | - ! did_action( 'EE_Brewing_Regular___messages_caf' ) |
|
73 | - || did_action( 'AHEE__EE_System__perform_activations_upgrades_and_migrations' ) |
|
72 | + ! did_action('EE_Brewing_Regular___messages_caf') |
|
73 | + || did_action('AHEE__EE_System__perform_activations_upgrades_and_migrations') |
|
74 | 74 | ) { |
75 | 75 | EE_Error::doing_it_wrong( |
76 | 76 | __METHOD__, |
77 | 77 | sprintf( |
78 | - __('A message type named "%s" has been attempted to be registered with the EE Messages System. It may or may not work because it should be only called on the "EE_Brewing_Regular___messages_caf" hook.','event_espresso'), |
|
78 | + __('A message type named "%s" has been attempted to be registered with the EE Messages System. It may or may not work because it should be only called on the "EE_Brewing_Regular___messages_caf" hook.', 'event_espresso'), |
|
79 | 79 | $mt_name |
80 | 80 | ), |
81 | 81 | '4.3.0' |
82 | 82 | ); |
83 | 83 | } |
84 | 84 | //setup $__ee_message_type_registry array from incoming values. |
85 | - self::$_ee_message_type_registry[ $mt_name ] = array( |
|
85 | + self::$_ee_message_type_registry[$mt_name] = array( |
|
86 | 86 | 'mtfilename' => (string) $setup_args['mtfilename'], |
87 | 87 | 'autoloadpaths' => (array) $setup_args['autoloadpaths'], |
88 | - 'messengers_to_activate_with' => ! empty( $setup_args['messengers_to_activate_with'] ) |
|
88 | + 'messengers_to_activate_with' => ! empty($setup_args['messengers_to_activate_with']) |
|
89 | 89 | ? (array) $setup_args['messengers_to_activate_with'] |
90 | 90 | : array(), |
91 | - 'messengers_to_validate_with' => ! empty( $setup_args['messengers_to_validate_with'] ) |
|
91 | + 'messengers_to_validate_with' => ! empty($setup_args['messengers_to_validate_with']) |
|
92 | 92 | ? (array) $setup_args['messengers_to_validate_with'] |
93 | 93 | : array(), |
94 | - 'force_activation' => ! empty( $setup_args['force_activation'] ) |
|
94 | + 'force_activation' => ! empty($setup_args['force_activation']) |
|
95 | 95 | ? (bool) $setup_args['force_activation'] |
96 | 96 | : array() |
97 | 97 | ); |
98 | 98 | //add filters |
99 | 99 | add_filter( |
100 | 100 | 'FHEE__EED_Messages___set_messages_paths___MSG_PATHS', |
101 | - array( 'EE_Register_Message_Type', 'register_msgs_autoload_paths' ), |
|
101 | + array('EE_Register_Message_Type', 'register_msgs_autoload_paths'), |
|
102 | 102 | 10 |
103 | 103 | ); |
104 | 104 | add_filter( |
105 | 105 | 'FHEE__EE_messages__get_installed__messagetype_files', |
106 | - array( 'EE_Register_Message_Type', 'register_messagetype_files' ), |
|
106 | + array('EE_Register_Message_Type', 'register_messagetype_files'), |
|
107 | 107 | 10, |
108 | 108 | 1 |
109 | 109 | ); |
110 | 110 | add_filter( |
111 | 111 | 'FHEE__EE_messenger__get_default_message_types__default_types', |
112 | - array( 'EE_Register_Message_Type', 'register_messengers_to_activate_mt_with' ), |
|
112 | + array('EE_Register_Message_Type', 'register_messengers_to_activate_mt_with'), |
|
113 | 113 | 10, |
114 | 114 | 2 |
115 | 115 | ); |
116 | 116 | add_filter( |
117 | 117 | 'FHEE__EE_messenger__get_valid_message_types__valid_types', |
118 | - array( 'EE_Register_Message_Type', 'register_messengers_to_validate_mt_with' ), |
|
118 | + array('EE_Register_Message_Type', 'register_messengers_to_validate_mt_with'), |
|
119 | 119 | 10, |
120 | 120 | 2 |
121 | 121 | ); |
122 | 122 | //actions |
123 | 123 | add_action( |
124 | 124 | 'AHEE__EE_Addon__initialize_default_data__begin', |
125 | - array( 'EE_Register_Message_Type', 'set_defaults' ) |
|
125 | + array('EE_Register_Message_Type', 'set_defaults') |
|
126 | 126 | ); |
127 | 127 | } |
128 | 128 | |
@@ -133,15 +133,15 @@ discard block |
||
133 | 133 | */ |
134 | 134 | public static function set_defaults() { |
135 | 135 | /** @type EE_Message_Resource_Manager $message_resource_manager */ |
136 | - $message_resource_manager = EE_Registry::instance()->load_lib( 'Message_Resource_Manager' ); |
|
136 | + $message_resource_manager = EE_Registry::instance()->load_lib('Message_Resource_Manager'); |
|
137 | 137 | |
138 | 138 | //for any message types with force activation, let's ensure they are activated |
139 | - foreach ( self::$_ee_message_type_registry as $message_type_name => $settings ) { |
|
140 | - if ( $settings['force_activation'] ) { |
|
141 | - foreach ( $settings['messengers_to_activate_with'] as $messenger ) { |
|
139 | + foreach (self::$_ee_message_type_registry as $message_type_name => $settings) { |
|
140 | + if ($settings['force_activation']) { |
|
141 | + foreach ($settings['messengers_to_activate_with'] as $messenger) { |
|
142 | 142 | //DO not force activation if this message type has already been activated in the system |
143 | - if ( ! $message_resource_manager->has_message_type_been_activated_for_messenger( $message_type_name, $messenger ) ) { |
|
144 | - $message_resource_manager->ensure_message_type_is_active( $message_type_name, $messenger ); |
|
143 | + if ( ! $message_resource_manager->has_message_type_been_activated_for_messenger($message_type_name, $messenger)) { |
|
144 | + $message_resource_manager->ensure_message_type_is_active($message_type_name, $messenger); |
|
145 | 145 | } |
146 | 146 | } |
147 | 147 | } |
@@ -158,13 +158,13 @@ discard block |
||
158 | 158 | * @param string $message_type_name the name for the message type that was previously registered |
159 | 159 | * @return void |
160 | 160 | */ |
161 | - public static function deregister( $message_type_name = null ) { |
|
162 | - if ( ! empty( self::$_ee_message_type_registry[ $message_type_name ] ) ) { |
|
161 | + public static function deregister($message_type_name = null) { |
|
162 | + if ( ! empty(self::$_ee_message_type_registry[$message_type_name])) { |
|
163 | 163 | //let's make sure that we remove any place this message type was made active |
164 | 164 | /** @var EE_Message_Resource_Manager $Message_Resource_Manager */ |
165 | - $Message_Resource_Manager = EE_Registry::instance()->load_lib( 'Message_Resource_Manager' ); |
|
166 | - $Message_Resource_Manager->deactivate_message_type( $message_type_name ); |
|
167 | - unset( self::$_ee_message_type_registry[ $message_type_name ] ); |
|
165 | + $Message_Resource_Manager = EE_Registry::instance()->load_lib('Message_Resource_Manager'); |
|
166 | + $Message_Resource_Manager->deactivate_message_type($message_type_name); |
|
167 | + unset(self::$_ee_message_type_registry[$message_type_name]); |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | |
@@ -178,12 +178,12 @@ discard block |
||
178 | 178 | * @param array $messagetype_files The current array of message type file names |
179 | 179 | * @return array Array of message type file names |
180 | 180 | */ |
181 | - public static function register_messagetype_files( $messagetype_files ) { |
|
182 | - if ( empty( self::$_ee_message_type_registry ) ) { |
|
181 | + public static function register_messagetype_files($messagetype_files) { |
|
182 | + if (empty(self::$_ee_message_type_registry)) { |
|
183 | 183 | return $messagetype_files; |
184 | 184 | } |
185 | - foreach ( self::$_ee_message_type_registry as $mt_reg ) { |
|
186 | - if ( empty( $mt_reg['mtfilename' ] ) ) { |
|
185 | + foreach (self::$_ee_message_type_registry as $mt_reg) { |
|
186 | + if (empty($mt_reg['mtfilename'])) { |
|
187 | 187 | continue; |
188 | 188 | } |
189 | 189 | $messagetype_files[] = $mt_reg['mtfilename']; |
@@ -203,13 +203,13 @@ discard block |
||
203 | 203 | * @param array $paths array of paths to be checked by EE_messages autoloader. |
204 | 204 | * @return array |
205 | 205 | */ |
206 | - public static function register_msgs_autoload_paths( $paths ) { |
|
207 | - if ( ! empty( self::$_ee_message_type_registry ) ) { |
|
208 | - foreach ( self::$_ee_message_type_registry as $mt_reg ) { |
|
209 | - if ( empty( $mt_reg['autoloadpaths'] ) ) { |
|
206 | + public static function register_msgs_autoload_paths($paths) { |
|
207 | + if ( ! empty(self::$_ee_message_type_registry)) { |
|
208 | + foreach (self::$_ee_message_type_registry as $mt_reg) { |
|
209 | + if (empty($mt_reg['autoloadpaths'])) { |
|
210 | 210 | continue; |
211 | 211 | } |
212 | - $paths = array_merge( $paths, $mt_reg['autoloadpaths'] ); |
|
212 | + $paths = array_merge($paths, $mt_reg['autoloadpaths']); |
|
213 | 213 | } |
214 | 214 | } |
215 | 215 | return $paths; |
@@ -228,18 +228,18 @@ discard block |
||
228 | 228 | * @param EE_messenger $messenger The EE_messenger the filter is called from. |
229 | 229 | * @return array |
230 | 230 | */ |
231 | - public static function register_messengers_to_activate_mt_with( $default_types, EE_messenger $messenger ) { |
|
232 | - if ( empty( self::$_ee_message_type_registry ) ) { |
|
231 | + public static function register_messengers_to_activate_mt_with($default_types, EE_messenger $messenger) { |
|
232 | + if (empty(self::$_ee_message_type_registry)) { |
|
233 | 233 | return $default_types; |
234 | 234 | } |
235 | - foreach ( self::$_ee_message_type_registry as $message_type_name => $mt_reg ) { |
|
236 | - if ( empty( $mt_reg['messengers_to_activate_with'] ) || empty( $mt_reg['mtfilename'] ) ) { |
|
235 | + foreach (self::$_ee_message_type_registry as $message_type_name => $mt_reg) { |
|
236 | + if (empty($mt_reg['messengers_to_activate_with']) || empty($mt_reg['mtfilename'])) { |
|
237 | 237 | continue; |
238 | 238 | } |
239 | 239 | // loop through each of the messengers and if it matches the loaded class |
240 | 240 | // then we add this message type to the |
241 | - foreach ( $mt_reg['messengers_to_activate_with'] as $msgr ) { |
|
242 | - if ( $messenger->name == $msgr ) { |
|
241 | + foreach ($mt_reg['messengers_to_activate_with'] as $msgr) { |
|
242 | + if ($messenger->name == $msgr) { |
|
243 | 243 | $default_types[] = $message_type_name; |
244 | 244 | } |
245 | 245 | } |
@@ -259,18 +259,18 @@ discard block |
||
259 | 259 | * @param EE_messenger $messenger The EE_messenger the filter is called from. |
260 | 260 | * @return array |
261 | 261 | */ |
262 | - public static function register_messengers_to_validate_mt_with( $valid_types, EE_messenger $messenger ) { |
|
263 | - if ( empty( self::$_ee_message_type_registry ) ) { |
|
262 | + public static function register_messengers_to_validate_mt_with($valid_types, EE_messenger $messenger) { |
|
263 | + if (empty(self::$_ee_message_type_registry)) { |
|
264 | 264 | return $valid_types; |
265 | 265 | } |
266 | - foreach ( self::$_ee_message_type_registry as $message_type_name => $mt_reg ) { |
|
267 | - if ( empty( $mt_reg['messengers_to_validate_with'] ) || empty( $mt_reg['mtfilename'] ) ) { |
|
266 | + foreach (self::$_ee_message_type_registry as $message_type_name => $mt_reg) { |
|
267 | + if (empty($mt_reg['messengers_to_validate_with']) || empty($mt_reg['mtfilename'])) { |
|
268 | 268 | continue; |
269 | 269 | } |
270 | 270 | // loop through each of the messengers and if it matches the loaded class |
271 | 271 | // then we add this message type to the |
272 | - foreach ( $mt_reg['messengers_to_validate_with'] as $msgr ) { |
|
273 | - if ( $messenger->name == $msgr ) { |
|
272 | + foreach ($mt_reg['messengers_to_validate_with'] as $msgr) { |
|
273 | + if ($messenger->name == $msgr) { |
|
274 | 274 | $valid_types[] = $message_type_name; |
275 | 275 | } |
276 | 276 | } |
@@ -251,14 +251,14 @@ |
||
251 | 251 | |
252 | 252 | |
253 | 253 | /** |
254 | - * callback for FHEE__EE_messenger__get_valid_message_types__default_types filter. |
|
255 | - * |
|
256 | - * @since 4.3.0 |
|
257 | - * @param array $valid_types array of message types valid with messenger ( |
|
258 | - * corresponds to the $name property of message type) |
|
259 | - * @param EE_messenger $messenger The EE_messenger the filter is called from. |
|
260 | - * @return array |
|
261 | - */ |
|
254 | + * callback for FHEE__EE_messenger__get_valid_message_types__default_types filter. |
|
255 | + * |
|
256 | + * @since 4.3.0 |
|
257 | + * @param array $valid_types array of message types valid with messenger ( |
|
258 | + * corresponds to the $name property of message type) |
|
259 | + * @param EE_messenger $messenger The EE_messenger the filter is called from. |
|
260 | + * @return array |
|
261 | + */ |
|
262 | 262 | public static function register_messengers_to_validate_mt_with( $valid_types, EE_messenger $messenger ) { |
263 | 263 | if ( empty( self::$_ee_message_type_registry ) ) { |
264 | 264 | return $valid_types; |