12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- <?php
- /* display/results/null_display.twig */
- class __TwigTemplate_16a2fc8f1275319502ecd34b53dd8210a1f8f4bada8f024a0bcab0cd61f768ee extends Twig_Template
- {
- public function __construct(Twig_Environment $env)
- {
- parent::__construct($env);
- $this->parent = false;
- $this->blocks = [
- ];
- }
- protected function doDisplay(array $context, array $blocks = [])
- {
- // line 1
- echo "<td ";
- echo twig_escape_filter($this->env, (isset($context["align"]) ? $context["align"] : null), "html", null, true);
- echo "
- data-decimals=\"";
- // line 2
- echo twig_escape_filter($this->env, (($this->getAttribute((isset($context["meta"]) ? $context["meta"] : null), "decimals", [], "any", true, true)) ? ($this->getAttribute((isset($context["meta"]) ? $context["meta"] : null), "decimals", [])) : ("-1")), "html", null, true);
- echo "\"
- data-type=\"";
- // line 3
- echo twig_escape_filter($this->env, $this->getAttribute((isset($context["meta"]) ? $context["meta"] : null), "type", []), "html", null, true);
- echo "\"
- ";
- // line 5
- echo " class=\"";
- echo twig_escape_filter($this->env, (isset($context["classes"]) ? $context["classes"] : null), "html", null, true);
- echo " null\">
- <em>NULL</em>
- </td>
- ";
- }
- public function getTemplateName()
- {
- return "display/results/null_display.twig";
- }
- public function isTraitable()
- {
- return false;
- }
- public function getDebugInfo()
- {
- return array ( 32 => 5, 28 => 3, 24 => 2, 19 => 1,);
- }
- /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
- public function getSource()
- {
- @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
- return $this->getSourceContext()->getCode();
- }
- public function getSourceContext()
- {
- return new Twig_Source("", "display/results/null_display.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\display\\results\\null_display.twig");
- }
- }
|