Sulu\Bundle\ContentBundle\Controller\NodeResourcelocatorController::cgetAction PHP Метод

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

return all resource locators for given node.
public cgetAction ( string $uuid ) : Response
$uuid string
Результат Symfony\Component\HttpFoundation\Response
    public function cgetAction($uuid)
    {
        list($webspaceKey, $languageCode) = $this->getWebspaceAndLanguage();
        $result = $this->getResourceLocatorRepository()->getHistory($uuid, $webspaceKey, $languageCode);
        return $this->handleView($this->view($result));
    }