Hello,
I have done a big part of the job of my C# proxy lib for piwigo WS.
I have all pwg.session, pwg.tags.* and pwg.category.* including the getImage working pretty good.
I have to start with the pwg.image.* functions.
pwg.images.setPrivacyLevel
what is the correct value for level parameter ?
thank a lot.
Offline
bayral wrote:
what is the correct value for level parameter ?
thank a lot.
The level parameter is an integer value among $conf['available_permission_levels'] which by default contains:
$conf['available_permission_levels'] = array(0,1,2,4,8);
lang['Level 0'] = '---'; $lang['Level 1'] = 'Contacts'; $lang['Level 2'] = 'Friends'; $lang['Level 4'] = 'Family'; $lang['Level 8'] = 'Admins';
Offline
Thanks !
Offline