report.php 3.7 KB

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