428d32bc955a072cb0449a9591e984ed5839e05a318f2f24349a095e73862e35.php 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /* checkbox.twig */
  3. class __TwigTemplate_b59d013261d69d7335fa875dd469ff7052e6f3aa2380b5e616d1597556dd4fc2 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 "<input type=\"checkbox\" name=\"";
  16. echo twig_escape_filter($this->env, ($context["html_field_name"] ?? null), "html", null, true);
  17. echo "\"";
  18. // line 2
  19. if ((isset($context["html_field_id"]) || array_key_exists("html_field_id", $context))) {
  20. echo " id=\"";
  21. echo twig_escape_filter($this->env, ($context["html_field_id"] ?? null), "html", null, true);
  22. echo "\"";
  23. }
  24. // line 3
  25. if (((isset($context["checked"]) || array_key_exists("checked", $context)) && ($context["checked"] ?? null))) {
  26. echo " checked=\"checked\"";
  27. }
  28. // line 4
  29. if (((isset($context["onclick"]) || array_key_exists("onclick", $context)) && ($context["onclick"] ?? null))) {
  30. echo " class=\"autosubmit\"";
  31. }
  32. echo " /><label";
  33. // line 5
  34. if ((isset($context["html_field_id"]) || array_key_exists("html_field_id", $context))) {
  35. echo " for=\"";
  36. echo twig_escape_filter($this->env, ($context["html_field_id"] ?? null), "html", null, true);
  37. echo "\"";
  38. }
  39. // line 6
  40. echo ">";
  41. echo twig_escape_filter($this->env, ($context["label"] ?? null), "html", null, true);
  42. echo "</label>
  43. ";
  44. }
  45. public function getTemplateName()
  46. {
  47. return "checkbox.twig";
  48. }
  49. public function isTraitable()
  50. {
  51. return false;
  52. }
  53. public function getDebugInfo()
  54. {
  55. return array ( 44 => 6, 38 => 5, 33 => 4, 29 => 3, 23 => 2, 19 => 1,);
  56. }
  57. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  58. public function getSource()
  59. {
  60. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  61. return $this->getSourceContext()->getCode();
  62. }
  63. public function getSourceContext()
  64. {
  65. return new Twig_Source("", "checkbox.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\checkbox.twig");
  66. }
  67. }