Viewing file: 4824d9e04896f7b9a290c973f22313b94cdc2a67d87b0592743c2cb72fe1a43a.php (1.96 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;
/* database/structure/print_view_data_dictionary_link.twig */ class __TwigTemplate_eb13a5d8bde1b25c16e82c1ce56009616d8e8f7031521f96b1cab7acbb9e5200 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 1 echo "<p class=\"print_ignore\"> <a href=\"#\" id=\"printView\"> "; // line 3 echo PhpMyAdmin\Util::getIcon("b_print", _gettext("Print"), true); echo " </a> <a href=\"db_datadict.php"; // line 5 echo twig_escape_filter($this->env, ($context["url_query"] ?? null), "html", null, true); echo "\" target=\"print_view\"> "; // line 6 echo PhpMyAdmin\Util::getIcon("b_tblanalyse", _gettext("Data dictionary"), true); echo " </a> </p> "; }
public function getTemplateName() { return "database/structure/print_view_data_dictionary_link.twig"; }
public function isTraitable() { return false; }
public function getDebugInfo() { return array ( 50 => 6, 46 => 5, 41 => 3, 37 => 1,); }
public function getSourceContext() { return new Source("", "database/structure/print_view_data_dictionary_link.twig", "/usr/share/phpmyadmin/templates/database/structure/print_view_data_dictionary_link.twig"); } }
|