| 1234567891011121314151617181920212223242526272829303132 |
- <?php
- require_once($path["page"] . "Page.php");
- /**
- * Home page model.
- */
- class Home_Page extends Page{
- private $max_projects = 3;
- /**
- * Constructor.
- *
- * Retrieves the data and initializes the variables.
- *
- * @param SQLite3 $db Connection to the database.
- * @param string $lang Lowercase, two-letter language code.
- */
- public function __construct($db){
- global $path;
- global $root;
- parent::__construct($db);
- $this->view = $path["view"] . "home.php";
- $this->title = "SWDB";
- $this->description = "Summoners War DataBase";
- $this->canonical = $root;
- }
- }
- ?>
|