* @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"; } }