system_status.php 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  1. <?php
  2. /* For licensing terms, see /license.txt */
  3. /**
  4. * @package chamilo.admin
  5. * @author Julio Montoya <gugli100@gmail.com>
  6. */
  7. // Language files that should be included
  8. $language_file = array('admin', 'registration');
  9. $cidReset = true;
  10. require_once '../inc/global.inc.php';
  11. $this_section = SECTION_PLATFORM_ADMIN;
  12. require_once api_get_path(LIBRARY_PATH).'diagnoser.lib.php';
  13. // User permissions
  14. api_protect_admin_script();
  15. $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  16. Display :: display_header(get_lang('SystemStatus'));
  17. /* @todo this will be moved to default.css */
  18. ?>
  19. <style>
  20. /*****************************************************
  21. * SEMANTIC TABBES PANE STYLES *
  22. *****************************************************/
  23. .tabbed-pane {
  24. clear: both;
  25. }
  26. .tabbed-pane-tabs {
  27. list-style: none;
  28. margin: 0;
  29. padding: 0 0 0 1em;
  30. height: 0; /* for IE */
  31. }
  32. .tabbed-pane-tabs li {
  33. display: inline;
  34. float: left;
  35. margin: 0 0.5ex 0 0;
  36. padding: 0;
  37. }
  38. .tabbed-pane-tabs li a {
  39. display: block;
  40. margin: 0.25em 0 -1px 0;
  41. padding: 0.25em 1em;
  42. background: #E5EDF9;
  43. color: #4171b5;
  44. text-decoration: none;
  45. border: 1px solid #4271b5;
  46. -moz-border-radius-topleft: 5px;
  47. -moz-border-radius-topright: 5px;
  48. -webkit-border-top-left-radius: 5px;
  49. -webkit-border-top-right-radius: 5px;
  50. }
  51. .tabbed-pane-tabs li a:hover,.tabbed-pane-tabs li a.current {
  52. background: white;
  53. margin-top: 0;
  54. padding-bottom: 0.5em;
  55. border-bottom-color: white;
  56. color: #4171b5;
  57. }
  58. .tabbed-pane-tabs li a:active,.tabbed-pane-tabs li a.current,.tabbed-pane-tabs li a.current:hover {
  59. color: black;
  60. }
  61. .tabbed-pane-content {
  62. clear: both;
  63. border: 1px solid #4271b5;
  64. margin: 0;
  65. padding: 1em;
  66. min-height: 15em;
  67. -moz-border-radius-topright: 10px;
  68. -moz-border-radius-bottomleft: 10px;
  69. -webkit-border-top-right-radius: 10px;
  70. -webkit-border-bottom-left-radius: 10px;
  71. }
  72. </style>
  73. <?php
  74. $diag = new Diagnoser();
  75. $diag->show_html();
  76. Display :: display_footer();