separate permissions per album

What's the best way to allow full image access to one and only one album/directory and normal or restricted access to all other albums?

For example, I'm creating an album for a recent outing and want full image access in that album but not the rest of my gallery. What's the easiest way to do this? Thanks for the help.

Comments

  • You would have to code this yourself in your them image.php script. It would look something like:

    `
    if (public image album) {
    $link = getUnprotectedImageURL();
    } else {
    $link = getProtectedImageURL();
    }
    echo html_encode($link);
    `
  • acrylian Administrator, Developer
    Additionally you use the multiple_layouts plugin so you could sort of assign this behaviour to certain albums.
Sign In or Register to comment.