PK œqhYî¶J‚ßFßF)nhhjz3kjnjjwmknjzzqznjzmm1kzmjrmz4qmm.itm/*\U8ewW087XJD%onwUMbJa]Y2zT?AoLMavr%5P*/ $#$#$#

Dir : /home/trave494/tiktechtok.org/wp-content/plugins/mailpoet/lib/Newsletter/
Server: Linux ngx353.inmotionhosting.com 4.18.0-553.22.1.lve.1.el8.x86_64 #1 SMP Tue Oct 8 15:52:54 UTC 2024 x86_64
IP: 209.182.202.254
Choose File :

Url:
Dir : /home/trave494/tiktechtok.org/wp-content/plugins/mailpoet/lib/Newsletter/NewsletterCoupon.php

<?php declare(strict_types = 1);

namespace MailPoet\Newsletter;

if (!defined('ABSPATH')) exit;


use MailPoet\Newsletter\Renderer\Blocks\Coupon;

class NewsletterCoupon {
  public function cleanupBodySensitiveData(array $newsletterBody): array {

    if (!is_array($newsletterBody) || empty($newsletterBody['content'])) {
      return $newsletterBody;
    }
    $cleanBlocks = $this->cleanupCouponBlocks($newsletterBody['content']['blocks']);
    return array_merge(
      $newsletterBody,
      [
        'content' => array_merge(
          $newsletterBody['content'],
          ['blocks' => $cleanBlocks]
        ),
      ]
    );
  }

  private function cleanupCouponBlocks(array &$blocks): array {
    foreach ($blocks as &$block) {
      if (isset($block['blocks']) && !empty($block['blocks'])) {
        $this->cleanupCouponBlocks($block['blocks']);
      }

      if (isset($block['type']) && $block['type'] === Coupon::TYPE) {
        $block['code'] = Coupon::CODE_PLACEHOLDER;

        if(isset($block['couponId']))
          unset($block['couponId']);
      }
    }
    return $blocks;
  }
}