var/cache/dev/twig/54/54d55cffde90c0981558a86e92bd75e9.php line 35

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. /* Item/GoodsSetPurchase/new_cart_area.twig */
  14. class __TwigTemplate_93ed0e17a620eea9542222701305ee0f 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""Item/GoodsSetPurchase/new_cart_area.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""Item/GoodsSetPurchase/new_cart_area.twig"));
  35.         // line 1
  36.         $this->loadTemplate("Item/NewCartArea/cart_matrix.twig""Item/GoodsSetPurchase/new_cart_area.twig"1)->display(twig_to_array(["loop" => (isset($context["loop"]) || array_key_exists("loop"$context) ? $context["loop"] : (function () { throw new RuntimeError('Variable "loop" does not exist.'1$this->source); })()), "parent" => (isset($context["parent"]) || array_key_exists("parent"$context) ? $context["parent"] : (function () { throw new RuntimeError('Variable "parent" does not exist.'1$this->source); })()), "item" => (isset($context["item"]) || array_key_exists("item"$context) ? $context["item"] : (function () { throw new RuntimeError('Variable "item" does not exist.'1$this->source); })()), "NewUI" => twig_get_attribute($this->env$this->sourcetwig_get_attribute($this->env$this->source, (isset($context["eccube_config"]) || array_key_exists("eccube_config"$context) ? $context["eccube_config"] : (function () { throw new RuntimeError('Variable "eccube_config" does not exist.'1$this->source); })()), "GoodsSetPurchase", [], "any"falsefalsetrue1), "NewUI", [], "any"falsefalsetrue1), "visibleSizes" => (isset($context["visibleSizes"]) || array_key_exists("visibleSizes"$context) ? $context["visibleSizes"] : (function () { throw new RuntimeError('Variable "visibleSizes" does not exist.'1$this->source); })()), "skuMap" => (isset($context["skuMap"]) || array_key_exists("skuMap"$context) ? $context["skuMap"] : (function () { throw new RuntimeError('Variable "skuMap" does not exist.'1$this->source); })())]));
  37.         
  38.         $__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
  39.         
  40.         $__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
  41.     }
  42.     public function getTemplateName()
  43.     {
  44.         return "Item/GoodsSetPurchase/new_cart_area.twig";
  45.     }
  46.     public function isTraitable()
  47.     {
  48.         return false;
  49.     }
  50.     public function getDebugInfo()
  51.     {
  52.         return array (  45 => 1,);
  53.     }
  54.     public function getSourceContext()
  55.     {
  56.         return new Source("{% include 'Item/NewCartArea/cart_matrix.twig' with { loop: loop, parent: parent, item: item, NewUI: eccube_config.GoodsSetPurchase.NewUI, visibleSizes: visibleSizes, skuMap: skuMap } only %}
  57. ""Item/GoodsSetPurchase/new_cart_area.twig""/var/www/html/app/template/default/Item/GoodsSetPurchase/new_cart_area.twig");
  58.     }
  59.     
  60.     public function checkSecurity()
  61.     {
  62.         static $tags = array("include" => 1);
  63.         static $filters = array();
  64.         static $functions = array();
  65.         try {
  66.             $this->sandbox->checkSecurity(
  67.                 ['include'],
  68.                 [],
  69.                 []
  70.             );
  71.         } catch (SecurityError $e) {
  72.             $e->setSourceContext($this->source);
  73.             if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
  74.                 $e->setTemplateLine($tags[$e->getTagName()]);
  75.             } elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
  76.                 $e->setTemplateLine($filters[$e->getFilterName()]);
  77.             } elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
  78.                 $e->setTemplateLine($functions[$e->getFunctionName()]);
  79.             }
  80.             throw $e;
  81.         }
  82.     }
  83. }