Report_Page.php 988 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. <?php
  2. /**
  3. * Main reports page file.
  4. *
  5. * Provides a class with all the properties and methods to display the page.
  6. *
  7. * @category Page
  8. */
  9. /**
  10. * Require dependent files if not present.
  11. */
  12. require_once(PATH::PAGE . "Page.php");
  13. /**
  14. * Main reports page model.
  15. *
  16. * @category Page
  17. */
  18. class Report_Page extends Page{
  19. /**
  20. * @var \Filter[] Custom filters for thie rune upgrade form.
  21. */
  22. public $custom_filters_runeupgrade = [];
  23. /**
  24. * Constructor.
  25. *
  26. * Retrieves the data and initializes the variables.
  27. *
  28. */
  29. public function __construct(){
  30. $this->view = PATH::VIEW . "report.php";
  31. $this->title = "Reports - SWDB";
  32. $this->description = "Usefull reports for summoners";
  33. $this->canonical = URL::BASE . "report";
  34. $this->title = "Reports - SWDB";
  35. }
  36. }
  37. ?>