I'm struggling hard with SilverStripe 3.0 because the documentation doesn't exist yet.
I wan't to attach multiple images to a Page. It was extremely easy to add the cms-part but I can't loop it out.
Page.php
<?php
class SlidePage extends SiteTree {
public static $db = array(
);
public static $has_many = array(
'Photo' => 'Image'
);
public function getCMSFields() {
$fields = parent::getCMSFields();
$fields->addFieldToTab("Root.Images", new UploadField('Photo'));
return $fields;
}
}
class SlidePage_Controller extends ContentController {
public static $allowed_actions = array (
);
public function init() {
parent::init();
}
}
?>
This gives me the ability to attach images to a slidepage but I don't know how to loop it out. I really like the simplicity to add and remove images so I don't want to change anything there. Just need help with showing it.