| 1234567891011121314151617181920212223242526272829303132333435 |
- <?php
- /**
- * Main reports page file.
- *
- * Provides a class with all the properties and methods to display the page.
- *
- * @author Iñigo Valentin <i@inigovalentin.com>
- * @license https://www.gnu.org/licenses/gpl-3.0.en.html GNU General Public License V3
- * @package SWDB
- */
- require_once(PATH::PAGE . "Page.php");
- /**
- * Main reports page model.
- *
- * @category Page
- */
- class Report_Page extends Page{
- /**
- * 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";
- }
- }
|