<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* Item/GoodsSetPurchase/new_cart_area.twig */
class __TwigTemplate_93ed0e17a620eea9542222701305ee0f extends \Eccube\Twig\Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
$this->sandbox = $this->env->getExtension('\Twig\Extension\SandboxExtension');
$this->checkSecurity();
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
$__internal_5a27a8ba21ca79b61932376b2fa922d2 = $this->extensions["Symfony\\Bundle\\WebProfilerBundle\\Twig\\WebProfilerExtension"];
$__internal_5a27a8ba21ca79b61932376b2fa922d2->enter($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Item/GoodsSetPurchase/new_cart_area.twig"));
$__internal_6f47bbe9983af81f1e7450e9a3e3768f = $this->extensions["Symfony\\Bridge\\Twig\\Extension\\ProfilerExtension"];
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->enter($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof = new \Twig\Profiler\Profile($this->getTemplateName(), "template", "Item/GoodsSetPurchase/new_cart_area.twig"));
// line 1
$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->source, twig_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", false, false, true, 1), "NewUI", [], "any", false, false, true, 1), "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); })())]));
$__internal_5a27a8ba21ca79b61932376b2fa922d2->leave($__internal_5a27a8ba21ca79b61932376b2fa922d2_prof);
$__internal_6f47bbe9983af81f1e7450e9a3e3768f->leave($__internal_6f47bbe9983af81f1e7450e9a3e3768f_prof);
}
public function getTemplateName()
{
return "Item/GoodsSetPurchase/new_cart_area.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 45 => 1,);
}
public function getSourceContext()
{
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 %}
", "Item/GoodsSetPurchase/new_cart_area.twig", "/var/www/html/app/template/default/Item/GoodsSetPurchase/new_cart_area.twig");
}
public function checkSecurity()
{
static $tags = array("include" => 1);
static $filters = array();
static $functions = array();
try {
$this->sandbox->checkSecurity(
['include'],
[],
[]
);
} catch (SecurityError $e) {
$e->setSourceContext($this->source);
if ($e instanceof SecurityNotAllowedTagError && isset($tags[$e->getTagName()])) {
$e->setTemplateLine($tags[$e->getTagName()]);
} elseif ($e instanceof SecurityNotAllowedFilterError && isset($filters[$e->getFilterName()])) {
$e->setTemplateLine($filters[$e->getFilterName()]);
} elseif ($e instanceof SecurityNotAllowedFunctionError && isset($functions[$e->getFunctionName()])) {
$e->setTemplateLine($functions[$e->getFunctionName()]);
}
throw $e;
}
}
}