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,146 @@
<?php
/* @PrestaShop/Admin/Module/Includes/dropdown_categories.html.twig */
class __TwigTemplate_ebd70b782ab77fd85ed1810ba13e4c751e4333c019df467f1de9ea4fd5b22ba4 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=\"ps-dropdown dropdown btn-group bordered mb-1\">
";
// line 26
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["topMenuData"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["menu"]) {
// line 27
echo " ";
$context["refMenu"] = $this->getAttribute($context["menu"], "refMenu", array());
// line 28
echo " <div id=\"";
echo twig_escape_filter($this->env, ($context["refMenu"] ?? null), "html", null, true);
echo "\" class=\"dropdown-label\" data-toggle=\"dropdown\" aria-haspopup=\"true\" aria-expanded=\"false\">
<span class=\"js-selected-item selected-item module-category-selector-label\">
";
// line 30
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("All Categories", array(), "Admin.Modules.Feature"), "html", null, true);
echo "
</span>
<i class=\"material-icons arrow-down float-right\">keyboard_arrow_down</i>
</div>
<div class=\"ps-dropdown-menu dropdown-menu module-category-selector\" aria-labelledby=\"";
// line 35
echo twig_escape_filter($this->env, ($context["refMenu"] ?? null), "html", null, true);
echo "\">
<ul class=\"items-list js-items-list\">
<li class=\"module-category-reset\">
<a class=\"dropdown-item\" href=\"#\">
";
// line 39
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("All Categories", array(), "Admin.Modules.Feature"), "html", null, true);
echo "
</a>
</li>
<li class=\"module-category-menu module-category-recently-used\"
data-category-ref=\"recently-used\"
data-category-display-name=\"";
// line 44
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Recently Used", array(), "Admin.Modules.Feature"), "html", null, true);
echo "\"
>
<a class=\"dropdown-item\" href=\"#\">
";
// line 47
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans("Recently Used", array(), "Admin.Modules.Feature"), "html", null, true);
echo "
</a>
</li>
</li>
";
// line 51
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable($this->getAttribute($context["menu"], "subMenu", array()));
foreach ($context['_seq'] as $context["_key"] => $context["subMenu"]) {
// line 52
echo " <li class=\"module-category-menu\"
";
// line 53
if ($this->getAttribute($context["subMenu"], "tab", array())) {
echo "data-category-tab=\"";
echo twig_escape_filter($this->env, $this->getAttribute($context["subMenu"], "tab", array()), "html", null, true);
echo "\"";
}
// line 54
echo " data-category-ref=\"";
echo twig_escape_filter($this->env, $this->getAttribute($context["subMenu"], "refMenu", array()), "html", null, true);
echo "\"
data-category-display-name=\"";
// line 55
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans($this->getAttribute($context["subMenu"], "name", array()), array(), "Admin.Modules.Feature"), "html", null, true);
echo "\"
>
<a class=\"dropdown-item\" href=\"#\">
";
// line 58
echo twig_escape_filter($this->env, $this->env->getExtension('Symfony\Bridge\Twig\Extension\TranslationExtension')->trans($this->getAttribute($context["subMenu"], "name", array()), array(), "Admin.Modules.Feature"), "html", null, true);
echo "<span class=\"float-right\">";
echo twig_escape_filter($this->env, twig_length_filter($this->env, $this->getAttribute($context["subMenu"], "modules", array())), "html", null, true);
echo "</span>
</a>
</li>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['subMenu'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 62
echo " </ul>
</div>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['menu'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 65
echo "</div>
";
}
public function getTemplateName()
{
return "@PrestaShop/Admin/Module/Includes/dropdown_categories.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 115 => 65, 107 => 62, 95 => 58, 89 => 55, 84 => 54, 78 => 53, 75 => 52, 71 => 51, 64 => 47, 58 => 44, 50 => 39, 43 => 35, 35 => 30, 29 => 28, 26 => 27, 22 => 26, 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/Module/Includes/dropdown_categories.html.twig", "/var/www/clients/client1/web14/web/src/PrestaShopBundle/Resources/views/Admin/Module/Includes/dropdown_categories.html.twig");
}
}