![]() Server : Apache System : Linux server2.corals.io 4.18.0-348.2.1.el8_5.x86_64 #1 SMP Mon Nov 15 09:17:08 EST 2021 x86_64 User : corals ( 1002) PHP Version : 7.4.33 Disable Function : exec,passthru,shell_exec,system Directory : /home/corals/old/vendor/magento/module-remote-storage/Model/ |
<?php /** * Copyright © Magento, Inc. All rights reserved. * See COPYING.txt for license details. */ declare(strict_types=1); namespace Magento\RemoteStorage\Model; use Magento\Framework\App\DeploymentConfig; use Magento\Framework\Exception\FileSystemException; use Magento\Framework\Exception\RuntimeException; use Magento\RemoteStorage\Driver\DriverPool; use Magento\Framework\Filesystem\DriverPool as BaseDriverPool; /** * Configuration for remote storage. */ class Config { /** * @var DeploymentConfig */ private $config; /** * @param DeploymentConfig $config */ public function __construct(DeploymentConfig $config) { $this->config = $config; } /** * Retrieve driver name. * * @return string * @throws FileSystemException * @throws RuntimeException */ public function getDriver(): string { return $this->config->get(DriverPool::PATH_DRIVER, BaseDriverPool::FILE); } /** * Check if remote FS is enabled. * * @return bool * @throws FileSystemException * @throws RuntimeException */ public function isEnabled(): bool { $driver = $this->getDriver(); return $driver && $driver !== BaseDriverPool::FILE; } /** * Retrieves config. * * @return array * @throws FileSystemException * @throws RuntimeException */ public function getConfig(): array { return (array)$this->config->get(DriverPool::PATH_CONFIG, []); } /** * Retrieves prefix. * * @return string * * @throws FileSystemException * @throws RuntimeException */ public function getPrefix(): string { return (string)$this->config->get(DriverPool::PATH_PREFIX, ''); } /** * Retrieves cache config. * * @return array * @throws FileSystemException * @throws RuntimeException */ public function getCache(): array { return (array)$this->config->get(DriverPool::PATH_CACHE, []); } }