system_status.php 1.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  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. require_once api_get_path(LIBRARY_PATH).'diagnoser.lib.php';
  12. require_once api_get_path(LIBRARY_PATH).'sortabletable.class.php';
  13. $this_section = SECTION_PLATFORM_ADMIN;
  14. // User permissions
  15. api_protect_admin_script();
  16. $interbreadcrumb[] = array ('url' => 'index.php', 'name' => get_lang('PlatformAdmin'));
  17. Display :: display_header(get_lang('SystemStatus'));
  18. /* @todo this will be moved to default.css */
  19. ?>
  20. <style>
  21. .tabbed-pane {
  22. clear: both;
  23. }
  24. .tabbed-pane-tabs {
  25. list-style: none;
  26. margin: 0;
  27. padding: 0 0 0 1em;
  28. height: 0; /* for IE */
  29. }
  30. .tabbed-pane-tabs li {
  31. display: inline;
  32. float: left;
  33. margin: 0 0.5ex 0 0;
  34. padding: 0;
  35. }
  36. .tabbed-pane-tabs li a {
  37. display: block;
  38. margin: 0.25em 0 -1px 0;
  39. padding: 0.25em 1em;
  40. background: #E5EDF9;
  41. color: #4171b5;
  42. text-decoration: none;
  43. border: 1px solid #4271b5;
  44. -moz-border-radius-topleft: 5px;
  45. -moz-border-radius-topright: 5px;
  46. -webkit-border-top-left-radius: 5px;
  47. -webkit-border-top-right-radius: 5px;
  48. }
  49. .tabbed-pane-tabs li a:hover,.tabbed-pane-tabs li a.current {
  50. background: white;
  51. margin-top: 0;
  52. padding-bottom: 0.5em;
  53. border-bottom-color: white;
  54. color: #4171b5;
  55. }
  56. .tabbed-pane-tabs li a:active,.tabbed-pane-tabs li a.current,.tabbed-pane-tabs li a.current:hover {
  57. color: black;
  58. }
  59. .tabbed-pane-content {
  60. clear: both;
  61. border: 1px solid #4271b5;
  62. margin: 0;
  63. padding: 1em;
  64. min-height: 15em;
  65. -moz-border-radius-topright: 10px;
  66. -moz-border-radius-bottomleft: 10px;
  67. -webkit-border-top-right-radius: 10px;
  68. -webkit-border-bottom-left-radius: 10px;
  69. }
  70. </style>
  71. <?php
  72. $diag = new Diagnoser();
  73. $diag->show_html();
  74. Display :: display_footer();