Extension:Poll2

From MediaWiki.org

Jump to: navigation, search


             

Manual on MediaWiki Extensions
List of MediaWiki Extensions
Crystal Clear action run.png
Poll

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 Download snapshot

Subversion [Help]
Browse source code

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

[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;

[edit] See also