uawdijnntqw1x1x1
IP : 216.73.216.15
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
/
sabberworm
/
..
/
craftcms
/
cms
/
src
/
.
/
fs
/
.
/
Temp.php
/
/
<?php /** * @link https://craftcms.com/ * @copyright Copyright (c) Pixel & Tonic, Inc. * @license https://craftcms.github.io/license/ */ namespace craft\fs; use Craft; /** * Temp represents a temporary filesystem. * * @author Pixel & Tonic, Inc. <support@pixelandtonic.com> * @since 4.0.0 */ class Temp extends Local { /** * @inheritdoc */ public bool $hasUrls = false; /** * @inheritdoc */ public static function displayName(): string { return Craft::t('app', 'Temp Folder'); } /** * @inheritdoc */ public function __construct($config = []) { // Config normalization if (!isset($config['path'])) { $config['path'] = Craft::$app->getPath()->getTempAssetUploadsPath(); } if (!isset($config['name'])) { $config['name'] = Craft::t('app', 'Temporary filesystem'); } parent::__construct($config); } /** * @inheritdoc */ public function getSettingsHtml(): ?string { return null; } }
/srv/users/craft4/apps/craft4-newsite-space/vendor/sabberworm/../craftcms/cms/src/./fs/./Temp.php