Limit downloads to one user group

Hi guys,

I have worked out how to use listdownload to show a download link for an image. What I would like to do is only display that for people who have logged in. I'm using user_groups.

Is this possible?

Thanks,
Nick

Comments

  • As is the case with these things, I have answer my own question. so, for the assitance of others.
    `

    <?php if (zp_loggedin()) { printDownloadLink('albums/'.$_zp_current_album->name.'/'.$_zp_current_image->filename, "download image");} ?>

    `

    It doesn't check which group a person is in, just that they are logged in. That will do me for now.
  • acrylian Administrator, Developer
    You can also check for specific rights. See the user rights article on the user guide.
Sign In or Register to comment.