Skip to content

Instantly share code, notes, and snippets.

View benald's full-sized avatar

Benald benald

  • Perth, Australia
View GitHub Profile
@benald
benald / ArticlesPage.php
Created December 1, 2017 04:38
SilverStripe ArticlesPage.php for use with Article.php
<?php
class ArticlesPage extends Page {
private static $has_many = array (
'Articles' => 'Article'
);
@benald
benald / Article.php
Created December 1, 2017 04:37
SilverStripe 3.5 Article.php DataObject, for use with ArticlePages.php, FiltersPage.php
<?php
class Article extends DataObject {
private static $db = array (
'Title' => 'Varchar',
'HideTitle' => 'Boolean',
'Date' => 'Date',
'Teaser' => 'Text',