mirror of
https://github.com/silverstripe/silverstripe-blog
synced 2024-10-22 11:05:58 +02:00
189 lines
4.5 KiB
PHP
Executable File
189 lines
4.5 KiB
PHP
Executable File
<?php
|
|
|
|
/**
|
|
* An indivisual blog post.
|
|
*
|
|
* @package silverstripe
|
|
* @subpackage blog
|
|
*
|
|
* @author Michael Strong <micmania@hotmail.co.uk>
|
|
**/
|
|
class BlogPost extends Page {
|
|
|
|
/**
|
|
* @var array
|
|
**/
|
|
private static $db = array(
|
|
"PublishDate" => "SS_Datetime",
|
|
);
|
|
|
|
private static $has_one = array(
|
|
"FeaturedImage" => "Image",
|
|
);
|
|
|
|
private static $many_many = array(
|
|
"Categories" => "BlogCategory",
|
|
"Tags" => "BlogTag",
|
|
);
|
|
|
|
private static $defaults = array(
|
|
"ShowInMenus" => false,
|
|
"InheritSideBar" => true, // Support for widgets
|
|
"ProvideComments" => true, // Support for comments
|
|
);
|
|
|
|
private static $allowed_children = array();
|
|
|
|
private static $extensions = array(
|
|
"BlogPostFilter",
|
|
);
|
|
|
|
private static $searchable_fields = array(
|
|
"Title"
|
|
);
|
|
|
|
private static $summary_fields = array(
|
|
"Title",
|
|
);
|
|
|
|
private static $default_sort = "PublishDate DESC";
|
|
|
|
public static $can_be_root = false;
|
|
|
|
/**
|
|
* This will display or hide the current class from the SiteTree. This
|
|
* variable can be configured using YAML.
|
|
*
|
|
* @var boolean
|
|
**/
|
|
private static $show_in_sitetree = false;
|
|
|
|
|
|
|
|
public function getCMSFields() {
|
|
|
|
// Assign to variable & pass for PHP <= 5.4 closure compatibility
|
|
$data['TagsMap'] = $this->Parent()->Tags()->map()->toArray();
|
|
$data['CategoryMap'] = $this->Parent()->Categories()->map()->toArray();
|
|
|
|
$this->beforeUpdateCMSFields(function($fields) use ($data) {
|
|
// Add Publish date fields
|
|
$fields->insertAfter(
|
|
$publishDate = DatetimeField::create("PublishDate", _t("BlogPost.PublishDate", "Publish Date")),
|
|
"Content"
|
|
);
|
|
$publishDate->getDateField()->setConfig("showcalendar", true);
|
|
|
|
// Add Categories & Tags fields
|
|
$categoriesField = ListboxField::create("Categories", _t("BlogPost.Categories", "Categories"), $data['CategoryMap'])
|
|
->setMultiple(true);
|
|
$fields->insertAfter($categoriesField, "PublishDate");
|
|
|
|
$tagsField = ListboxField::create("Tags", _t("BlogPost.Tags", "Tags"), $data['TagsMap'])
|
|
->setMultiple(true);
|
|
$fields->insertAfter($tagsField, "Categories");
|
|
|
|
// Add featured image
|
|
$fields->insertBefore(
|
|
$uploadField = UploadField::create("FeaturedImage", _t("BlogPost.FeaturedImage", "Featured Image")),
|
|
"Content"
|
|
);
|
|
$uploadField->getValidator()->setAllowedExtensions(array('jpg', 'jpeg', 'png', 'gif'));
|
|
});
|
|
|
|
$fields = parent::getCMSFields();
|
|
return $fields;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* If no publish date is set, set the date to now.
|
|
**/
|
|
public function onBeforeWrite() {
|
|
parent::onBeforeWrite();
|
|
if(!$this->PublishDate) $this->setCastedField("PublishDate", time());
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Checks the publish date to see if the blog post as actually been published.
|
|
*
|
|
* @param $member Member|null
|
|
*
|
|
* @return boolean
|
|
**/
|
|
public function canView($member = null) {
|
|
if(!parent::canView($member)) return false;
|
|
|
|
if($this->PublishDate) {
|
|
$publishDate = $this->dbObject("PublishDate");
|
|
if($publishDate->InFuture() && !Permission::checkMember($member, "VIEW_DRAFT_CONTENT")) {
|
|
return false;
|
|
}
|
|
}
|
|
return true;
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Returns the post excerpt.
|
|
*
|
|
* @param $wordCount int - number of words to display
|
|
*
|
|
* @return string
|
|
**/
|
|
public function Excerpt($wordCount = 30) {
|
|
return $this->dbObject("Content")->LimitWordCount($wordCount);
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Returns a monthly archive link for the current blog post.
|
|
*
|
|
* @param $type string day|month|year
|
|
*
|
|
* @return string URL
|
|
**/
|
|
public function getMonthlyArchiveLink($type = "day") {
|
|
$date = $this->dbObject("PublishDate");
|
|
$year = $date->format("Y");
|
|
if($type != "year") {
|
|
if($type == "day") {
|
|
return Controller::join_links($this->Parent()->Link("archive"), $date->format("Y"), $date->format("m"), $date->format("d"));
|
|
}
|
|
return Controller::join_links($this->Parent()->Link("archive"), $date->format("Y"), $date->format("m"));
|
|
}
|
|
return Controller::join_links($this->Parent()->Link("archive"), $date->format("Y"));
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
* Returns a yearly archive link for the current blog post.
|
|
*
|
|
* @return string URL
|
|
**/
|
|
public function getYearlyArchiveLink() {
|
|
$date = $this->dbObject("PublishDate");
|
|
return Controller::join_links($this->Parent()->Link("archive"), $date->format("Y"));
|
|
}
|
|
|
|
}
|
|
|
|
|
|
/**
|
|
* Blog Post controller
|
|
*
|
|
* @package silverstripe
|
|
* @subpackage blog
|
|
*
|
|
* @author Michael Strong <micmania@hotmail.co.uk>
|
|
**/
|
|
class BlogPost_Controller extends Page_Controller {
|
|
|
|
}
|