2010-moteur-site-simple/__cms__/code/cms/page.php
2010-08-04 08:33:17 +02:00

65 lines
1.7 KiB
PHP

<?php
class Page {
public $contenu = "";
public $titre = "";
public $sendfile_chemin = "";
public $sendfile_prop = "";
public $redirect_destination = "";
public $type = "page";
public function __construct($a, $b, $type = "page") {
if ($type == "page") {
$this->set_page($a, $b);
} else if ($type == "sendfile") {
$this->set_sendfile($a, $b);
} else if ($type == "raw") {
$this->set_raw($a, $b);
} else if ($type == "redirect") {
$this->set_redirect($a, $b);
}
}
public function set_page($contenu, $titre) {
$this->contenu = $contenu;
$this->titre = $titre;
$this->type = "page";
}
public function set_sendfile($chemin, $prop) {
$this->sendfile_chemin = $chemin;
$this->sendfile_prop = $prop;
$this->type = "sendfile";
}
public function set_raw($données, $mime) {
$this->raw_données = $données;
$this->raw_mime = $mime;
$this->type = "raw";
}
public function set_redirect($destination, $params = "") {
if (!is_string($destination)) $destination = $destination->get_url();
$this->redirect_destination = $destination . $params;
$this->type = "redirect";
}
public function envoyer() {
// Yeeeeeeeeeeeeeeeeeeeeeeha ! Et on envoie !
if ($this->type == "page") {
echo Squelette::enrober($this);
} else if ($this->type == "sendfile") {
Stockage::get_prop_sendfile($this->sendfile_chemin, $this->sendfile_prop);
} else if ($this->type == "raw") {
header("Content-Type: " . $this->raw_mime);
echo $this->raw_données;
} else if ($this->type == "redirect") {
echo "TODO : Redirection vers <a href=\""
. $this->redirect_destination . "\">"
. $this->redirect_destination . "</a>";
}
// TODO : else erreur
}
}
?>