Viewing file: 25701efcbc585b168fece80c09260f9fbc7f3c82bb7cd6cfebbd30e614773d24.php (2.95 KB) -rw-r--r-- Select action/file-type: (+) | (+) | (+) | Code (+) | Session (+) | (+) | SDB (+) | (+) | (+) | (+) | (+) | (+) |
<?php
use Twig\Environment; use Twig\Error\LoaderError; use Twig\Error\RuntimeError; use Twig\Extension\SandboxExtension; use Twig\Markup; use Twig\Sandbox\SecurityError; use Twig\Sandbox\SecurityNotAllowedTagError; use Twig\Sandbox\SecurityNotAllowedFilterError; use Twig\Sandbox\SecurityNotAllowedFunctionError; use Twig\Source; use Twig\Template;
/* server/databases/index.twig */ class __TwigTemplate_86752da8de6e4c90791d767ff94002e279abf5e915dafc83d085fe6a2d061402 extends \Twig\Template { private $source; private $macros = [];
public function __construct(Environment $env) { parent::__construct($env);
$this->source = $this->getSourceContext();
$this->parent = false;
$this->blocks = [ ]; }
protected function doDisplay(array $context, array $blocks = []) { $macros = $this->macros; // line 2 $this->loadTemplate("server/sub_page_header.twig", "server/databases/index.twig", 2)->display(twig_to_array(["type" => (( // line 3 ($context["dbstats"] ?? null)) ? ("database_statistics") : ("databases"))])); // line 5 echo " "; // line 7 if (($context["show_create_db"] ?? null)) { // line 8 echo " "; $this->loadTemplate("server/databases/create.twig", "server/databases/index.twig", 8)->display(twig_to_array(["is_create_db_priv" => // line 9 ($context["is_create_db_priv"] ?? null), "dbstats" => // line 10 ($context["dbstats"] ?? null), "db_to_create" => // line 11 ($context["db_to_create"] ?? null), "server_collation" => // line 12 ($context["server_collation"] ?? null), "dbi" => // line 13 ($context["dbi"] ?? null), "disable_is" => // line 14 ($context["disable_is"] ?? null)])); } // line 17 echo " "; // line 18 $this->loadTemplate("filter.twig", "server/databases/index.twig", 18)->display(twig_to_array(["filter_value" => ""])); // line 19 echo " "; // line 21 if ( !(null === ($context["databases"] ?? null))) { // line 22 echo " "; echo ($context["databases"] ?? null); echo " "; } else { // line 24 echo " <p>"; echo _gettext("No databases"); echo "</p> "; } }
public function getTemplateName() { return "server/databases/index.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 71 => 24, 65 => 22, 63 => 21, 60 => 19, 58 => 18, 55 => 17, 52 => 14, 51 => 13, 50 => 12, 49 => 11, 48 => 10, 47 => 9, 45 => 8, 43 => 7, 40 => 5, 38 => 3, 37 => 2,); }
public function getSourceContext() { return new Source("", "server/databases/index.twig", "/usr/share/phpmyadmin/templates/server/databases/index.twig"); } }
|