util.php 2.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879
  1. <?php
  2. /*
  3. *
  4. * OGP - Open Game Panel
  5. * Copyright (C) Copyright (C) 2008 - 2012 The OGP Development Team
  6. *
  7. * http://www.opengamepanel.org/
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * as published by the Free Software Foundation; either version 2
  12. * of the License, or any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. *
  23. */
  24. function exec_ogp_module()
  25. {
  26. ?>
  27. <h2>Util</h2>
  28. <table style="margin-left:auto;margin-right:auto">
  29. <tr style="background-color:black">
  30. <td style="background-color:cyan; text-align:center;">
  31. <h1>Add an admin on SourceMod</h1>
  32. </td>
  33. </tr>
  34. <tr >
  35. <td style="background-color:cyan; text-align:center;">
  36. <?php require("modules/util/sm_admin.php"); ?>
  37. </td>
  38. </tr>
  39. <tr style="background-color:black">
  40. <td style="background-color:orange; text-align:center;">
  41. <h1>Add an admin on Mani Admin Plugin</h1>
  42. </td>
  43. </tr>
  44. <tr >
  45. <td style="background-color:orange; text-align:center;">
  46. <?php require("modules/util/ma_admin.php"); ?>
  47. </td>
  48. </tr>
  49. <tr style="background-color:black">
  50. <td style="background-color:green; text-align:center;">
  51. <h1>Ping Servers</h1>
  52. </td>
  53. </tr>
  54. <tr>
  55. <td style="background-color:green; text-align:center;">
  56. <?php require("modules/util/ping.php"); ?>
  57. </td>
  58. </tr>
  59. <tr style="background-color:DarkSlateGray">
  60. <td style="background-color:DarkSlateGray;text-align:center;">
  61. <h1 style="color:white;" >SteamID Converter</h1>
  62. </td>
  63. </tr>
  64. <tr>
  65. <td>
  66. <?php require("modules/util/steamid_converter.php"); ?>
  67. </td>
  68. </tr>
  69. <tr>
  70. <td>
  71. &nbsp;</b><br><br>
  72. </td>
  73. </tr>
  74. </table>
  75. <?php
  76. }
  77. ?>