So I've been digging around ZenPhoto in search for a way for my client's website to have image moderation... here's what I have already figured out...
My plan is to make sure that all the images and albums are not set to show by default... so that means that this code is going to need to be used within the process of the loading of the image/album...
`
$image->set('show', 0);
`
...and now the problem is the fact that I cant find a place to place this code dynamically [b]when the image/album is discovered for the first time[/b]
Does anyone have any idea how i should be able to achieve this without putting this line into the guts of the program and wondering where it is later on?