Go to file
Daniel Hensby 9cc5f59378
Get travis working
2018-02-20 13:38:31 +00:00
code Merge branch '0.4' into 0.5 2018-02-20 13:20:46 +00:00
css Blog styling 2010-08-22 23:26:49 +00:00
docs MINOR: Move documentation from http://doc.silverstripe.org 2011-01-14 14:07:54 +13:00
images MINOR Added RSS feed icon 28x28 for general purpose 2008-12-10 06:48:34 +00:00
javascript Move blog to open source path 2007-09-06 22:33:58 +00:00
lang Updated language packs to fixed versions 2009-11-12 02:48:47 +00:00
templates ENHANCEMENT: Added option to view archives just by year (ticket #5667) 2010-07-01 23:30:13 +00:00
tests Merge branch '0.4' into 0.5 2018-02-20 13:20:46 +00:00
thirdparty/xmlrpc FEATURE: Preliminary MetaWeblog support 2009-11-30 11:04:26 +00:00
.travis.yml Get travis working 2018-02-20 13:38:31 +00:00
ChangeLog Prepare for 0.2-rc1 2008-12-17 04:04:42 +00:00
README.md Travis support 2013-03-29 10:00:57 +01:00
_config.php FEATURE: Preliminary MetaWeblog support 2009-11-30 11:04:26 +00:00
composer.json Added composer.json 2013-03-29 10:00:09 +01:00

README.md

Blog Module

Build Status

Introduction

The blog module allows you to post blogs on your SilverStripe. It includes the ability to post blogs using a site front-end form. Blogs are summarised on the blog holder page type, with more detail viewable when a specific blog is clicked.

Maintainer Contact

  • Saophalkun Ponlu (phalkunz at silverstripe dot com)
  • Carlos Barberis (carlos at silverstripe dot com)

Feature Overview

  • Front-end blog post form
  • Posts allow bbcode
  • RSS feed for blog and also feeds for comments on posts
  • Easily customizable
  • Tag cloud widget
  • Archive widget
  • Blog management widget
  • RSS widget (will likely move in future)

Configuration Options

Use WYSIWYG editing instead of bbcode

Out of the box the blog module uses bbcode, just like the forum module. If you want to go back to using the standard page editing toolbar you need to add the following code to your mysite/_config.php file

:::php
BlogEntry::allow_wysiwyg_editing();

Page types

We have chosen to go with the following page types to include with the blog module:

  • BlogHolder: The BlogHolder shows BlogEntrys, and provides a way to search etc.It would also contain methods to post new blogs.

  • BlogEntry: This is simply an entry/post for the blog.

Simple form for adding a post

There is a blog management widget, that includes a link "Post new blog entry", which takes the user to [site/CurrentBlogHolder]/post (this is a good url to bookmark if you will be using it to blog regularly). This shows a blog entry form, which requires a subject and some content at the least. Clicking "Post blog entry" takes the user back to the blog. A login form will show if the user is not logged in. The entered author name is stored in a cookie. Initially the shown name will be the user's name.

BBcode support

  • BBCode can be entered into the form.

  • A bbcode tags help box shows when the "BBCode help" link is clicked. Javascript is required for this to work.

See :PEAR:BBCodeParser for more details.

Modifying the blog entry form

You may want to add or remove certain fields from the blog entry form. This can be done in BlogHolder.php. You will need to modify the $fields FieldSet object in the BlogEntryForm function. tutorial 3 shows you how to do this.

You will likely need to play around with the form and associated css to get the form looking how you want it.

View Archived Blogs

Blog archives can be viewed by year/month by appending the year, followed by a forward slash, then the numerical month, to the end of the blogholder URL. Alternately, just the year can be appended to view entries for that year.

for example: mysite/blog/2007/6 would show blog entries for June 2007

or: mysite/blog/2007 would show blog entries for 2007

Comments and Spam Protection

See :pagecomment for creating Askimet-protected comments for every page.

Widgets

See widgets

Working with the theme

The blog comes set up to use the \themes\blackcandy_blog\ directory by default.