module.404.php 763 B

123456789101112131415161718
  1. <?php
  2. ?>
  3. <div class="col-xs-12 text-center panel-tag animated zoomIn">
  4. <h1 class="text-center animated fadeInLeft display-2">
  5. <i class="fad fa-poop color-warning-900"></i> Module 404
  6. </h1>
  7. <h3 class="text-center animated fadeIn">The module you tried accessing doesn't seem to exist yet. Blame Xonos...</h3>
  8. <p><strong>Module Data</strong>:</p>
  9. <pre class="text-left" style="display:inline-block;width:40%;border:1px solid #CCC;background-color:rgba(0,0,0,0.25);border-radius:5px;padding:10px;"><?php echo json_encode($_modules[$_SESSION[_sid]['view']], JSON_PRETTY_PRINT); ?></pre>
  10. </div>
  11. <script>
  12. $('.subheader-title').addClass('animated fadeOut');
  13. setTimeout(function() {
  14. $('.subheader-title').slideUp('fast');
  15. },500);
  16. </script>