Ventrian Product Forums

We've moved our Product Forums!
To better assist our customers, we've moved to an integrated knowledge base and ticketing system. You can access the new forums at http://support.ventrian.com.
Subject: Enhancement - Latest Photos - Recursive
Prev Next
You are not authorized to post a reply.

Author Messages
GussUser is Offline
Registered Users
Ventrian Addict
Ventrian Addict
Posts:89


6/18/2012 4:22 PM  

Hi Scott

Here is an easy enhancement that you could maybe include in the next gallery release:

Current Problem:

  1. One of the best features on Ventrian Gallery is the unlimited parent child albums.
  2. But, when you want to use the companion module, latest photos, it only show photos in the gallary id you select.
  3. This is a problem in real life senario, because:
  4. Lets say your most upper parent albums is call "Cars" and "Animals"
  5. In "Cars" and "Animals" there is lots of sub albums.
  6. Now if you want to show the newest photos is "Car" you can't do it!, because "Cars" does not contain photos, only the Child albums in cars contain the photos.

Solution:

 

 

CREATE FUNCTION dbo.DnnForge_SimpleGallery_AlbumAndChildAlbums

(

@AlbumID int

)

RETURNS TABLE 

AS

RETURN 

(

WITH    

ParentAndChildAlbums AS 

(

SELECT a.AlbumID FROM dbo.DnnForge_SimpleGallery_Album a WHERE AlbumID = @AlbumID

UNION ALL

SELECT a.AlbumID FROM DnnForge_SimpleGallery_Album a JOIN ParentAndChildAlbums b ON (a.ParentAlbumID = b.AlbumID)

)

SELECT AlbumID FROM ParentAndChildAlbums

)

 

AND then you modify the procedure ...photolist to ...

 

WHERE

(@AlbumID is null or Photo.[AlbumID] = @AlbumID or Photo.[AlbumID] IN (SELECT * FROM dbo.DnnForge_SimpleGallery_AlbumAndChildAlbums(@AlbumID))) 

and now... you can show lasterst photos from a parent and its child albums.

Regards

Guss

 

 

(PS: not quite that simple, because the photolist procedure is also use in main gallery)

Scott, would you build this feature in please, I should not be too much effort or change: When using the companion module. Latest Photos, to include a checkmark in the settings, where you can specify if you want just the selected album, or the album and its children. 

 

You are not authorized to post a reply.
Forums > Modules > Simple Gallery > Enhancement - Latest Photos - Recursive



ActiveForums 3.7
We've moved our Product Forums!
To better assist our customers, we've moved to an integrated knowledge base and ticketing system. You can access the new forums at http://support.ventrian.com.