X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=cms.php;h=bd7ed60536fcaed9f1ae7b36212861b2ecb77fd9;hb=ab2ed4cb0b2a7a397e868ca3ce6f7cde7a306b32;hp=caa22a11a318d990717318d3804bdd49f1bcb3fe;hpb=16f255160412aa91e0de89ecb6724daf3ebcaca8;p=dylansserver.git diff --git a/cms.php b/cms.php index caa22a1..bd7ed60 100644 --- a/cms.php +++ b/cms.php @@ -168,61 +168,7 @@ END_OF_CLOSE; class index extends cms { public function display() { - $this->scripts = ""; - $this->display_head(); - $this->display_exhibits(); - echo ""; - $this->display_close($show_contact = false); + require_once("view/index.php"); } protected function display_exhibits() { @@ -236,11 +182,6 @@ OTHER_PROJECTS; } private function list_projects() { - echo << -

my projects:

- -HEREDOC; $sql = "SELECT title FROM projects ORDER BY rank"; $result = $this->db->query($sql); while ($entry = $result->fetch_object()) { @@ -320,7 +261,10 @@ class page extends cms { } public function display() { - $this->display_head(); + require_once("view/page.php"); + } + + public function display_notes() { echo "
"; $sql = "SELECT date_posted, title, url, text FROM notes ORDER BY date_posted DESC @@ -347,25 +291,7 @@ class page extends cms { END_NOTE; } echo "
"; - $this->write_navigation(); - $this->display_close(); - } - - private function write_navigation() { - echo ""; } - } @@ -598,7 +524,10 @@ class archive extends cms { } public function display() { - $this->display_head(); + require_once("view/archive.php"); + } + + public function display_notes() { switch (true) { case (isset($_GET['year']) && !isset($_GET['month']) && !isset($_GET['day'])): @@ -647,20 +576,11 @@ class archive extends cms { echo ""; } echo ""; - $this->write_navigation(); } else { echo "
"; echo "

sorry, nothing here

"; echo "
Empty set (0.00 sec)
"; } - $this->display_close(); - } - - private function write_navigation() { - echo "
"; - echo ""; } }