report.php 4.0 KB

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