Page 1 of 1

Group permissions - restricting the advanced options

Posted: Mon Nov 28, 2005 5:32 pm
by snowcrash
Hello

I'm setting up a group blog.
For a particular user group that can create entries, can it be set that none of the advanced options are available to them? So for instance, they can't set a sticky post, etc?
Or maybe I've missed some obvious permission setting


thanks

Re: Group permissions - restricting the advanced options

Posted: Tue Nov 29, 2005 12:37 am
by garvinhicking
No, such a setting is currently not available - it would need to be coded. That wouldn't be too hard - but not terribly easy either...

You could modify the plugin quite easily for yourself by editing the entryproperties plugin and adding checks like this:

Code: Select all

if ($serendipity['authorid'] == 2) { ?>advanced properties here... <?php } ?>
An abstract way of defining access control lists there would take more time...

Regards,
Garvin