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

 
Tony replied on at Permalink Reply
Tony
sounds like you'd need to run a script when a comment is posted, and when a post is posted, which might require hacking into the code a bit.

then you'd just do this:

//there's also a get group by name function
$g = Group::getById( intval($gID) );
User::enterGroup($g);
duxferrarie replied on at Permalink Reply
Sounds doable. I figure this kind of feature might be very useful for the forum add-on in general.
I'll post the full solution in this thread when I get around to it and check that I didn't f*ck anything else up.

Thanks a lot for answering.