Pimcore\Model\Asset\Image\Thumbnail\Processor::returnPath PHP 메소드

returnPath() 보호된 정적인 메소드

protected static returnPath ( $path, $absolute ) : mixed
$path
$absolute
리턴 mixed
    protected static function returnPath($path, $absolute)
    {
        if (!$absolute) {
            $path = str_replace(PIMCORE_DOCUMENT_ROOT, "", $path);
        }
        return $path;
    }