374b3f959e787ee766790506aaf093629ac7467d9cfbcd80f706c27349cabde8.php 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436
  1. <?php
  2. /* table/structure/display_structure.twig */
  3. class __TwigTemplate_ddd522d3382a24f2a26e0c6b93ea1885f1150ff3e3bda5491b7e209e1b41d668 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=\"tbl_structure.php\" name=\"fieldsForm\" id=\"fieldsForm\"
  16. class=\"ajax";
  17. // line 2
  18. echo ((($context["hide_structure_actions"] ?? null)) ? (" HideStructureActions") : (""));
  19. echo "\">
  20. ";
  21. // line 3
  22. echo PhpMyAdmin\Url::getHiddenInputs(($context["db"] ?? null), ($context["table"] ?? null));
  23. echo "
  24. <input type=\"hidden\" name=\"table_type\" value=";
  25. // line 5
  26. if (($context["db_is_system_schema"] ?? null)) {
  27. // line 6
  28. echo "\"information_schema\"";
  29. } elseif ( // line 7
  30. ($context["tbl_is_view"] ?? null)) {
  31. // line 8
  32. echo "\"view\"";
  33. } else {
  34. // line 10
  35. echo "\"table\"";
  36. }
  37. // line 11
  38. echo " />
  39. <div class=\"responsivetable\">
  40. <table id=\"tablestructure\" class=\"data topmargin\">
  41. ";
  42. // line 15
  43. echo " ";
  44. $this->loadTemplate("table/structure/table_structure_header.twig", "table/structure/display_structure.twig", 15)->display(["db_is_system_schema" => // line 16
  45. ($context["db_is_system_schema"] ?? null), "tbl_is_view" => // line 17
  46. ($context["tbl_is_view"] ?? null), "show_column_comments" => // line 18
  47. ($context["show_column_comments"] ?? null)]);
  48. // line 20
  49. echo " <tbody>
  50. ";
  51. // line 22
  52. echo " ";
  53. $context["rownum"] = 0;
  54. // line 23
  55. echo " ";
  56. $context["columns_list"] = [];
  57. // line 24
  58. echo " ";
  59. $context['_parent'] = $context;
  60. $context['_seq'] = twig_ensure_traversable(($context["fields"] ?? null));
  61. foreach ($context['_seq'] as $context["_key"] => $context["row"]) {
  62. // line 25
  63. echo " ";
  64. $context["rownum"] = (($context["rownum"] ?? null) + 1);
  65. // line 26
  66. echo " ";
  67. $context["columns_list"] = twig_array_merge(($context["columns_list"] ?? null), [0 => $this->getAttribute($context["row"], "Field", [], "array")]);
  68. // line 27
  69. echo " ";
  70. $context["field_charset"] = $this->getAttribute($context["row"], "Collation", [], "array");
  71. // line 28
  72. echo "
  73. ";
  74. // line 29
  75. $context["extracted_columnspec"] = PhpMyAdmin\Util::extractColumnSpec($this->getAttribute($context["row"], "Type", [], "array"));
  76. // line 30
  77. echo " ";
  78. $context["attribute"] = $this->getAttribute(($context["extracted_columnspec"] ?? null), "attribute", [], "array");
  79. // line 31
  80. echo " ";
  81. if ( !(strpos($this->getAttribute($context["row"], "Extra", [], "array"), "on update CURRENT_TIMESTAMP") === false)) {
  82. // line 33
  83. echo " ";
  84. $context["attribute"] = "on update CURRENT_TIMESTAMP";
  85. // line 34
  86. echo " ";
  87. }
  88. // line 35
  89. echo "
  90. ";
  91. // line 36
  92. if ((null === $this->getAttribute($context["row"], "Default", [], "array"))) {
  93. // line 37
  94. echo " ";
  95. if (($this->getAttribute($context["row"], "Null", [], "array") == "YES")) {
  96. // line 38
  97. echo " ";
  98. $context["row"] = twig_array_merge($context["row"], ["Default" => "<em>NULL</em>"]);
  99. // line 39
  100. echo " ";
  101. }
  102. // line 40
  103. echo " ";
  104. } else {
  105. // line 41
  106. echo " ";
  107. $context["row"] = twig_array_merge($context["row"], ["Default" => twig_escape_filter($this->env, $this->getAttribute($context["row"], "Default", [], "array"))]);
  108. // line 42
  109. echo " ";
  110. }
  111. // line 43
  112. echo "
  113. ";
  114. // line 44
  115. $context["field_name"] = twig_escape_filter($this->env, $this->getAttribute($context["row"], "Field", [], "array"));
  116. // line 45
  117. echo " ";
  118. $context["displayed_field_name"] = ($context["field_name"] ?? null);
  119. // line 46
  120. echo " ";
  121. // line 47
  122. echo " ";
  123. $context["comments"] = "";
  124. // line 48
  125. echo " ";
  126. // line 49
  127. echo "
  128. ";
  129. // line 50
  130. if ($this->getAttribute(($context["comments_map"] ?? null), $this->getAttribute($context["row"], "Field", [], "array"), [], "array", true, true)) {
  131. // line 51
  132. echo " ";
  133. ob_start();
  134. // line 52
  135. echo "<span class=\"commented_column\" title=\"";
  136. // line 53
  137. echo twig_escape_filter($this->env, $this->getAttribute(($context["comments_map"] ?? null), $this->getAttribute($context["row"], "Field", [], "array"), [], "array"), "html", null, true);
  138. echo "\">";
  139. // line 54
  140. echo ($context["field_name"] ?? null);
  141. // line 55
  142. echo "</span>";
  143. $context["displayed_field_name"] = ('' === $tmp = ob_get_clean()) ? '' : new Twig_Markup($tmp, $this->env->getCharset());
  144. // line 57
  145. echo " ";
  146. $context["comments"] = $this->getAttribute(($context["comments_map"] ?? null), $this->getAttribute($context["row"], "Field", [], "array"), [], "array");
  147. // line 58
  148. echo " ";
  149. }
  150. // line 59
  151. echo "
  152. ";
  153. // line 60
  154. if ((($context["primary"] ?? null) && $this->getAttribute(($context["primary"] ?? null), "hasColumn", [0 => ($context["field_name"] ?? null)], "method"))) {
  155. // line 61
  156. echo " ";
  157. $context["displayed_field_name"] = (($context["displayed_field_name"] ?? null) . PhpMyAdmin\Util::getImage("b_primary", _gettext("Primary")));
  158. // line 64
  159. echo " ";
  160. }
  161. // line 65
  162. echo " ";
  163. if (twig_in_filter(($context["field_name"] ?? null), ($context["columns_with_index"] ?? null))) {
  164. // line 66
  165. echo " ";
  166. $context["displayed_field_name"] = (($context["displayed_field_name"] ?? null) . PhpMyAdmin\Util::getImage("bd_primary", _gettext("Index")));
  167. // line 69
  168. echo " ";
  169. }
  170. // line 70
  171. echo " <tr>
  172. ";
  173. // line 71
  174. $this->loadTemplate("table/structure/table_structure_row.twig", "table/structure/display_structure.twig", 71)->display(["row" => // line 72
  175. $context["row"], "rownum" => // line 73
  176. ($context["rownum"] ?? null), "displayed_field_name" => preg_replace("/[\\x00-\\x1F]/", "&#x2051;", // line 77
  177. ($context["displayed_field_name"] ?? null)), "type_nowrap" => PhpMyAdmin\Util::getClassForType($this->getAttribute( // line 79
  178. ($context["extracted_columnspec"] ?? null), "type", [], "array")), "extracted_columnspec" => // line 80
  179. ($context["extracted_columnspec"] ?? null), "attribute" => // line 81
  180. ($context["attribute"] ?? null), "tbl_is_view" => // line 82
  181. ($context["tbl_is_view"] ?? null), "db_is_system_schema" => // line 83
  182. ($context["db_is_system_schema"] ?? null), "url_query" => // line 84
  183. ($context["url_query"] ?? null), "titles" => // line 85
  184. ($context["titles"] ?? null), "table" => // line 86
  185. ($context["table"] ?? null), "tbl_storage_engine" => // line 87
  186. ($context["tbl_storage_engine"] ?? null), "field_charset" => // line 88
  187. ($context["field_charset"] ?? null), "comments" => // line 89
  188. ($context["comments"] ?? null), "show_column_comments" => // line 90
  189. ($context["show_column_comments"] ?? null), "relation_commwork" => // line 91
  190. ($context["relation_commwork"] ?? null), "relation_mimework" => // line 92
  191. ($context["relation_mimework"] ?? null), "browse_mime" => // line 93
  192. ($context["browse_mime"] ?? null)]);
  193. // line 95
  194. echo " ";
  195. if (( !($context["tbl_is_view"] ?? null) && !($context["db_is_system_schema"] ?? null))) {
  196. // line 96
  197. echo " ";
  198. $this->loadTemplate("table/structure/actions_in_table_structure.twig", "table/structure/display_structure.twig", 96)->display(["row" => // line 97
  199. $context["row"], "rownum" => // line 98
  200. ($context["rownum"] ?? null), "extracted_columnspec" => // line 99
  201. ($context["extracted_columnspec"] ?? null), "type" => (( !twig_test_empty($this->getAttribute( // line 100
  202. ($context["extracted_columnspec"] ?? null), "print_type", [], "array"))) ? ($this->getAttribute(($context["extracted_columnspec"] ?? null), "print_type", [], "array")) : ("")), "tbl_storage_engine" => // line 101
  203. ($context["tbl_storage_engine"] ?? null), "primary" => // line 102
  204. ($context["primary"] ?? null), "field_name" => // line 103
  205. ($context["field_name"] ?? null), "url_query" => // line 104
  206. ($context["url_query"] ?? null), "titles" => // line 105
  207. ($context["titles"] ?? null), "columns_with_unique_index" => // line 106
  208. ($context["columns_with_unique_index"] ?? null), "is_in_central_columns" => ((twig_in_filter($this->getAttribute( // line 107
  209. $context["row"], "Field", [], "array"), ($context["central_list"] ?? null))) ? (true) : (false)), "central_columns_work" => // line 108
  210. ($context["central_columns_work"] ?? null), "table" => // line 109
  211. ($context["table"] ?? null), "hide_structure_actions" => // line 110
  212. ($context["hide_structure_actions"] ?? null), "mysql_int_version" => // line 111
  213. ($context["mysql_int_version"] ?? null)]);
  214. // line 113
  215. echo " ";
  216. }
  217. // line 114
  218. echo " </tr>
  219. ";
  220. }
  221. $_parent = $context['_parent'];
  222. unset($context['_seq'], $context['_iterated'], $context['_key'], $context['row'], $context['_parent'], $context['loop']);
  223. $context = array_intersect_key($context, $_parent) + $_parent;
  224. // line 116
  225. echo " </tbody>
  226. </table>
  227. </div>
  228. ";
  229. // line 119
  230. $this->loadTemplate("table/structure/check_all_table_column.twig", "table/structure/display_structure.twig", 119)->display(["pma_theme_image" => // line 120
  231. ($context["pma_theme_image"] ?? null), "text_dir" => // line 121
  232. ($context["text_dir"] ?? null), "tbl_is_view" => // line 122
  233. ($context["tbl_is_view"] ?? null), "db_is_system_schema" => // line 123
  234. ($context["db_is_system_schema"] ?? null), "tbl_storage_engine" => // line 124
  235. ($context["tbl_storage_engine"] ?? null), "central_columns_work" => // line 125
  236. ($context["central_columns_work"] ?? null)]);
  237. // line 127
  238. echo "</form>
  239. <hr class=\"print_ignore\"/>
  240. ";
  241. // line 129
  242. $this->loadTemplate("table/structure/move_columns_dialog.twig", "table/structure/display_structure.twig", 129)->display(["db" => // line 130
  243. ($context["db"] ?? null), "table" => // line 131
  244. ($context["table"] ?? null)]);
  245. // line 134
  246. echo "<div id=\"structure-action-links\">
  247. ";
  248. // line 135
  249. if ((($context["tbl_is_view"] ?? null) && !($context["db_is_system_schema"] ?? null))) {
  250. // line 136
  251. echo " ";
  252. echo PhpMyAdmin\Util::linkOrButton( // line 137
  253. ($context["edit_view_url"] ?? null), PhpMyAdmin\Util::getIcon("b_edit", _gettext("Edit view"), true));
  254. // line 139
  255. echo "
  256. ";
  257. }
  258. // line 141
  259. echo " ";
  260. $this->loadTemplate("table/structure/optional_action_links.twig", "table/structure/display_structure.twig", 141)->display(["url_query" => // line 142
  261. ($context["url_query"] ?? null), "tbl_is_view" => // line 143
  262. ($context["tbl_is_view"] ?? null), "db_is_system_schema" => // line 144
  263. ($context["db_is_system_schema"] ?? null), "table" => // line 145
  264. ($context["table"] ?? null), "is_active" => // line 146
  265. ($context["is_active"] ?? null)]);
  266. // line 148
  267. echo "</div>
  268. ";
  269. // line 149
  270. if (( !($context["tbl_is_view"] ?? null) && !($context["db_is_system_schema"] ?? null))) {
  271. // line 150
  272. echo " ";
  273. $this->loadTemplate("table/structure/add_column.twig", "table/structure/display_structure.twig", 150)->display(["columns_list" => // line 151
  274. ($context["columns_list"] ?? null), "db" => // line 152
  275. ($context["db"] ?? null), "table" => // line 153
  276. ($context["table"] ?? null)]);
  277. }
  278. // line 156
  279. echo "
  280. ";
  281. // line 158
  282. if ((( !($context["tbl_is_view"] ?? null) && !($context["db_is_system_schema"] ?? null)) && ("ARCHIVE" != // line 159
  283. ($context["tbl_storage_engine"] ?? null)))) {
  284. // line 160
  285. echo " ";
  286. echo PhpMyAdmin\Index::getHtmlForDisplayIndexes();
  287. echo "
  288. ";
  289. }
  290. // line 162
  291. echo "
  292. ";
  293. // line 164
  294. if (($context["have_partitioning"] ?? null)) {
  295. // line 165
  296. echo " ";
  297. // line 166
  298. echo " ";
  299. if (( !twig_test_empty(($context["partition_names"] ?? null)) && !(null === $this->getAttribute(($context["partition_names"] ?? null), 0, [], "array")))) {
  300. // line 167
  301. echo " ";
  302. $context["partitions"] = PhpMyAdmin\Partition::getPartitions(($context["db"] ?? null), ($context["table"] ?? null));
  303. // line 168
  304. echo " ";
  305. $context["first_partition"] = $this->getAttribute(($context["partitions"] ?? null), 0, [], "array");
  306. // line 169
  307. echo " ";
  308. $context["range_or_list"] = (((($this->getAttribute(($context["first_partition"] ?? null), "getMethod", [], "method") == "RANGE") || ($this->getAttribute( // line 170
  309. ($context["first_partition"] ?? null), "getMethod", [], "method") == "RANGE COLUMNS")) || ($this->getAttribute( // line 171
  310. ($context["first_partition"] ?? null), "getMethod", [], "method") == "LIST")) || ($this->getAttribute( // line 172
  311. ($context["first_partition"] ?? null), "getMethod", [], "method") == "LIST COLUMNS"));
  312. // line 173
  313. echo " ";
  314. $context["sub_partitions"] = $this->getAttribute(($context["first_partition"] ?? null), "getSubPartitions", [], "method");
  315. // line 174
  316. echo " ";
  317. $context["has_sub_partitions"] = $this->getAttribute(($context["first_partition"] ?? null), "hasSubPartitions", [], "method");
  318. // line 175
  319. echo " ";
  320. if (($context["has_sub_partitions"] ?? null)) {
  321. // line 176
  322. echo " ";
  323. $context["first_sub_partition"] = $this->getAttribute(($context["sub_partitions"] ?? null), 0, [], "array");
  324. // line 177
  325. echo " ";
  326. }
  327. // line 178
  328. echo "
  329. ";
  330. // line 179
  331. $context["action_icons"] = ["ANALYZE" => PhpMyAdmin\Util::getIcon("b_search", _gettext("Analyze")), "CHECK" => PhpMyAdmin\Util::getIcon("eye", _gettext("Check")), "OPTIMIZE" => PhpMyAdmin\Util::getIcon("normalize", _gettext("Optimize")), "REBUILD" => PhpMyAdmin\Util::getIcon("s_tbl", _gettext("Rebuild")), "REPAIR" => PhpMyAdmin\Util::getIcon("b_tblops", _gettext("Repair")), "TRUNCATE" => PhpMyAdmin\Util::getIcon("b_empty", _gettext("Truncate"))];
  332. // line 187
  333. echo " ";
  334. if (($context["range_or_list"] ?? null)) {
  335. // line 188
  336. echo " ";
  337. $context["action_icons"] = twig_array_merge(($context["action_icons"] ?? null), ["DROP" => PhpMyAdmin\Util::getIcon("b_drop", _gettext("Drop"))]);
  338. // line 189
  339. echo " ";
  340. }
  341. // line 190
  342. echo "
  343. ";
  344. // line 191
  345. echo PhpMyAdmin\Util::getDivForSliderEffect("partitions", _gettext("Partitions"));
  346. echo "
  347. ";
  348. // line 193
  349. $context["remove_sql"] = (("ALTER TABLE " . PhpMyAdmin\Util::backquote(($context["table"] ?? null))) . " REMOVE PARTITIONING");
  350. // line 194
  351. echo " ";
  352. $context["remove_url"] = ((("sql.php" . ($context["url_query"] ?? null)) . "&sql_query=") . twig_urlencode_filter(($context["remove_sql"] ?? null)));
  353. // line 195
  354. echo "
  355. ";
  356. // line 196
  357. $this->loadTemplate("table/structure/display_partitions.twig", "table/structure/display_structure.twig", 196)->display(["db" => // line 197
  358. ($context["db"] ?? null), "table" => // line 198
  359. ($context["table"] ?? null), "url_query" => // line 199
  360. ($context["url_query"] ?? null), "partitions" => // line 200
  361. ($context["partitions"] ?? null), "partition_method" => $this->getAttribute( // line 201
  362. ($context["first_partition"] ?? null), "getMethod", [], "method"), "partition_expression" => $this->getAttribute( // line 202
  363. ($context["first_partition"] ?? null), "getExpression", [], "method"), "has_description" => !twig_test_empty($this->getAttribute( // line 203
  364. ($context["first_partition"] ?? null), "getDescription", [], "method")), "has_sub_partitions" => // line 204
  365. ($context["has_sub_partitions"] ?? null), "sub_partition_method" => (( // line 205
  366. ($context["has_sub_partitions"] ?? null)) ? ($this->getAttribute(($context["first_sub_partition"] ?? null), "getMethod", [], "method")) : ("")), "sub_partition_expression" => (( // line 206
  367. ($context["has_sub_partitions"] ?? null)) ? ($this->getAttribute(($context["first_sub_partition"] ?? null), "getExpression", [], "method")) : ("")), "action_icons" => // line 207
  368. ($context["action_icons"] ?? null), "range_or_list" => // line 208
  369. ($context["range_or_list"] ?? null), "remove_url" => // line 209
  370. ($context["remove_url"] ?? null)]);
  371. // line 211
  372. echo " ";
  373. } else {
  374. // line 212
  375. echo " ";
  376. $this->loadTemplate("table/structure/display_partitions.twig", "table/structure/display_structure.twig", 212)->display(["db" => // line 213
  377. ($context["db"] ?? null), "table" => // line 214
  378. ($context["table"] ?? null)]);
  379. // line 216
  380. echo " ";
  381. }
  382. // line 217
  383. echo " ";
  384. // line 218
  385. echo " </div>
  386. ";
  387. }
  388. // line 220
  389. echo "
  390. ";
  391. // line 222
  392. if (($context["show_stats"] ?? null)) {
  393. // line 223
  394. echo " ";
  395. echo ($context["table_stats"] ?? null);
  396. echo "
  397. ";
  398. }
  399. // line 225
  400. echo "<div class=\"clearfloat\"></div>
  401. ";
  402. }
  403. public function getTemplateName()
  404. {
  405. return "table/structure/display_structure.twig";
  406. }
  407. public function isTraitable()
  408. {
  409. return false;
  410. }
  411. public function getDebugInfo()
  412. {
  413. return array ( 405 => 225, 399 => 223, 397 => 222, 394 => 220, 390 => 218, 388 => 217, 385 => 216, 383 => 214, 382 => 213, 380 => 212, 377 => 211, 375 => 209, 374 => 208, 373 => 207, 372 => 206, 371 => 205, 370 => 204, 369 => 203, 368 => 202, 367 => 201, 366 => 200, 365 => 199, 364 => 198, 363 => 197, 362 => 196, 359 => 195, 356 => 194, 354 => 193, 349 => 191, 346 => 190, 343 => 189, 340 => 188, 337 => 187, 335 => 179, 332 => 178, 329 => 177, 326 => 176, 323 => 175, 320 => 174, 317 => 173, 315 => 172, 314 => 171, 313 => 170, 311 => 169, 308 => 168, 305 => 167, 302 => 166, 300 => 165, 298 => 164, 295 => 162, 289 => 160, 287 => 159, 286 => 158, 283 => 156, 280 => 153, 279 => 152, 278 => 151, 276 => 150, 274 => 149, 271 => 148, 269 => 146, 268 => 145, 267 => 144, 266 => 143, 265 => 142, 263 => 141, 259 => 139, 257 => 137, 255 => 136, 253 => 135, 250 => 134, 248 => 131, 247 => 130, 246 => 129, 242 => 127, 240 => 125, 239 => 124, 238 => 123, 237 => 122, 236 => 121, 235 => 120, 234 => 119, 229 => 116, 222 => 114, 219 => 113, 217 => 111, 216 => 110, 215 => 109, 214 => 108, 213 => 107, 212 => 106, 211 => 105, 210 => 104, 209 => 103, 208 => 102, 207 => 101, 206 => 100, 205 => 99, 204 => 98, 203 => 97, 201 => 96, 198 => 95, 196 => 93, 195 => 92, 194 => 91, 193 => 90, 192 => 89, 191 => 88, 190 => 87, 189 => 86, 188 => 85, 187 => 84, 186 => 83, 185 => 82, 184 => 81, 183 => 80, 182 => 79, 181 => 77, 180 => 73, 179 => 72, 178 => 71, 175 => 70, 172 => 69, 169 => 66, 166 => 65, 163 => 64, 160 => 61, 158 => 60, 155 => 59, 152 => 58, 149 => 57, 146 => 55, 144 => 54, 141 => 53, 139 => 52, 136 => 51, 134 => 50, 131 => 49, 129 => 48, 126 => 47, 124 => 46, 121 => 45, 119 => 44, 116 => 43, 113 => 42, 110 => 41, 107 => 40, 104 => 39, 101 => 38, 98 => 37, 96 => 36, 93 => 35, 90 => 34, 87 => 33, 84 => 31, 81 => 30, 79 => 29, 76 => 28, 73 => 27, 70 => 26, 67 => 25, 62 => 24, 59 => 23, 56 => 22, 53 => 20, 51 => 18, 50 => 17, 49 => 16, 47 => 15, 42 => 11, 39 => 10, 36 => 8, 34 => 7, 32 => 6, 30 => 5, 26 => 3, 22 => 2, 19 => 1,);
  414. }
  415. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  416. public function getSource()
  417. {
  418. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  419. return $this->getSourceContext()->getCode();
  420. }
  421. public function getSourceContext()
  422. {
  423. return new Twig_Source("", "table/structure/display_structure.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\table\\structure\\display_structure.twig");
  424. }
  425. }