9dcd855ecb2bbc6032f96b0dbc2112e69893ce3b2cadf7db883239f0e80d7a2b.php 2.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* columns_definitions/column_comment.twig */
  14. class __TwigTemplate_ac0acd8d8732c4f84895dbdb270defb21dfda890ebca19559ba22877b1808920 extends \Twig\Template
  15. {
  16. private $source;
  17. private $macros = [];
  18. public function __construct(Environment $env)
  19. {
  20. parent::__construct($env);
  21. $this->source = $this->getSourceContext();
  22. $this->parent = false;
  23. $this->blocks = [
  24. ];
  25. }
  26. protected function doDisplay(array $context, array $blocks = [])
  27. {
  28. $macros = $this->macros;
  29. // line 1
  30. echo "<textarea id=\"field_";
  31. echo twig_escape_filter($this->env, ($context["column_number"] ?? null), "html", null, true);
  32. echo "_";
  33. echo twig_escape_filter($this->env, (($context["ci"] ?? null) - ($context["ci_offset"] ?? null)), "html", null, true);
  34. echo "\"
  35. rows=\"1\"
  36. name=\"field_comments[";
  37. // line 3
  38. echo twig_escape_filter($this->env, ($context["column_number"] ?? null), "html", null, true);
  39. echo "]\"
  40. maxlength=\"";
  41. // line 4
  42. echo twig_escape_filter($this->env, ($context["max_length"] ?? null), "html", null, true);
  43. echo "\">";
  44. // line 5
  45. echo ($context["value"] ?? null);
  46. // line 6
  47. echo "</textarea>
  48. ";
  49. }
  50. public function getTemplateName()
  51. {
  52. return "columns_definitions/column_comment.twig";
  53. }
  54. public function isTraitable()
  55. {
  56. return false;
  57. }
  58. public function getDebugInfo()
  59. {
  60. return array ( 54 => 6, 52 => 5, 49 => 4, 45 => 3, 37 => 1,);
  61. }
  62. public function getSourceContext()
  63. {
  64. return new Source("", "columns_definitions/column_comment.twig", "/wwwroot/OA/public/phpMyAdmin/templates/columns_definitions/column_comment.twig");
  65. }
  66. }