. * * The interactive user interfaces in modified source and object code versions * of this program must display Appropriate Legal Notices, as required under * Section 5 of the GNU Affero General Public License version 3. * * In accordance with Section 7(b) of the GNU Affero General Public License version 3, * these Appropriate Legal Notices must retain the display of the "EspoCRM" word. ************************************************************************/ namespace Espo\Core\Utils\Config; use Espo\Core\Utils\Config; /** * @since 9.1.0 */ class SystemConfig { public function __construct( private Config $config, ) {} public function useCache(): bool { return (bool) $this->config->get('useCache'); } public function getVersion(): string { return (string) $this->config->get('version'); } /** * Is restricted mode. * * @since 9.1.8 */ public function isRestrictedMode(): bool { return (bool) $this->config->get('restrictedMode'); } }