Skip to content

Instantly share code, notes, and snippets.

@trentsnippets
Last active December 19, 2015 06:48
Show Gist options
  • Save trentsnippets/5913615 to your computer and use it in GitHub Desktop.
Save trentsnippets/5913615 to your computer and use it in GitHub Desktop.
Add an upload field to silverstripe
//Add a single upload field to upload one image.
static $has_one = array(
'BackgroundImage' => 'Image'
);
$fields->addFieldToTab('Root.Main', new UploadField('BackgroundImage', 'Background Image'), 'Content');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment