path = PATH_POSTS; parent::__construct($slug); } // Returns the post title. public function title() { return $this->getField('title'); } // Returns the post content. public function content() { return $this->getField('content'); } public function contentRaw() { return $this->getField('contentRaw'); } public function key() { return $this->getField('key'); } public function username() { return $this->getField('username'); } // Returns TRUE if the post is published, FALSE otherwise. public function published() { return ($this->getField('status')==='published'); } public function author() { return $this->getField('author'); } public function description() { return $this->getField('description'); } public function unixTimeCreated() { return $this->getField('unixTimeCreated'); } public function unixTimeModified() { return $this->getField('unixTimeModified'); } public function dateCreated($format=false) { if($format===false) { return $this->getField('date'); } $unixTimeCreated = $this->unixTimeCreated(); return Date::format($unixTimeCreated, $format); } public function dateModified($format=false) { if($format===false) { return $this->getField('date'); } $unixTimeModified = $this->unixTimeModified(); return Date::format($unixTimeModified, $format); } public function timeago() { return $this->getField('timeago'); } public function tags() { return $this->getField('tags'); } public function slug() { return $this->getField('key'); } public function permalink($absolute=false) { global $Url; global $Site; $url = trim($Site->url(),'/'); $key = $this->key(); $filter = trim($Url->filters('post'), '/'); $htmlPath = trim(HTML_PATH_ROOT,'/'); if(empty($filter)) { $tmp = $key; } else { $tmp = $filter.'/'.$key; } if($absolute) { return $url.'/'.$tmp; } return '/'.$htmlPath.'/'.$tmp; } }