report.php 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596
  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. * @var Report_Page $page The page model.
  9. * @var int $UID User id.
  10. */
  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. <?php
  22. if ($MODE == GAME_MODE_ID::RTA){
  23. ?>
  24. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>ui-rta.css'/>
  25. <?php
  26. }
  27. ?>
  28. <link rel='stylesheet' type='text/css' href='<?=URL::CSS?>report.css'/>
  29. <!-- Meta tags -->
  30. <link rel='canonical' href='<?=$page->canonical?>'/>
  31. <link rel='author' href='<?=$page->author?>'/>
  32. <link rel='publisher' href='<?=$page->author?>'/>
  33. <meta name='description' content='<?=$page->description?>'/>
  34. <meta property='og:title' content='<?=$page->title?>'/>
  35. <meta property='og:url' content='<?=$page->canonical?>'/>
  36. <meta property='og:description' content='<?=$page->description?>'/>
  37. <meta property='og:image' content='<?=$page->icon?>'/>
  38. <meta property='og:site_name' content='<?=$page->name?>'/>
  39. <meta property='og:type' content='website'/>
  40. <meta property='og:locale' content='en'/>
  41. <meta name='twitter:card' content='summary'/>
  42. <meta name='twitter:title' content='<?=$page->title?>'/>
  43. <meta name='twitter:description' content='<?=$page->description?>'/>
  44. <meta name='twitter:image' content='<?=$page->icon?>'/>
  45. <meta name='twitter:url' content='<?=$page->canonical?>'/>
  46. <meta name='robots' content='index follow'/>
  47. </head>
  48. <body id='body_reports'>
  49. <?php
  50. include __DIR__ . "/inc/header.php";
  51. ?>
  52. <aside>
  53. <h2>
  54. Reports
  55. </h2>
  56. <p>
  57. Reports that will help you progress in the game.
  58. </p>
  59. </aside>
  60. <main>
  61. <section class='content report'>
  62. <h2>
  63. Pending skill-ups
  64. </h2>
  65. <article>
  66. <img alt=' ' src='<?=URL::IMG["UNIT"]?>00015105.png'> <!-- Devilmon image -->
  67. <p>
  68. Shows a list of the monstes in need of skilling-up
  69. 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.
  70. </p>
  71. <a class='a_button' href='/<?=$UID?>/report/skillup/'>
  72. Go
  73. </a>
  74. </article>
  75. </section>
  76. <section class='content report'>
  77. <h2>
  78. Runes to improve
  79. </h2>
  80. <article class='report'>
  81. <img alt=' ' src='<?=URL::IMG["GRIND"]?>gem_inmemorial.png'>
  82. <p>
  83. Shows monsters with runes that can be grinded or enchanted.
  84. It list the grindstones and gems that are available for each rune.
  85. </p>
  86. <a class='a_button' href='/<?=$UID?>/report/rune_enchantment/'>
  87. Go
  88. </a>
  89. </article>
  90. </section>
  91. </main>
  92. <?php
  93. include __DIR__ . "/inc/footer.php";
  94. ?>
  95. </body>
  96. </html>