Silverstripe Uploadify Add fields
I am looking to attach multiple images to a page in silverstripe (that will act as a rotating gallery eventually) and was wondering if it was possible for a user to add a link for each of these images when uploading each image? Yes. This can be achieved by having a has_many relationship to a custom DataObject which contains an image and a link object in it. In the following example we have a HomePage that has a has_many relationship to Slide . Slide contains an Image and Link . There is some good information on this topic in SilverStripe Lesson 9 - Working with data relationships - $has_many .