Pimcore\Model\Asset\Video\ImageThumbnail::getPath PHP Метод

getPath() публичный Метод

public getPath ( ) : mixed
Результат mixed
    public function getPath()
    {
        $fsPath = $this->getFileSystemPath();
        $path = str_replace(PIMCORE_DOCUMENT_ROOT, "", $fsPath);
        $path = urlencode_ignore_slash($path);
        $results = \Pimcore::getEventManager()->trigger("frontend.path.asset.video.image-thumbnail", $this, ["filesystemPath" => $fsPath, "frontendPath" => $path]);
        if ($results->count()) {
            $path = $results->last();
        }
        return $path;
    }