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,198 @@
<?php
/* @PrestaShop/Admin/Common/pagination.html.twig */
class __TwigTemplate_b7844e40b781aaec403bfbf025bd1781c0b40965fc0faca6eb01cc541e6e7e1b extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = array(
);
}
protected function doDisplay(array $context, array $blocks = array())
{
// line 25
echo "<div class=\"row justify-content-center\">
<ul class=\"pagination mb-0\">
<li class=\"page-item ";
// line 27
if (($context["first_url"] ?? null)) {
} else {
echo "disabled";
}
echo "\">
<a class=\"page-link\" ";
// line 28
if (($context["first_url"] ?? null)) {
echo "href=\"";
echo twig_escape_filter($this->env, ($context["first_url"] ?? null), "html", null, true);
echo "\"";
} else {
echo "nohref";
}
echo ">1</a>
</li>
<li class=\"page-item previous ";
// line 30
if (($context["previous_url"] ?? null)) {
} else {
echo "disabled";
}
echo "\">
<a class=\"page-link\" aria-label=\"Previous\" ";
// line 31
if (($context["previous_url"] ?? null)) {
echo "href=\"";
echo twig_escape_filter($this->env, ($context["previous_url"] ?? null), "html", null, true);
echo "\"";
} else {
echo "nohref";
}
echo "><span class=\"sr-only\">Previous</span></a>
</li>
<li class=\"page-item active\">
<input name=\"paginator_jump_page\" class=\"jump-to-page\" type=\"text\" value=\"";
// line 34
echo twig_escape_filter($this->env, ($context["current_page"] ?? null), "html", null, true);
echo "\" psurl=\"";
echo twig_escape_filter($this->env, ($context["jump_page_url"] ?? null), "html", null, true);
echo "\" psmax=\"";
echo twig_escape_filter($this->env, ($context["page_count"] ?? null), "html", null, true);
echo "\" pslimit=\"";
echo twig_escape_filter($this->env, ($context["limit"] ?? null), "html", null, true);
echo "\" />
</li>
<li class=\"page-item next ";
// line 36
if ((array_key_exists("next_url", $context) && (($context["next_url"] ?? null) != false))) {
} else {
echo "disabled";
}
echo "\">
<a class=\"page-link\" aria-label=\"Next\" id=\"pagination_next_url\" ";
// line 37
if ((array_key_exists("next_url", $context) && (($context["next_url"] ?? null) != false))) {
echo "href=\"";
echo twig_escape_filter($this->env, ($context["next_url"] ?? null), "html", null, true);
echo "\"";
} else {
echo "nohref";
}
echo "><span class=\"sr-only\">Next</span></a>
</li>
<li class=\"page-item ";
// line 39
if ((array_key_exists("last_url", $context) && (($context["last_url"] ?? null) != false))) {
} else {
echo "disabled";
}
echo "\">
<a class=\"page-link\" ";
// line 40
if ((array_key_exists("last_url", $context) && (($context["last_url"] ?? null) != false))) {
echo "href=\"";
echo twig_escape_filter($this->env, ($context["last_url"] ?? null), "html", null, true);
echo "\"";
} else {
echo "nohref";
}
echo ">";
echo twig_escape_filter($this->env, ($context["page_count"] ?? null), "html", null, true);
echo "</a>
</li>
</ul>
<div class=\"mx-3\">
";
// line 44
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Viewing %from%-%to% on %total% (page %current_page% / %page_count%)", array("%from%" => ( // line 45
($context["from"] ?? null) + 1), "%to%" => min(( // line 46
($context["to"] ?? null) + 1), ($context["total"] ?? null)), "%total%" => // line 47
($context["total"] ?? null), "%current_page%" => // line 48
($context["current_page"] ?? null), "%page_count%" => // line 49
($context["page_count"] ?? null)), "Admin.Catalog.Feature"), "html", null, true);
// line 51
echo "
</div>
<div class=\"mx-3\">
<div class=\"form-group row mb-0\">
<label for=\"paginator_select_page_limit\" class=\"col-form-label mr-2\">";
// line 55
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Items per page:", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</label>
<div>
<select name=\"paginator_select_page_limit\" id=\"paginator_select_page_limit\" psurl=\"";
// line 57
echo twig_escape_filter($this->env, ($context["changeLimitUrl"] ?? null), "html", null, true);
echo "\" class=\"pagination-link custom-select\">
";
// line 58
if (!twig_in_filter(($context["limit"] ?? null), ($context["limit_choices"] ?? null))) {
// line 59
echo " <option value=\"";
echo twig_escape_filter($this->env, ($context["limit"] ?? null), "html", null, true);
echo "\" selected=\"selected\">";
echo twig_escape_filter($this->env, ($context["limit"] ?? null), "html", null, true);
echo "</option>
";
}
// line 61
echo " ";
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["limit_choices"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["limit_choice"]) {
// line 62
echo " <option value=\"";
echo twig_escape_filter($this->env, $context["limit_choice"], "html", null, true);
echo "\" ";
if ((($context["limit"] ?? null) == $context["limit_choice"])) {
echo "selected=\"selected\"";
}
echo ">";
echo twig_escape_filter($this->env, $context["limit_choice"], "html", null, true);
echo "</option>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['limit_choice'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 64
echo " </select>
</div>
</div>
</div>
</div>
";
}
public function getTemplateName()
{
return "@PrestaShop/Admin/Common/pagination.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 163 => 64, 148 => 62, 143 => 61, 135 => 59, 133 => 58, 129 => 57, 124 => 55, 118 => 51, 116 => 49, 115 => 48, 114 => 47, 113 => 46, 112 => 45, 111 => 44, 96 => 40, 89 => 39, 78 => 37, 71 => 36, 60 => 34, 48 => 31, 41 => 30, 30 => 28, 23 => 27, 19 => 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/Common/pagination.html.twig", "/var/www/clients/client1/web14/web/src/PrestaShopBundle/Resources/views/Admin/Common/pagination.html.twig");
}
}

