Initial commit

This commit is contained in:
2019-11-20 07:44:43 +01:00
commit 5bf49c4a81
41188 changed files with 5459177 additions and 0 deletions

View File

@@ -0,0 +1,77 @@
<?php
/* @PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig */
class __TwigTemplate_fdc7c6bfcb11f44b7dfecd571eba500bad7249d0cdd8c38a4ae1cf77db63dc7d extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
// line 25
$this->parent = $this->loadTemplate("@PrestaShop/Admin/layout.html.twig", "@PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig", 25);
$this->blocks = array(
'content' => array($this, 'block_content'),
);
}
protected function doGetParent(array $context)
{
return "@PrestaShop/Admin/layout.html.twig";
}
protected function doDisplay(array $context, array $blocks = array())
{
// line 28
$context["generalForm"] = $this->getAttribute(($context["form"] ?? null), "general", array());
// line 25
$this->parent->display($context, array_merge($this->blocks, $blocks));
}
// line 30
public function block_content($context, array $blocks = array())
{
// line 31
echo " ";
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_start', array("attr" => array("class" => "form", "id" => "configuration_form")));
echo "
<div class=\"row justify-content-center\">
";
// line 33
$this->loadTemplate("@PrestaShop/Admin/Configure/ShopParameters/Blocks/customer_preferences_general.html.twig", "@PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig", 33)->display($context);
// line 34
echo " </div>
";
// line 35
echo $this->env->getRuntime('Symfony\Component\Form\FormRenderer')->renderBlock(($context["form"] ?? null), 'form_end');
echo "
";
}
public function getTemplateName()
{
return "@PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 45 => 35, 42 => 34, 40 => 33, 34 => 31, 31 => 30, 27 => 25, 25 => 28, 11 => 25,);
}
/** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
public function getSource()
{
@trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
return $this->getSourceContext()->getCode();
}
public function getSourceContext()
{
return new Twig_Source("", "@PrestaShop/Admin/Configure/ShopParameters/customer_preferences.html.twig", "/var/www/clients/client1/web14/web/src/PrestaShopBundle/Resources/views/Admin/Configure/ShopParameters/customer_preferences.html.twig");
}
}