X-Git-Url: https://disinclined.org/git/?a=blobdiff_plain;f=cms.php;h=1f455a4c1c35f480877bc552295474c1251fe3ed;hb=4a70b93a36c54e64e32e6d34e8d79dbb8fc8789c;hp=f3902b336c22cb47e922adf794bf86b80cabcba5;hpb=8b7b8fa879010e1418c4c68aee73fe00c5ae43a7;p=dylansserver.git diff --git a/cms.php b/cms.php index f3902b3..1f455a4 100644 --- a/cms.php +++ b/cms.php @@ -6,7 +6,6 @@ abstract class cms { protected $db; protected $recaptcha_publickey; protected $recaptcha_privatekey; - protected $scripts; public $title; public $home_link; @@ -164,24 +163,6 @@ class page extends cms { public function __construct() { parent::__construct(); $this->page_offset(); - $this->scripts = " - - - - - - "; } private function page_offset() { @@ -506,18 +487,15 @@ class archive extends cms { class rss extends cms { + public function display() { + require_once("view/rss.php"); + } + + public function display_items() { $result = $this->db->query("SELECT date_posted, title, text, url FROM notes ORDER BY date_posted DESC LIMIT 5"); - echo << - - dylansserver.com/notes/rss - http://dylansserver.com/notes - dylansserver.com/notes/rss - -END_OF_ENTRY; while ($entry = $result->fetch_object()) { $title = $entry->title; $date_posted = $entry->date_posted; @@ -533,18 +511,13 @@ END_OF_ENTRY; $description = substr($text, '0', ($end_of_first_sentence + 1)); } } - echo << - $title - $url - $url - $description - -END_OF_ENTRY; + echo ""; + echo " $title"; + echo " $url"; + echo " $url"; + echo " $description"; + echo ""; } - echo ""; - echo ""; - } }