Viewing file: bb141942ff81aac7be2b2d9d377addfefb3616dc67a8caa761a6bc1ffd417155.php (5.71 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/search/selection_form.twig */ class __TwigTemplate_f58e06f61c18c1bb135ea83dd58a4bd89e3edfc7e052cab8fcfc3076974efdc7 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=\"db_search.php\" 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=\"all85\" 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> "; // line 17 echo " "; // line 19 echo " "; echo PhpMyAdmin\Util::getRadioFields("criteriaSearchType", // line 21 ($context["choices"] ?? null), // line 22 ($context["criteria_search_type"] ?? null), true, false); // line 25 echo " </fieldset>
<fieldset> <legend>"; // line 29 echo _gettext("Inside tables:"); echo "</legend> <p> <a href=\"#\" onclick=\"setSelectOptions('db_search', 'criteriaTables[]', true); return false;\"> "; // line 32 echo _gettext("Select all"); // line 33 echo " </a> / <a href=\"#\" onclick=\"setSelectOptions('db_search', 'criteriaTables[]', false); return false;\"> "; // line 35 echo _gettext("Unselect all"); // line 36 echo " </a> </p> <select name=\"criteriaTables[]\" multiple> "; // line 39 $context['_parent'] = $context; $context['_seq'] = twig_ensure_traversable(($context["tables_names_only"] ?? null)); foreach ($context['_seq'] as $context["_key"] => $context["each_table"]) { // line 40 echo " <option value=\""; echo twig_escape_filter($this->env, $context["each_table"], "html", null, true); echo "\""; // line 41 echo ((twig_in_filter($context["each_table"], ($context["criteria_tables"] ?? null))) ? (" selected") : ("")); echo "> "; // line 42 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 45 echo " </select> </fieldset>
<p> "; // line 50 echo " <label for=\"criteriaColumnName\" class=\"displayblock\"> "; // line 51 echo _gettext("Inside column:"); // line 52 echo " </label> <input id=\"criteriaColumnName\" type=\"text\" name=\"criteriaColumnName\" class=\"all85\" value=\""; // line 54 (( !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 type=\"submit\" name=\"submit_search\" value=\""; // line 58 echo _gettext("Go"); echo "\" id=\"buttonGo\"> </fieldset> </form> <div id=\"togglesearchformdiv\"> <a id=\"togglesearchformlink\"></a> </div> "; }
public function getTemplateName() { return "database/search/selection_form.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 142 => 58, 135 => 54, 132 => 52, 130 => 51, 127 => 50, 121 => 45, 112 => 42, 108 => 41, 104 => 40, 100 => 39, 95 => 36, 93 => 35, 89 => 33, 87 => 32, 81 => 29, 75 => 25, 73 => 22, 72 => 21, 70 => 19, 68 => 17, 64 => 15, 57 => 11, 54 => 9, 52 => 8, 46 => 5, 41 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/search/selection_form.twig", "/usr/share/phpmyadmin/templates/database/search/selection_form.twig"); } }
|