| 123456789101112131415161718192021222324252627282930313233343536373839404142 |
- <?php
- /**
- * Main reports page file.
- *
- * Provides a class with all the properties and methods to display the page.
- *
- * @category Page
- */
- /**
- * Require dependent files if not present.
- */
- require_once(PATH::PAGE . "Page.php");
- /**
- * Main reports page model.
- *
- * @category Page
- */
- class Report_Page extends Page{
- /**
- * @var \Filter[] Custom filters for thie rune upgrade form.
- */
- public $custom_filters_runeupgrade = [];
- /**
- * Constructor.
- *
- * Retrieves the data and initializes the variables.
- *
- */
- public function __construct(){
- $this->view = PATH::VIEW . "report.php";
- $this->title = "Reports - SWDB";
- $this->description = "Usefull reports for summoners";
- $this->canonical = URL::BASE . "report";
- $this->title = "Reports - SWDB";
- }
- }
- ?>
|