Skip to content

Instantly share code, notes, and snippets.

@hafriedlander
Created October 22, 2014 20:37
Show Gist options
  • Save hafriedlander/49a38ba86a334bef8f30 to your computer and use it in GitHub Desktop.
Save hafriedlander/49a38ba86a334bef8f30 to your computer and use it in GitHub Desktop.
Storing files in dataobject fields example
<?php
class MyObject extends DataObject {
private static $db = array(
'Thumbnail' => 'File'
);
function thumbnailLink() {
return $this->obj('Thumbnail')->Link;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment