source = $this->getSourceContext(); $this->blocks = [ 'content' => [$this, 'block_content'], ]; } protected function doGetParent(array $context) { // line 1 return "server/status/base.twig"; } protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 2 $context["active"] = "status"; // line 1 $this->parent = $this->loadTemplate("server/status/base.twig", "server/status/status/index.twig", 1); $this->parent->display($context, array_merge($this->blocks, $blocks)); } // line 3 public function block_content($context, array $blocks = []) { $macros = $this->macros; // line 4 echo " "; // line 5 if (($context["is_data_loaded"] ?? null)) { // line 6 echo "
"; // line 7 echo twig_escape_filter($this->env, sprintf(_gettext("This MySQL server has been running for %1\$s. It started up on %2\$s."), ($context["uptime"] ?? null), ($context["start_time"] ?? null)), "html", null, true); echo "
| "; // line 13 echo _gettext("Traffic"); // line 14 echo " "; echo PhpMyAdmin\Util::showHint(_gettext("On a busy server, the byte counters may overrun, so those statistics as reported by the MySQL server may be incorrect.")); echo " | # | ø "; // line 17 echo _gettext("per hour"); echo " |
|---|---|---|
| "; // line 24 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["each_traffic"], "name", [], "any", false, false, false, 24), "html", null, true); echo " | "; // line 25 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["each_traffic"], "number", [], "any", false, false, false, 25), "html", null, true); echo " | "; // line 26 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["each_traffic"], "per_hour", [], "any", false, false, false, 26), "html", null, true); echo " |
| "; // line 35 echo _gettext("Connections"); echo " | # | ø "; // line 37 echo _gettext("per hour"); echo " | % |
|---|---|---|---|
| "; // line 45 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["connection"], "name", [], "any", false, false, false, 45), "html", null, true); echo " | "; // line 46 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["connection"], "number", [], "any", false, false, false, 46), "html", null, true); echo " | "; // line 47 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["connection"], "per_hour", [], "any", false, false, false, 47), "html", null, true); echo " | "; // line 48 echo twig_escape_filter($this->env, twig_get_attribute($this->env, $this->source, $context["connection"], "percentage", [], "any", false, false, false, 48), "html", null, true); echo " |
"; // line 56 if ((($context["is_master"] ?? null) && ($context["is_slave"] ?? null))) { // line 57 echo " "; echo _gettext("This MySQL server works as master and slave in replication process."); // line 58 echo " "; } elseif (($context["is_master"] ?? null)) { // line 59 echo " "; echo _gettext("This MySQL server works as master in replication process."); // line 60 echo " "; } elseif (($context["is_slave"] ?? null)) { // line 61 echo " "; echo _gettext("This MySQL server works as slave in replication process."); // line 62 echo " "; } // line 63 echo "