Your IP : 216.73.216.95


Current Path : /var/www/spmeat/wp-content/plugins/duplicator-pro/classes/environment/
Upload File :
Current File : /var/www/spmeat/wp-content/plugins/duplicator-pro/classes/environment/class.environment.checker.php

<?php

defined('ABSPATH') or die("");
require_once(DUPLICATOR_PRO_PLUGIN_PATH . '/classes/environment/class.db.checker.php');
class DUP_PRO_Environment_Checker implements DUP_PRO_iChecker
{

    public function __construct()
    {
        $this->checkers['db']    = new DUP_PRO_DB_Checker();
        $this->errors            = array();
        $this->helper_messages   = array();
    }

    public function check()
    {
        $total_result = true;
        foreach ($this->checkers as $id => $checker) {
            $passed          = $checker->check();
            $total_result    = $total_result && $passed;
            if (!$passed) {
                $this->errors[$id]           = $checker->getErrors();
                $this->helper_messages[$id]  = $checker->getHelperMessages();
            }
        }

        return $total_result;
    }

    public function getErrors()
    {
        return $this->errors;
    }

    public function getHelperMessages()
    {
        return $this->helper_messages;
    }
}