2015-05-05 01:00:01 +00:00
|
|
|
<?php defined('BLUDIT') or die('Bludit CMS.');
|
2015-03-08 14:02:59 -03:00
|
|
|
|
2015-05-05 01:00:01 +00:00
|
|
|
class Page extends fileContent
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
function __construct($key)
|
2015-08-23 19:07:14 -03:00
|
|
|
{
|
2015-06-30 00:23:29 -03:00
|
|
|
// Database Key
|
|
|
|
$this->setField('key', $key);
|
2015-03-08 14:02:59 -03:00
|
|
|
|
2015-06-30 00:23:29 -03:00
|
|
|
parent::__construct(PATH_PAGES.$key.DS);
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the post title.
|
2015-05-05 01:00:01 +00:00
|
|
|
public function title()
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
return $this->getField('title');
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
2015-08-23 19:07:14 -03:00
|
|
|
// Returns the content. This content is markdown parser.
|
|
|
|
// (boolean) $html, TRUE returns the content without satinize, FALSE otherwise.
|
2015-07-25 21:25:13 -03:00
|
|
|
public function content($html=true)
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-06-27 20:28:22 -03:00
|
|
|
// This content is not sanitized.
|
|
|
|
$content = $this->getField('content');
|
|
|
|
|
|
|
|
if($html) {
|
|
|
|
return $content;
|
|
|
|
}
|
|
|
|
|
|
|
|
return Sanitize::html($content);
|
2015-05-05 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2015-08-23 19:07:14 -03:00
|
|
|
// Returns the content. This content is not markdown parser.
|
|
|
|
// (boolean) $raw, TRUE returns the content without sanitized, FALSE otherwise.
|
|
|
|
public function contentRaw($raw=true)
|
2015-05-05 01:00:01 +00:00
|
|
|
{
|
2015-06-27 20:28:22 -03:00
|
|
|
// This content is not sanitized.
|
2015-07-13 23:16:28 -03:00
|
|
|
$content = $this->getField('contentRaw');
|
|
|
|
|
2015-08-23 19:07:14 -03:00
|
|
|
if($raw) {
|
2015-07-13 23:16:28 -03:00
|
|
|
return $content;
|
2015-06-27 20:28:22 -03:00
|
|
|
}
|
|
|
|
|
2015-07-13 23:16:28 -03:00
|
|
|
return Sanitize::html($content);
|
2015-05-05 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
public function description()
|
|
|
|
{
|
|
|
|
return $this->getField('description');
|
|
|
|
}
|
|
|
|
|
2015-09-18 00:24:10 -03:00
|
|
|
public function tags($returnsArray=false)
|
2015-05-05 01:00:01 +00:00
|
|
|
{
|
2015-09-18 00:24:10 -03:00
|
|
|
global $Url;
|
2015-05-05 01:00:01 +00:00
|
|
|
|
2015-05-18 23:22:05 +00:00
|
|
|
$tags = $this->getField('tags');
|
2015-09-18 00:24:10 -03:00
|
|
|
|
|
|
|
if($returnsArray) {
|
|
|
|
|
|
|
|
if($tags==false) {
|
|
|
|
return array();
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tags;
|
|
|
|
}
|
|
|
|
else {
|
|
|
|
// Return string with tags separeted by comma.
|
|
|
|
return implode(', ', $tags);
|
|
|
|
}
|
2015-05-18 23:22:05 +00:00
|
|
|
}
|
|
|
|
|
2015-05-05 01:00:01 +00:00
|
|
|
public function position()
|
|
|
|
{
|
|
|
|
return $this->getField('position');
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the post date according to locale settings and format settings.
|
2015-08-26 00:42:32 -03:00
|
|
|
public function date($format=false)
|
2015-05-18 23:22:05 +00:00
|
|
|
{
|
2015-08-26 00:42:32 -03:00
|
|
|
$date = $this->getField('date');
|
2015-05-18 23:22:05 +00:00
|
|
|
|
2015-08-26 00:42:32 -03:00
|
|
|
if($format) {
|
|
|
|
// En %d %b deberia ir el formato definido por el usuario
|
|
|
|
return Date::format($date, DB_DATE_FORMAT, '%d %B');
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
2015-08-26 00:42:32 -03:00
|
|
|
return $date;
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the page slug.
|
2015-05-05 01:00:01 +00:00
|
|
|
public function slug()
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
$explode = explode('/', $this->getField('key'));
|
|
|
|
if(!empty($explode[1]))
|
|
|
|
return $explode[1];
|
|
|
|
|
|
|
|
return $explode[0];
|
|
|
|
}
|
|
|
|
|
|
|
|
public function key()
|
|
|
|
{
|
|
|
|
return $this->getField('key');
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns TRUE if the page is published, FALSE otherwise.
|
2015-05-05 01:00:01 +00:00
|
|
|
public function published()
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
return ($this->getField('status')==='published');
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
|
|
|
// Returns the page permalink.
|
2015-06-02 22:17:09 -03:00
|
|
|
public function permalink($absolute=false)
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
|
|
|
global $Url;
|
2015-06-02 22:17:09 -03:00
|
|
|
global $Site;
|
2015-05-05 01:00:01 +00:00
|
|
|
|
2015-06-02 22:17:09 -03:00
|
|
|
$url = trim($Site->url(),'/');
|
|
|
|
$key = $this->key();
|
|
|
|
$filter = trim($Url->filters('page'), '/');
|
|
|
|
$htmlPath = trim(HTML_PATH_ROOT,'/');
|
2015-03-08 14:02:59 -03:00
|
|
|
|
2015-06-02 22:17:09 -03:00
|
|
|
if(empty($filter)) {
|
|
|
|
$tmp = $key;
|
2015-05-05 01:00:01 +00:00
|
|
|
}
|
|
|
|
else {
|
2015-06-02 22:17:09 -03:00
|
|
|
$tmp = $filter.'/'.$key;
|
2015-05-05 01:00:01 +00:00
|
|
|
}
|
|
|
|
|
2015-06-02 22:17:09 -03:00
|
|
|
if($absolute) {
|
|
|
|
return $url.'/'.$tmp;
|
2015-05-05 01:00:01 +00:00
|
|
|
}
|
2015-03-08 14:02:59 -03:00
|
|
|
|
2015-06-21 21:47:07 -03:00
|
|
|
if(empty($htmlPath)) {
|
|
|
|
return '/'.$tmp;
|
|
|
|
}
|
|
|
|
|
2015-06-02 22:28:16 -03:00
|
|
|
return '/'.$htmlPath.'/'.$tmp;
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
2015-05-05 01:00:01 +00:00
|
|
|
public function parentKey()
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
$explode = explode('/', $this->getField('key'));
|
|
|
|
if(isset($explode[1])) {
|
|
|
|
return $explode[0];
|
|
|
|
}
|
2015-03-08 14:02:59 -03:00
|
|
|
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
2015-05-05 01:00:01 +00:00
|
|
|
public function children()
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
$tmp = array();
|
2015-09-14 20:07:15 -03:00
|
|
|
//$paths = glob(PATH_PAGES.$this->getField('key').DS.'*', GLOB_ONLYDIR);
|
|
|
|
$paths = Filesystem::listDirectories(PATH_PAGES.$this->getField('key').DS);
|
2015-05-05 01:00:01 +00:00
|
|
|
foreach($paths as $path) {
|
|
|
|
array_push($tmp, basename($path));
|
|
|
|
}
|
|
|
|
|
|
|
|
return $tmp;
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
2015-05-05 01:00:01 +00:00
|
|
|
public function username()
|
2015-03-08 14:02:59 -03:00
|
|
|
{
|
2015-05-05 01:00:01 +00:00
|
|
|
return $this->getField('username');
|
2015-03-08 14:02:59 -03:00
|
|
|
}
|
|
|
|
|
2015-07-06 22:05:17 -03:00
|
|
|
public function authorFirstName()
|
2015-05-05 01:00:01 +00:00
|
|
|
{
|
2015-07-06 22:05:17 -03:00
|
|
|
return $this->getField('authorFirstName');
|
|
|
|
}
|
|
|
|
|
|
|
|
public function authorLastName()
|
|
|
|
{
|
|
|
|
return $this->getField('authorLastName');
|
2015-05-05 01:00:01 +00:00
|
|
|
}
|
2015-03-08 14:02:59 -03:00
|
|
|
|
2015-08-26 00:42:32 -03:00
|
|
|
}
|