From ab2ed4cb0b2a7a397e868ca3ce6f7cde7a306b32 Mon Sep 17 00:00:00 2001 From: Dylan Lloyd Date: Thu, 22 Mar 2012 18:43:42 -0400 Subject: [PATCH] index now from view/index.php --- cms.php | 61 +-------------------------------- view/index.php | 93 ++++++++++++++++++++++++++++++++++++++++++++++++++ 2 files changed, 94 insertions(+), 60 deletions(-) create mode 100644 view/index.php diff --git a/cms.php b/cms.php index 845eda9..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()) { diff --git a/view/index.php b/view/index.php new file mode 100644 index 0000000..ec7c7c6 --- /dev/null +++ b/view/index.php @@ -0,0 +1,93 @@ + + + + + <?php echo $this->title; ?> + + + + + + + + + + + + +
+ +
+ display_exhibits() ?> + +
+
+
+
+ + + -- 2.30.2