EVOLUTION-MANAGER
Edit File: class.validation.test.db.supported.default.charset.php
<?php /** * Validation object * * Standard: PSR-2 * @link http://www.php-fig.org/psr/psr-2 Full Documentation * * @package SC\DUPX\U * */ defined('ABSPATH') || defined('DUPXABSPATH') || exit; class DUPX_Validation_test_db_supported_default_charset extends DUPX_Validation_abstract_item { protected $errorMessage = ''; protected $charsetOk = true; protected $collateOk = true; protected $sourceCharset = null; protected $sourceCollate = null; protected function runTest() { if (DUPX_Validation_database_service::getInstance()->skipDatabaseTests()) { return self::LV_SKIP; } try { $archiveConfig = DUPX_ArchiveConfig::getInstance(); $dbFuncs = DUPX_DB_Functions::getInstance(); $this->sourceCharset = $archiveConfig->getWpConfigDefineValue('DB_CHARSET', ''); $this->sourceCollate = $archiveConfig->getWpConfigDefineValue('DB_COLLATE', ''); $data = $dbFuncs->getCharsetAndCollationData(); if (!array_key_exists($this->sourceCharset, $data)) { $this->charsetOk = false; } else if (strlen($this->sourceCollate) > 0 && !in_array($this->sourceCollate, $data[$this->sourceCharset]['collations'])) { $this->collateOk = false; } $this->usedCharset = $dbFuncs->getRealCharsetByParam(); $this->usedCollate = $dbFuncs->getRealCollateByParam(); if ($this->charsetOk && $this->collateOk) { return self::LV_PASS; } else { return self::LV_SOFT_WARNING; } } catch (Exception $e) { $this->errorMessage = $e->getMessage(); return self::LV_FAIL; } } public function getTitle() { return 'Default Character set and Collation support'; } protected function failContent() { $dbFuncs = DUPX_DB_Functions::getInstance(); return dupxTplRender('parts/validation/database-tests/db-supported-default-charset', array( 'testResult' => $this->testResult, 'charsetOk' => $this->charsetOk, 'collateOk' => $this->collateOk, 'sourceCharset' => $this->sourceCharset, 'sourceCollate' => $this->sourceCollate, 'usedCharset' => $dbFuncs->getRealCharsetByParam(), 'usedCollate' => $dbFuncs->getRealCollateByParam(), 'errorMessage' => $this->errorMessage ), false); } protected function swarnContent() { return $this->failContent(); } protected function passContent() { return $this->failContent(); } }