parent = false;
$this->blocks = array(
);
}
protected function doDisplay(array $context, array $blocks = array())
{
// line 1
echo "
";
// line 3
echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.NAME"), "html", null, true);
echo "
";
// line 4
echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.AUTHOR"), "html", null, true);
echo "
GravTeam
";
// line 6
echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.RELEASE_DATE"), "html", null, true);
echo "
";
// line 7
if (((($context["list_view"] ?? null) == "plugins") && !($context["installing"] ?? null))) {
echo "";
echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.ENABLED"), "html", null, true);
echo " ";
}
// line 8
echo " ";
if ( !($context["installing"] ?? null)) {
echo "";
echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.UPDATES_AVAILABLE"), "html", null, true);
echo " ";
}
// line 9
echo " ";
if (($this->getAttribute($this->getAttribute($this->getAttribute(($context["config"] ?? null), "system", array()), "gpm", array()), "releases", array()) == "testing")) {
echo "";
echo twig_escape_filter($this->env, $this->env->getExtension('Grav\Plugin\Admin\AdminTwigExtension')->tuFilter("PLUGIN_ADMIN.TESTING"), "html", null, true);
echo " ";
}
// line 10
echo "
";
}
public function getTemplateName()
{
return "partials/list-sort.html.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 56 => 10, 49 => 9, 42 => 8, 36 => 7, 32 => 6, 27 => 4, 23 => 3, 19 => 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 Twig_Source("
{{ \"PLUGIN_ADMIN.NAME\"|tu }}
{{ \"PLUGIN_ADMIN.AUTHOR\"|tu }}
GravTeam
{{ \"PLUGIN_ADMIN.RELEASE_DATE\"|tu }}
{% if list_view == 'plugins' and not installing %}{{ \"PLUGIN_ADMIN.ENABLED\"|tu }} {% endif %}
{% if not installing %}{{ \"PLUGIN_ADMIN.UPDATES_AVAILABLE\"|tu }} {% endif %}
{% if config.system.gpm.releases == 'testing' %}{{ \"PLUGIN_ADMIN.TESTING\"|tu }} {% endif %}
", "partials/list-sort.html.twig", "/home/kevin/Sites/static-ethica.net/user/plugins/admin/themes/grav/templates/partials/list-sort.html.twig");
}
}