You are here

class EsiFragmentRenderer in Zircon Profile 8

Same name and namespace in other branches
  1. 8.0 vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php \Symfony\Component\HttpKernel\Fragment\EsiFragmentRenderer

Implements the ESI rendering strategy.

@author Fabien Potencier <fabien@symfony.com>

Hierarchy

Expanded class hierarchy of EsiFragmentRenderer

1 file declares its use of EsiFragmentRenderer
EsiFragmentRendererTest.php in vendor/symfony/http-kernel/Tests/Fragment/EsiFragmentRendererTest.php

File

vendor/symfony/http-kernel/Fragment/EsiFragmentRenderer.php, line 19

Namespace

Symfony\Component\HttpKernel\Fragment
View source
class EsiFragmentRenderer extends AbstractSurrogateFragmentRenderer {

  /**
   * {@inheritdoc}
   */
  public function getName() {
    return 'esi';
  }

}

Members

Namesort descending Modifiers Type Description Overrides
AbstractSurrogateFragmentRenderer::$inlineStrategy private property
AbstractSurrogateFragmentRenderer::$signer private property
AbstractSurrogateFragmentRenderer::$surrogate private property
AbstractSurrogateFragmentRenderer::generateSignedFragmentUri private function
AbstractSurrogateFragmentRenderer::render public function Note that if the current Request has no surrogate capability, this method falls back to use the inline rendering strategy. Overrides FragmentRendererInterface::render
AbstractSurrogateFragmentRenderer::__construct public function Constructor.
EsiFragmentRenderer::getName public function Gets the name of the strategy. Overrides FragmentRendererInterface::getName
RoutableFragmentRenderer::$fragmentPath private property
RoutableFragmentRenderer::checkNonScalar private function
RoutableFragmentRenderer::generateFragmentUri protected function Generates a fragment URI for a given controller.
RoutableFragmentRenderer::setFragmentPath public function Sets the fragment path that triggers the fragment listener.