var/cache/dev/twig/19/19782b9c674fed9c3e9ba604c67c554d.php line 58

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/header.twig */
  14. class __TwigTemplate_f197f1b075c059d3ca3f6b2577e1b57b 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/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/header.twig"));
  35.         // line 11
  36.         echo "<div class=\"header-inner\">
  37.     <div class=\"header-logo\">
  38.         <h1>
  39.             ";
  40.         // line 14
  41.         echo $this->extensions['Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension']->twig_include($this->env$context"Block/logo.twig");
  42.         echo "
  43.         </h1>
  44.     </div>
  45.     <div class=\"header-navi\">
  46.         <div class=\"ec-headerRole__search header-search\">
  47.             ";
  48.         // line 19
  49.         echo $this->env->getRuntime('Symfony\Bridge\Twig\Extension\HttpKernelRuntime')->renderFragment($this->extensions['Symfony\Bridge\Twig\Extension\RoutingExtension']->getPath("block_search_product"));
  50.         echo "
  51.         </div>
  52.         <div class=\"ec-headerRole__cart cart-menu\">
  53.             ";
  54.         // line 22
  55.         echo $this->extensions['Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension']->twig_include($this->env$context"Block/cart.twig");
  56.         echo "
  57.         </div>
  58.         <div class=\"ec-headerRole__member member-menu\">
  59.             ";
  60.         // line 25
  61.         echo $this->extensions['Eccube\Twig\Extension\IgnoreTwigSandboxErrorExtension']->twig_include($this->env$context"Block/login.twig");
  62.         echo "
  63.         </div>
  64.     </div>
  65. </div>";
  66.         
  67.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  68.         
  69.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  70.     }
  71.     public function getTemplateName()
  72.     {
  73.         return "Block/header.twig";
  74.     }
  75.     public function isTraitable()
  76.     {
  77.         return false;
  78.     }
  79.     public function getDebugInfo()
  80.     {
  81.         return array (  70 => 25,  64 => 22,  58 => 19,  50 => 14,  45 => 11,);
  82.     }
  83.     public function getSourceContext()
  84.     {
  85.         return new Source("{#
  86. This file is part of EC-CUBE
  87. Copyright(c) EC-CUBE CO.,LTD. All Rights Reserved.
  88. http://www.ec-cube.co.jp/
  89. For the full copyright and license information, please view the LICENSE
  90. file that was distributed with this source code.
  91. #}
  92. <div class=\"header-inner\">
  93.     <div class=\"header-logo\">
  94.         <h1>
  95.             {{ include('Block/logo.twig') }}
  96.         </h1>
  97.     </div>
  98.     <div class=\"header-navi\">
  99.         <div class=\"ec-headerRole__search header-search\">
  100.             {{ render(path('block_search_product')) }}
  101.         </div>
  102.         <div class=\"ec-headerRole__cart cart-menu\">
  103.             {{ include('Block/cart.twig') }}
  104.         </div>
  105.         <div class=\"ec-headerRole__member member-menu\">
  106.             {{ include('Block/login.twig') }}
  107.         </div>
  108.     </div>
  109. </div>""Block/header.twig""/home/xs362797/magamar.jp/public_html/app/template/magamar/Block/header.twig");
  110.     }
  111.     
  112.     public function checkSecurity()
  113.     {
  114.         static $tags = array();
  115.         static $filters = array();
  116.         static $functions = array("include" => 14"render" => 19"path" => 19);
  117.         try {
  118.             $this->sandbox->checkSecurity(
  119.                 [],
  120.                 [],
  121.                 ['include''render''path']
  122.             );
  123.         } catch (SecurityError $e) {
  124.             $e->setSourceContext($this->source);
  125.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  126.                 $e->setTemplateLine($tags[$e->getTagName()]);
  127.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  128.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  129.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  130.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  131.             }
  132.             throw $e;
  133.         }
  134.     }
  135. }