@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EE_Invoice_Line_Item_Display_Strategy |
|
5 | - * |
|
6 | - * Description |
|
7 | - * |
|
8 | - * @package Event Espresso |
|
9 | - * @subpackage core |
|
10 | - * @author Brent Christensen |
|
11 | - * @since $VID:$ |
|
12 | - * |
|
13 | - */ |
|
3 | + * |
|
4 | + * Class EE_Invoice_Line_Item_Display_Strategy |
|
5 | + * |
|
6 | + * Description |
|
7 | + * |
|
8 | + * @package Event Espresso |
|
9 | + * @subpackage core |
|
10 | + * @author Brent Christensen |
|
11 | + * @since $VID:$ |
|
12 | + * |
|
13 | + */ |
|
14 | 14 | class EE_Invoice_Line_Item_Display_Strategy implements EEI_Line_Item_Display { |
15 | 15 | |
16 | 16 | /** |
@@ -18,7 +18,7 @@ discard block |
||
18 | 18 | * @param array $options |
19 | 19 | * @return mixed |
20 | 20 | */ |
21 | - public function display_line_item( EE_Line_Item $line_item, $options = array() ) { |
|
21 | + public function display_line_item(EE_Line_Item $line_item, $options = array()) { |
|
22 | 22 | |
23 | 23 | $html = ''; |
24 | 24 | // set some default options and merge with incoming |
@@ -26,58 +26,58 @@ discard block |
||
26 | 26 | 'show_desc' => TRUE, |
27 | 27 | 'odd' => FALSE |
28 | 28 | ); |
29 | - $options = array_merge( $default_options, (array)$options ); |
|
29 | + $options = array_merge($default_options, (array) $options); |
|
30 | 30 | |
31 | - switch( $line_item->type() ) { |
|
31 | + switch ($line_item->type()) { |
|
32 | 32 | |
33 | 33 | case EEM_Line_Item::type_total: |
34 | 34 | // loop thru children |
35 | - foreach( $line_item->children() as $child_line_item ) { |
|
35 | + foreach ($line_item->children() as $child_line_item) { |
|
36 | 36 | // recursively feed children back into this method |
37 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
37 | + $html .= $this->display_line_item($child_line_item, $options); |
|
38 | 38 | } |
39 | - $html .= $this->_separator_row( $options ); |
|
40 | - $html .= $this->_total_row( $line_item, __('Total', 'event_espresso'), $options ); |
|
39 | + $html .= $this->_separator_row($options); |
|
40 | + $html .= $this->_total_row($line_item, __('Total', 'event_espresso'), $options); |
|
41 | 41 | break; |
42 | 42 | |
43 | 43 | |
44 | 44 | case EEM_Line_Item::type_sub_total: |
45 | 45 | // loop thru children |
46 | - foreach( $line_item->children() as $child_line_item ) { |
|
46 | + foreach ($line_item->children() as $child_line_item) { |
|
47 | 47 | // recursively feed children back into this method |
48 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
48 | + $html .= $this->display_line_item($child_line_item, $options); |
|
49 | 49 | } |
50 | - $html .= $this->_total_row( $line_item, __('Sub-Total', 'event_espresso'), $options ); |
|
50 | + $html .= $this->_total_row($line_item, __('Sub-Total', 'event_espresso'), $options); |
|
51 | 51 | break; |
52 | 52 | |
53 | 53 | |
54 | 54 | case EEM_Line_Item::type_tax_sub_total: |
55 | 55 | // loop thru children |
56 | - foreach( $line_item->children() as $child_line_item ) { |
|
56 | + foreach ($line_item->children() as $child_line_item) { |
|
57 | 57 | // recursively feed children back into this method |
58 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
58 | + $html .= $this->display_line_item($child_line_item, $options); |
|
59 | 59 | } |
60 | - $html .= $this->_total_row( $line_item, __('Tax Total', 'event_espresso'), $options ); |
|
60 | + $html .= $this->_total_row($line_item, __('Tax Total', 'event_espresso'), $options); |
|
61 | 61 | break; |
62 | 62 | |
63 | 63 | |
64 | 64 | case EEM_Line_Item::type_line_item: |
65 | 65 | // item row |
66 | - $html .= $this->_item_row( $line_item, $options ); |
|
66 | + $html .= $this->_item_row($line_item, $options); |
|
67 | 67 | // got any kids? |
68 | - foreach( $line_item->children() as $child_line_item ) { |
|
69 | - $this->display_line_item( $child_line_item, $options ); |
|
68 | + foreach ($line_item->children() as $child_line_item) { |
|
69 | + $this->display_line_item($child_line_item, $options); |
|
70 | 70 | } |
71 | 71 | break; |
72 | 72 | |
73 | 73 | |
74 | 74 | case EEM_Line_Item::type_sub_line_item: |
75 | - $html .= $this->_sub_item_row( $line_item, $options ); |
|
75 | + $html .= $this->_sub_item_row($line_item, $options); |
|
76 | 76 | break; |
77 | 77 | |
78 | 78 | |
79 | 79 | case EEM_Line_Item::type_tax: |
80 | - $html .= $this->_tax_row( $line_item, $options ); |
|
80 | + $html .= $this->_tax_row($line_item, $options); |
|
81 | 81 | break; |
82 | 82 | |
83 | 83 | } |
@@ -94,21 +94,21 @@ discard block |
||
94 | 94 | * @param array $options |
95 | 95 | * @return mixed |
96 | 96 | */ |
97 | - private function _item_row( EE_Line_Item $line_item, $options = array() ) { |
|
97 | + private function _item_row(EE_Line_Item $line_item, $options = array()) { |
|
98 | 98 | // start of row |
99 | 99 | $row_class = $options['odd'] ? 'item odd' : 'item'; |
100 | - $html = EEH_HTML::tr( '', $row_class ); |
|
100 | + $html = EEH_HTML::tr('', $row_class); |
|
101 | 101 | // name td |
102 | - $html .= EEH_HTML::td( $line_item->name(), '', 'item_l' ); |
|
102 | + $html .= EEH_HTML::td($line_item->name(), '', 'item_l'); |
|
103 | 103 | // desc td |
104 | - $html .= $options['show_desc'] ? EEH_HTML::td( $line_item->desc(), '', 'item_l' ) : ''; |
|
104 | + $html .= $options['show_desc'] ? EEH_HTML::td($line_item->desc(), '', 'item_l') : ''; |
|
105 | 105 | // quantity td |
106 | - $html .= EEH_HTML::td( $line_item->quantity(), '', 'item_l' ); |
|
106 | + $html .= EEH_HTML::td($line_item->quantity(), '', 'item_l'); |
|
107 | 107 | // price td |
108 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c' ); |
|
108 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c'); |
|
109 | 109 | // total td |
110 | - $total = $line_item->is_taxable() ? $line_item->total_no_code() . '*' : $line_item->total_no_code(); |
|
111 | - $html .= EEH_HTML::td( $total, '', 'item_r' ); |
|
110 | + $total = $line_item->is_taxable() ? $line_item->total_no_code().'*' : $line_item->total_no_code(); |
|
111 | + $html .= EEH_HTML::td($total, '', 'item_r'); |
|
112 | 112 | // end of row |
113 | 113 | $html .= EEH_HTML::trx(); |
114 | 114 | return $html; |
@@ -123,22 +123,22 @@ discard block |
||
123 | 123 | * @param array $options |
124 | 124 | * @return mixed |
125 | 125 | */ |
126 | - private function _sub_item_row( EE_Line_Item $line_item, $options = array() ) { |
|
126 | + private function _sub_item_row(EE_Line_Item $line_item, $options = array()) { |
|
127 | 127 | // start of row |
128 | - $html = EEH_HTML::tr( '', 'item sub-item-row' ); |
|
128 | + $html = EEH_HTML::tr('', 'item sub-item-row'); |
|
129 | 129 | // name td |
130 | - $html .= EEH_HTML::td( $line_item->name(), '', 'item_l sub-item' ); |
|
130 | + $html .= EEH_HTML::td($line_item->name(), '', 'item_l sub-item'); |
|
131 | 131 | // desc td |
132 | - $html .= $options['show_desc'] ? EEH_HTML::td( $line_item->desc(), '', 'item_l' ) : ''; |
|
133 | - $html .= EEH_HTML::td() . EEH_HTML::tdx(); |
|
132 | + $html .= $options['show_desc'] ? EEH_HTML::td($line_item->desc(), '', 'item_l') : ''; |
|
133 | + $html .= EEH_HTML::td().EEH_HTML::tdx(); |
|
134 | 134 | // discount/surcharge td |
135 | - if ( $line_item->is_percent() ) { |
|
136 | - $html .= EEH_HTML::td( $line_item->percent() . '%', '', 'item_c' ); |
|
135 | + if ($line_item->is_percent()) { |
|
136 | + $html .= EEH_HTML::td($line_item->percent().'%', '', 'item_c'); |
|
137 | 137 | } else { |
138 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c' ); |
|
138 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c'); |
|
139 | 139 | } |
140 | 140 | // total td |
141 | - $html .= EEH_HTML::td( $line_item->total_no_code(), '', 'item_r' ); |
|
141 | + $html .= EEH_HTML::td($line_item->total_no_code(), '', 'item_r'); |
|
142 | 142 | // end of row |
143 | 143 | $html .= EEH_HTML::trx(); |
144 | 144 | return $html; |
@@ -153,17 +153,17 @@ discard block |
||
153 | 153 | * @param array $options |
154 | 154 | * @return mixed |
155 | 155 | */ |
156 | - private function _tax_row( EE_Line_Item $line_item, $options = array() ) { |
|
156 | + private function _tax_row(EE_Line_Item $line_item, $options = array()) { |
|
157 | 157 | // start of row |
158 | - $html = EEH_HTML::tr( '', 'item sub-item tax-total' ); |
|
158 | + $html = EEH_HTML::tr('', 'item sub-item tax-total'); |
|
159 | 159 | // name td |
160 | - $html .= EEH_HTML::td( $line_item->name(), '', 'item_l sub-item' ); |
|
160 | + $html .= EEH_HTML::td($line_item->name(), '', 'item_l sub-item'); |
|
161 | 161 | // desc td |
162 | - $html .= $options['show_desc'] ? EEH_HTML::td( $line_item->desc(), '', 'item_l' ) : ''; |
|
162 | + $html .= $options['show_desc'] ? EEH_HTML::td($line_item->desc(), '', 'item_l') : ''; |
|
163 | 163 | // percent td |
164 | - $html .= EEH_HTML::td( $line_item->percent() . '%', '', 'item_c', '', ' colspan="2"' ); |
|
164 | + $html .= EEH_HTML::td($line_item->percent().'%', '', 'item_c', '', ' colspan="2"'); |
|
165 | 165 | // total td |
166 | - $html .= EEH_HTML::td( $line_item->total_no_code(), '', 'item_r' ); |
|
166 | + $html .= EEH_HTML::td($line_item->total_no_code(), '', 'item_r'); |
|
167 | 167 | // end of row |
168 | 168 | $html .= EEH_HTML::trx(); |
169 | 169 | return $html; |
@@ -179,17 +179,17 @@ discard block |
||
179 | 179 | * @param array $options |
180 | 180 | * @return mixed |
181 | 181 | */ |
182 | - private function _total_row( EE_Line_Item $line_item, $text = '', $options = array() ) { |
|
182 | + private function _total_row(EE_Line_Item $line_item, $text = '', $options = array()) { |
|
183 | 183 | // colspan |
184 | 184 | $colspan = $options['show_desc'] ? ' colspan="2"' : ''; |
185 | 185 | // start of row |
186 | - $html = EEH_HTML::tr( '', '', 'total_tr odd' ); |
|
186 | + $html = EEH_HTML::tr('', '', 'total_tr odd'); |
|
187 | 187 | // empty td |
188 | - $html .= EEH_HTML::td( EEH_HTML::nbsp(), '', '', '', $colspan ); |
|
188 | + $html .= EEH_HTML::td(EEH_HTML::nbsp(), '', '', '', $colspan); |
|
189 | 189 | // total td |
190 | - $html .= EEH_HTML::td( $text, '', 'total_currency total', '', $colspan ); |
|
190 | + $html .= EEH_HTML::td($text, '', 'total_currency total', '', $colspan); |
|
191 | 191 | // total td |
192 | - $html .= EEH_HTML::td( $line_item->total_no_code(), '', 'total' ); |
|
192 | + $html .= EEH_HTML::td($line_item->total_no_code(), '', 'total'); |
|
193 | 193 | // end of row |
194 | 194 | $html .= EEH_HTML::trx(); |
195 | 195 | return $html; |
@@ -203,11 +203,11 @@ discard block |
||
203 | 203 | * @param array $options |
204 | 204 | * @return mixed |
205 | 205 | */ |
206 | - private function _separator_row( $options = array() ) { |
|
206 | + private function _separator_row($options = array()) { |
|
207 | 207 | // colspan |
208 | 208 | $colspan = $options['show_desc'] ? ' colspan="5"' : ' colspan="4"'; |
209 | 209 | // start of row |
210 | - $html = EEH_HTML::tr( EEH_HTML::td( '<hr>', '', '', '', $colspan )); |
|
210 | + $html = EEH_HTML::tr(EEH_HTML::td('<hr>', '', '', '', $colspan)); |
|
211 | 211 | // // separator td |
212 | 212 | // $html .= EEH_HTML::td( '<hr>', '', '', '', $colspan ); |
213 | 213 | // // end of row |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EE_Line_Item_Display |
|
5 | - * |
|
6 | - * Description |
|
7 | - * |
|
8 | - * @package Event Espresso |
|
9 | - * @subpackage core |
|
10 | - * @author Brent Christensen |
|
11 | - * @since $VID:$ |
|
12 | - * |
|
13 | - */ |
|
3 | + * |
|
4 | + * Class EE_Line_Item_Display |
|
5 | + * |
|
6 | + * Description |
|
7 | + * |
|
8 | + * @package Event Espresso |
|
9 | + * @subpackage core |
|
10 | + * @author Brent Christensen |
|
11 | + * @since $VID:$ |
|
12 | + * |
|
13 | + */ |
|
14 | 14 | class EE_Line_Item_Display { |
15 | 15 | |
16 | 16 | private $strategy = NULL; |
@@ -21,9 +21,9 @@ discard block |
||
21 | 21 | * @param string $context - where/how the line items are being displayed |
22 | 22 | * @param string $other_line_item_display_strategy |
23 | 23 | */ |
24 | - public function __construct( $context = '', $other_line_item_display_strategy = '' ) { |
|
25 | - $context = strtolower( $context ); |
|
26 | - switch ( $context ) { |
|
24 | + public function __construct($context = '', $other_line_item_display_strategy = '') { |
|
25 | + $context = strtolower($context); |
|
26 | + switch ($context) { |
|
27 | 27 | case 'invoice' : |
28 | 28 | $this->strategy = new EE_Invoice_Line_Item_Display_Strategy(); |
29 | 29 | break; |
@@ -35,8 +35,8 @@ discard block |
||
35 | 35 | break; |
36 | 36 | default : |
37 | 37 | if ( |
38 | - ! empty( $other_line_item_display_strategy ) && |
|
39 | - class_exists( $other_line_item_display_strategy ) |
|
38 | + ! empty($other_line_item_display_strategy) && |
|
39 | + class_exists($other_line_item_display_strategy) |
|
40 | 40 | ) { |
41 | 41 | $this->strategy = new $other_line_item_display_strategy(); |
42 | 42 | } else { |
@@ -50,8 +50,8 @@ discard block |
||
50 | 50 | * @param array $options |
51 | 51 | * @return mixed |
52 | 52 | */ |
53 | - public function display_line_item( EE_Line_Item $line_item, $options = array() ) { |
|
54 | - return $this->strategy->display_line_item( $line_item, $options ); |
|
53 | + public function display_line_item(EE_Line_Item $line_item, $options = array()) { |
|
54 | + return $this->strategy->display_line_item($line_item, $options); |
|
55 | 55 | } |
56 | 56 | |
57 | 57 |
@@ -1,16 +1,16 @@ |
||
1 | 1 | <?php if ( ! defined('EVENT_ESPRESSO_VERSION')) { exit('No direct script access allowed'); } |
2 | 2 | /** |
3 | - * |
|
4 | - * Class EE_SPCO_Line_Item_Display_Strategy |
|
5 | - * |
|
6 | - * Description |
|
7 | - * |
|
8 | - * @package Event Espresso |
|
9 | - * @subpackage core |
|
10 | - * @author Brent Christensen |
|
11 | - * @since $VID:$ |
|
12 | - * |
|
13 | - */ |
|
3 | + * |
|
4 | + * Class EE_SPCO_Line_Item_Display_Strategy |
|
5 | + * |
|
6 | + * Description |
|
7 | + * |
|
8 | + * @package Event Espresso |
|
9 | + * @subpackage core |
|
10 | + * @author Brent Christensen |
|
11 | + * @since $VID:$ |
|
12 | + * |
|
13 | + */ |
|
14 | 14 | |
15 | 15 | class EE_SPCO_Line_Item_Display_Strategy implements EEI_Line_Item_Display { |
16 | 16 |
@@ -70,26 +70,26 @@ discard block |
||
70 | 70 | * @param \EE_Line_Item $parent_line_item |
71 | 71 | * @return mixed |
72 | 72 | */ |
73 | - public function display_line_item( EE_Line_Item $line_item, $options = array(), EE_Line_Item $parent_line_item = null ) { |
|
73 | + public function display_line_item(EE_Line_Item $line_item, $options = array(), EE_Line_Item $parent_line_item = null) { |
|
74 | 74 | |
75 | 75 | $html = ''; |
76 | 76 | // set some default options and merge with incoming |
77 | 77 | $default_options = array( |
78 | - 'show_desc' => true, // true false |
|
78 | + 'show_desc' => true, // true false |
|
79 | 79 | 'odd' => false |
80 | 80 | ); |
81 | - $options = array_merge( $default_options, (array)$options ); |
|
81 | + $options = array_merge($default_options, (array) $options); |
|
82 | 82 | |
83 | - switch( $line_item->type() ) { |
|
83 | + switch ($line_item->type()) { |
|
84 | 84 | |
85 | 85 | case EEM_Line_Item::type_line_item: |
86 | 86 | $this->_show_taxes = $line_item->is_taxable() ? true : $this->_show_taxes; |
87 | - if ( $line_item->OBJ_type() == 'Ticket' ) { |
|
87 | + if ($line_item->OBJ_type() == 'Ticket') { |
|
88 | 88 | // item row |
89 | - $html .= $this->_ticket_row( $line_item, $options ); |
|
89 | + $html .= $this->_ticket_row($line_item, $options); |
|
90 | 90 | } else { |
91 | 91 | // item row |
92 | - $html .= $this->_item_row( $line_item, $options ); |
|
92 | + $html .= $this->_item_row($line_item, $options); |
|
93 | 93 | } |
94 | 94 | if ( |
95 | 95 | apply_filters( |
@@ -98,76 +98,76 @@ discard block |
||
98 | 98 | ) |
99 | 99 | ) { |
100 | 100 | // got any kids? |
101 | - foreach ( $line_item->children() as $child_line_item ) { |
|
102 | - $html .= $this->display_line_item( $child_line_item, $options, $line_item ); |
|
101 | + foreach ($line_item->children() as $child_line_item) { |
|
102 | + $html .= $this->display_line_item($child_line_item, $options, $line_item); |
|
103 | 103 | } |
104 | 104 | } |
105 | 105 | break; |
106 | 106 | |
107 | 107 | case EEM_Line_Item::type_sub_line_item: |
108 | - $html .= $this->_sub_item_row( $line_item, $options, $parent_line_item ); |
|
108 | + $html .= $this->_sub_item_row($line_item, $options, $parent_line_item); |
|
109 | 109 | break; |
110 | 110 | |
111 | 111 | case EEM_Line_Item::type_sub_total: |
112 | 112 | static $sub_total = 0; |
113 | 113 | $event_sub_total = 0; |
114 | - $text = __( 'Sub-Total', 'event_espresso' ); |
|
115 | - if ( $line_item->OBJ_type() == 'Event' ) { |
|
116 | - $options[ 'event_id' ] = $event_id = $line_item->OBJ_ID(); |
|
117 | - if ( ! isset( $this->_events[ $options[ 'event_id' ] ] ) ) { |
|
118 | - $event = EEM_Event::instance()->get_one_by_ID( $options[ 'event_id' ] ); |
|
119 | - if ( $event instanceof EE_Event ) { |
|
120 | - if ( $event->default_registration_status() == EEM_Registration::status_id_not_approved ) { |
|
114 | + $text = __('Sub-Total', 'event_espresso'); |
|
115 | + if ($line_item->OBJ_type() == 'Event') { |
|
116 | + $options['event_id'] = $event_id = $line_item->OBJ_ID(); |
|
117 | + if ( ! isset($this->_events[$options['event_id']])) { |
|
118 | + $event = EEM_Event::instance()->get_one_by_ID($options['event_id']); |
|
119 | + if ($event instanceof EE_Event) { |
|
120 | + if ($event->default_registration_status() == EEM_Registration::status_id_not_approved) { |
|
121 | 121 | return ''; |
122 | 122 | } |
123 | 123 | } |
124 | - $this->_events[ $options[ 'event_id' ] ] = 0; |
|
125 | - $html .= $this->_event_row( $line_item ); |
|
126 | - $text = __( 'Event Sub-Total', 'event_espresso' ); |
|
124 | + $this->_events[$options['event_id']] = 0; |
|
125 | + $html .= $this->_event_row($line_item); |
|
126 | + $text = __('Event Sub-Total', 'event_espresso'); |
|
127 | 127 | } |
128 | 128 | } |
129 | 129 | $child_line_items = $line_item->children(); |
130 | 130 | // loop thru children |
131 | - foreach( $child_line_items as $child_line_item ) { |
|
131 | + foreach ($child_line_items as $child_line_item) { |
|
132 | 132 | // recursively feed children back into this method |
133 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
133 | + $html .= $this->display_line_item($child_line_item, $options); |
|
134 | 134 | } |
135 | - $event_sub_total += isset( $options[ 'event_id' ] ) ? $this->_events[ $options[ 'event_id' ] ] : 0; |
|
135 | + $event_sub_total += isset($options['event_id']) ? $this->_events[$options['event_id']] : 0; |
|
136 | 136 | $sub_total += $event_sub_total; |
137 | 137 | if ( |
138 | 138 | ( |
139 | 139 | // event subtotals |
140 | 140 | $line_item->code() != 'pre-tax-subtotal' && |
141 | - count( $child_line_items ) > 1 |
|
141 | + count($child_line_items) > 1 |
|
142 | 142 | ) |
143 | 143 | || |
144 | 144 | ( |
145 | 145 | // pre-tax subtotals |
146 | 146 | $line_item->code() == 'pre-tax-subtotal' && |
147 | - count( $this->_events ) > 1 |
|
147 | + count($this->_events) > 1 |
|
148 | 148 | ) |
149 | 149 | ) { |
150 | 150 | $options['sub_total'] = $line_item->OBJ_type() == 'Event' ? $event_sub_total : $sub_total; |
151 | - $html .= $this->_sub_total_row( $line_item, $text, $options ); |
|
151 | + $html .= $this->_sub_total_row($line_item, $text, $options); |
|
152 | 152 | } |
153 | 153 | break; |
154 | 154 | |
155 | 155 | case EEM_Line_Item::type_tax: |
156 | - if ( $this->_show_taxes ) { |
|
157 | - $this->_taxes_html .= $this->_tax_row( $line_item, $options ); |
|
156 | + if ($this->_show_taxes) { |
|
157 | + $this->_taxes_html .= $this->_tax_row($line_item, $options); |
|
158 | 158 | } |
159 | 159 | break; |
160 | 160 | |
161 | 161 | case EEM_Line_Item::type_tax_sub_total: |
162 | - if ( $this->_show_taxes ) { |
|
162 | + if ($this->_show_taxes) { |
|
163 | 163 | $child_line_items = $line_item->children(); |
164 | 164 | // loop thru children |
165 | - foreach( $child_line_items as $child_line_item ) { |
|
165 | + foreach ($child_line_items as $child_line_item) { |
|
166 | 166 | // recursively feed children back into this method |
167 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
167 | + $html .= $this->display_line_item($child_line_item, $options); |
|
168 | 168 | } |
169 | - if ( count( $child_line_items ) > 1 ) { |
|
170 | - $this->_taxes_html .= $this->_total_tax_row( $line_item, __( 'Tax Total', 'event_espresso' ) ); |
|
169 | + if (count($child_line_items) > 1) { |
|
170 | + $this->_taxes_html .= $this->_total_tax_row($line_item, __('Tax Total', 'event_espresso')); |
|
171 | 171 | } |
172 | 172 | } |
173 | 173 | break; |
@@ -176,25 +176,25 @@ discard block |
||
176 | 176 | // get all child line items |
177 | 177 | $children = $line_item->children(); |
178 | 178 | // loop thru all non-tax child line items |
179 | - foreach( $children as $child_line_item ) { |
|
180 | - if ( $child_line_item->type() != EEM_Line_Item::type_tax_sub_total ) { |
|
179 | + foreach ($children as $child_line_item) { |
|
180 | + if ($child_line_item->type() != EEM_Line_Item::type_tax_sub_total) { |
|
181 | 181 | // recursively feed children back into this method |
182 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
182 | + $html .= $this->display_line_item($child_line_item, $options); |
|
183 | 183 | } |
184 | 184 | } |
185 | 185 | |
186 | 186 | // now loop thru tax child line items |
187 | - foreach( $children as $child_line_item ) { |
|
188 | - if ( $child_line_item->type() == EEM_Line_Item::type_tax_sub_total ) { |
|
187 | + foreach ($children as $child_line_item) { |
|
188 | + if ($child_line_item->type() == EEM_Line_Item::type_tax_sub_total) { |
|
189 | 189 | // recursively feed children back into this method |
190 | - $html .= $this->display_line_item( $child_line_item, $options ); |
|
190 | + $html .= $this->display_line_item($child_line_item, $options); |
|
191 | 191 | } |
192 | 192 | } |
193 | 193 | $html .= $this->_taxes_html; |
194 | - $html .= $this->_total_row( $line_item, __('Total', 'event_espresso') ); |
|
194 | + $html .= $this->_total_row($line_item, __('Total', 'event_espresso')); |
|
195 | 195 | |
196 | 196 | |
197 | - $html .= $this->_payments_and_amount_owing_rows( $line_item, $options ); |
|
197 | + $html .= $this->_payments_and_amount_owing_rows($line_item, $options); |
|
198 | 198 | break; |
199 | 199 | |
200 | 200 | } |
@@ -209,11 +209,11 @@ discard block |
||
209 | 209 | * @param EE_Line_Item $line_item |
210 | 210 | * @return mixed |
211 | 211 | */ |
212 | - private function _event_row( EE_Line_Item $line_item ) { |
|
212 | + private function _event_row(EE_Line_Item $line_item) { |
|
213 | 213 | // start of row |
214 | - $html = EEH_HTML::tr( '', 'event-cart-total-row', 'total_tr odd' ); |
|
214 | + $html = EEH_HTML::tr('', 'event-cart-total-row', 'total_tr odd'); |
|
215 | 215 | // event name td |
216 | - $html .= EEH_HTML::td( EEH_HTML::strong( $line_item->name() ), '', 'event-header', '', ' colspan="4"' ); |
|
216 | + $html .= EEH_HTML::td(EEH_HTML::strong($line_item->name()), '', 'event-header', '', ' colspan="4"'); |
|
217 | 217 | // end of row |
218 | 218 | $html .= EEH_HTML::trx(); |
219 | 219 | return $html; |
@@ -228,10 +228,10 @@ discard block |
||
228 | 228 | * @param array $options |
229 | 229 | * @return mixed |
230 | 230 | */ |
231 | - private function _ticket_row( EE_Line_Item $line_item, $options = array() ) { |
|
231 | + private function _ticket_row(EE_Line_Item $line_item, $options = array()) { |
|
232 | 232 | // start of row |
233 | 233 | $row_class = $options['odd'] ? 'item odd' : 'item'; |
234 | - $html = EEH_HTML::tr( '', '', $row_class ); |
|
234 | + $html = EEH_HTML::tr('', '', $row_class); |
|
235 | 235 | // name && desc |
236 | 236 | $name_and_desc = apply_filters( |
237 | 237 | 'FHEE__EE_SPCO_Line_Item_Display_Strategy__item_row__name', |
@@ -240,23 +240,23 @@ discard block |
||
240 | 240 | ); |
241 | 241 | $name_and_desc .= apply_filters( |
242 | 242 | 'FHEE__EE_SPCO_Line_Item_Display_Strategy__item_row__desc', |
243 | - ( $options['show_desc'] ? '<span class="line-item-desc-spn smaller-text">: ' . $line_item->desc() . '</span>' : '' ), |
|
243 | + ($options['show_desc'] ? '<span class="line-item-desc-spn smaller-text">: '.$line_item->desc().'</span>' : ''), |
|
244 | 244 | $line_item, |
245 | 245 | $options |
246 | 246 | ); |
247 | 247 | $name_and_desc .= $line_item->is_taxable() ? ' * ' : ''; |
248 | 248 | // name td |
249 | - $html .= EEH_HTML::td( /*__FUNCTION__ .*/ $name_and_desc, '', 'item_l' ); |
|
249 | + $html .= EEH_HTML::td( /*__FUNCTION__ .*/ $name_and_desc, '', 'item_l' ); |
|
250 | 250 | // price td |
251 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c jst-rght' ); |
|
251 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c jst-rght'); |
|
252 | 252 | // quantity td |
253 | - $html .= EEH_HTML::td( $line_item->quantity(), '', 'item_l jst-rght' ); |
|
253 | + $html .= EEH_HTML::td($line_item->quantity(), '', 'item_l jst-rght'); |
|
254 | 254 | $this->_total_items += $line_item->quantity(); |
255 | 255 | // determine total for line item |
256 | 256 | $total = $line_item->total(); |
257 | - $this->_events[ $options[ 'event_id' ] ] += $total; |
|
257 | + $this->_events[$options['event_id']] += $total; |
|
258 | 258 | // total td |
259 | - $html .= EEH_HTML::td( EEH_Template::format_currency( $total, false, false ), '', 'item_r jst-rght' ); |
|
259 | + $html .= EEH_HTML::td(EEH_Template::format_currency($total, false, false), '', 'item_r jst-rght'); |
|
260 | 260 | // end of row |
261 | 261 | $html .= EEH_HTML::trx(); |
262 | 262 | return $html; |
@@ -271,41 +271,41 @@ discard block |
||
271 | 271 | * @param array $options |
272 | 272 | * @return mixed |
273 | 273 | */ |
274 | - private function _item_row( EE_Line_Item $line_item, $options = array() ) { |
|
274 | + private function _item_row(EE_Line_Item $line_item, $options = array()) { |
|
275 | 275 | // start of row |
276 | 276 | $row_class = $options['odd'] ? 'item odd' : 'item'; |
277 | - $html = EEH_HTML::tr( '', '', $row_class ); |
|
278 | - $obj_name = $line_item->OBJ_type() ? $line_item->OBJ_type_i18n() . ': ' : ''; |
|
277 | + $html = EEH_HTML::tr('', '', $row_class); |
|
278 | + $obj_name = $line_item->OBJ_type() ? $line_item->OBJ_type_i18n().': ' : ''; |
|
279 | 279 | // name && desc |
280 | 280 | $name_and_desc = apply_filters( |
281 | 281 | 'FHEE__EE_SPCO_Line_Item_Display_Strategy__item_row__name', |
282 | - $obj_name . $line_item->name(), |
|
282 | + $obj_name.$line_item->name(), |
|
283 | 283 | $line_item |
284 | 284 | ); |
285 | 285 | $name_and_desc .= apply_filters( |
286 | 286 | 'FHEE__EE_SPCO_Line_Item_Display_Strategy__item_row__desc', |
287 | - ( $options['show_desc'] ? '<span class="line-item-desc-spn smaller-text">: ' . $line_item->desc() . '</span>' : '' ), |
|
287 | + ($options['show_desc'] ? '<span class="line-item-desc-spn smaller-text">: '.$line_item->desc().'</span>' : ''), |
|
288 | 288 | $line_item, |
289 | 289 | $options |
290 | 290 | ); |
291 | 291 | $name_and_desc .= $line_item->is_taxable() ? ' * ' : ''; |
292 | 292 | // name td |
293 | - $html .= EEH_HTML::td( $name_and_desc, '', 'item_l' ); |
|
293 | + $html .= EEH_HTML::td($name_and_desc, '', 'item_l'); |
|
294 | 294 | // price td |
295 | - if ( $line_item->is_percent() ) { |
|
296 | - $html .= EEH_HTML::td( $line_item->percent() . '%', '', 'item_c jst-rght' ); |
|
295 | + if ($line_item->is_percent()) { |
|
296 | + $html .= EEH_HTML::td($line_item->percent().'%', '', 'item_c jst-rght'); |
|
297 | 297 | } else { |
298 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c jst-rght' ); |
|
298 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c jst-rght'); |
|
299 | 299 | } |
300 | 300 | // quantity td |
301 | - $html .= EEH_HTML::td( $line_item->quantity(), '', 'item_l jst-rght' ); |
|
301 | + $html .= EEH_HTML::td($line_item->quantity(), '', 'item_l jst-rght'); |
|
302 | 302 | //$total = $line_item->total() * $line_item->quantity(); |
303 | 303 | $total = $line_item->total(); |
304 | - if( isset( $options[ 'event_id' ] ) && isset( $this->_events[ $options[ 'event_id' ] ] ) ) { |
|
305 | - $this->_events[ $options[ 'event_id' ] ] += $total; |
|
304 | + if (isset($options['event_id']) && isset($this->_events[$options['event_id']])) { |
|
305 | + $this->_events[$options['event_id']] += $total; |
|
306 | 306 | } |
307 | 307 | // total td |
308 | - $html .= EEH_HTML::td( EEH_Template::format_currency( $total, false, false ), '', 'item_r jst-rght' ); |
|
308 | + $html .= EEH_HTML::td(EEH_Template::format_currency($total, false, false), '', 'item_r jst-rght'); |
|
309 | 309 | // end of row |
310 | 310 | $html .= EEH_HTML::trx(); |
311 | 311 | return $html; |
@@ -321,25 +321,25 @@ discard block |
||
321 | 321 | * @param \EE_Line_Item $parent_line_item |
322 | 322 | * @return mixed |
323 | 323 | */ |
324 | - private function _sub_item_row( EE_Line_Item $line_item, $options = array(), EE_Line_Item $parent_line_item = null ) { |
|
324 | + private function _sub_item_row(EE_Line_Item $line_item, $options = array(), EE_Line_Item $parent_line_item = null) { |
|
325 | 325 | // start of row |
326 | - $html = EEH_HTML::tr( '', '', 'item sub-item-row' ); |
|
326 | + $html = EEH_HTML::tr('', '', 'item sub-item-row'); |
|
327 | 327 | // name && desc |
328 | - $name_and_desc = EEH_HTML::span('', '', 'sub-item-row-bullet dashicons dashicons-arrow-right' ) . $line_item->name(); |
|
329 | - $name_and_desc .= $options['show_desc'] ? '<span class="line-sub-item-desc-spn smaller-text">: ' . $line_item->desc() . '</span>' : ''; |
|
328 | + $name_and_desc = EEH_HTML::span('', '', 'sub-item-row-bullet dashicons dashicons-arrow-right').$line_item->name(); |
|
329 | + $name_and_desc .= $options['show_desc'] ? '<span class="line-sub-item-desc-spn smaller-text">: '.$line_item->desc().'</span>' : ''; |
|
330 | 330 | // name td |
331 | - $html .= EEH_HTML::td( /*__FUNCTION__ .*/ $name_and_desc, '', 'item_l sub-item' ); |
|
331 | + $html .= EEH_HTML::td( /*__FUNCTION__ .*/ $name_and_desc, '', 'item_l sub-item' ); |
|
332 | 332 | // discount/surcharge td |
333 | - if ( $line_item->is_percent() ) { |
|
333 | + if ($line_item->is_percent()) { |
|
334 | 334 | $html .= EEH_HTML::td( |
335 | 335 | EEH_Template::format_currency( |
336 | 336 | $line_item->total() / $parent_line_item->quantity(), |
337 | 337 | false, false |
338 | 338 | ), |
339 | - '', 'item_c jst-rght' |
|
339 | + '', 'item_c jst-rght' |
|
340 | 340 | ); |
341 | 341 | } else { |
342 | - $html .= EEH_HTML::td( $line_item->unit_price_no_code(), '', 'item_c jst-rght' ); |
|
342 | + $html .= EEH_HTML::td($line_item->unit_price_no_code(), '', 'item_c jst-rght'); |
|
343 | 343 | } |
344 | 344 | // no quantity td |
345 | 345 | $html .= EEH_HTML::td(); |
@@ -359,21 +359,21 @@ discard block |
||
359 | 359 | * @param array $options |
360 | 360 | * @return mixed |
361 | 361 | */ |
362 | - private function _tax_row( EE_Line_Item $line_item, $options = array() ) { |
|
362 | + private function _tax_row(EE_Line_Item $line_item, $options = array()) { |
|
363 | 363 | // start of row |
364 | - $html = EEH_HTML::tr( '', 'item sub-item tax-total' ); |
|
364 | + $html = EEH_HTML::tr('', 'item sub-item tax-total'); |
|
365 | 365 | // name && desc |
366 | 366 | $name_and_desc = $line_item->name(); |
367 | - $name_and_desc .= '<span class="smaller-text lt-grey-text" style="margin:0 0 0 2em;">' . __( ' * taxable items', 'event_espresso' ) . '</span>'; |
|
368 | - $name_and_desc .= $options[ 'show_desc' ] ? '<br/>' . $line_item->desc() : ''; |
|
367 | + $name_and_desc .= '<span class="smaller-text lt-grey-text" style="margin:0 0 0 2em;">'.__(' * taxable items', 'event_espresso').'</span>'; |
|
368 | + $name_and_desc .= $options['show_desc'] ? '<br/>'.$line_item->desc() : ''; |
|
369 | 369 | // name td |
370 | - $html .= EEH_HTML::td( /*__FUNCTION__ .*/ $name_and_desc, '', 'item_l sub-item' ); |
|
370 | + $html .= EEH_HTML::td( /*__FUNCTION__ .*/ $name_and_desc, '', 'item_l sub-item' ); |
|
371 | 371 | // percent td |
372 | - $html .= EEH_HTML::td( $line_item->percent() . '%', '', ' jst-rght', '' ); |
|
372 | + $html .= EEH_HTML::td($line_item->percent().'%', '', ' jst-rght', ''); |
|
373 | 373 | // empty td (price) |
374 | - $html .= EEH_HTML::td( EEH_HTML::nbsp() ); |
|
374 | + $html .= EEH_HTML::td(EEH_HTML::nbsp()); |
|
375 | 375 | // total td |
376 | - $html .= EEH_HTML::td( EEH_Template::format_currency( $line_item->total(), false, false ), '', 'item_r jst-rght' ); |
|
376 | + $html .= EEH_HTML::td(EEH_Template::format_currency($line_item->total(), false, false), '', 'item_r jst-rght'); |
|
377 | 377 | // end of row |
378 | 378 | $html .= EEH_HTML::trx(); |
379 | 379 | return $html; |
@@ -388,17 +388,17 @@ discard block |
||
388 | 388 | * @param string $text |
389 | 389 | * @return mixed |
390 | 390 | */ |
391 | - private function _total_tax_row( EE_Line_Item $line_item, $text = '' ) { |
|
391 | + private function _total_tax_row(EE_Line_Item $line_item, $text = '') { |
|
392 | 392 | $html = ''; |
393 | - if ( $line_item->total() ) { |
|
393 | + if ($line_item->total()) { |
|
394 | 394 | // start of row |
395 | - $html = EEH_HTML::tr( '', '', 'total_tr odd' ); |
|
395 | + $html = EEH_HTML::tr('', '', 'total_tr odd'); |
|
396 | 396 | // total td |
397 | - $html .= EEH_HTML::td( $text, '', 'total_currency total jst-rght', '', ' colspan="2"' ); |
|
397 | + $html .= EEH_HTML::td($text, '', 'total_currency total jst-rght', '', ' colspan="2"'); |
|
398 | 398 | // empty td (price) |
399 | - $html .= EEH_HTML::td( EEH_HTML::nbsp() ); |
|
399 | + $html .= EEH_HTML::td(EEH_HTML::nbsp()); |
|
400 | 400 | // total td |
401 | - $html .= EEH_HTML::td( EEH_Template::format_currency( $line_item->total(), false, false ), '', 'total jst-rght' ); |
|
401 | + $html .= EEH_HTML::td(EEH_Template::format_currency($line_item->total(), false, false), '', 'total jst-rght'); |
|
402 | 402 | // end of row |
403 | 403 | $html .= EEH_HTML::trx(); |
404 | 404 | } |
@@ -415,15 +415,15 @@ discard block |
||
415 | 415 | * @param array $options |
416 | 416 | * @return mixed |
417 | 417 | */ |
418 | - private function _sub_total_row( EE_Line_Item $line_item, $text = '', $options = array() ) { |
|
418 | + private function _sub_total_row(EE_Line_Item $line_item, $text = '', $options = array()) { |
|
419 | 419 | $html = ''; |
420 | - if ( $line_item->total() ) { |
|
420 | + if ($line_item->total()) { |
|
421 | 421 | // start of row |
422 | - $html = EEH_HTML::tr( '', '', 'total_tr odd' ); |
|
422 | + $html = EEH_HTML::tr('', '', 'total_tr odd'); |
|
423 | 423 | // total td |
424 | - $html .= EEH_HTML::td( $text, '', 'total_currency total jst-rght', '', ' colspan="3"' ); |
|
424 | + $html .= EEH_HTML::td($text, '', 'total_currency total jst-rght', '', ' colspan="3"'); |
|
425 | 425 | // total td |
426 | - $html .= EEH_HTML::td( EEH_Template::format_currency( $options[ 'sub_total' ], false, false ), '', 'total jst-rght' ); |
|
426 | + $html .= EEH_HTML::td(EEH_Template::format_currency($options['sub_total'], false, false), '', 'total jst-rght'); |
|
427 | 427 | // end of row |
428 | 428 | $html .= EEH_HTML::trx(); |
429 | 429 | } |
@@ -440,13 +440,13 @@ discard block |
||
440 | 440 | * @param string $text |
441 | 441 | * @return mixed |
442 | 442 | */ |
443 | - private function _total_row( EE_Line_Item $line_item, $text = '' ) { |
|
443 | + private function _total_row(EE_Line_Item $line_item, $text = '') { |
|
444 | 444 | // start of row |
445 | - $html = EEH_HTML::tr( '', '', 'spco-grand-total total_tr odd' ); |
|
445 | + $html = EEH_HTML::tr('', '', 'spco-grand-total total_tr odd'); |
|
446 | 446 | // total td |
447 | - $html .= EEH_HTML::td( $text, '', 'total_currency total jst-rght', '', ' colspan="3"' ); |
|
447 | + $html .= EEH_HTML::td($text, '', 'total_currency total jst-rght', '', ' colspan="3"'); |
|
448 | 448 | // total td |
449 | - $html .= EEH_HTML::td( EEH_Template::format_currency( $line_item->total(), false, false ), '', 'total jst-rght' ); |
|
449 | + $html .= EEH_HTML::td(EEH_Template::format_currency($line_item->total(), false, false), '', 'total jst-rght'); |
|
450 | 450 | // end of row |
451 | 451 | $html .= EEH_HTML::trx(); |
452 | 452 | return $html; |
@@ -461,30 +461,30 @@ discard block |
||
461 | 461 | * @param array $options |
462 | 462 | * @return mixed |
463 | 463 | */ |
464 | - private function _payments_and_amount_owing_rows( EE_Line_Item $line_item, $options = array() ) { |
|
464 | + private function _payments_and_amount_owing_rows(EE_Line_Item $line_item, $options = array()) { |
|
465 | 465 | $html = ''; |
466 | 466 | $owing = $line_item->total(); |
467 | - $transaction = EEM_Transaction::instance()->get_one_by_ID( $line_item->TXN_ID() ); |
|
468 | - if ( $transaction instanceof EE_Transaction ) { |
|
467 | + $transaction = EEM_Transaction::instance()->get_one_by_ID($line_item->TXN_ID()); |
|
468 | + if ($transaction instanceof EE_Transaction) { |
|
469 | 469 | $registration_payments = array(); |
470 | - $registrations = ! empty( $options['registrations'] ) |
|
471 | - ? $options[ 'registrations' ] |
|
470 | + $registrations = ! empty($options['registrations']) |
|
471 | + ? $options['registrations'] |
|
472 | 472 | : $transaction->registrations(); |
473 | - foreach ( $registrations as $registration ) { |
|
474 | - if ( $registration instanceof EE_Registration && $registration->owes_monies_and_can_pay() ) { |
|
473 | + foreach ($registrations as $registration) { |
|
474 | + if ($registration instanceof EE_Registration && $registration->owes_monies_and_can_pay()) { |
|
475 | 475 | $registration_payments = $registration_payments + $registration->registration_payments(); |
476 | 476 | } |
477 | 477 | } |
478 | - if ( ! empty( $registration_payments )) { |
|
479 | - foreach ( $registration_payments as $registration_payment ) { |
|
480 | - if ( $registration_payment instanceof EE_Registration_Payment ) { |
|
478 | + if ( ! empty($registration_payments)) { |
|
479 | + foreach ($registration_payments as $registration_payment) { |
|
480 | + if ($registration_payment instanceof EE_Registration_Payment) { |
|
481 | 481 | $owing = $owing - $registration_payment->amount(); |
482 | 482 | $payment = $registration_payment->payment(); |
483 | - if ( $payment instanceof EE_Payment ) { |
|
483 | + if ($payment instanceof EE_Payment) { |
|
484 | 484 | $payment_desc = sprintf( |
485 | - __( 'Payment%1$s Received: %2$s', 'event_espresso' ), |
|
485 | + __('Payment%1$s Received: %2$s', 'event_espresso'), |
|
486 | 486 | $payment->txn_id_chq_nmbr() != '' |
487 | - ? ' <span class="small-text">(#' . $payment->txn_id_chq_nmbr() . ')</span> ' |
|
487 | + ? ' <span class="small-text">(#'.$payment->txn_id_chq_nmbr().')</span> ' |
|
488 | 488 | : '', |
489 | 489 | $payment->timestamp() |
490 | 490 | ); |
@@ -492,12 +492,12 @@ discard block |
||
492 | 492 | $payment_desc = ''; |
493 | 493 | } |
494 | 494 | // start of row |
495 | - $html .= EEH_HTML::tr( '', '', 'total_tr odd' ); |
|
495 | + $html .= EEH_HTML::tr('', '', 'total_tr odd'); |
|
496 | 496 | // payment desc |
497 | - $html .= EEH_HTML::td( $payment_desc, '', '', '', ' colspan="3"' ); |
|
497 | + $html .= EEH_HTML::td($payment_desc, '', '', '', ' colspan="3"'); |
|
498 | 498 | // total td |
499 | 499 | $html .= EEH_HTML::td( |
500 | - EEH_Template::format_currency( $registration_payment->amount(), false, false ), |
|
500 | + EEH_Template::format_currency($registration_payment->amount(), false, false), |
|
501 | 501 | '', |
502 | 502 | 'total jst-rght' |
503 | 503 | ); |
@@ -505,17 +505,17 @@ discard block |
||
505 | 505 | $html .= EEH_HTML::trx(); |
506 | 506 | } |
507 | 507 | } |
508 | - if ( $line_item->total() ) { |
|
508 | + if ($line_item->total()) { |
|
509 | 509 | // start of row |
510 | - $html .= EEH_HTML::tr( '', '', 'total_tr odd' ); |
|
510 | + $html .= EEH_HTML::tr('', '', 'total_tr odd'); |
|
511 | 511 | // total td |
512 | 512 | $html .= EEH_HTML::td( |
513 | 513 | __('Amount Owing', 'event_espresso'), |
514 | - '', 'total_currency total jst-rght', '', ' colspan="3"' |
|
514 | + '', 'total_currency total jst-rght', '', ' colspan="3"' |
|
515 | 515 | ); |
516 | 516 | // total td |
517 | 517 | $html .= EEH_HTML::td( |
518 | - EEH_Template::format_currency( $owing, false, false ), '', 'total jst-rght' |
|
518 | + EEH_Template::format_currency($owing, false, false), '', 'total jst-rght' |
|
519 | 519 | ); |
520 | 520 | // end of row |
521 | 521 | $html .= EEH_HTML::trx(); |
@@ -68,7 +68,7 @@ discard block |
||
68 | 68 | * @param EE_Line_Item $line_item |
69 | 69 | * @param array $options |
70 | 70 | * @param \EE_Line_Item $parent_line_item |
71 | - * @return mixed |
|
71 | + * @return string |
|
72 | 72 | */ |
73 | 73 | public function display_line_item( EE_Line_Item $line_item, $options = array(), EE_Line_Item $parent_line_item = null ) { |
74 | 74 | |
@@ -207,7 +207,7 @@ discard block |
||
207 | 207 | * _event_row - basically a Heading row displayed once above each event's ticket rows |
208 | 208 | * |
209 | 209 | * @param EE_Line_Item $line_item |
210 | - * @return mixed |
|
210 | + * @return string |
|
211 | 211 | */ |
212 | 212 | private function _event_row( EE_Line_Item $line_item ) { |
213 | 213 | // start of row |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | * |
227 | 227 | * @param EE_Line_Item $line_item |
228 | 228 | * @param array $options |
229 | - * @return mixed |
|
229 | + * @return string |
|
230 | 230 | */ |
231 | 231 | private function _ticket_row( EE_Line_Item $line_item, $options = array() ) { |
232 | 232 | // start of row |
@@ -269,7 +269,7 @@ discard block |
||
269 | 269 | * |
270 | 270 | * @param EE_Line_Item $line_item |
271 | 271 | * @param array $options |
272 | - * @return mixed |
|
272 | + * @return string |
|
273 | 273 | */ |
274 | 274 | private function _item_row( EE_Line_Item $line_item, $options = array() ) { |
275 | 275 | // start of row |
@@ -319,7 +319,7 @@ discard block |
||
319 | 319 | * @param EE_Line_Item $line_item |
320 | 320 | * @param array $options |
321 | 321 | * @param \EE_Line_Item $parent_line_item |
322 | - * @return mixed |
|
322 | + * @return string |
|
323 | 323 | */ |
324 | 324 | private function _sub_item_row( EE_Line_Item $line_item, $options = array(), EE_Line_Item $parent_line_item = null ) { |
325 | 325 | // start of row |
@@ -357,7 +357,7 @@ discard block |
||
357 | 357 | * |
358 | 358 | * @param EE_Line_Item $line_item |
359 | 359 | * @param array $options |
360 | - * @return mixed |
|
360 | + * @return string |
|
361 | 361 | */ |
362 | 362 | private function _tax_row( EE_Line_Item $line_item, $options = array() ) { |
363 | 363 | // start of row |
@@ -386,7 +386,7 @@ discard block |
||
386 | 386 | * |
387 | 387 | * @param EE_Line_Item $line_item |
388 | 388 | * @param string $text |
389 | - * @return mixed |
|
389 | + * @return string |
|
390 | 390 | */ |
391 | 391 | private function _total_tax_row( EE_Line_Item $line_item, $text = '' ) { |
392 | 392 | $html = ''; |
@@ -413,7 +413,7 @@ discard block |
||
413 | 413 | * @param EE_Line_Item $line_item |
414 | 414 | * @param string $text |
415 | 415 | * @param array $options |
416 | - * @return mixed |
|
416 | + * @return string |
|
417 | 417 | */ |
418 | 418 | private function _sub_total_row( EE_Line_Item $line_item, $text = '', $options = array() ) { |
419 | 419 | $html = ''; |
@@ -438,7 +438,7 @@ discard block |
||
438 | 438 | * |
439 | 439 | * @param EE_Line_Item $line_item |
440 | 440 | * @param string $text |
441 | - * @return mixed |
|
441 | + * @return string |
|
442 | 442 | */ |
443 | 443 | private function _total_row( EE_Line_Item $line_item, $text = '' ) { |
444 | 444 | // start of row |
@@ -459,7 +459,7 @@ discard block |
||
459 | 459 | * |
460 | 460 | * @param EE_Line_Item $line_item |
461 | 461 | * @param array $options |
462 | - * @return mixed |
|
462 | + * @return string |
|
463 | 463 | */ |
464 | 464 | private function _payments_and_amount_owing_rows( EE_Line_Item $line_item, $options = array() ) { |
465 | 465 | $html = ''; |
@@ -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 | * Class EE_Billable_Line_Item_Filter |
@@ -25,8 +25,8 @@ discard block |
||
25 | 25 | * EE_Billable_Line_Item_Filter constructor. |
26 | 26 | * @param EE_Registration[] $registrations |
27 | 27 | */ |
28 | - public function __construct( $registrations ) { |
|
29 | - parent::__construct( $this->_remove_unbillable_registrations( $registrations ) ); |
|
28 | + public function __construct($registrations) { |
|
29 | + parent::__construct($this->_remove_unbillable_registrations($registrations)); |
|
30 | 30 | } |
31 | 31 | |
32 | 32 | |
@@ -39,25 +39,24 @@ discard block |
||
39 | 39 | * @param EE_Registration[] $registrations |
40 | 40 | * @return mixed |
41 | 41 | */ |
42 | - protected function _remove_unbillable_registrations( $registrations = array() ) { |
|
43 | - if ( ! empty( $registrations ) ) { |
|
42 | + protected function _remove_unbillable_registrations($registrations = array()) { |
|
43 | + if ( ! empty($registrations)) { |
|
44 | 44 | // these reg statuses require payment (if event is not free) |
45 | 45 | $requires_payment = EEM_Registration::reg_statuses_that_allow_payment(); |
46 | - foreach ( $registrations as $key => $registration ) { |
|
47 | - if ( ! $registration instanceof EE_Registration ) { |
|
46 | + foreach ($registrations as $key => $registration) { |
|
47 | + if ( ! $registration instanceof EE_Registration) { |
|
48 | 48 | continue; |
49 | 49 | } |
50 | 50 | // are we billing for this registration at this moment ? |
51 | - if ( ! |
|
52 | - $registration->owes_monies_and_can_pay( $requires_payment ) && |
|
51 | + if ( ! $registration->owes_monies_and_can_pay($requires_payment) && |
|
53 | 52 | ! ( |
54 | 53 | // free registration with valid reg status |
55 | 54 | $registration->final_price() == 0 && |
56 | - in_array( $registration->status_ID(), $requires_payment ) |
|
55 | + in_array($registration->status_ID(), $requires_payment) |
|
57 | 56 | ) |
58 | 57 | ) { |
59 | 58 | // not billable. remove it |
60 | - unset( $registrations[ $key ] ); |
|
59 | + unset($registrations[$key]); |
|
61 | 60 | } |
62 | 61 | } |
63 | 62 | } |
@@ -1,6 +1,6 @@ |
||
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 | * Class EE_Line_Item_Filter_Collection |
@@ -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 | * Class EE_Line_Item_Filter_Processor |
@@ -55,12 +55,12 @@ discard block |
||
55 | 55 | * @param \EEI_Line_Item $grand_total_line_item |
56 | 56 | * @throws \EE_Error |
57 | 57 | */ |
58 | - public function __construct( EE_Line_Item_Filter_Collection $line_item_filters, EEI_Line_Item $grand_total_line_item ) { |
|
58 | + public function __construct(EE_Line_Item_Filter_Collection $line_item_filters, EEI_Line_Item $grand_total_line_item) { |
|
59 | 59 | $this->line_item_filters = $line_item_filters; |
60 | - if ( $grand_total_line_item->type() !== EEM_Line_Item::type_total ) { |
|
61 | - throw new EE_Error( __( 'A Line Item of the type total is required', 'event_espresso' ) ); |
|
60 | + if ($grand_total_line_item->type() !== EEM_Line_Item::type_total) { |
|
61 | + throw new EE_Error(__('A Line Item of the type total is required', 'event_espresso')); |
|
62 | 62 | } |
63 | - $this->grand_total_line_item = $this->clone_and_reset_line_item_tree( $grand_total_line_item ); |
|
63 | + $this->grand_total_line_item = $this->clone_and_reset_line_item_tree($grand_total_line_item); |
|
64 | 64 | } |
65 | 65 | |
66 | 66 | |
@@ -71,10 +71,10 @@ discard block |
||
71 | 71 | * @param \EEI_Line_Item $line_item |
72 | 72 | * @return \EEI_Line_Item |
73 | 73 | */ |
74 | - protected function clone_and_reset_line_item_tree( EEI_Line_Item $line_item ) { |
|
75 | - $cloned_line_item = $this->clone_and_reset_line_item( $line_item ); |
|
76 | - foreach ( $line_item->children() as $child_line_item ) { |
|
77 | - $cloned_line_item->add_child_line_item( $this->clone_and_reset_line_item_tree( $child_line_item ) ); |
|
74 | + protected function clone_and_reset_line_item_tree(EEI_Line_Item $line_item) { |
|
75 | + $cloned_line_item = $this->clone_and_reset_line_item($line_item); |
|
76 | + foreach ($line_item->children() as $child_line_item) { |
|
77 | + $cloned_line_item->add_child_line_item($this->clone_and_reset_line_item_tree($child_line_item)); |
|
78 | 78 | } |
79 | 79 | return $cloned_line_item; |
80 | 80 | } |
@@ -91,16 +91,16 @@ discard block |
||
91 | 91 | * @param \EEI_Line_Item $line_item |
92 | 92 | * @return \EEI_Line_Item |
93 | 93 | */ |
94 | - protected function clone_and_reset_line_item( EEI_Line_Item $line_item ) { |
|
94 | + protected function clone_and_reset_line_item(EEI_Line_Item $line_item) { |
|
95 | 95 | // we don't actually want to work with the original line item, so clone it |
96 | 96 | $cloned_line_item = clone $line_item; |
97 | - $cloned_line_item->set( 'LIN_ID', null ); |
|
98 | - $cloned_line_item->set( 'LIN_parent', null ); |
|
97 | + $cloned_line_item->set('LIN_ID', null); |
|
98 | + $cloned_line_item->set('LIN_parent', null); |
|
99 | 99 | $cloned_line_item->clear_related_line_item_cache(); |
100 | - foreach( array_keys( EEM_Line_Item::instance()->relation_settings() ) as $relation_name) { |
|
101 | - $cloned_line_item->clear_cache( $relation_name, null, true ); |
|
100 | + foreach (array_keys(EEM_Line_Item::instance()->relation_settings()) as $relation_name) { |
|
101 | + $cloned_line_item->clear_cache($relation_name, null, true); |
|
102 | 102 | } |
103 | - $cloned_line_item->set_allow_persist( false ); |
|
103 | + $cloned_line_item->set_allow_persist(false); |
|
104 | 104 | return $cloned_line_item; |
105 | 105 | } |
106 | 106 | |
@@ -113,8 +113,8 @@ discard block |
||
113 | 113 | */ |
114 | 114 | public function process() { |
115 | 115 | $this->line_item_filters->rewind(); |
116 | - while ( $this->line_item_filters->valid() ) { |
|
117 | - $this->grand_total_line_item = $this->line_item_filters->current()->process( $this->grand_total_line_item ); |
|
116 | + while ($this->line_item_filters->valid()) { |
|
117 | + $this->grand_total_line_item = $this->line_item_filters->current()->process($this->grand_total_line_item); |
|
118 | 118 | $this->line_item_filters->next(); |
119 | 119 | } |
120 | 120 | $this->grand_total_line_item->recalculate_total_including_taxes(); |
@@ -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 | * Class EE_Non_Zero_Line_Item_Filter |
@@ -31,36 +31,36 @@ discard block |
||
31 | 31 | * @param EEI_Line_Item $line_item |
32 | 32 | * @return \EEI_Line_Item |
33 | 33 | */ |
34 | - public function process( EEI_Line_Item $line_item ) { |
|
35 | - $non_zero_line_item = $this->_filter_zero_line_item( $line_item ); |
|
36 | - if ( ! $non_zero_line_item instanceof EEI_Line_Item ) { |
|
34 | + public function process(EEI_Line_Item $line_item) { |
|
35 | + $non_zero_line_item = $this->_filter_zero_line_item($line_item); |
|
36 | + if ( ! $non_zero_line_item instanceof EEI_Line_Item) { |
|
37 | 37 | return null; |
38 | 38 | } |
39 | 39 | //if this is an event subtotal, we want to only include it if it |
40 | 40 | //has a non-zero total and at least one ticket line item child |
41 | - if( $line_item->children() ) { |
|
41 | + if ($line_item->children()) { |
|
42 | 42 | $ticket_or_subtotals_with_tkt_children_count = 0; |
43 | - foreach ( $line_item->children() as $child_line_item ) { |
|
43 | + foreach ($line_item->children() as $child_line_item) { |
|
44 | 44 | $code = $child_line_item->code(); |
45 | - $child_line_item = $this->process( $child_line_item ); |
|
46 | - if( ! $child_line_item instanceof EEI_Line_Item ) { |
|
47 | - $line_item->delete_child_line_item( $code ); |
|
45 | + $child_line_item = $this->process($child_line_item); |
|
46 | + if ( ! $child_line_item instanceof EEI_Line_Item) { |
|
47 | + $line_item->delete_child_line_item($code); |
|
48 | 48 | continue; |
49 | 49 | } |
50 | 50 | if ( |
51 | - ( $child_line_item instanceof EEI_Line_Item && |
|
51 | + ($child_line_item instanceof EEI_Line_Item && |
|
52 | 52 | $child_line_item->type() === EEM_Line_Item::type_line_item && |
53 | - $child_line_item->OBJ_type() === 'Ticket' ) || |
|
54 | - ( $child_line_item instanceof EEI_Line_Item && |
|
55 | - $child_line_item->type() === EEM_Line_Item::type_sub_total ) |
|
53 | + $child_line_item->OBJ_type() === 'Ticket') || |
|
54 | + ($child_line_item instanceof EEI_Line_Item && |
|
55 | + $child_line_item->type() === EEM_Line_Item::type_sub_total) |
|
56 | 56 | ) { |
57 | 57 | $ticket_or_subtotals_with_tkt_children_count++; |
58 | 58 | } |
59 | 59 | } |
60 | 60 | // if this is an event subtotal with NO ticket children |
61 | 61 | // we basically want to ignore it |
62 | - return $this->_filter_zero_subtotal_line_item( $non_zero_line_item, $ticket_or_subtotals_with_tkt_children_count ); |
|
63 | - }else{ |
|
62 | + return $this->_filter_zero_subtotal_line_item($non_zero_line_item, $ticket_or_subtotals_with_tkt_children_count); |
|
63 | + } else { |
|
64 | 64 | return $non_zero_line_item; |
65 | 65 | } |
66 | 66 | } |
@@ -73,7 +73,7 @@ discard block |
||
73 | 73 | * @param EEI_Line_Item $line_item |
74 | 74 | * @return EEI_Line_Item |
75 | 75 | */ |
76 | - protected function _filter_zero_line_item( EEI_Line_Item $line_item ) { |
|
76 | + protected function _filter_zero_line_item(EEI_Line_Item $line_item) { |
|
77 | 77 | if ( |
78 | 78 | $line_item->type() === EEM_Line_Item::type_line_item && |
79 | 79 | $line_item->OBJ_type() === 'Ticket' && |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @param int $ticket_children |
94 | 94 | * @return \EEI_Line_Item |
95 | 95 | */ |
96 | - protected function _filter_zero_subtotal_line_item( EEI_Line_Item $line_item, $ticket_children = 0 ) { |
|
96 | + protected function _filter_zero_subtotal_line_item(EEI_Line_Item $line_item, $ticket_children = 0) { |
|
97 | 97 | if ( |
98 | 98 | $line_item->type() === EEM_Line_Item::type_sub_total && |
99 | 99 | $ticket_children === 0 |
@@ -60,7 +60,7 @@ |
||
60 | 60 | // if this is an event subtotal with NO ticket children |
61 | 61 | // we basically want to ignore it |
62 | 62 | return $this->_filter_zero_subtotal_line_item( $non_zero_line_item, $ticket_or_subtotals_with_tkt_children_count ); |
63 | - }else{ |
|
63 | + } else{ |
|
64 | 64 | return $non_zero_line_item; |
65 | 65 | } |
66 | 66 | } |
@@ -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 | * Class EE_Single_Registration_Line_Item_Filter |
@@ -21,8 +21,8 @@ discard block |
||
21 | 21 | * |
22 | 22 | * @param EE_Registration $registration |
23 | 23 | */ |
24 | - public function __construct( $registration ) { |
|
25 | - parent::__construct( array( $registration ) ); |
|
24 | + public function __construct($registration) { |
|
25 | + parent::__construct(array($registration)); |
|
26 | 26 | } |
27 | 27 | } |
28 | 28 | // End of file EE_Single_Registration_Line_Item_Filter.class.php |
@@ -6,7 +6,9 @@ |
||
6 | 6 | * @subpackage messages |
7 | 7 | * @since 4.5.0 |
8 | 8 | */ |
9 | -if ( ! defined('EVENT_ESPRESSO_VERSION')) exit('No direct script access allowed'); |
|
9 | +if ( ! defined('EVENT_ESPRESSO_VERSION')) { |
|
10 | + exit('No direct script access allowed'); |
|
11 | +} |
|
10 | 12 | |
11 | 13 | /** |
12 | 14 | * This class contains common methods/properties shared among all payment message types. |
@@ -51,26 +51,26 @@ |
||
51 | 51 | |
52 | 52 | |
53 | 53 | |
54 | - protected function _get_data_for_context( $context, EE_Registration $registration, $id ) { |
|
54 | + protected function _get_data_for_context($context, EE_Registration $registration, $id) { |
|
55 | 55 | |
56 | 56 | //use the registration to get the transaction. |
57 | 57 | $transaction = $registration->transaction(); |
58 | 58 | |
59 | 59 | //bail early if no transaction |
60 | - if ( ! $transaction instanceof EE_Transaction ) { |
|
61 | - throw new EE_Error( __('The given registration does not have an associated transaction. Something is wrong.', 'event_espresso' ) ); |
|
60 | + if ( ! $transaction instanceof EE_Transaction) { |
|
61 | + throw new EE_Error(__('The given registration does not have an associated transaction. Something is wrong.', 'event_espresso')); |
|
62 | 62 | } |
63 | 63 | |
64 | - $payment = ! empty( $id ) ? EEM_Payment::instance()->get_one( array( array( 'PAY_ID' => $id, 'TXN_ID' => $transaction->ID() ) ) ) : 0; |
|
64 | + $payment = ! empty($id) ? EEM_Payment::instance()->get_one(array(array('PAY_ID' => $id, 'TXN_ID' => $transaction->ID()))) : 0; |
|
65 | 65 | |
66 | - return array( $transaction, $payment ); |
|
66 | + return array($transaction, $payment); |
|
67 | 67 | } |
68 | 68 | |
69 | 69 | |
70 | 70 | |
71 | - protected function _get_admin_content_events_edit_for_messenger( EE_messenger $messenger ) { |
|
71 | + protected function _get_admin_content_events_edit_for_messenger(EE_messenger $messenger) { |
|
72 | 72 | //this is just a test |
73 | - return $this->name . ' Message Type for ' . $messenger->name . ' Messenger '; |
|
73 | + return $this->name.' Message Type for '.$messenger->name.' Messenger '; |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | /** |