Current File : //tmp/twig/8a/8af18c2bf6e4495fbc67f9a03573142a5e445a2a6eda8fe46e1fa478405b5f09.php |
<?php
/* table/search/options.twig */
class __TwigTemplate_8d49c1d457baa98db70a4339a91ede940057dfdb5cba97f658e0fd541c2a1e85 extends Twig_Template
{
public function __construct(Twig_Environment $env)
{
parent::__construct($env);
$this->parent = false;
$this->blocks = [
];
}
protected function doDisplay(array $context, array $blocks = [])
{
// line 1
echo PhpMyAdmin\Util::getDivForSliderEffect("searchoptions", _gettext("Options"));
// line 4
echo "<fieldset id=\"fieldset_select_fields\">
<legend>";
// line 6
echo _gettext("Select columns (at least one):");
// line 7
echo " </legend>
<select name=\"columnsToDisplay[]\"
size=\"";
// line 9
echo twig_escape_filter($this->env, min(twig_length_filter($this->env, ($context["column_names"] ?? null)), 10), "html", null, true);
echo "\"
multiple=\"multiple\">";
// line 11
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["column_names"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["each_field"]) {
// line 12
echo " <option value=\"";
echo twig_escape_filter($this->env, $context["each_field"], "html", null, true);
echo "\"
selected=\"selected\">";
// line 14
echo twig_escape_filter($this->env, $context["each_field"], "html", null, true);
echo "
</option>";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['each_field'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 17
echo " </select>
<input type=\"checkbox\" name=\"distinct\" value=\"DISTINCT\" id=\"oDistinct\" />
<label for=\"oDistinct\">DISTINCT</label>
</fieldset>";
// line 23
echo "<fieldset id=\"fieldset_search_conditions\">
<legend>
<em>";
// line 25
echo _gettext("Or");
echo "</em>";
// line 26
echo _gettext("Add search conditions (body of the \"where\" clause):");
// line 27
echo " </legend>";
// line 28
echo PhpMyAdmin\Util::showMySQLDocu("Functions");
echo "
<input type=\"text\" name=\"customWhereClause\" class=\"textfield\" size=\"64\" />
</fieldset>";
// line 33
echo "<fieldset id=\"fieldset_limit_rows\">
<legend>";
// line 34
echo _gettext("Number of rows per page");
echo "</legend>
<input type=\"number\"
name=\"session_max_rows\"
required=\"required\"
min=\"1\"
value=\"";
// line 39
echo twig_escape_filter($this->env, ($context["max_rows"] ?? null), "html", null, true);
echo "\"
class=\"textfield\" />
</fieldset>";
// line 44
echo "<fieldset id=\"fieldset_display_order\">
<legend>";
// line 45
echo _gettext("Display order:");
echo "</legend>
<select name=\"orderByColumn\"><option value=\"--nil--\"></option>";
// line 47
$context['_parent'] = $context;
$context['_seq'] = twig_ensure_traversable(($context["column_names"] ?? null));
foreach ($context['_seq'] as $context["_key"] => $context["each_field"]) {
// line 48
echo " <option value=\"";
echo twig_escape_filter($this->env, $context["each_field"], "html", null, true);
echo "\">";
// line 49
echo twig_escape_filter($this->env, $context["each_field"], "html", null, true);
echo "
</option>";
}
$_parent = $context['_parent'];
unset($context['_seq'], $context['_iterated'], $context['_key'], $context['each_field'], $context['_parent'], $context['loop']);
$context = array_intersect_key($context, $_parent) + $_parent;
// line 52
echo " </select>";
// line 54
echo PhpMyAdmin\Util::getRadioFields("order", ["ASC" => _gettext("Ascending"), "DESC" => _gettext("Descending")], "ASC", false, true, "formelement");
// line 64
echo "
</fieldset>
<div class=\"clearfloat\"></div>
";
}
public function getTemplateName()
{
return "table/search/options.twig";
}
public function isTraitable()
{
return false;
}
public function getDebugInfo()
{
return array ( 115 => 64, 113 => 54, 111 => 52, 103 => 49, 99 => 48, 95 => 47, 91 => 45, 88 => 44, 83 => 39, 75 => 34, 72 => 33, 67 => 28, 65 => 27, 63 => 26, 60 => 25, 56 => 23, 51 => 17, 43 => 14, 38 => 12, 34 => 11, 30 => 9, 26 => 7, 24 => 6, 21 => 4, 19 => 1,);
}
/** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
public function getSource()
{
@trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
return $this->getSourceContext()->getCode();
}
public function getSourceContext()
{
return new Twig_Source("", "table/search/options.twig", "/var/www/pma/templates/table/search/options.twig");
}
}