21286 Posts in 5733 Topics by 2602 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 138 Views |
-
UploadField thumbnails?

8 March 2013 at 8:23pm
Hi All, as per this tutorial:
http://doc.silverstripe.org/framework/en/trunk/tutorials/2-extending-a-basic-site
I've included an image field in one of my custom page types. However, when one clicks "Attach a file" -> "From files", there are no thumbnails in the list view. Also, UploadField seems to automatically create an 'Upload' folder, which is not something that I want.
So, my questions are:
1) How can I show thumbnails when users are using UploadField to attach images that already exist in the assets folder
2) How can I stop UploadField creating an "Uploads" folder? Further, can I set UploadField to default to a specific subfolder in assets?Cheers,
Kyle -
Re: UploadField thumbnails?

16 March 2013 at 1:27pm Last edited: 16 March 2013 1:27pm
Think the Uploads folder always exists by default. See if setFolderName below helps.
function getCMSFields() {
$fields = parent::getCMSFields();// Image
$imageField = new UploadField('TeamMemberImage','Team Member Image');
$imageField->getValidator()->setAllowedExtensions(array('jpg', 'jpeg', 'png'));
$imageField->setConfig('allowedMaxFileNumber', 1);
$imageField->setFolderName('Team-Member-Photos');// Add
$fields->addFieldToTab('Root.Images', $imageField);return $fields;
}
| 138 Views | ||
|
Page:
1
|
Go to Top |


