File "Setup.php"

Full Path: /home/warrior1/public_html/wp-content/plugins/mailpoet/lib/API/JSON/v1/Setup.php
File size: 920 bytes
MIME-type: text/x-php
Charset: utf-8

<?php

namespace MailPoet\API\JSON\v1;

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


use MailPoet\API\JSON\Endpoint as APIEndpoint;
use MailPoet\Config\AccessControl;
use MailPoet\Config\Activator;
use MailPoet\WP\Functions as WPFunctions;

class Setup extends APIEndpoint {
  public $permissions = [
    'global' => AccessControl::PERMISSION_MANAGE_SETTINGS,
  ];

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

  /** @var Activator */
  private $activator;

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

  public function reset() {
    try {
      $this->activator->deactivate();
      $this->activator->activate();
      $this->wp->doAction('mailpoet_setup_reset');
      return $this->successResponse();
    } catch (\Exception $e) {
      return $this->errorResponse([
        $e->getCode() => $e->getMessage(),
      ]);
    }
  }
}