Extension:Poll2
From MediaWiki.org
|
Release status: stable |
|||
|---|---|---|---|
| Implementation | Special page | ||
| Description | Add a Poll-Special Page into Mediawiki | ||
| Author(s) | Jan LucaTalk | ||
| Last Version | 1.0 | ||
| MediaWiki | 1.14.0 | ||
| License | Attribution-Share Alike 3.0 Unported or later | ||
| Download | SVN ViewVC Changelog |
||
|
|||
|
|||
|
check usage (experimental) |
|||
Contents |
[edit] What can this extension do?
The extension add a Special Page to create Polls and vote to them.
[edit] Usage
Use Special:Poll
[edit] Download instructions
- Create a directory named "Poll"
svn checkout http://svn.wikimedia.org/svnroot/mediawiki/trunk/extensions/Poll/ Poll- Download the files at this link and put them on the poll directory
[edit] Installation
To install this extension, add the following to LocalSettings.php:
require_once("$IP/extensions/Poll/Poll.php");
[edit] Rights
Default rights are:
$wgGroupPermissions['sysop']['poll-admin'] = true; $wgGroupPermissions['*']['poll-admin'] = false; $wgGroupPermissions['autoconfirmed']['poll-create'] = true; $wgGroupPermissions['*']['poll-create'] = false; $wgGroupPermissions['autoconfirmed']['poll-vote'] = true; $wgGroupPermissions['*']['poll-vote'] = false;