Initial commit

This commit is contained in:
2022-11-21 09:47:28 +01:00
commit 76cec83d26
11652 changed files with 1980467 additions and 0 deletions

View File

@ -0,0 +1,86 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* select_all.twig */
class __TwigTemplate_d23d561c36fe49613e489fb5cfef7a038067440e769a8d8a8d4689125ef542db extends \Twig\Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 1
echo "<img class=\"selectallarrow\" src=\"";
echo twig_escape_filter($this->env, ($context["theme_image_path"] ?? null), "html", null, true);
echo "arrow_";
echo twig_escape_filter($this->env, ($context["text_dir"] ?? null), "html", null, true);
echo ".png\"
width=\"38\" height=\"22\" alt=\"";
// line 2
echo _gettext("With selected:");
echo "\">
<input type=\"checkbox\" id=\"";
// line 3
echo twig_escape_filter($this->env, ($context["form_name"] ?? null), "html", null, true);
echo "_checkall\" class=\"checkall_box\"
title=\"";
// line 4
echo _gettext("Check all");
echo "\">
<label for=\"";
// line 5
echo twig_escape_filter($this->env, ($context["form_name"] ?? null), "html", null, true);
echo "_checkall\">";
echo _gettext("Check all");
echo "</label>
<em class=\"with-selected\">";
// line 6
echo _gettext("With selected:");
echo "</em>
";
}
public function getTemplateName()
{
return "select_all.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 62 => 6, 56 => 5, 52 => 4, 48 => 3, 44 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "select_all.twig", "/var/www/web360/htdocs/leitgedanken_php8/pma/templates/select_all.twig");
}
}

View File

@ -0,0 +1,80 @@
<?php
use Twig\Environment;
use Twig\Error\LoaderError;
use Twig\Error\RuntimeError;
use Twig\Extension\SandboxExtension;
use Twig\Markup;
use Twig\Sandbox\SecurityError;
use Twig\Sandbox\SecurityNotAllowedTagError;
use Twig\Sandbox\SecurityNotAllowedFilterError;
use Twig\Sandbox\SecurityNotAllowedFunctionError;
use Twig\Source;
use Twig\Template;
/* database/structure/favorite_anchor.twig */
class __TwigTemplate_45ab8ea5c0050b727fe692057929ab4108d8f4dddf51392e8a9e7aee4c46edf5 extends \Twig\Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 1
echo "<a id=\"";
echo twig_escape_filter($this->env, ($context["table_name_hash"] ?? null), "html", null, true);
echo "_favorite_anchor\"
class=\"ajax favorite_table_anchor\"
href=\"";
// line 3
echo PhpMyAdmin\Url::getFromRoute("/database/structure/favorite-table", ($context["fav_params"] ?? null));
echo "\"
title=\"";
// line 4
echo twig_escape_filter($this->env, ((($context["already_favorite"] ?? null)) ? (_gettext("Remove from Favorites")) : (_gettext("Add to Favorites"))), "html", null, true);
echo "\"
data-favtargets=\"";
// line 5
echo twig_escape_filter($this->env, ($context["db_table_name_hash"] ?? null), "html", null, true);
echo "\">
";
// line 6
echo ((($context["already_favorite"] ?? null)) ? (\PhpMyAdmin\Html\Generator::getIcon("b_favorite")) : (\PhpMyAdmin\Html\Generator::getIcon("b_no_favorite")));
echo "
</a>
";
}
public function getTemplateName()
{
return "database/structure/favorite_anchor.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 55 => 6, 51 => 5, 47 => 4, 43 => 3, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "database/structure/favorite_anchor.twig", "E:\\xampp_8.0.9\\htdocs\\leitgedanken_utf8\\pma\\templates\\database\\structure\\favorite_anchor.twig");
}
}