class FragmentHandler
Renders a URI that represents a resource fragment.
This class handles the rendering of resource fragments that are included into a main resource. The handling of the rendering is managed by specialized renderers.
Methods
__construct(RequestStack $requestStack, array $renderers = array(), bool $debug = false) Constructor. | ||
addRenderer(FragmentRendererInterface $renderer) Adds a renderer. | ||
string|null | render(string|ControllerReference $uri, string $renderer = 'inline', array $options = array()) Renders a URI and returns the Response content. |
Details
__construct(RequestStack $requestStack, array $renderers = array(), bool $debug = false)
Constructor.
addRenderer(FragmentRendererInterface $renderer)
Adds a renderer.
string|null render(string|ControllerReference $uri, string $renderer = 'inline', array $options = array())
Renders a URI and returns the Response content.
Available options:
- ignore_errors: true to return an empty string in case of an error
Please login to continue.