Index: trunk/extensions/AutomaticGroups/AutomaticGroups.php |
— | — | @@ -12,7 +12,7 @@ |
13 | 13 | $wgExtensionCredits['other'][] = array( |
14 | 14 | 'name' => 'Automatic Groups', |
15 | 15 | 'author' => 'Rob Church', |
16 | | - 'url' => '', |
| 16 | + 'url' => 'http://www.mediawiki.org/wiki/Extension:Automatic_Groups', |
17 | 17 | 'description' => 'Provides a convenient means to configure automatic group |
18 | 18 | membership based on user account age and edit count', |
19 | 19 | ); |
— | — | @@ -27,12 +27,10 @@ |
28 | 28 | * |
29 | 29 | * Index is the group being assigned, with a second array |
30 | 30 | * of account properties; acceptable keys are 'age' and 'edits' |
| 31 | + * |
| 32 | + * See README for more information and examples |
31 | 33 | */ |
32 | 34 | $wgAutomaticGroups = array(); |
33 | | - // Example: "autoconfirmed" for accounts which are 4 days old |
34 | | - //$wgAutomaticGroups['autoconfirmed'] = array( 'age' => 86400 * 4 ); |
35 | | - // Example: "patroller" for accounts with 250 edits |
36 | | - //$wgAutomaticGroups['patroller'] = array( 'edits' => 250 ); |
37 | 35 | |
38 | 36 | /** |
39 | 37 | * Main execution function |