Guest User

Untitled

a guest
Jan 18th, 2019
126
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. if ($info['method'] === 'direct') {
  2. // this is the direct rendering approach.
  3. $this->renderedBlocks[$name] = $instance->render();
  4. }
  5. elseif ($info['method'] === 'subrequest') {
  6. // this routes rendering through a subrequest.
  7. $response = $this->container->get('http_kernel')->forward(array($instance, 'render'), $attributes, $request->query->all());
  8. $this->renderedBlocks[$name] = $response->getContent();
  9. }
Add Comment
Please, Sign In to add comment