public function FragmentRendererInterface::render in Zircon Profile 8
Same name and namespace in other branches
- 8.0 vendor/symfony/http-kernel/Fragment/FragmentRendererInterface.php \Symfony\Component\HttpKernel\Fragment\FragmentRendererInterface::render()
Renders a URI and returns the Response content.
Parameters
string|ControllerReference $uri A URI as a string or a ControllerReference instance:
Request $request A Request instance:
array $options An array of options:
Return value
4 methods override FragmentRendererInterface::render()
- AbstractSurrogateFragmentRenderer::render in vendor/
symfony/ http-kernel/ Fragment/ AbstractSurrogateFragmentRenderer.php - Note that if the current Request has no surrogate capability, this method falls back to use the inline rendering strategy.
- HIncludeFragmentRenderer::render in vendor/
symfony/ http-kernel/ Fragment/ HIncludeFragmentRenderer.php - Additional available options:
- InlineFragmentRenderer::render in vendor/
symfony/ http-kernel/ Fragment/ InlineFragmentRenderer.php - Additional available options:
- RendererService::render in vendor/
symfony/ http-kernel/ Tests/ DependencyInjection/ FragmentRendererPassTest.php - Renders a URI and returns the Response content.
File
- vendor/
symfony/ http-kernel/ Fragment/ FragmentRendererInterface.php, line 34
Class
- FragmentRendererInterface
- Interface implemented by all rendering strategies.
Namespace
Symfony\Component\HttpKernel\FragmentCode
public function render($uri, Request $request, array $options = array());