uawdijnntqw1x1x1
IP : 216.73.216.107
Hostname : toronto-dev2
Kernel : Linux toronto-dev2 4.15.0-213-generic #224-Ubuntu SMP Mon Jun 19 13:30:12 UTC 2023 x86_64
Disable Function : None :)
OS : Linux
PATH:
/
srv
/
users
/
craft4
/
apps
/
craft4-newsite-space
/
vendor
/
.
/
craftcms
/
cms
/
src
/
base
/
.
/
FsInterface.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\base; /** * FsInterface defines the common interface to be implemented by filesystem classes. * A class implementing this interface should also use [[SavableComponentTrait]] and [[FsTrait]]. * * @mixin Fs * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 4.0.0 */ interface FsInterface extends BaseFsInterface, SavableComponentInterface { /** * Returns whether the “Files in this filesystem have public URLs” setting should be shown. * * @return bool * @since 4.5.0 */ public function getShowHasUrlSetting(): bool; /** * Returns whether the “Base URL” setting should be shown. * * If this returns `false`, and the filesystem has a base URL, [[getRootUrl()]] should be implemented directly, * rather than storing the base URL on the [[\craft\base\Fs::$url]] property. * * @return bool * @since 4.5.0 */ public function getShowUrlSetting(): bool; }
/srv/users/craft4/apps/craft4-newsite-space/vendor/./craftcms/cms/src/base/./FsInterface.php