10394 Posts in 2203 Topics by 1714 members
|
Page:
1
|
Go to End | |
| Author | Topic: | 1069 Views |
-
User forms - links to uploaded files

15 June 2010 at 12:32pm
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
-
Re: User forms - links to uploaded files

15 June 2010 at 4:42pm
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 %> -
Re: User forms - links to uploaded files

18 June 2010 at 6:19pm
Yes that's what I was looking for.
Thanks, much appreciated.
| 1069 Views | ||
|
Page:
1
|
Go to Top |


