a0978431f1250e4005963ff212202e85804fa242b5a3cd225f012b03d1fb585f.php 6.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163
  1. <?php
  2. /* display/results/options_block.twig */
  3. class __TwigTemplate_3afbd7cbd4c032c11e53499a31325bb10fbc5906c886f7499e6f770d4155f29e extends Twig_Template
  4. {
  5. public function __construct(Twig_Environment $env)
  6. {
  7. parent::__construct($env);
  8. $this->parent = false;
  9. $this->blocks = [
  10. ];
  11. }
  12. protected function doDisplay(array $context, array $blocks = [])
  13. {
  14. // line 1
  15. echo "<form method=\"post\" action=\"sql.php\" name=\"displayOptionsForm\" class=\"ajax print_ignore\">
  16. ";
  17. // line 2
  18. echo PhpMyAdmin\Url::getHiddenInputs(["db" => // line 3
  19. ($context["db"] ?? null), "table" => // line 4
  20. ($context["table"] ?? null), "sql_query" => // line 5
  21. ($context["sql_query"] ?? null), "goto" => // line 6
  22. ($context["goto"] ?? null), "display_options_form" => 1]);
  23. // line 8
  24. echo "
  25. ";
  26. // line 10
  27. echo PhpMyAdmin\Util::getDivForSliderEffect("", _gettext("Options"));
  28. echo "
  29. <fieldset>
  30. <div class=\"formelement\">
  31. ";
  32. // line 14
  33. echo " ";
  34. echo PhpMyAdmin\Util::getRadioFields("pftext", ["P" => _gettext("Partial texts"), "F" => _gettext("Full texts")], // line 20
  35. ($context["pftext"] ?? null), true, true, "", ("pftext_" . // line 24
  36. ($context["unique_id"] ?? null)));
  37. // line 25
  38. echo "
  39. </div>
  40. ";
  41. // line 28
  42. if ((($context["relwork"] ?? null) && ($context["displaywork"] ?? null))) {
  43. // line 29
  44. echo " <div class=\"formelement\">
  45. ";
  46. // line 30
  47. echo PhpMyAdmin\Util::getRadioFields("relational_display", ["K" => _gettext("Relational key"), "D" => _gettext("Display column for relationships")], // line 36
  48. ($context["relational_display"] ?? null), true, true, "", ("relational_display_" . // line 40
  49. ($context["unique_id"] ?? null)));
  50. // line 41
  51. echo "
  52. </div>
  53. ";
  54. }
  55. // line 44
  56. echo "
  57. <div class=\"formelement\">
  58. ";
  59. // line 46
  60. $this->loadTemplate("checkbox.twig", "display/results/options_block.twig", 46)->display(["html_field_name" => "display_binary", "label" => _gettext("Show binary contents"), "checked" => !twig_test_empty( // line 49
  61. ($context["display_binary"] ?? null)), "onclick" => false, "html_field_id" => ("display_binary_" . // line 51
  62. ($context["unique_id"] ?? null))]);
  63. // line 53
  64. echo " ";
  65. $this->loadTemplate("checkbox.twig", "display/results/options_block.twig", 53)->display(["html_field_name" => "display_blob", "label" => _gettext("Show BLOB contents"), "checked" => !twig_test_empty( // line 56
  66. ($context["display_blob"] ?? null)), "onclick" => false, "html_field_id" => ("display_blob_" . // line 58
  67. ($context["unique_id"] ?? null))]);
  68. // line 60
  69. echo " </div>
  70. ";
  71. // line 66
  72. echo " <div class=\"formelement\">
  73. ";
  74. // line 67
  75. $this->loadTemplate("checkbox.twig", "display/results/options_block.twig", 67)->display(["html_field_name" => "hide_transformation", "label" => _gettext("Hide browser transformation"), "checked" => !twig_test_empty( // line 70
  76. ($context["hide_transformation"] ?? null)), "onclick" => false, "html_field_id" => ("hide_transformation_" . // line 72
  77. ($context["unique_id"] ?? null))]);
  78. // line 74
  79. echo " </div>
  80. ";
  81. // line 77
  82. if (($context["possible_as_geometry"] ?? null)) {
  83. // line 78
  84. echo " <div class=\"formelement\">
  85. ";
  86. // line 79
  87. echo PhpMyAdmin\Util::getRadioFields("geoOption", ["GEOM" => _gettext("Geometry"), "WKT" => _gettext("Well Known Text"), "WKB" => _gettext("Well Known Binary")], // line 86
  88. ($context["geo_option"] ?? null), true, true, "", ("geoOption_" . // line 90
  89. ($context["unique_id"] ?? null)));
  90. // line 91
  91. echo "
  92. </div>
  93. ";
  94. } else {
  95. // line 94
  96. echo " <div class=\"formelement\">
  97. ";
  98. // line 95
  99. echo twig_escape_filter($this->env, ($context["possible_as_geometry"] ?? null), "html", null, true);
  100. echo "
  101. ";
  102. // line 96
  103. echo PhpMyAdmin\Util::getRadioFields("geoOption", ["WKT" => _gettext("Well Known Text"), "WKB" => _gettext("Well Known Binary")], // line 102
  104. ($context["geo_option"] ?? null), true, true, "", ("geoOption_" . // line 106
  105. ($context["unique_id"] ?? null)));
  106. // line 107
  107. echo "
  108. </div>
  109. ";
  110. }
  111. // line 110
  112. echo " <div class=\"clearfloat\"></div>
  113. </fieldset>
  114. <fieldset class=\"tblFooters\">
  115. <input type=\"submit\" value=\"";
  116. // line 114
  117. echo _gettext("Go");
  118. echo "\" />
  119. </fieldset>
  120. </div>";
  121. // line 117
  122. echo "</form>
  123. ";
  124. }
  125. public function getTemplateName()
  126. {
  127. return "display/results/options_block.twig";
  128. }
  129. public function isTraitable()
  130. {
  131. return false;
  132. }
  133. public function getDebugInfo()
  134. {
  135. return array ( 132 => 117, 127 => 114, 121 => 110, 116 => 107, 114 => 106, 113 => 102, 112 => 96, 108 => 95, 105 => 94, 100 => 91, 98 => 90, 97 => 86, 96 => 79, 93 => 78, 91 => 77, 86 => 74, 84 => 72, 83 => 70, 82 => 67, 79 => 66, 75 => 60, 73 => 58, 72 => 56, 70 => 53, 68 => 51, 67 => 49, 66 => 46, 62 => 44, 57 => 41, 55 => 40, 54 => 36, 53 => 30, 50 => 29, 48 => 28, 43 => 25, 41 => 24, 40 => 20, 38 => 14, 32 => 10, 28 => 8, 26 => 6, 25 => 5, 24 => 4, 23 => 3, 22 => 2, 19 => 1,);
  136. }
  137. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  138. public function getSource()
  139. {
  140. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  141. return $this->getSourceContext()->getCode();
  142. }
  143. public function getSourceContext()
  144. {
  145. return new Twig_Source("", "display/results/options_block.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\display\\results\\options_block.twig");
  146. }
  147. }