Image Moderation

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 when the image/album is discovered for the first time

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?

Comments

  • Why do you need image moderation?
    Are you allowing registered users to upload images to their own password-protected album or to an album with joint access rights?
    I suggest modifying the registration script to create a password protected album named the same as their username and access rights to view / edit their album only.

    You might be able to do this in a plugin, and so preserve the core zen code.
  • Have you looked at the `schedule content` utility?
  • The idea of a schedule content utility sounds good... but where is it? I've had a look look here and there and can't find anything...
  • did you look on the admin overview page under "Utility functions"?
Sign In or Register to comment.