File manager - Edit - /home/ferretapmx/public_html/plugins/system/helixultimate/vendor/scssphp/scssphp/src/Importer/FilesystemImporter.php
Back
<?php /** * SCSSPHP * * @copyright 2012-2020 Leaf Corcoran * * @license http://opensource.org/licenses/MIT MIT * * @link http://scssphp.github.io/scssphp */ namespace ScssPhp\ScssPhp\Importer; use League\Uri\Contracts\UriInterface; use ScssPhp\ScssPhp\Syntax; use ScssPhp\ScssPhp\Util\Path; /** * An importer that loads files from a load path on the filesystem. */ final class FilesystemImporter extends Importer { /** * The path relative to which this importer looks for files. * * If this is `null`, this importer will _only_ load absolute `file:` URLs * and URLs relative to the current file. */ private readonly ?string $loadPath; public function __construct(?string $loadPath) { $this->loadPath = $loadPath !== null ? Path::absolute($loadPath) : null; } public function canonicalize(UriInterface $url): ?UriInterface { if ($url->getScheme() === 'file') { $resolved = ImportUtil::resolveImportPath(Path::fromUri($url)); } elseif ($url->getScheme() !== null) { return null; } elseif ($this->loadPath !== null) { $resolved = ImportUtil::resolveImportPath(Path::join($this->loadPath, Path::fromUri($url))); } else { return null; } if ($resolved === null) { return null; } return Path::toUri(Path::canonicalize($resolved)); } public function load(UriInterface $url): ?ImporterResult { $path = Path::fromUri($url); $content = file_get_contents($path); if ($content === false) { throw new \Exception("Could not read file $path"); } return new ImporterResult($content, Syntax::forPath($path), $url); } public function couldCanonicalize(UriInterface $url, UriInterface $canonicalUrl): bool { if ($url->getScheme() !== 'file' && $url->getScheme() !== null) { return false; } if ($canonicalUrl->getScheme() !== 'file') { return false; } $basename = basename((string) $url); $canonicalBasename = basename((string) $canonicalUrl); if (!str_starts_with($basename, '_') && str_starts_with($canonicalBasename, '_')) { $canonicalBasename = substr($canonicalBasename, 1); } return $basename === $canonicalBasename || $basename === Path::withoutExtension($canonicalBasename); } public function __toString(): string { return $this->loadPath ?? '<absolute file importer>'; } }
| ver. 1.4 |
Github
|
.
| PHP 8.2.32 | Generation time: 0.06 |
proxy
|
phpinfo
|
Settings