report.php 3.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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. <!-- Meta tags -->
  18. <link rel='canonical' href='<?=$page->canonical?>'/>
  19. <link rel='author' href='<?=$page->author?>'/>
  20. <link rel='publisher' href='<?=$page->author?>'/>
  21. <meta name='description' content='<?=$page->description?>'/>
  22. <meta property='og:title' content='<?=$page->title?>'/>
  23. <meta property='og:url' content='<?=$page->canonical?>'/>
  24. <meta property='og:description' content='<?=$page->description?>'/>
  25. <meta property='og:image' content='<?=$page->icon?>'/>
  26. <meta property='og:site_name' content='<?=$page->name?>'/>
  27. <meta property='og:type' content='website'/>
  28. <meta property='og:locale' content='en'/>
  29. <meta name='twitter:card' content='summary'/>
  30. <meta name='twitter:title' content='<?=$page->title?>'/>
  31. <meta name='twitter:description' content='<?=$page->description?>'/>
  32. <meta name='twitter:image' content='<?=$page->icon?>'/>
  33. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  34. <meta name='robots' content='index follow'/>
  35. </head>
  36. <body id='body_reports'>
  37. <?php
  38. include __DIR__ . "/inc/header.php";
  39. ?>
  40. <section class='content report'>
  41. <h2>
  42. Pending skill-ups
  43. </h2>
  44. <article>
  45. <img alt=' ' src='<?=$path["img"]["unit"]?>00015105.png'> <!-- Devilmon image -->
  46. <p>
  47. Shows a list of the monstes in need of skilling-up
  48. 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.
  49. </p>
  50. <?php
  51. $filters = $FILTER_SKILLUP;
  52. include __DIR__ . "/inc/filter_report_skillup.php";
  53. ?>
  54. </article>
  55. </section>
  56. <section class='content report'>
  57. <h2>
  58. Runes to replace
  59. </h2>
  60. <article class='report'>
  61. <img alt=' ' src='<?=$path["img"]["rune"]?>base.png'>
  62. <p>
  63. Shows monsters with runes that can be upgraded.
  64. It list the runes that can be replaced by other runes in your inventory that have either more stars or a higher base quality.
  65. </p>
  66. <?php
  67. $filters = $FILTER_RUNEUPGRADE;
  68. $custom_filters = $page->custom_filters_runeupgrade;
  69. include __DIR__ . "/inc/filter_report_runeupgrade.php";
  70. ?>
  71. </article>
  72. </section>
  73. <section class='content report'>
  74. <h2>
  75. Runes to upgrade
  76. </h2>
  77. <article class='report'>
  78. <img alt=' ' src='<?=$path["img"]["grind"]?>gem_inmemorial.png'>
  79. <p>
  80. Shows monsters with runes that can be crafted.
  81. It list the grindstones and gems that are available for each rune.
  82. </p>
  83. <?php
  84. $filters = $FILTER_RUNECRAFT;
  85. include __DIR__ . "/inc/filter_report_runecraft.php";
  86. ?>
  87. </article>
  88. </section>
  89. <?php
  90. include __DIR__ . "/inc/footer.php";
  91. ?>
  92. </body>
  93. </html>