views:

29

answers:

2

I'd like to programmatically add user forum permissions in Drupal.

Do I have to use ACL module? Is there any example out there, as the documentation is a bit thin?

A: 

The Rules module will work as well. With the rules module (but not with ACL) you have the option of setting triggers for this to occur.

Andrew Sledge
There is no option in Rules for adjusting forum permissions. Is there?
Kay Pale
A: 

What do you mean by programmatically, exactly?

You can define new permissions using hook_perm:

http://api.drupal.org/api/function/hook_perm

But the forum module(s) for Drupal should ship with role based permissions to use.

Kevin
They should but they don't :)
Kay Pale
There isn't a 'create forum topic' under node or forum permissions?
Kevin