18590 Posts in 4875 Topics by 2285 members
General Questions
SilverStripe Forums » General Questions » how to add URL links to images
General questions about getting started with SilverStripe that don't fit in any of the categories above.
Moderators: martimiz, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba
|
Page:
1
|
Go to End | |
| Author | Topic: | 879 Views |
-
how to add URL links to images

26 June 2010 at 10:33am Last edited: 26 June 2010 10:56am
Using my localhost test site,
I have created a `sharepage` to link photos to forums, or friends to download,
I have used this code to show the images........function FilesToDisplay() {
$dir = DataObject::get_one('Folder', "Filename='assets/ImageShare/'");
if ( $dir ) {
return DataObject::get('Image', "ParentID='$dir->ID'");
}return null;
}in template..............
<% control FilesToDisplay %>
$Tag
<% end_control %>
------------------------This shows the images but the link it creates ie: http://localhost/silverstripe/ mysite/assets/ share/photo.jpg/
produces a `page not found`in a browser
I am stuck, can anyone help please
I really wanted a list of URL`s beside a thumbnail, I have tried several different dataobject codes but to no avail
Regards
Mike
| 879 Views | ||
|
Page:
1
|
Go to Top |

