PHP 8.2.31
Preview: DeactivationPoll.php Size: 1.43 KB
/home/nshryvcy/himaltourism.com/wp-content/plugins/mailpoet/lib/Config/DeactivationPoll.php

<?php declare(strict_types = 1);

namespace MailPoet\Config;

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


use MailPoet\WP\Functions as WPFunctions;

class DeactivationPoll {

  /** @var WPFunctions */
  private $wp;

  /** @var Renderer */
  private $renderer;

  public function __construct(
    WPFunctions $wp,
    Renderer $renderer
  ) {
    $this->wp = $wp;
    $this->renderer = $renderer;
  }

  public function init() {
    $this->wp->addAction('admin_print_scripts', [$this, 'css']);
    $this->wp->addAction('admin_footer', [$this, 'modal']);
  }

  private function shouldShow(): bool {
    if (!function_exists('get_current_screen')) {
      return false;
    }
    $screen = $this->wp->getCurrentScreen();
    if (is_null($screen)) {
      return false;
    }
    return in_array($screen->id, ['plugins', 'plugins-network'], true);
  }

  public function css(): void {
    if (!$this->shouldShow()) {
      return;
    }
    $this->render('deactivationPoll/css.html');
  }

  public function modal(): void {
    if (!$this->shouldShow()) {
      return;
    }
    $this->render('deactivationPoll/index.html');
  }

  private function render($template): void {
    try {
      // phpcs:disable -- because we use echo here, WordPress sniffs reported a warning
      echo $this->renderer->render($template);
      // phpcs:enable
    } catch (\Exception $e) {
      // if the website fails to render we have other places to catch and display the error
    }
  }
}

Directory Contents

Dirs: 1 × Files: 34

Name Size Perms Modified Actions
- drwxr-xr-x 2023-04-04 05:35:40
Edit Download
3.58 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.84 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.68 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.87 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
5.04 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.88 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
531 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.43 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
3.98 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
12.88 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
5.40 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
14.71 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.40 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
2.49 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
21.20 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
769 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.22 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
776 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
21.21 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.41 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
3.97 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
670 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.27 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1006 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
6.13 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
7.68 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
570 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
4.40 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
7.22 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download
694 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
853 B lrw-r--r-- 2023-04-04 05:35:40
Edit Download
1.97 KB lrw-r--r-- 2023-04-04 05:35:40
Edit Download

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