Files
doitinpoland.com/wp-content/uploads/cache/wpml/twig/cb/cbe8656919c2538a658f201debf07d1b62d15575e823bd2ee8d6a90e816c5ccc.php
2024-03-27 22:39:26 +01:00

89 lines
3.0 KiB
PHP
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?php
namespace WPML\Core;
use \WPML\Core\Twig\Environment;
use \WPML\Core\Twig\Error\LoaderError;
use \WPML\Core\Twig\Error\RuntimeError;
use \WPML\Core\Twig\Markup;
use \WPML\Core\Twig\Sandbox\SecurityError;
use \WPML\Core\Twig\Sandbox\SecurityNotAllowedTagError;
use \WPML\Core\Twig\Sandbox\SecurityNotAllowedFilterError;
use \WPML\Core\Twig\Sandbox\SecurityNotAllowedFunctionError;
use \WPML\Core\Twig\Source;
use \WPML\Core\Twig\Template;
/* table-nav-arrow.twig */
class __TwigTemplate_673c975c11bf0378c39269c18bc1e20b4f86c864c440437ac71d430ffae3cb0d extends \WPML\Core\Twig\Template
{
public function __construct(Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
$context["arrows"] = ["first-page" => "«", "previous-page" => "", "next-page" => "", "last-page" => "»"];
// line 8
echo "
";
// line 9
if (($context["url"] ?? null)) {
// line 10
echo " <a class=\"";
echo \WPML\Core\twig_escape_filter($this->env, ($context["class"] ?? null), "html", null, true);
echo "\" href=\"";
echo \WPML\Core\twig_escape_filter($this->env, ($context["url"] ?? null), "html", null, true);
echo "\">
<span class=\"screen-reader-text\">";
// line 11
echo \WPML\Core\twig_escape_filter($this->env, ($context["label"] ?? null), "html", null, true);
echo "</span><span aria-hidden=\"true\">";
echo \WPML\Core\twig_escape_filter($this->env, $this->getAttribute(($context["arrows"] ?? null), ($context["class"] ?? null), [], "array"), "html", null, true);
echo "</span>
</a>
";
} else {
// line 14
echo " <span class=\"tablenav-pages-navspan\" aria-hidden=\"true\">";
echo \WPML\Core\twig_escape_filter($this->env, $this->getAttribute(($context["arrows"] ?? null), ($context["class"] ?? null), [], "array"), "html", null, true);
echo "</span>
";
}
}
public function getTemplateName()
{
return "table-nav-arrow.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 54 => 14, 46 => 11, 39 => 10, 37 => 9, 34 => 8, 32 => 1,);
}
/** @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 Source("", "table-nav-arrow.twig", "/home/infinitycons/ftp/wingedit/doitinpoland.com/wp-content/plugins/sitepress-multilingual-cms/templates/pagination/table-nav-arrow.twig");
}
}