Création du CSS (très brouillon, TODO).

This commit is contained in:
Georges Dupéron 2010-07-30 20:58:04 +02:00
parent 0012f6b57c
commit bcd4ac8924

View File

@ -33,6 +33,13 @@ function vue($chemin, $vue = "normal") {
$ret .= "<input ... Couleur C />";
$ret .= ...
return "Vue normale de la page.";
} else if ($vue == "css") {
// TODO : où mettre ce gen_css... ?
return Site::gen_css(array(
"Couleur_A" => Stockage::get_prop($chemin, "Coucleur_A"),
"Couleur_B" => Stockage::get_prop($chemin, "Coucleur_B"),
"Couleur_C" => Stockage::get_prop($chemin, "Coucleur_C")
));
}
}