Hi, I've been using user forms. I've got a file upload form and want to put links to all uploaded files on the same page as the form.
Can anyone help?
Thanks
This site requires you to update your browser. Your browsing experience maybe affected by not having the most up to date version.
Please use forum.silverstripe.org for any new questions
(announcement).
The forum archive will stick around, but will be read only.
You can also use our Slack channel
or StackOverflow to ask for help.
Check out our community overview for more options to contribute.
Hi, I've been using user forms. I've got a file upload form and want to put links to all uploaded files on the same page as the form.
Can anyone help?
Thanks
Are you talking about putting links to the files on the front end of the site rather than the CMS?.
You would need to write your own function to get the files and then some template code to display it. So the function to get the uploaded files would look like
// note will only work for UDF 0.3
function getUserformsUploads() {
return DataObject::get('SubmittedFileField');
}
Then in your template file you would loop over that to output the uploads.
<% control UserformsUploads %>
$FormattedValue
<% end_control %>
Yes that's what I was looking for.
Thanks, much appreciated.