Skip to content

Instantly share code, notes, and snippets.

@jrast
jrast / MyObject_Step1.php
Created July 13, 2012 17:59
Tutorial: Suche für eigene DataObjects
<?php
class MyObject extends DataObject {
static $db = array(
'Title' => 'Varchar(255)',
'Content' => 'HTMLText'
);
}
@jrast
jrast / Gist.ss
Created June 14, 2012 21:47
Tutorial: ShortCodes in Silverstripe
<script src="http://gist.github.com/{$GistID}.js<% if File %>?file=$File<% end_if %>"></script>
@jrast
jrast / Anmeldungen.ss
Created March 30, 2012 21:36
Silverstripe Tasks with templated email
<!-- This is located at /paht/project/themes/jotoedi/Email/Anmeldungen.ss -->
<h1>Anmeldungen für die nächsten Touren</h1>
<% control Touren %>
<h2>$TourName</h2>
<% end_control %>