Файловый менеджер - Редактировать - /home/easybachat/sangemarmarmarble.com/oc-includes/osclass/core/Object_Cache_Factory.php
Ðазад
<?php /** * Class Object_Cache_Factory */ class Object_Cache_Factory { private static $instance; /** * @return null|\Object_Cache_default * @throws \Exception */ public static function newInstance() { if(self::$instance == null) { self::$instance = self::getCache(); } return self::$instance; } /** * @return null|\Object_Cache_default * @throws \Exception */ public static function getCache() { if(self::$instance == null) { $cache = 'default'; if(defined('OSC_CACHE')) { $cache = OSC_CACHE; } $cache_class = 'Object_Cache_'.$cache; $file = __DIR__ . '/caches/' . $cache_class . '.php'; if(strpos($file, '../')===false && strpos($file, '..\\')===false && file_exists($file)) { /** @noinspection PhpIncludeInspection */ require_once $file; if(class_exists($cache_class)) { // all correct ? if(call_user_func(array($cache_class, 'is_supported'))) { self::$instance = new $cache_class(); } else { $file = __DIR__ . '/caches/Object_Cache_default.php'; /** @noinspection PhpIncludeInspection */ require_once $file; self::$instance = new Object_Cache_default(); error_log('Cache '. $cache .' NOT SUPPORTED - loaded Object_Cache_default cache'); } return self::$instance; } } throw new RuntimeException('Unknown cache'); } else { return self::$instance; } } } /* file end: ./oc-includes/osclass/core/Object_Cache_Factory.php */
| ver. 1.4 |
Github
|
.
| PHP 8.2.29 | Ð“ÐµÐ½ÐµÑ€Ð°Ñ†Ð¸Ñ Ñтраницы: 0.1 |
proxy
|
phpinfo
|
ÐаÑтройка