View File

@@ -0,0 +1,94 @@
<?php
/* @Product/ProductPage/Blocks/tabs.html.twig */
class __TwigTemplate_25529dd7bdfeda2c44ef9cbe5c85f6fc3f16d22dcf077d623054725e398746f1 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = array(
);
}
protected function doDisplay(array $context, array $blocks = array())
{
// line 25
echo "<div class=\"tabs js-tabs\">
<div class=\"arrow d-xl-none js-arrow left-arrow float-left\">
<i class=\"material-icons hide\">chevron_left</i>
</div>
<ul class=\"nav nav-tabs js-nav-tabs\" id=\"form-nav\" role=\"tablist\">
<li id=\"tab_step1\" class=\"nav-item\"><a href=\"#step1\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link active\">";
// line 31
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Basic settings", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</a></li>
<li id=\"tab_step3\" class=\"nav-item\"><a href=\"#step3\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link\">";
// line 32
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Quantities", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</a></li>
<li id=\"tab_step4\" class=\"nav-item\"><a href=\"#step4\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link\">";
// line 33
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Shipping", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</a></li>
<li id=\"tab_step2\" class=\"nav-item\"><a href=\"#step2\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link\">";
// line 34
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Pricing", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</a></li>
<li id=\"tab_step5\" class=\"nav-item\"><a href=\"#step5\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link\">";
// line 35
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("SEO", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</a></li>
<li id=\"tab_step6\" class=\"nav-item\"><a href=\"#step6\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link\">";
// line 36
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Options", array(), "Admin.Global"), "html", null, true);
echo "</a></li>
";
// line 37
if (($this->env->getExtension('PrestaShopBundle\Twig\HookExtension')->hookCount("displayAdminProductsExtra") > 0)) {
// line 38
echo " <li id=\"tab_hooks\" class=\"nav-item\"><a href=\"#hooks\" role=\"tab\" data-toggle=\"tab\" class=\"nav-link\">";
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Modules", array(), "Admin.Catalog.Feature"), "html", null, true);
echo "</a></li>
";
}
// line 40
echo " </ul>
<div class=\"arrow d-xl-none js-arrow right-arrow visible float-right\">
<i class=\"material-icons hide\">chevron_right</i>
</div>
</div>
";
}
public function getTemplateName()
{
return "@Product/ProductPage/Blocks/tabs.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 59 => 40, 53 => 38, 51 => 37, 47 => 36, 43 => 35, 39 => 34, 35 => 33, 31 => 32, 27 => 31, 19 => 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("", "@Product/ProductPage/Blocks/tabs.html.twig", "/var/www/clients/client1/web14/web/src/PrestaShopBundle/Resources/views/Admin/Product/ProductPage/Blocks/tabs.html.twig");
}
}