8d39e9b922de6a462299f615d834cbb2453e5c2bfffcb3d7e5b4943c06bb0c4c.php 2.7 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. use Twig\Environment;
  3. use Twig\Error\LoaderError;
  4. use Twig\Error\RuntimeError;
  5. use Twig\Extension\SandboxExtension;
  6. use Twig\Markup;
  7. use Twig\Sandbox\SecurityError;
  8. use Twig\Sandbox\SecurityNotAllowedTagError;
  9. use Twig\Sandbox\SecurityNotAllowedFilterError;
  10. use Twig\Sandbox\SecurityNotAllowedFunctionError;
  11. use Twig\Source;
  12. use Twig\Template;
  13. /* server/privileges/delete_user_fieldset.twig */
  14. class __TwigTemplate_e8a2441afc6f06a2812647fad07fd13586b27a02da8ad5421b6348e5fe756c5b extends \Twig\Template
  15. {
  16. private $source;
  17. private $macros = [];
  18. public function __construct(Environment $env)
  19. {
  20. parent::__construct($env);
  21. $this->source = $this->getSourceContext();
  22. $this->parent = false;
  23. $this->blocks = [
  24. ];
  25. }
  26. protected function doDisplay(array $context, array $blocks = [])
  27. {
  28. $macros = $this->macros;
  29. // line 1
  30. echo "<fieldset id=\"fieldset_delete_user\">
  31. <legend>
  32. ";
  33. // line 3
  34. echo PhpMyAdmin\Util::getIcon("b_usrdrop");
  35. echo _gettext("Remove selected user accounts");
  36. // line 4
  37. echo " </legend>
  38. <input type=\"hidden\" name=\"mode\" value=\"2\">
  39. <p>(";
  40. // line 6
  41. echo _gettext("Revoke all active privileges from the users and delete them afterwards.");
  42. echo ")</p>
  43. <input type=\"checkbox\" title=\"";
  44. // line 7
  45. echo _gettext("Drop the databases that have the same names as the users.");
  46. echo "\"
  47. name=\"drop_users_db\" id=\"checkbox_drop_users_db\">
  48. <label for=\"checkbox_drop_users_db\"
  49. title=\"";
  50. // line 10
  51. echo _gettext("Drop the databases that have the same names as the users.");
  52. echo "\">
  53. ";
  54. // line 11
  55. echo _gettext("Drop the databases that have the same names as the users.");
  56. // line 12
  57. echo " </label>
  58. </fieldset>
  59. <fieldset id=\"fieldset_delete_user_footer\" class=\"tblFooters\">
  60. <input id=\"buttonGo\" class=\"btn btn-primary ajax\" type=\"submit\" name=\"delete\" value=\"";
  61. // line 16
  62. echo _gettext("Go");
  63. echo "\">
  64. </fieldset>
  65. ";
  66. }
  67. public function getTemplateName()
  68. {
  69. return "server/privileges/delete_user_fieldset.twig";
  70. }
  71. public function isTraitable()
  72. {
  73. return false;
  74. }
  75. public function getDebugInfo()
  76. {
  77. return array ( 70 => 16, 64 => 12, 62 => 11, 58 => 10, 52 => 7, 48 => 6, 44 => 4, 41 => 3, 37 => 1,);
  78. }
  79. public function getSourceContext()
  80. {
  81. return new Source("", "server/privileges/delete_user_fieldset.twig", "/wwwroot/OA/public/phpMyAdmin/templates/server/privileges/delete_user_fieldset.twig");
  82. }
  83. }