| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- <?php
- require_once($path["page"] . "Page.php");
- require_once($path["entity"] . "Project.php");
- require_once($path["helper"] . "text.php");
- /**
- * Project page model.
- */
- class Project_Page extends Page{
- /**
- * The selected {@see Project}.
- */
- public $project;
- /**
- * Constructor.
- *
- * Retrieves the data and initializes the variables.
- *
- * @param MySQL_connection $db Connection to the database.
- * @param string $lang Lowercase, two-letter language code.
- * @param string $id Project id or permalink.
- */
- public function __construct($db, $lang, $id){
- global $path;
- global $root;
- parent:: __construct($db, $lang);
- $this->view = $path["view"] . "project.php";
- $this->project = new Project($this->db, $this->lang, $id);
- $this->title = $this->project->title . " - " . text($this, "USER_NAME");
- $this->name = text($this, "USER_NAME");
- $this->description = $this->project->header;
- $this->favicon = $path["img"]["layout"] . "logo/logo.svg";
- if (strlen($this->project->logo) > 0){
- $this->icon = $path["img"]["content"] . "project/" . $this->project->logo;
- }
- else{
- $this->icon = $path["img"]["layout"] . "logo/logo.svg";
- }
- $this->canonical = $root . $lang . "/project/" . $this->project->permalink;
- $this->author = $root . $lang . "/";
- }
- }
- ?>
|