Skip to content

Instantly share code, notes, and snippets.

View SpiritLevel's full-sized avatar

David Alexander SpiritLevel

View GitHub Profile
@SpiritLevel
SpiritLevel / GalleryPhoto.php
Last active October 8, 2015 02:47
Gallery with photos stored in folder determined by Address
<?php
class GalleryPhoto extends DataObject {
private static $db = array (
'Caption' => 'Varchar'
);
private static $has_one = array (
'Photo' => 'Image',
'ProjectPage' => 'ProjectPage'