@@ -33,7 +33,7 @@ discard block |
||
| 33 | 33 | $qb_receipts->add_constraint('orgOpenpsaObtype', '=', org_openpsa_directmarketing_campaign_messagereceipt_dba::SENT); |
| 34 | 34 | $qb_receipts->add_order('metadata.created'); |
| 35 | 35 | $receipts = $qb_receipts->execute_unchecked(); |
| 36 | - $receipt_data =& $this->_request_data['report']['receipt_data']; |
|
| 36 | + $receipt_data = & $this->_request_data['report']['receipt_data']; |
|
| 37 | 37 | $receipt_data['first_send'] = $receipts[0]->metadata->created ?? 0; |
| 38 | 38 | $receipt_data['last_send'] = end($receipts)->metadata->created ?? 0; |
| 39 | 39 | $receipt_data['sent'] = count($receipts); |
@@ -60,7 +60,7 @@ discard block |
||
| 60 | 60 | |
| 61 | 61 | private function _get_campaign_data(int $first_send) |
| 62 | 62 | { |
| 63 | - $campaign_data =& $this->_request_data['report']['campaign_data']; |
|
| 63 | + $campaign_data = & $this->_request_data['report']['campaign_data']; |
|
| 64 | 64 | $qb_unsub = org_openpsa_directmarketing_campaign_member_dba::new_query_builder(); |
| 65 | 65 | $qb_unsub->add_constraint('campaign', '=', $this->_message->campaign); |
| 66 | 66 | $qb_unsub->add_constraint('orgOpenpsaObtype', '=', org_openpsa_directmarketing_campaign_member_dba::UNSUBSCRIBED); |
@@ -84,7 +84,7 @@ discard block |
||
| 84 | 84 | private function _get_link_data($segmentation_param) |
| 85 | 85 | { |
| 86 | 86 | $this->_request_data['report']['link_data'] = []; |
| 87 | - $link_data =& $this->_request_data['report']['link_data']; |
|
| 87 | + $link_data = & $this->_request_data['report']['link_data']; |
|
| 88 | 88 | |
| 89 | 89 | $link_data['counts'] = []; |
| 90 | 90 | $link_data['percentages'] = ['of_links' => [], 'of_recipients' => []]; |
@@ -110,7 +110,7 @@ discard block |
||
| 110 | 110 | foreach ($links as $link) { |
| 111 | 111 | $segment = ''; |
| 112 | 112 | $segment_notfound = false; |
| 113 | - if ( $segmentation_param |
|
| 113 | + if ($segmentation_param |
|
| 114 | 114 | && !empty($link->person)) { |
| 115 | 115 | try { |
| 116 | 116 | $person = org_openpsa_contacts_person_dba::get_cached($link->person); |
@@ -122,7 +122,7 @@ discard block |
||
| 122 | 122 | $segment_notfound = true; |
| 123 | 123 | } |
| 124 | 124 | $link_data['segments'][$segment] ??= $segment_prototype; |
| 125 | - $segment_data =& $link_data['segments'][$segment]; |
|
| 125 | + $segment_data = & $link_data['segments'][$segment]; |
|
| 126 | 126 | } else { |
| 127 | 127 | $segment_data = $segment_prototype; |
| 128 | 128 | } |
@@ -230,15 +230,15 @@ discard block |
||
| 230 | 230 | $this->_initialize_field($array['percentages']['of_links'], $link); |
| 231 | 231 | $this->_initialize_field($array['percentages']['of_recipients'], $link); |
| 232 | 232 | |
| 233 | - $link_data =& $this->_request_data['report']['link_data']; |
|
| 234 | - $array['percentages']['of_links'][$link->target]['total'] = ($array['counts'][$link->target]['total']/$link_data['total'])*100; |
|
| 235 | - $array['percentages']['of_links'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token]/$link_data['total'])*100; |
|
| 233 | + $link_data = & $this->_request_data['report']['link_data']; |
|
| 234 | + $array['percentages']['of_links'][$link->target]['total'] = ($array['counts'][$link->target]['total'] / $link_data['total']) * 100; |
|
| 235 | + $array['percentages']['of_links'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token] / $link_data['total']) * 100; |
|
| 236 | 236 | |
| 237 | - $receipt_data =& $this->_request_data['report']['receipt_data']; |
|
| 238 | - $array['percentages']['of_recipients'][$link->target]['total'] = ((count($array['counts'][$link->target])-1)/($receipt_data['sent']-$receipt_data['bounced']))*100; |
|
| 239 | - $array['percentages']['of_recipients'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token]/($receipt_data['sent']-$receipt_data['bounced']))*100; |
|
| 237 | + $receipt_data = & $this->_request_data['report']['receipt_data']; |
|
| 238 | + $array['percentages']['of_recipients'][$link->target]['total'] = ((count($array['counts'][$link->target]) - 1) / ($receipt_data['sent'] - $receipt_data['bounced'])) * 100; |
|
| 239 | + $array['percentages']['of_recipients'][$link->target][$link->token] = ($array['counts'][$link->target][$link->token] / ($receipt_data['sent'] - $receipt_data['bounced'])) * 100; |
|
| 240 | 240 | |
| 241 | - if ( !isset($array['percentages']['of_recipients']['total']) |
|
| 241 | + if (!isset($array['percentages']['of_recipients']['total']) |
|
| 242 | 242 | || $array['percentages']['of_recipients'][$link->target]['total'] > $array['percentages']['of_recipients']['total']) { |
| 243 | 243 | $array['percentages']['of_recipients']['total'] = $array['percentages']['of_recipients'][$link->target]['total']; |
| 244 | 244 | } |
@@ -254,7 +254,7 @@ |
||
| 254 | 254 | */ |
| 255 | 255 | public function set_custom_key($key, &$value) |
| 256 | 256 | { |
| 257 | - $this->_data[MIDCOM_CONTEXT_CUSTOMDATA][$key] =& $value; |
|
| 257 | + $this->_data[MIDCOM_CONTEXT_CUSTOMDATA][$key] = & $value; |
|
| 258 | 258 | } |
| 259 | 259 | |
| 260 | 260 | public function show() |
@@ -208,7 +208,7 @@ discard block |
||
| 208 | 208 | $invoice_item->pricePerUnit = $deliverable->pricePerUnit; |
| 209 | 209 | $invoice_item->deliverable = $deliverable->id; |
| 210 | 210 | //calculate price |
| 211 | - if ( $deliverable->invoiceByActualUnits |
|
| 211 | + if ($deliverable->invoiceByActualUnits |
|
| 212 | 212 | || $deliverable->plannedUnits == 0) { |
| 213 | 213 | $invoice_item->units = $hours; |
| 214 | 214 | } else { |
@@ -249,7 +249,7 @@ discard block |
||
| 249 | 249 | */ |
| 250 | 250 | public function get_billing_data() : org_openpsa_invoices_billing_data_dba |
| 251 | 251 | { |
| 252 | - return $this->_billing_data ??= org_openpsa_invoices_billing_data_dba::get_by_object($this);; |
|
| 252 | + return $this->_billing_data ??= org_openpsa_invoices_billing_data_dba::get_by_object($this); ; |
|
| 253 | 253 | } |
| 254 | 254 | |
| 255 | 255 | public function get_customer() |
@@ -24,7 +24,7 @@ discard block |
||
| 24 | 24 | */ |
| 25 | 25 | public function configureOptions(OptionsResolver $resolver) |
| 26 | 26 | { |
| 27 | - $map_attr = function (Options $options, $value) { |
|
| 27 | + $map_attr = function(Options $options, $value) { |
|
| 28 | 28 | $value ??= []; |
| 29 | 29 | $value['class'] = $options['widget_config']['enabled'] ? 'codemirror ' . $options['widget_config']['language'] : 'longtext'; |
| 30 | 30 | |
@@ -44,7 +44,7 @@ discard block |
||
| 44 | 44 | ] |
| 45 | 45 | ]); |
| 46 | 46 | |
| 47 | - $resolver->setNormalizer('constraints', function (Options $options, $value) { |
|
| 47 | + $resolver->setNormalizer('constraints', function(Options $options, $value) { |
|
| 48 | 48 | if ($options['dm2_type'] == 'php') { |
| 49 | 49 | $value[] = new php; |
| 50 | 50 | } |
@@ -66,7 +66,7 @@ |
||
| 66 | 66 | $operation = $button->getConfig()->getOption('operation'); |
| 67 | 67 | $storage = $view->parent->vars['value']; |
| 68 | 68 | |
| 69 | - if ( $operation == controller::SAVE |
|
| 69 | + if ($operation == controller::SAVE |
|
| 70 | 70 | && $storage instanceof dbacontainer |
| 71 | 71 | && empty($storage->get_value()->id)) { |
| 72 | 72 | $label = 'create'; |
@@ -81,7 +81,7 @@ discard block |
||
| 81 | 81 | $etag = trim($parser->data['headers']['etag']); |
| 82 | 82 | |
| 83 | 83 | $feed_etag = $this->_feed->get_parameter('net.nemein.rss', 'etag'); |
| 84 | - if ( !empty($feed_etag) |
|
| 84 | + if (!empty($feed_etag) |
|
| 85 | 85 | && $feed_etag == $etag) { |
| 86 | 86 | // Feed hasn't changed, skip updating |
| 87 | 87 | debug_add("Feed {$this->_feed->url} has not changed since " . date('c', $this->_feed->latestfetch), MIDCOM_LOG_WARN); |
@@ -150,7 +150,7 @@ discard block |
||
| 150 | 150 | $guid = $item->get_id(); |
| 151 | 151 | $title = $item->get_title(); |
| 152 | 152 | |
| 153 | - if ( ( empty($title) |
|
| 153 | + if ((empty($title) |
|
| 154 | 154 | || trim($title) == '...') |
| 155 | 155 | && empty($guid)) { |
| 156 | 156 | // Something wrong with this entry, skip it |
@@ -212,7 +212,7 @@ discard block |
||
| 212 | 212 | } |
| 213 | 213 | |
| 214 | 214 | if ($article->id) { |
| 215 | - if ( $this->apply_values($article, $values, $meta_values) |
|
| 215 | + if ($this->apply_values($article, $values, $meta_values) |
|
| 216 | 216 | && !$article->update()) { |
| 217 | 217 | return null; |
| 218 | 218 | } |
@@ -241,14 +241,14 @@ discard block |
||
| 241 | 241 | private function find_author(net_nemein_rss_parser_item $item) : midcom_db_person |
| 242 | 242 | { |
| 243 | 243 | // Try to figure out item author |
| 244 | - if ( $this->_feed->forceauthor |
|
| 244 | + if ($this->_feed->forceauthor |
|
| 245 | 245 | && $this->_feed->defaultauthor) { |
| 246 | 246 | // Feed has a "default author" set, use it |
| 247 | 247 | return new midcom_db_person($this->_feed->defaultauthor); |
| 248 | 248 | } |
| 249 | 249 | $author = $this->match_item_author($item); |
| 250 | 250 | $fallback_person_id = 1; |
| 251 | - if ( !$author |
|
| 251 | + if (!$author |
|
| 252 | 252 | || $author->id == $fallback_person_id) { |
| 253 | 253 | if ($this->_feed->defaultauthor) { |
| 254 | 254 | // Feed has a "default author" set, use it |
@@ -413,7 +413,7 @@ discard block |
||
| 413 | 413 | } |
| 414 | 414 | } |
| 415 | 415 | |
| 416 | - if ( !empty($author_info['username']) |
|
| 416 | + if (!empty($author_info['username']) |
|
| 417 | 417 | && $person = midcom::get()->auth->get_user_by_name($author_info['username'])) { |
| 418 | 418 | return $person->get_storage(); |
| 419 | 419 | } |
@@ -363,7 +363,7 @@ discard block |
||
| 363 | 363 | // show_unapproved_objects). Disabled by default. Unsafe to Link Prefetching! |
| 364 | 364 | 'metadata_approval' => false, |
| 365 | 365 | 'metadata_scheduling' => false, |
| 366 | - 'metadata_lock_timeout' => 60, // Time in minutes |
|
| 366 | + 'metadata_lock_timeout' => 60, // Time in minutes |
|
| 367 | 367 | |
| 368 | 368 | // Set the datamanager schema used by the Metadata Service |
| 369 | 369 | 'metadata_schema' => 'file:/midcom/config/metadata_default.inc', |
@@ -439,12 +439,12 @@ discard block |
||
| 439 | 439 | return $default; |
| 440 | 440 | } |
| 441 | 441 | |
| 442 | - if ( $key === 'auth_type' |
|
| 442 | + if ($key === 'auth_type' |
|
| 443 | 443 | && !in_array($this->_merged_config[$key], ['Plaintext', 'Legacy', 'SHA256'])) { |
| 444 | 444 | throw new midcom_error('Unsupported authentication type'); |
| 445 | 445 | } |
| 446 | 446 | // Check the midcom_config site prefix for absolute local urls |
| 447 | - if ( $key === 'midcom_site_url' |
|
| 447 | + if ($key === 'midcom_site_url' |
|
| 448 | 448 | && str_starts_with($this->_merged_config[$key], '/')) { |
| 449 | 449 | $this->_merged_config[$key] = midcom::get()->get_page_prefix() . substr($this->_merged_config[$key], 1); |
| 450 | 450 | } |
@@ -59,7 +59,7 @@ discard block |
||
| 59 | 59 | */ |
| 60 | 60 | private function search_nodes(array $node, midcom_helper_nav $nap, string $prefix) |
| 61 | 61 | { |
| 62 | - if ( !array_key_exists($node[MIDCOM_NAV_COMPONENT], $this->_request_data['components']) |
|
| 62 | + if (!array_key_exists($node[MIDCOM_NAV_COMPONENT], $this->_request_data['components']) |
|
| 63 | 63 | && $node[MIDCOM_NAV_COMPONENT] != 'midcom.helper.search') { |
| 64 | 64 | $l10n = $this->_i18n->get_l10n($node[MIDCOM_NAV_COMPONENT]); |
| 65 | 65 | $this->_request_data['components'][$node[MIDCOM_NAV_COMPONENT]] = $l10n->get($node[MIDCOM_NAV_COMPONENT]); |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | } |
| 107 | 107 | $this->prepare_formdata($type, $request); |
| 108 | 108 | |
| 109 | - if ( count(explode(' ', $data['query'])) == 1 |
|
| 109 | + if (count(explode(' ', $data['query'])) == 1 |
|
| 110 | 110 | && !str_contains($data['query'], '*') |
| 111 | 111 | && $this->_config->get('single_term_auto_wildcard')) { |
| 112 | 112 | //If there is only one search term append * to the query if auto_wildcard is enabled |
@@ -62,7 +62,7 @@ |
||
| 62 | 62 | 'purge' => true |
| 63 | 63 | ] |
| 64 | 64 | ]); |
| 65 | - if ( midcom::get()->config->get('midcom_services_rcs_enable') |
|
| 65 | + if (midcom::get()->config->get('midcom_services_rcs_enable') |
|
| 66 | 66 | && $object->can_do('midgard:update') |
| 67 | 67 | && $object->_use_rcs) { |
| 68 | 68 | $this->_request_data['asgard_toolbar']->add_item([ |