ZenphotoCMS Forum
parent's parent name ? - Printable Version

+- ZenphotoCMS Forum (https://forum.zenphoto.org)
+-- Forum: Support (https://forum.zenphoto.org/forum-1.html)
+--- Forum: General support (https://forum.zenphoto.org/forum-4.html)
+--- Thread: parent's parent name ? (/thread-6339.html)



parent's parent name ? - breglis - 2010-01-12

how do I get a parent's parent album name ?

Can someone help ?




parent's parent name ? - breglis - 2010-01-12

got it my self thanks : $_zp_current_album->getParent()->getParent()->name




parent's parent name ? - sbillard - 2010-01-12

You should actually review the zenphoto object model. But I will save you some time.

$parent = $album->getParent() will give you the parent of an album. Of course, there may not be a parent (if it is a root level album.) In that case you will get NULL.)

Of course, $parent will itself be an album so [drum roll] $grandparent = $parent->getParent() the album's parent's parent.

From there you just use the getFolder() method for the folder name.




parent's parent name ? - acrylian - 2010-01-12

If you actually wanted to get the toplevel album to a subalbum there is also
http://www.zenphoto.org/documentation/functions/_functions.php.html#functiongetUrAlbum