report.php 4.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. <?php
  2. global $FILTER_RUNECRAFT;
  3. global $FILTER_RUNEUPGRADE;
  4. global $FILTER_SKILLUP;
  5. ?>
  6. <!DOCTYPE html>
  7. <html lang='en'>
  8. <head>
  9. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  10. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  11. <title><?=$page->title?></title>
  12. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  13. <!-- CSS files -->
  14. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>ui.css'/>
  15. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>report.css'/>
  16. <link rel='stylesheet' type='text/css' href='<?=$path["css"]?>filters.css'/>
  17. <!-- Script files -->
  18. <script src="<?=$path["js"]?>ui.js"></script>
  19. <!-- Meta tags -->
  20. <link rel='canonical' href='<?=$page->canonical?>'/>
  21. <link rel='author' href='<?=$page->author?>'/>
  22. <link rel='publisher' href='<?=$page->author?>'/>
  23. <meta name='description' content='<?=$page->description?>'/>
  24. <meta property='og:title' content='<?=$page->title?>'/>
  25. <meta property='og:url' content='<?=$page->canonical?>'/>
  26. <meta property='og:description' content='<?=$page->description?>'/>
  27. <meta property='og:image' content='<?=$page->icon?>'/>
  28. <meta property='og:site_name' content='<?=$page->name?>'/>
  29. <meta property='og:type' content='website'/>
  30. <meta property='og:locale' content='en'/>
  31. <meta name='twitter:card' content='summary'/>
  32. <meta name='twitter:title' content='<?=$page->title?>'/>
  33. <meta name='twitter:description' content='<?=$page->description?>'/>
  34. <meta name='twitter:image' content='<?=$page->icon?>'/>
  35. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  36. <meta name='robots' content='index follow'/>
  37. </head>
  38. <body id='body_reports'>
  39. <?php
  40. include __DIR__ . "/inc/header.php";
  41. ?>
  42. <section class='content report'>
  43. <h2>
  44. Pending skill-ups
  45. </h2>
  46. <article>
  47. <img alt=' ' src='<?=$path["img"]["unit"]?>00015105.png'> <!-- Devilmon image -->
  48. <p>
  49. Shows a list of the monstes in need of skilling-up
  50. It sorts monster not by the absolute ammount of remaining power-ups, but by a ponderated list tht takes into account to which skills the previous power ups have gone, placing more value in the more advanced skills.
  51. </p>
  52. <?php
  53. $filters = $FILTER_SKILLUP;
  54. include __DIR__ . "/inc/filter_report_skillup.php";
  55. ?>
  56. </article>
  57. </section>
  58. <section class='content report'>
  59. <h2>
  60. Runes to replace
  61. </h2>
  62. <article class='report'>
  63. <img alt=' ' src='<?=$path["img"]["rune"]?>base.png'>
  64. <p>
  65. Shows monsters with runes that can be upgraded.
  66. It list the runes that can be replaced by other runes in your inventory that have either more stars or a higher base quality.
  67. </p>
  68. <?php
  69. $filters = $FILTER_RUNEUPGRADE;
  70. $custom_filters = $page->custom_filters_runeupgrade;
  71. include __DIR__ . "/inc/filter_report_runeupgrade.php";
  72. ?>
  73. </article>
  74. </section>
  75. <section class='content report'>
  76. <h2>
  77. Runes to upgrade
  78. </h2>
  79. <article class='report'>
  80. <img alt=' ' src='<?=$path["img"]["grind"]?>gem_inmemorial.png'>
  81. <p>
  82. Shows monsters with runes that can be crafted.
  83. It list the grindstones and gems that are available for each rune.
  84. </p>
  85. <?php
  86. $filters = $FILTER_RUNECRAFT;
  87. include __DIR__ . "/inc/filter_report_runecraft.php";
  88. ?>
  89. </article>
  90. </section>
  91. <?php
  92. include __DIR__ . "/inc/footer.php";
  93. ?>
  94. </body>
  95. </html>