I'm wondering how restrictions are placed on the albums (allowing only certain users to view them). I had a resource creating and dumping images into albums not using the zen photo framework. However, I still want to password protect these albums...can this be done?
Comments
http://www.zenphoto.org/support/topic.php?id=6878
http://www.zenphoto.org/news/an-overview-of-zenphoto-users
Zenphoto has the option of defaulting the "published" setting of new items to not plublished. It also has the option to make a gallery private.
But short of those two options, newly arrived items are public.
And of course, Zenphoto has no way of anticipating what users should be allowed to access a previously unknown item unless it is placed in an album that already has these restrictions defined.
if ($album->exists) {
$album->setTitle($name);
$album->save();
exit();
}
this is the code I will use to create the albums. I just need to add the last object modifier to create a user name and password...right?