User group promotion
Permalink
I want a section of my site to be editable by a group:
Those that have made at least 10 comments/posts on the site AND have been members for 10 days or more.
Is there a way to promote Registered users to such a group automatically?
How would I set permissions so that all registered users can edit a section of my site, and also add a page to that section. I've been fooling around with permissions all day and I can't seem to get a handle on these two issues.
Thanks,
Dan
Those that have made at least 10 comments/posts on the site AND have been members for 10 days or more.
Is there a way to promote Registered users to such a group automatically?
How would I set permissions so that all registered users can edit a section of my site, and also add a page to that section. I've been fooling around with permissions all day and I can't seem to get a handle on these two issues.
Thanks,
Dan
then you'd just do this:
//there's also a get group by name function
$g = Group::getById( intval($gID) );
User::enterGroup($g);