Viewing file: 6e61054dc79ebe46e05d28559465dcf5f5f02aa01d2d0e39087ca6eed3e7c0e2.php (5.18 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?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/tracking/untracked_tables.twig */ class __TwigTemplate_f47ed5e8444c59db9ee5d08ab98c2e1e0f464caa81411cee6ea4f063d5e27cb7 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 "<h3>"; echo _gettext("Untracked tables"); echo "</h3> <form method=\"post\" action=\"db_tracking.php\" name=\"untrackedForm\" id=\"untrackedForm\" class=\"ajax\"> "; // line 4 echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null)); echo " <table id=\"noversions\" class=\"data\"> <thead> <tr> <th></th> <th>"; // line 9 echo _gettext("Table"); echo "</th> <th>"; // line 10 echo _gettext("Action"); echo "</th> </tr> </thead> <tbody> "; // line 14 $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(($context["untracked_tables"] ?? null)); foreach ($context['_seq'] as $context["_key"] => $context["table_name"]) { // line 15 echo " "; if ((PhpMyAdmin\Tracker::getVersion(($context["db"] ?? null), $context["table_name"]) == -1)) { // line 16 echo " <tr> <td class=\"center\"> <input type=\"checkbox\" name=\"selected_tbl[]\" class=\"checkall\" id=\"selected_tbl_"; // line 19 echo twig_escape_filter($this->env, $context["table_name"], "html", null, true); echo "\" value=\""; // line 20 echo twig_escape_filter($this->env, $context["table_name"], "html", null, true); echo "\"/> </td> <th> <label for=\"selected_tbl_"; // line 23 echo twig_escape_filter($this->env, $context["table_name"], "html", null, true); echo "\"> "; // line 24 echo twig_escape_filter($this->env, $context["table_name"], "html", null, true); echo " </label> </th> <td> <a href=\"tbl_tracking.php"; // line 28 echo ($context["url_query"] ?? null); echo "&table="; echo twig_escape_filter($this->env, $context["table_name"], "html", null, true); echo "\"> "; // line 29 echo PhpMyAdmin\Util::getIcon("eye", _gettext("Track table")); echo " </a> </td> </tr> "; } // line 34 echo " "; } $_parent = $context['_parent']; unset($context['_seq'], $context['_iterated'], $context['_key'], $context['table_name'], $context['_parent'], $context['loop']); $context = array_intersect_key($context, $_parent) + $_parent; // line 35 echo " </tbody> </table> "; // line 37 $this->loadTemplate("select_all.twig", "database/tracking/untracked_tables.twig", 37)->display(twig_to_array(["pma_theme_image" => // line 38 ($context["pma_theme_image"] ?? null), "text_dir" => // line 39 ($context["text_dir"] ?? null), "form_name" => "untrackedForm"])); // line 42 echo " "; echo PhpMyAdmin\Util::getButtonOrImage("submit_mult", "mult_submit", _gettext("Track table"), "eye", "track"); // line 48 echo " </form> "; }
public function getTemplateName() { return "database/tracking/untracked_tables.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 127 => 48, 124 => 42, 122 => 39, 121 => 38, 120 => 37, 116 => 35, 110 => 34, 102 => 29, 96 => 28, 89 => 24, 85 => 23, 79 => 20, 75 => 19, 70 => 16, 67 => 15, 63 => 14, 56 => 10, 52 => 9, 44 => 4, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/tracking/untracked_tables.twig", "/usr/share/phpmyadmin/templates/database/tracking/untracked_tables.twig"); } }
|