Skip to content

Instantly share code, notes, and snippets.

@muskie9
Last active September 15, 2015 15:21
Show Gist options
  • Save muskie9/9ad52db37832bdc8db11 to your computer and use it in GitHub Desktop.
Save muskie9/9ad52db37832bdc8db11 to your computer and use it in GitHub Desktop.
<?php
class MyObject extends DataObject{
private static $has_one = array(
'Image' => 'Image'
);
public function getOriginalImage(){
return $this->Image();
}
public function getMyCroppedVersion(){
return $this->Image()->croppedImage(50,50);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment