report.php 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. include __DIR__ . "/inc/filter_report_runeupgrade.php";
  71. ?>
  72. </article>
  73. </section>
  74. <section class='content report'>
  75. <h2>
  76. Runes to upgrade
  77. </h2>
  78. <article class='report'>
  79. <img alt=' ' src='<?=$path["img"]["grind"]?>gem_inmemorial.png'>
  80. <p>
  81. Shows monsters with runes that can be crafted.
  82. It list the grindstones and gems that are available for each rune.
  83. </p>
  84. <?php
  85. $filters = $FILTER_RUNECRAFT;
  86. include __DIR__ . "/inc/filter_report_runecraft.php";
  87. ?>
  88. </article>
  89. </section>
  90. <?php
  91. include __DIR__ . "/inc/footer.php";
  92. ?>
  93. </body>
  94. </html>