7913 Posts in 1355 Topics by 930 members
DataObjectManager Module
SilverStripe Forums » DataObjectManager Module » Adding a file manager to the Image Gallery
Discuss the DataObjectManager module, and the related ImageGallery module.
Moderators: martimiz, UncleCheese, Howard, Sean, Ryan M., biapar, Willr, Ingo, swaiba, simon_w
|
Page:
1
|
Go to End | |
| Author | Topic: | 546 Views |
-
Adding a file manager to the Image Gallery

2 August 2009 at 2:08pm
Hello.
I have been trying to add a file manager to the image gallery so that my client can link files to an album in the same way that images get linked to an album.
I have gotten it to the point where my image resource is linked to the imagegallerypage and to an imagegalleryalbum, adding files to different albums works but I can't use the filter the way you do in the imagegallerymanager.
I stole the lines
$manager->setFilter('AlbumID','Choose an album', $this->Albums()->toDropdownMap('ID','AlbumName'));
if($this->Albums()->Count() > 0)
$manager->filter = "AlbumID_".$this->Albums()->First()->ID;
but the last line that sets the filter property makes the page load fail. The error I get is "Missing argument 2 for DataObjectManager::setFilter()".
Everything works if I add $this->Albums()->First()->ID as the last argument to setFilter() so I have no idea why it fails when I add it the way you do in the ImageGalleryManager.
| 546 Views | ||
|
Page:
1
|
Go to Top |

