I'd normally make a search but it's not working at the moment. I wanted to know if it's possible to change the title of the album if the album is protected. As in, if the album has a password display 'Protected album' as its title and then after the user has logged in display the regular album name.
Thanks! I'm almost there.
`
">
`
At the moment if the user is not logged in it prints 'protected album' but I don't have titles for the other albums.
If the user is logged in I can see the titles but the protected album still says 'protected'
@Jimania No search engine objective. I need too share some photos with selected people only. These people know already which photos they will find inside the album, the others don't need to know the nature of the content, hence the name mask.
EDIT: I added `
An album is still an protected album if you are loggedin, so isProtectedAlbum() is true even then.
Note that the album name for a subalbum includes the parent albums as well ("toplevel/sublevel1/sublevel2"....).
PS: I think the jimania post might be spam...
If you are passing an album, it must be an album object, not the name. If you omit the parameter it will check the currernt album.
So, it would seem to me what you want is:
if (!zp_loggedin() && isProtectedAlbunm()) {echo "protected album"; } else { output the normal stuff }
Acrylian... You are a genius!!