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"] = "processes"; // line 1 $this->parent = $this->loadTemplate("server/status/base.twig", "server/status/processes/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 6 echo _gettext("Filters"); echo "
"; // line 8 echo PhpMyAdmin\Url::getHiddenInputs(($context["url_params"] ?? null)); echo "
"; // line 19 echo ($context["server_process_list"] ?? null); echo " "; // line 21 echo call_user_func_array($this->env->getFilter('notice')->getCallable(), [_gettext("Note: Enabling the auto refresh here might cause heavy traffic between the web server and the MySQL server.")]); echo "
"; // line 48 echo PhpMyAdmin\Util::getImage("play"); echo " "; // line 49 echo _gettext("Start auto refresh"); // line 50 echo "
"; } public function getTemplateName() { return "server/status/processes/index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 170 => 50, 168 => 49, 164 => 48, 159 => 45, 152 => 43, 149 => 42, 143 => 40, 137 => 38, 134 => 37, 131 => 36, 125 => 34, 119 => 32, 116 => 31, 114 => 30, 107 => 29, 103 => 28, 97 => 25, 90 => 21, 85 => 19, 78 => 14, 76 => 13, 71 => 11, 66 => 9, 62 => 8, 57 => 6, 53 => 4, 49 => 3, 44 => 1, 42 => 2, 35 => 1,); } public function getSourceContext() { return new Source("", "server/status/processes/index.twig", "/usr/local/www/phpMyAdmin/templates/server/status/processes/index.twig"); } }