PHP 8.2.31
Preview: FormMessageController.php Size: 1.61 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Form/FormMessageController.php

<?php declare(strict_types = 1);

namespace MailPoet\Form;

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


use MailPoet\Entities\FormEntity;
use MailPoet\Settings\SettingsController;

class FormMessageController {
  /** @var FormsRepository */
  private $formsRepository;

  /** @var SettingsController */
  private $settings;

  public function __construct(
    FormsRepository $formsRepository,
    SettingsController $settingsController
  ) {
    $this->formsRepository = $formsRepository;
    $this->settings = $settingsController;
  }

  public function updateSuccessMessages(): void {
    $rightMessage = $this->getDefaultSuccessMessage();
    $wrongMessage = (
    $rightMessage === __('Check your inbox or spam folder to confirm your subscription.', 'mailpoet')
      ? __('You’ve been successfully subscribed to our newsletter!', 'mailpoet')
      : __('Check your inbox or spam folder to confirm your subscription.', 'mailpoet')
    );
    /** @var FormEntity[] $forms */
    $forms = $this->formsRepository->findAll();
    foreach ($forms as $form) {
      $settings = $form->getSettings();
      if (isset($settings['success_message']) && $settings['success_message'] === $wrongMessage) {
        $settings['success_message'] = $rightMessage;
        $form->setSettings($settings);
        $this->formsRepository->flush();
      }
    }
  }

  public function getDefaultSuccessMessage(): string {
    if ($this->settings->get('signup_confirmation.enabled')) {
      return __('Check your inbox or spam folder to confirm your subscription.', 'mailpoet');
    }
    return __('You’ve been successfully subscribed to our newsletter!', 'mailpoet');
  }
}

Directory Contents

Dirs: 4 × Files: 15

Name Size Perms Modified Actions
Block DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
Listing DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
Templates DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
Util DIR
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
1.91 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
6.09 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.18 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.04 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
642 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
10.86 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.26 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.61 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.16 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.61 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
0 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.03 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
726 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.19 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
9.12 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download

If ZipArchive is unavailable, a .tar will be created (no compression).