report.php 4.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100
  1. <?php
  2. /**
  3. * Main report view.
  4. *
  5. * Contains the view layout and ome code to present the data.
  6. *
  7. * @category View
  8. * @property_read Report_Page $page The page model.
  9. */
  10. namespace swdb;
  11. ?>
  12. <!DOCTYPE html>
  13. <html lang='en'>
  14. <head>
  15. <meta content='text/html; charset=utf-8' http-equiv='content-type'/>
  16. <meta name='viewport' content='width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1'/>
  17. <title><?=$page->title?></title>
  18. <link rel='shortcut icon' href='<?=$page->favicon?>'/>
  19. <!-- CSS files -->
  20. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui.css'/>
  21. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>report.css'/>
  22. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>filters.css'/>
  23. <!-- Meta tags -->
  24. <link rel='canonical' href='<?=$page->canonical?>'/>
  25. <link rel='author' href='<?=$page->author?>'/>
  26. <link rel='publisher' href='<?=$page->author?>'/>
  27. <meta name='description' content='<?=$page->description?>'/>
  28. <meta property='og:title' content='<?=$page->title?>'/>
  29. <meta property='og:url' content='<?=$page->canonical?>'/>
  30. <meta property='og:description' content='<?=$page->description?>'/>
  31. <meta property='og:image' content='<?=$page->icon?>'/>
  32. <meta property='og:site_name' content='<?=$page->name?>'/>
  33. <meta property='og:type' content='website'/>
  34. <meta property='og:locale' content='en'/>
  35. <meta name='twitter:card' content='summary'/>
  36. <meta name='twitter:title' content='<?=$page->title?>'/>
  37. <meta name='twitter:description' content='<?=$page->description?>'/>
  38. <meta name='twitter:image' content='<?=$page->icon?>'/>
  39. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  40. <meta name='robots' content='index follow'/>
  41. </head>
  42. <body id='body_reports'>
  43. <?php
  44. include __DIR__ . "/inc/header.php";
  45. ?>
  46. <section class='content report'>
  47. <h2>
  48. Pending skill-ups
  49. </h2>
  50. <article>
  51. <img alt=' ' src='<?=URL::IMG["UNIT"]?>00015105.png'> <!-- Devilmon image -->
  52. <p>
  53. Shows a list of the monstes in need of skilling-up
  54. 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.
  55. </p>
  56. <?php
  57. $filters = FILTER::SKILLUP;
  58. include __DIR__ . "/inc/filter_report_skillup.php";
  59. ?>
  60. </article>
  61. </section>
  62. <section class='content report'>
  63. <h2>
  64. Runes to replace
  65. </h2>
  66. <article class='report'>
  67. <img alt=' ' src='<?=URL::IMG["RUNE"]?>base.png'>
  68. <p>
  69. Shows monsters with runes that can be upgraded.
  70. It list the runes that can be replaced by other runes in your inventory that have either more stars or a higher base quality.
  71. </p>
  72. <?php
  73. $filters = FILTER::RUNEUPGRADE;
  74. $custom_filters = $page->custom_filters_runeupgrade;
  75. include __DIR__ . "/inc/filter_report_runeupgrade.php";
  76. ?>
  77. </article>
  78. </section>
  79. <section class='content report'>
  80. <h2>
  81. Runes to upgrade
  82. </h2>
  83. <article class='report'>
  84. <img alt=' ' src='<?=URL::IMG["GRIND"]?>gem_inmemorial.png'>
  85. <p>
  86. Shows monsters with runes that can be crafted.
  87. It list the grindstones and gems that are available for each rune.
  88. </p>
  89. <?php
  90. $filters = FILTER::RUNECRAFT;
  91. include __DIR__ . "/inc/filter_report_runecraft.php";
  92. ?>
  93. </article>
  94. </section>
  95. <?php
  96. include __DIR__ . "/inc/footer.php";
  97. ?>
  98. </body>
  99. </html>