e561546a4a8211ff10079ebf8ddffabfb1394c130c67647fc5b6ccab1f8a0d0d.php 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677
  1. <?php
  2. /* login/header.twig */
  3. class __TwigTemplate_8c5e37e1cb0b6356a9e70bfce983ef6536f0d8a19dc5f37b26f395836f7afddc extends Twig_Template
  4. {
  5. public function __construct(Twig_Environment $env)
  6. {
  7. parent::__construct($env);
  8. $this->parent = false;
  9. $this->blocks = [
  10. ];
  11. }
  12. protected function doDisplay(array $context, array $blocks = [])
  13. {
  14. // line 1
  15. echo "<div class=\"container\">
  16. <a href=\"";
  17. // line 2
  18. echo twig_escape_filter($this->env, PhpMyAdmin\Core::linkURL("https://www.phpmyadmin.net/"), "html", null, true);
  19. echo "\" target=\"_blank\" rel=\"noopener noreferrer\" class=\"logo\">
  20. <img src=\"";
  21. // line 3
  22. echo twig_escape_filter($this->env, $this->getAttribute((isset($context["theme"]) ? $context["theme"] : null), "getImgPath", [0 => "logo_right.png", 1 => "pma_logo.png"], "method"), "html", null, true);
  23. echo "\" id=\"imLogo\" name=\"imLogo\" alt=\"phpMyAdmin\" border=\"0\" />
  24. </a>
  25. <h1>";
  26. // line 5
  27. echo sprintf(_gettext("Welcome to %s"), "<bdo dir=\"ltr\" lang=\"en\">phpMyAdmin</bdo>");
  28. echo "</h1>
  29. <noscript>
  30. ";
  31. // line 8
  32. echo call_user_func_array($this->env->getFunction('Message_error')->getCallable(), [_gettext("Javascript must be enabled past this point!")]);
  33. echo "
  34. </noscript>
  35. <div class=\"hide\" id=\"js-https-mismatch\">
  36. ";
  37. // line 12
  38. echo call_user_func_array($this->env->getFunction('Message_error')->getCallable(), [_gettext("There is mismatch between HTTPS indicated on the server and client. This can lead to non working phpMyAdmin or a security risk. Please fix your server configuration to indicate HTTPS properly.")]);
  39. echo "
  40. </div>
  41. ";
  42. }
  43. public function getTemplateName()
  44. {
  45. return "login/header.twig";
  46. }
  47. public function isTraitable()
  48. {
  49. return false;
  50. }
  51. public function getDebugInfo()
  52. {
  53. return array ( 44 => 12, 37 => 8, 31 => 5, 26 => 3, 22 => 2, 19 => 1,);
  54. }
  55. /** @deprecated since 1.27 (to be removed in 2.0). Use getSourceContext() instead */
  56. public function getSource()
  57. {
  58. @trigger_error('The '.__METHOD__.' method is deprecated since version 1.27 and will be removed in 2.0. Use getSourceContext() instead.', E_USER_DEPRECATED);
  59. return $this->getSourceContext()->getCode();
  60. }
  61. public function getSourceContext()
  62. {
  63. return new Twig_Source("", "login/header.twig", "D:\\PHP_www\\phpMyAdmin4.8.5\\templates\\login\\header.twig");
  64. }
  65. }