@@ -199,7 +199,7 @@ |
||
199 | 199 | private function _render_line(array $link, midcom_core_dbaobject &$other_obj) |
200 | 200 | { |
201 | 201 | $this->_request_data['link'] = $link; |
202 | - $this->_request_data['other_obj'] =& $other_obj; |
|
202 | + $this->_request_data['other_obj'] = & $other_obj; |
|
203 | 203 | $this->_request_data['icon'] = midcom_helper_reflector::get_object_icon($other_obj); |
204 | 204 | |
205 | 205 | if (get_class($other_obj) != $link['class']) { |
@@ -131,8 +131,8 @@ discard block |
||
131 | 131 | $year_data = []; |
132 | 132 | $first_post = $this->_compute_welcome_first_post(); |
133 | 133 | $this->_request_data['first_post'] = $first_post; |
134 | - $this->_request_data['total_count'] =& $total_count; |
|
135 | - $this->_request_data['year_data'] =& $year_data; |
|
134 | + $this->_request_data['total_count'] = & $total_count; |
|
135 | + $this->_request_data['year_data'] = & $year_data; |
|
136 | 136 | if (!$first_post) { |
137 | 137 | return; |
138 | 138 | } |
@@ -261,7 +261,7 @@ discard block |
||
261 | 261 | switch ($handler_id) { |
262 | 262 | case 'archive-year-category': |
263 | 263 | $category = trim(strip_tags($args[1])); |
264 | - if ( $data['datamanager']->get_schema('default')->has_field('categories') |
|
264 | + if ($data['datamanager']->get_schema('default')->has_field('categories') |
|
265 | 265 | && !$data['datamanager']->get_schema('default')->get_field('categories')['type_config']['allow_multiple']) { |
266 | 266 | $qb->add_constraint('extra1', '=', $category); |
267 | 267 | } else { |
@@ -345,7 +345,7 @@ discard block |
||
345 | 345 | throw new midcom_error_notfound("The year '{$year}' is not valid."); |
346 | 346 | } |
347 | 347 | |
348 | - if ( $month < 1 |
|
348 | + if ($month < 1 |
|
349 | 349 | || $month > 12) { |
350 | 350 | throw new midcom_error_notfound("The month {$month} is not valid."); |
351 | 351 | } |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | $result = $this->is_username_available($fields); |
48 | 48 | |
49 | 49 | $accounthelper = new org_openpsa_user_accounthelper(); |
50 | - if ($fields['password']['switch'] && !$accounthelper->check_password_strength($fields['password']['password'])){ |
|
50 | + if ($fields['password']['switch'] && !$accounthelper->check_password_strength($fields['password']['password'])) { |
|
51 | 51 | $result = ['password' => midcom::get()->i18n->get_string('password weak', 'org.openpsa.user')]; |
52 | 52 | } |
53 | 53 | |
@@ -149,10 +149,10 @@ discard block |
||
149 | 149 | $user = new midcom_db_person($fields["person"]); |
150 | 150 | |
151 | 151 | $accounthelper = new org_openpsa_user_accounthelper($user); |
152 | - if (!$accounthelper->check_password_reuse($fields['new_password'])){ |
|
152 | + if (!$accounthelper->check_password_reuse($fields['new_password'])) { |
|
153 | 153 | $result['password'] = midcom::get()->i18n->get_string('password was already used', 'org.openpsa.user'); |
154 | 154 | } |
155 | - if (!$accounthelper->check_password_strength($fields['new_password'])){ |
|
155 | + if (!$accounthelper->check_password_strength($fields['new_password'])) { |
|
156 | 156 | $result['password'] = midcom::get()->i18n->get_string('password weak', 'org.openpsa.user'); |
157 | 157 | } |
158 | 158 | return $result ?: true; |
@@ -74,7 +74,7 @@ |
||
74 | 74 | } |
75 | 75 | |
76 | 76 | $result_cache[$cache_key] = []; |
77 | - $ret =& $result_cache[$cache_key]; |
|
77 | + $ret = & $result_cache[$cache_key]; |
|
78 | 78 | |
79 | 79 | if (empty($up)) { |
80 | 80 | // TODO: use reflection to see what kind of property this is ? |
@@ -149,7 +149,7 @@ |
||
149 | 149 | } |
150 | 150 | |
151 | 151 | $reflector = midcom_helper_reflector::get($linked_object); |
152 | - $link_html = "<a href='" . midcom::get()->permalinks->create_permalink($linked_object->guid) . "'>" . $reflector->get_object_label($linked_object) ."</a>"; |
|
152 | + $link_html = "<a href='" . midcom::get()->permalinks->create_permalink($linked_object->guid) . "'>" . $reflector->get_object_label($linked_object) . "</a>"; |
|
153 | 153 | $data['linked_objects'][$entry->linkGuid] = $link_html; |
154 | 154 | $data['linked_raw_objects'][$entry->linkGuid] = $reflector->get_object_label($linked_object); |
155 | 155 | } |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | $qb_receipts->add_constraint('orgOpenpsaObtype', '=', org_openpsa_directmarketing_campaign_messagereceipt_dba::SENT); |
38 | 38 | $qb_receipts->add_order('metadata.created'); |
39 | 39 | $receipts = $qb_receipts->execute_unchecked(); |
40 | - $receipt_data =& $this->_request_data['report']['receipt_data']; |
|
40 | + $receipt_data = & $this->_request_data['report']['receipt_data']; |
|
41 | 41 | $receipt_data['first_send'] = $receipts[0]->metadata->created ?? 0; |
42 | 42 | $receipt_data['last_send'] = end($receipts)->metadata->created ?? 0; |
43 | 43 | $receipt_data['sent'] = count($receipts); |
@@ -64,7 +64,7 @@ discard block |
||
64 | 64 | |
65 | 65 | private function _get_campaign_data(int $first_send) |
66 | 66 | { |
67 | - $campaign_data =& $this->_request_data['report']['campaign_data']; |
|
67 | + $campaign_data = & $this->_request_data['report']['campaign_data']; |
|
68 | 68 | $qb_unsub = org_openpsa_directmarketing_campaign_member_dba::new_query_builder(); |
69 | 69 | $qb_unsub->add_constraint('campaign', '=', $this->_message->campaign); |
70 | 70 | $qb_unsub->add_constraint('orgOpenpsaObtype', '=', org_openpsa_directmarketing_campaign_member_dba::UNSUBSCRIBED); |
@@ -88,7 +88,7 @@ discard block |
||
88 | 88 | private function _get_link_data($segmentation_param) |
89 | 89 | { |
90 | 90 | $this->_request_data['report']['link_data'] = []; |
91 | - $link_data =& $this->_request_data['report']['link_data']; |
|
91 | + $link_data = & $this->_request_data['report']['link_data']; |
|
92 | 92 | |
93 | 93 | $link_data['counts'] = []; |
94 | 94 | $link_data['percentages'] = ['of_links' => [], 'of_recipients' => []]; |
@@ -114,7 +114,7 @@ discard block |
||
114 | 114 | foreach ($links as $link) { |
115 | 115 | $segment = ''; |
116 | 116 | $segment_notfound = false; |
117 | - if ( $segmentation_param |
|
117 | + if ($segmentation_param |
|
118 | 118 | && !empty($link->person)) { |
119 | 119 | try { |
120 | 120 | $person = org_openpsa_contacts_person_dba::get_cached($link->person); |
@@ -128,7 +128,7 @@ discard block |
||
128 | 128 | if (!isset($link_data['segments'][$segment])) { |
129 | 129 | $link_data['segments'][$segment] = $segment_prototype; |
130 | 130 | } |
131 | - $segment_data =& $link_data['segments'][$segment]; |
|
131 | + $segment_data = & $link_data['segments'][$segment]; |
|
132 | 132 | } else { |
133 | 133 | $segment_data = $segment_prototype; |
134 | 134 | } |
@@ -238,15 +238,15 @@ discard block |
||
238 | 238 | $this->_initialize_field($array['percentages']['of_links'], $link); |
239 | 239 | $this->_initialize_field($array['percentages']['of_recipients'], $link); |
240 | 240 | |
241 | - $link_data =& $this->_request_data['report']['link_data']; |
|
242 | - $array['percentages']['of_links'][$link->target]['total'] = ($array['counts'][$link->target]['total']/$link_data['total'])*100; |
|
243 | - $array['percentages']['of_links'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token]/$link_data['total'])*100; |
|
241 | + $link_data = & $this->_request_data['report']['link_data']; |
|
242 | + $array['percentages']['of_links'][$link->target]['total'] = ($array['counts'][$link->target]['total'] / $link_data['total']) * 100; |
|
243 | + $array['percentages']['of_links'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token] / $link_data['total']) * 100; |
|
244 | 244 | |
245 | - $receipt_data =& $this->_request_data['report']['receipt_data']; |
|
246 | - $array['percentages']['of_recipients'][$link->target]['total'] = ((count($array['counts'][$link->target])-1)/($receipt_data['sent']-$receipt_data['bounced']))*100; |
|
247 | - $array['percentages']['of_recipients'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token]/($receipt_data['sent']-$receipt_data['bounced']))*100; |
|
245 | + $receipt_data = & $this->_request_data['report']['receipt_data']; |
|
246 | + $array['percentages']['of_recipients'][$link->target]['total'] = ((count($array['counts'][$link->target]) - 1) / ($receipt_data['sent'] - $receipt_data['bounced'])) * 100; |
|
247 | + $array['percentages']['of_recipients'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token] / ($receipt_data['sent'] - $receipt_data['bounced'])) * 100; |
|
248 | 248 | |
249 | - if ( !isset($array['percentages']['of_recipients']['total']) |
|
249 | + if (!isset($array['percentages']['of_recipients']['total']) |
|
250 | 250 | || $array['percentages']['of_recipients'][$link->target]['total'] > $array['percentages']['of_recipients']['total']) { |
251 | 251 | $array['percentages']['of_recipients']['total'] = $array['percentages']['of_recipients'][$link->target]['total']; |
252 | 252 | } |
@@ -26,7 +26,7 @@ |
||
26 | 26 | |
27 | 27 | public function _on_creating() |
28 | 28 | { |
29 | - if ( !$this->referrer |
|
29 | + if (!$this->referrer |
|
30 | 30 | && !empty($_SERVER['HTTP_REFERER'])) { |
31 | 31 | $this->referrer = $_SERVER['HTTP_REFERER']; |
32 | 32 | } |
@@ -103,7 +103,7 @@ |
||
103 | 103 | foreach ($parameters as $key => $value) { |
104 | 104 | $this->_patterns[] = "/__({$key})__/"; |
105 | 105 | |
106 | - if ( is_array($value) |
|
106 | + if (is_array($value) |
|
107 | 107 | || is_object($value)) { |
108 | 108 | $this->_patterns[] = "/__({$key})_([^ \.>\"-]*?)__/"; |
109 | 109 | } |
@@ -75,7 +75,7 @@ discard block |
||
75 | 75 | $this->from = $from; |
76 | 76 | $this->subject = $subject; |
77 | 77 | |
78 | - if ( $message->orgOpenpsaObtype != org_openpsa_directmarketing_campaign_message_dba::EMAIL_TEXT |
|
78 | + if ($message->orgOpenpsaObtype != org_openpsa_directmarketing_campaign_message_dba::EMAIL_TEXT |
|
79 | 79 | && $message->orgOpenpsaObtype != org_openpsa_directmarketing_campaign_message_dba::EMAIL_HTML) { |
80 | 80 | throw new midcom_error('unsupported message type'); |
81 | 81 | } |
@@ -219,7 +219,7 @@ discard block |
||
219 | 219 | $token .= midcom_helper_misc::random_string($this->token_size - 1, 'abcdefghijklmnopqrstuvwxyz0123456789'); |
220 | 220 | |
221 | 221 | //If token is not free or (very, very unlikely) matches our dummy token, recurse. |
222 | - if ( $token === 'dummy' |
|
222 | + if ($token === 'dummy' |
|
223 | 223 | || !org_openpsa_directmarketing_campaign_messagereceipt_dba::token_is_free($token)) { |
224 | 224 | return $this->_create_token(); |
225 | 225 | } |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | return null; |
241 | 241 | } |
242 | 242 | $type = $this->_backend->get_type(); |
243 | - if ( $person->get_parameter('org.openpsa.directmarketing', "send_all_denied") |
|
243 | + if ($person->get_parameter('org.openpsa.directmarketing', "send_all_denied") |
|
244 | 244 | || $person->get_parameter('org.openpsa.directmarketing', "send_{$type}_denied")) { |
245 | 245 | debug_add("Sending {$type} messages to person {$person->rname} is denied, unsubscribing member (member #{$member->id})"); |
246 | 246 | $member->orgOpenpsaObtype = org_openpsa_directmarketing_campaign_member_dba::UNSUBSCRIBED; |