/home/altere25/sportzsoftlivemeet.com/wp-includes/SimplePie/src
NameSizeModeActions
Cache/-0755rm
Content/-0755rm
Decode/-0755rm
HTTP/-0755rm
Net/-0755rm
Parse/-0755rm
XML/-0755rm
Author.php38730644editdlrm
Cache.php48510644editdlrm
Caption.php49430644editdlrm
Category.php43660644editdlrm
Copyright.php36090644editdlrm
Core.php22350644editdlrm
Credit.php40220644editdlrm
Enclosure.php330240644editdlrm
Exception.php22670644editdlrm
File.php130430644editdlrm
Gzdecode.php102200644editdlrm
IRI.php356430644editdlrm
Item.php1314500644editdlrm
Locator.php156610644editdlrm
Misc.php686340644editdlrm
Parser.php346590644editdlrm
Rating.php36890644editdlrm
Registry.php86940644editdlrm
RegistryAware.php24110644editdlrm
Restriction.php41120644editdlrm
Sanitize.php251410644editdlrm
SimplePie.php1200110644editdlrm
Source.php242610644editdlrm
Edit: /home/altere25/sportzsoftlivemeet.com/wp-includes/SimplePie/src/Cache.php (4851B)
'SimplePie\Cache\MySQL', 'memcache' => 'SimplePie\Cache\Memcache', 'memcached' => 'SimplePie\Cache\Memcached', 'redis' => 'SimplePie\Cache\Redis' ]; /** * Don't call the constructor. Please. */ private function __construct() { } /** * Create a new SimplePie\Cache object * * @param string $location URL location (scheme is used to determine handler) * @param string $filename Unique identifier for cache object * @param Base::TYPE_FEED|Base::TYPE_IMAGE $extension 'spi' or 'spc' * @return Base Type of object depends on scheme of `$location` */ public static function get_handler($location, $filename, $extension) { $type = explode(':', $location, 2); $type = $type[0]; if (!empty(self::$handlers[$type])) { $class = self::$handlers[$type]; return new $class($location, $filename, $extension); } return new \SimplePie\Cache\File($location, $filename, $extension); } /** * Create a new SimplePie\Cache object * * @deprecated since SimplePie 1.3.1, use {@see get_handler()} instead */ public function create($location, $filename, $extension) { trigger_error('Cache::create() has been replaced with Cache::get_handler() since SimplePie 1.3.1, use the registry system instead.', \E_USER_DEPRECATED); return self::get_handler($location, $filename, $extension); } /** * Register a handler * * @param string $type DSN type to register for * @param class-string $class Name of handler class. Must implement Base */ public static function register($type, $class) { self::$handlers[$type] = $class; } /** * Parse a URL into an array * * @param string $url * @return array */ public static function parse_URL($url) { $params = parse_url($url); $params['extras'] = []; if (isset($params['query'])) { parse_str($params['query'], $params['extras']); } return $params; } } class_alias('SimplePie\Cache', 'SimplePie_Cache');