Report_Page.php 802 B

1234567891011121314151617181920212223242526272829303132333435
  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. * @author Iñigo Valentin <i@inigovalentin.com>
  8. * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
  9. * @package SWDB
  10. */
  11. require_once(PATH::PAGE . "Page.php");
  12. /**
  13. * Main reports page model.
  14. *
  15. * @category Page
  16. */
  17. class Report_Page extends Page{
  18. /**
  19. * Constructor.
  20. *
  21. * Retrieves the data and initializes the variables.
  22. *
  23. */
  24. public function __construct(){
  25. $this->view = PATH::VIEW . "report.php";
  26. $this->title = "Reports - SWDB";
  27. $this->description = "Usefull reports for summoners";
  28. $this->canonical = URL::BASE . "report";
  29. $this->title = "Reports - SWDB";
  30. }
  31. }