first commit

This commit is contained in:
dev@siliconpin.com
2025-08-07 11:53:41 +05:30
commit a3067c5ad4
4795 changed files with 782758 additions and 0 deletions

View File

@@ -0,0 +1,67 @@
<?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;
/* message.twig */
class __TwigTemplate_8adfeda4e781f50eff19b8080ac5d26a extends 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 "<div class=\"alert alert-";
echo twig_escape_filter($this->env, ($context["context"] ?? null), "html", null, true);
echo "\" role=\"alert\">
";
// line 2
echo ($context["message"] ?? null);
echo "
</div>
";
}
public function getTemplateName()
{
return "message.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 42 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "message.twig", "/home/arif/public_html/pma/templates/message.twig");
}
}

View File

@@ -0,0 +1,137 @@
<?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;
/* table/page_with_secondary_tabs.twig */
class __TwigTemplate_912e42c86ba46725cad62b5f60333ef0 extends Template
{
private $source;
private $macros = [];
public function __construct(Environment $env)
{
parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [
'content' => [$this, 'block_content'],
];
}
protected function doDisplay(array $context, array $blocks = [])
{
$macros = $this->macros;
// line 1
if (( !(null === twig_get_attribute($this->env, $this->source, ($context["relation_parameters"] ?? null), "relationFeature", [], "any", false, false, false, 1)) || ($context["is_foreign_key_supported"] ?? null))) {
// line 2
echo " <ul class=\"nav nav-pills m-2 d-print-none\">
<li class=\"nav-item\">
<a href=\"";
// line 4
echo PhpMyAdmin\Url::getFromRoute("/table/structure", ["db" => ($context["db"] ?? null), "table" => ($context["table"] ?? null)]);
echo "\" id=\"table_structure_id\" class=\"nav-link";
echo (((($context["route"] ?? null) == "/table/structure")) ? (" active") : (""));
echo "\">
";
// line 5
echo PhpMyAdmin\Html\Generator::getIcon("b_props", _gettext("Table structure"), true);
echo "
</a>
</li>
<li class=\"nav-item\">
<a href=\"";
// line 10
echo PhpMyAdmin\Url::getFromRoute("/table/relation", ["db" => ($context["db"] ?? null), "table" => ($context["table"] ?? null)]);
echo "\" id=\"table_relation_id\" class=\"nav-link";
echo (((($context["route"] ?? null) == "/table/relation")) ? (" active") : (""));
echo "\">
";
// line 11
echo PhpMyAdmin\Html\Generator::getIcon("b_relations", _gettext("Relation view"), true);
echo "
</a>
</li>
</ul>
";
}
// line 16
echo "
";
// line 17
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable($this->env->getRuntime('PhpMyAdmin\FlashMessages')->getMessages());
foreach ($context['_seq'] as $context["flash_key"] => $context["flash_messages"]) {
// line 18
echo " ";
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable($context["flash_messages"]);
foreach ($context['_seq'] as $context["_key"] => $context["flash_message"]) {
// line 19
echo " <div class=\"alert alert-";
echo twig_escape_filter($this->env, $context["flash_key"], "html", null, true);
echo "\" role=\"alert\">
";
// line 20
echo twig_escape_filter($this->env, $context["flash_message"], "html", null, true);
echo "
</div>
";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['flash_message'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['flash_key'], $context['flash_messages'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 24
echo "
<div id=\"structure_content\">
";
// line 26
$this->displayBlock('content', $context, $blocks);
// line 27
echo "</div>
";
}
// line 26
public function block_content($context, array $blocks = [])
{
$macros = $this->macros;
}
public function getTemplateName()
{
return "table/page_with_secondary_tabs.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 113 => 26, 108 => 27, 106 => 26, 102 => 24, 89 => 20, 84 => 19, 79 => 18, 75 => 17, 72 => 16, 64 => 11, 58 => 10, 50 => 5, 44 => 4, 40 => 2, 38 => 1,);
}
public function getSourceContext()
{
return new Source("", "table/page_with_secondary_tabs.twig", "/home/arif/public_html/pma/templates/table/page_with_secondary_tabs.twig");
}
}

View File

@@ -0,0 +1,73 @@
<?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;
/* navigation/tree/quick_warp.twig */
class __TwigTemplate_38a2c48e0b6b029b4caefeb9d89038b8 extends 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 "<div class=\"pma_quick_warp\">
";
// line 2
if (($context["recent"] ?? null)) {
echo ($context["recent"] ?? null);
}
// line 3
echo " ";
if (($context["favorite"] ?? null)) {
echo ($context["favorite"] ?? null);
}
// line 4
echo " <div class=\"clearfloat\"></div>
</div>
";
}
public function getTemplateName()
{
return "navigation/tree/quick_warp.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 49 => 4, 44 => 3, 40 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "navigation/tree/quick_warp.twig", "/home/dev/web/arif.off/public_html/pma/templates/navigation/tree/quick_warp.twig");
}
}

View File

@@ -0,0 +1,93 @@
<?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/create_table.twig */
class __TwigTemplate_c5ff86f2db9a83827260c8c02b8892c0 extends 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 id=\"createTableMinimalForm\" method=\"post\" action=\"";
echo PhpMyAdmin\Url::getFromRoute("/table/create");
echo "\" class=\"card d-print-none lock-page\">
";
// line 2
echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null));
echo "
<div class=\"card-header\">";
// line 3
echo PhpMyAdmin\Html\Generator::getIcon("b_table_add", _gettext("Create new table"), true);
echo "</div>
<div class=\"card-body row row-cols-lg-auto g-3\">
<div class=\"col-12\">
<label for=\"createTableNameInput\" class=\"form-label\">";
echo _gettext("Table name");
// line 6
echo "</label>
<input type=\"text\" class=\"form-control\" name=\"table\" id=\"createTableNameInput\" maxlength=\"64\" required>
</div>
<div class=\"col-12\">
<label for=\"createTableNumFieldsInput\" class=\"form-label\">";
echo _gettext("Number of columns");
// line 10
echo "</label>
<input type=\"number\" class=\"form-control\" name=\"num_fields\" id=\"createTableNumFieldsInput\" min=\"1\" value=\"4\" required>
</div>
<div class=\"col-12 align-self-lg-end\">
<input class=\"btn btn-primary\" type=\"submit\" value=\"";
echo _gettext("Create");
// line 14
echo "\">
</div>
</div>
</form>
";
}
public function getTemplateName()
{
return "database/create_table.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 67 => 14, 60 => 10, 53 => 6, 46 => 3, 42 => 2, 37 => 1,);
}
public function getSourceContext()
{
return new Source("", "database/create_table.twig", "/home/dev/web/arif.off/public_html/pma/templates/database/create_table.twig");
}
}