var/cache/dev/twig/59/597a8e990fac2842aaa11962630933b4.php line 52

Open in your IDE?
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* Block/drawer_header.twig */
  14. class __TwigTemplate_aee5f620f827ff0c11fd67691eff313f extends \Eccube\Twig\Template
  15. {
  16.     private $source;
  17.     private $macros = [];
  18.     public function __construct(Environment $env)
  19.     {
  20.         parent::__construct($env);
  21.         $this->source $this->getSourceContext();
  22.         $this->parent false;
  23.         $this->blocks = [
  24.         ];
  25.         $this->sandbox $this->env->getExtension('\Twig\Extension\SandboxExtension');
  26.         $this->checkSecurity();
  27.     }
  28.     protected function doDisplay(array $context, array $blocks = [])
  29.     {
  30.         $macros $this->macros;
  31.         $__internal_5a27a8ba21ca79b61932376b2fa922d2 $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
  32.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""Block/drawer_header.twig"));
  33.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
  34.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template""Block/drawer_header.twig"));
  35.         // line 1
  36.         echo "<div class=\"ym-drawer_header\">
  37.     ";
  38.         // line 2
  39.         echo $this->extensions['Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension']->twig_include($this->env$context"Block/login_sp.twig");
  40.         echo "
  41.     ";
  42.         // line 3
  43.         echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("block_search_product"));
  44.         echo "
  45. </div>";
  46.         
  47.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  48.         
  49.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  50.     }
  51.     public function getTemplateName()
  52.     {
  53.         return "Block/drawer_header.twig";
  54.     }
  55.     public function isTraitable()
  56.     {
  57.         return false;
  58.     }
  59.     public function getDebugInfo()
  60.     {
  61.         return array (  52 => 3,  48 => 2,  45 => 1,);
  62.     }
  63.     public function getSourceContext()
  64.     {
  65.         return new Source("<div class=\"ym-drawer_header\">
  66.     {{ include('Block/login_sp.twig') }}
  67.     {{ render(path('block_search_product')) }}
  68. </div>""Block/drawer_header.twig""/home/dober/testman.biz/public_html/yamaria-ec-demo/app/template/yamaria/Block/drawer_header.twig");
  69.     }
  70.     
  71.     public function checkSecurity()
  72.     {
  73.         static $tags = array();
  74.         static $filters = array();
  75.         static $functions = array("include" => 2"render" => 3"path" => 3);
  76.         try {
  77.             $this->sandbox->checkSecurity(
  78.                 [],
  79.                 [],
  80.                 ['include''render''path']
  81.             );
  82.         } catch (SecurityError $e) {
  83.             $e->setSourceContext($this->source);
  84.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  85.                 $e->setTemplateLine($tags[$e->getTagName()]);
  86.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  87.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  88.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  89.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  90.             }
  91.             throw $e;
  92.         }
  93.     }
  94. }