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,133 @@
<?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_lang.twig */
class __TwigTemplate_3b667857266f8d33fa2a213046b92c8fec8e3c7594853685ace4fae577e61671 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 " <form method=\"get\" action=\"";
echo PhpMyAdmin\Url::getFromRoute("/");
echo "\" class=\"disableAjax\">
";
// line 2
echo PhpMyAdmin\Url::getHiddenInputs(($context["_form_params"] ?? null));
echo "
";
// line 4
if (($context["use_fieldset"] ?? null)) {
// line 5
echo " <fieldset>
<legend class=\"col-form-label\" lang=\"en\" dir=\"ltr\">";
// line 6
echo ($context["language_title"] ?? null);
echo "</legend>
";
} else {
// line 8
echo " <bdo lang=\"en\" dir=\"ltr\">
<label for=\"sel-lang\">";
// line 9
echo ($context["language_title"] ?? null);
echo "</label>
</bdo>
";
}
// line 12
echo "
<select name=\"lang\" class=\"autosubmit\" lang=\"en\" dir=\"ltr\" id=\"sel-lang\">
";
// line 15
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["available_languages"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["language"]) {
// line 16
echo " ";
// line 17
echo " <option value=\"";
echo twig_escape_filter($this->env, twig_lower_filter($this->env, twig_get_attribute($this->env, $this->source, $context["language"], "getCode", [], "method", false, false, false, 17)), "html", null, true);
echo "\"";
// line 18
if (twig_get_attribute($this->env, $this->source, $context["language"], "isActive", [], "method", false, false, false, 18)) {
// line 19
echo " selected=\"selected\"";
}
// line 21
echo ">
";
// line 22
echo twig_get_attribute($this->env, $this->source, $context["language"], "getName", [], "method", false, false, false, 22);
echo "
</option>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['language'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 25
echo "
</select>
";
// line 28
if (($context["use_fieldset"] ?? null)) {
// line 29
echo " </fieldset>
";
}
// line 31
echo "
</form>
";
}
public function getTemplateName()
{
return "select_lang.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 109 => 31, 105 => 29, 103 => 28, 98 => 25, 89 => 22, 86 => 21, 83 => 19, 81 => 18, 77 => 17, 75 => 16, 71 => 15, 66 => 12, 60 => 9, 57 => 8, 52 => 6, 49 => 5, 47 => 4, 42 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "select_lang.twig", "E:\\xampp_8.0.9\\htdocs\\leitgedanken_utf8\\pma\\templates\\select_lang.twig");
}
}

View File

