403Webshell
Server IP : 104.21.14.103  /  Your IP : 18.216.190.57
Web Server : LiteSpeed
System : Linux business53.web-hosting.com 4.18.0-553.lve.el8.x86_64 #1 SMP Mon May 27 15:27:34 UTC 2024 x86_64
User : giankuin ( 1871)
PHP Version : 7.4.33
Disable Function : NONE
MySQL : OFF  |  cURL : ON  |  WGET : ON  |  Perl : ON  |  Python : ON  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/WooCommerce/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ Back ]     

Current File : /proc/self/root/home/giankuin/thietke365.net/wp-content/plugins/mailpoet/lib/WooCommerce/WooSystemInfoController.php
<?php declare(strict_types = 1);

namespace MailPoet\WooCommerce;

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


use MailPoet\Config\Renderer;

class WooSystemInfoController {


  /** @var WooSystemInfo  */
  private $systemInfo;

  private $renderer;

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

  public function render() {

    $output = $this->renderer->render('woo_system_info.html', [
      'system_info' => $this->systemInfo->toArray(),
    ]);

    // We are in control of the template and the data can be considered safe at this point
    echo $output; // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped, WordPressDotOrg.sniffs.OutputEscaping.UnescapedOutputParameter
  }

  public function addFields($response) {
    $response->data['mailpoet'] = $this->systemInfo->toArray();
    return $response;
  }

  public function addSchema($schema) {
    $schema['mailpoet'] = [
      [
        'description' => __('MailPoet', 'mailpoet'),
        'type' => 'object',
        'context' => ['view'],
        'readonly' => true,
        'properties' => [
          'sending_method' => [
            'description' => __('What method is used to sent out newsletters?', 'mailpoet'),
            'type' => 'boolean',
            'context' => ['view'],
            'readonly' => true,
          ],
          'transactional_emails' => [
            'description' => __('With which method are transactional emails sent?', 'mailpoet'),
            'type' => 'string',
            'context' => ['view'],
            'readonly' => true,
          ],
          'task_scheduler_method' => [
            'description' => __('What method controls the cron job?', 'mailpoet'),
            'type' => 'string',
            'context' => ['view'],
            'readonly' => true,
          ],
          'cron_ping_url' => [
            'description' => __('The URL which needs to be pinged to get the cron started?', 'mailpoet'),
            'type' => 'string',
            'context' => ['view'],
            'readonly' => true,
          ],
        ],
          ],
        ];

    return $schema;
  }
}

Youez - 2016 - github.com/yon3zu
LinuXploit