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 7 echo _gettext("Filters"); echo "
"; // line 9 echo PhpMyAdmin\Url::getHiddenInputs(($context["url_params"] ?? null)); echo "
"; // line 21 echo ($context["server_process_list"] ?? null); echo "
"; // line 24 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 "
"; } public function getTemplateName() { return "server/status/processes/index.twig"; } public function isTraitable() { return false; } public function getDebugInfo() { return array ( 177 => 54, 175 => 53, 171 => 52, 166 => 49, 159 => 47, 156 => 46, 150 => 44, 144 => 42, 141 => 41, 138 => 40, 132 => 38, 126 => 36, 123 => 35, 121 => 34, 114 => 33, 110 => 32, 104 => 29, 96 => 24, 90 => 21, 82 => 15, 80 => 14, 75 => 12, 70 => 10, 66 => 9, 62 => 8, 58 => 7, 53 => 4, 49 => 3, 44 => 1, 42 => 2, 35 => 1,); } public function getSourceContext() { return new Source("", "server/status/processes/index.twig", "/var/www/localhost/htdocs/phpmyadmin/templates/server/status/processes/index.twig"); } }