@ -0,0 +1,254 @@
<?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/search/main.twig */
class __TwigTemplate_9a608837f4cea6950045fec82f8f6b7d090fc732a7f91756b120d20ca536ab5a 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=\"db_search\"></a>
<form id=\"db_search_form\" method=\"post\" action=\"";
// line 2
echo PhpMyAdmin\Url::getFromRoute("/database/search");
echo "\" name=\"db_search\" class=\"ajax lock-page\">
";
// line 3
echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null));
echo "
<fieldset>
<legend>";
// line 5
echo _gettext("Search in database");
echo "</legend>
<p>
<label for=\"criteriaSearchString\" class=\"displayblock\">
";
// line 8
echo _gettext("Words or values to search for (wildcard: \"%\"):");
// line 9
echo " </label>
<input id=\"criteriaSearchString\" name=\"criteriaSearchString\" class=\"w-75\" type=\"text\" value=\"";
// line 11
echo twig_escape_filter($this->env, ($context["criteria_search_string"] ?? null), "html", null, true);
echo "\">
</p>
<fieldset>
<legend>";
// line 15
echo _gettext("Find:");
echo "</legend>
<div>
<input type=\"radio\" name=\"criteriaSearchType\" id=\"criteriaSearchTypeRadio1\" value=\"1\"";
// line 18
echo (((($context["criteria_search_type"] ?? null) == "1")) ? (" checked") : (""));
echo ">
<label for=\"criteriaSearchTypeRadio1\">";
// line 19
echo _gettext("at least one of the words");
echo " ";
echo \PhpMyAdmin\Html\Generator::showHint(_gettext("Words are separated by a space character (\" \")."));
echo "</label>
</div>
<div>
<input type=\"radio\" name=\"criteriaSearchType\" id=\"criteriaSearchTypeRadio2\" value=\"2\"";
// line 22
echo (((($context["criteria_search_type"] ?? null) == "2")) ? (" checked") : (""));
echo ">
<label for=\"criteriaSearchTypeRadio2\">";
// line 23
echo _gettext("all of the words");
echo " ";
echo \PhpMyAdmin\Html\Generator::showHint(_gettext("Words are separated by a space character (\" \")."));
echo "</label>
</div>
<div>
<input type=\"radio\" name=\"criteriaSearchType\" id=\"criteriaSearchTypeRadio3\" value=\"3\"";
// line 26
echo (((($context["criteria_search_type"] ?? null) == "3")) ? (" checked") : (""));
echo ">
<label for=\"criteriaSearchTypeRadio3\">";
// line 27
echo _gettext("the exact phrase as substring");
echo "</label>
</div>
<div>
<input type=\"radio\" name=\"criteriaSearchType\" id=\"criteriaSearchTypeRadio4\" value=\"4\"";
// line 30
echo (((($context["criteria_search_type"] ?? null) == "4")) ? (" checked") : (""));
echo ">
<label for=\"criteriaSearchTypeRadio4\">";
// line 31
echo _gettext("the exact phrase as whole field");
echo "</label>
</div>
<div>
<input type=\"radio\" name=\"criteriaSearchType\" id=\"criteriaSearchTypeRadio5\" value=\"5\"";
// line 34
echo (((($context["criteria_search_type"] ?? null) == "5")) ? (" checked") : (""));
echo ">
<label for=\"criteriaSearchTypeRadio5\">";
// line 35
echo _gettext("as regular expression");
echo " ";
echo \PhpMyAdmin\Html\MySQLDocumentation::show("Regexp");
echo "</label>
</div>
</fieldset>
<fieldset>
<legend>";
// line 40
echo _gettext("Inside tables:");
echo "</legend>
<p>
<a href=\"#\" onclick=\"Functions.setSelectOptions('db_search', 'criteriaTables[]', true); return false;\">
";
// line 43
echo _gettext("Select all");
// line 44
echo " </a> /
<a href=\"#\" onclick=\"Functions.setSelectOptions('db_search', 'criteriaTables[]', false); return false;\">
";
// line 46
echo _gettext("Unselect all");
// line 47
echo " </a>
</p>
<select name=\"criteriaTables[]\" multiple>
";
// line 50
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["tables_names_only"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["each_table"]) {
// line 51
echo " <option value=\"";
echo twig_escape_filter($this->env, $context["each_table"], "html", null, true);
echo "\"
";
// line 52
if ((twig_length_filter($this->env, ($context["criteria_tables"] ?? null)) > 0)) {
// line 53
echo ((twig_in_filter($context["each_table"], ($context["criteria_tables"] ?? null))) ? (" selected") : (""));
echo "
";
} else {
// line 55
echo " selected";
echo "
";
}
// line 57
echo " >
";
// line 58
echo twig_escape_filter($this->env, $context["each_table"], "html", null, true);
echo "
</option>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['each_table'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 61
echo " </select>
</fieldset>
<p>
";
// line 66
echo " <label for=\"criteriaColumnName\" class=\"displayblock\">
";
// line 67
echo _gettext("Inside column:");
// line 68
echo " </label>
<input id=\"criteriaColumnName\" type=\"text\" name=\"criteriaColumnName\" class=\"w-75\" value=\"";
// line 70
(( !twig_test_empty(($context["criteria_column_name"] ?? null))) ? (print (twig_escape_filter($this->env, ($context["criteria_column_name"] ?? null), "html", null, true))) : (print ("")));
echo "\">
</p>
</fieldset>
<fieldset class=\"tblFooters\">
<input id=\"buttonGo\" class=\"btn btn-primary\" type=\"submit\" name=\"submit_search\" value=\"";
// line 74
echo _gettext("Go");
echo "\">
</fieldset>
</form>
<div id=\"togglesearchformdiv\">
<a id=\"togglesearchformlink\"></a>
</div>
<div id=\"searchresults\"></div>
<div id=\"togglesearchresultsdiv\"><a id=\"togglesearchresultlink\"></a></div>
<br class=\"clearfloat\">
";
// line 84
echo "<div id=\"table-info\">
<a id=\"table-link\" class=\"item\"></a>
</div>
";
// line 88
echo "<div id=\"browse-results\">
";
// line 90
echo "</div>
<div id=\"sqlqueryform\" class=\"clearfloat\">
";
// line 93
echo "</div>
";
// line 95
echo "<button class=\"btn btn-secondary\" id=\"togglequerybox\"></button>
";
}
public function getTemplateName()
{
return "database/search/main.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 231 => 95, 228 => 93, 224 => 90, 221 => 88, 216 => 84, 204 => 74, 197 => 70, 194 => 68, 192 => 67, 189 => 66, 183 => 61, 174 => 58, 171 => 57, 166 => 55, 161 => 53, 159 => 52, 154 => 51, 150 => 50, 145 => 47, 143 => 46, 139 => 44, 137 => 43, 131 => 40, 121 => 35, 117 => 34, 111 => 31, 107 => 30, 101 => 27, 97 => 26, 89 => 23, 85 => 22, 77 => 19, 73 => 18, 67 => 15, 60 => 11, 57 => 9, 55 => 8, 49 => 5, 44 => 3, 40 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "database/search/main.twig", "/var/www/web360/htdocs/leitgedanken_php8/pma/templates/database/search/main.twig");
}
}