Viewing file: e8e05e77c2168f1ddd229bd57a96a7f9382511ca3bbb700f6fda3cb1c79b3163.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_4cd9c0bea0246997fede145c591fb5f1a8e0f4c705d54e95537e484be9aa1fb6 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"); } }
|