Viewing file: ea5fd136855a3b62b0e4cd2b50d009fb6c669b577b28558fb2aba8ff2fd8932e.php (2.4 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;
/* display/results/multi_row_operations_form.twig */ class __TwigTemplate_36d38ac797339946898ca5a5cb4ef4ff540cac0296ec6b76923977cd9b7de32e 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 if (((($context["delete_link"] ?? null) == ($context["delete_row"] ?? null)) || (($context["delete_link"] ?? null) == ($context["kill_process"] ?? null)))) { // line 2 echo " <form method=\"post\" action=\"tbl_row_action.php\" name=\"resultsForm\" id=\"resultsForm_"; // line 5 echo twig_escape_filter($this->env, ($context["unique_id"] ?? null), "html", null, true); echo "\" class=\"ajax\"> "; // line 7 echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null), ($context["table"] ?? null), 1); echo " <input type=\"hidden\" name=\"goto\" value=\"sql.php\" /> "; } // line 10 echo " <div class=\"responsivetable\"> <table class=\"table_results data ajax\" data-uniqueId=\""; // line 12 echo twig_escape_filter($this->env, ($context["unique_id"] ?? null), "html", null, true); echo "\"> "; }
public function getTemplateName() { return "display/results/multi_row_operations_form.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 59 => 12, 55 => 10, 49 => 7, 44 => 5, 39 => 2, 37 => 1,); }
public function getSourceContext() { return new Source("", "display/results/multi_row_operations_form.twig", "/usr/share/phpmyadmin/templates/display/results/multi_row_operations_form.twig"); } }
|