source = $this->getSourceContext(); $this->parent = false; $this->blocks = [ ]; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 1 yield ($context["message"] ?? null); yield " "; // line 3 yield ($context["sql_query_results_table"] ?? null); yield " "; // line 5 yield ($context["profiling_chart"] ?? null); yield " "; // line 7 if ( !($context["is_procedure"] ?? null)) { // line 8 yield "
"; } // line 20 yield " "; // line 21 yield ($context["bookmark"] ?? null); yield " "; // line 23 yield Twig\Extension\CoreExtension::include($this->env, $context, "modals/create_view.twig"); yield " "; return; yield ''; } /** * @codeCoverageIgnore */ public function getTemplateName() { return "sql/no_results_returned.twig"; } /** * @codeCoverageIgnore */ public function isTraitable() { return false; } /** * @codeCoverageIgnore */ public function getDebugInfo() { return array ( 80 => 23, 75 => 21, 72 => 20, 66 => 16, 64 => 13, 63 => 11, 59 => 9, 55 => 8, 53 => 7, 48 => 5, 43 => 3, 38 => 1,); } public function getSourceContext() { return new Source("", "sql/no_results_returned.twig", "/usr/local/cpanel/base/3rdparty/phpMyAdmin/templates/sql/no_results_returned.twig"); } }