acaff63aa5abac568ffef028173d1879e0c7f0ba4174e56db3402b0d98f10474.php 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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. /* display/results/value_display.twig */
  14. class __TwigTemplate_8aac2f2db9b280ff8fe908a22611c689b41edf85e9a759d204556db51beb5759 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 "<td class=\"left ";
  31. echo twig_escape_filter($this->env, ($context["class"] ?? null), "html", null, true);
  32. echo ((($context["condition_field"] ?? null)) ? (" condition") : (""));
  33. echo "\">
  34. ";
  35. // line 2
  36. echo ($context["value"] ?? null);
  37. echo "
  38. </td>
  39. ";
  40. }
  41. public function getTemplateName()
  42. {
  43. return "display/results/value_display.twig";
  44. }
  45. public function isTraitable()
  46. {
  47. return false;
  48. }
  49. public function getDebugInfo()
  50. {
  51. return array ( 43 => 2, 37 => 1,);
  52. }
  53. public function getSourceContext()
  54. {
  55. return new Source("", "display/results/value_display.twig", "/wwwroot/OA/public/phpMyAdmin/templates/display/results/value_display.twig");
  56. }
  57. }