Extension:AJAXPoll/he

Category:FDL licensed extensions/he
MediaWiki extensions manual
AJAXPoll
Release status: stableCategory:Stable extensions/he
Implementation Parser extension Category:Parser extensions/he
Description הרחבה זו מאפשרת שימוש בסקרים מבוססי AJAX עם התג <poll>.
Author(s)
Latest version 2.3.0 (2020-02-24)
MediaWiki 1.43.1+Category:Extensions with manual MediaWiki version
Tables ajaxpoll_info
ajaxpoll_vote
License GNU Free Documentation License
Download Category:Extensions in Wikimedia version control/he
Example Any ShoutWiki site
Quarterly downloads 9 (Ranked 86th)
Translate the AJAXPoll extension if it is available at translatewiki.net
Issues Open tasks · Report a bug
Category:All extensions/heCategory:Extensions not in ExtensionJson

ההרחבה AJAXPoll מאפשרת להטמיע סקר מבוסס AJAX אחד או יותר בדפי מדיה־ויקי עם התג <poll>.

התקנה

  • Download and move the extracted AJAXPoll folder to your extensions/ directory.
    Developers and code contributors should install the extension from Git instead, using:cd extensions/
    git clone https://gerrit.wikimedia.org/r/mediawiki/extensions/AJAXPoll
  • Add the following code at the bottom of your LocalSettings.php file:
    wfLoadExtension( 'AJAXPoll' );
    
  • Run the update script which will automatically create the necessary database tables that this extension needs.  Configure at your convenience.
  • Yes בוצע – Navigate to Special:Version on your wiki to verify that the extension is successfully installed.

הגדרה

# if you want to restrict the poll
# use the following code lines after calling the AJAXPoll extension
# to restrict to user group (example)

# The 'ajaxpoll-view-results-before-vote' group permission allows the specified
# group members to view poll results even without having voted
# but only if the high-level group permission 'ajaxpoll-vote' allows to view
# results in general.
#
# This 'ajaxpoll-view-results-before-vote' can be overwritten with the specific
# per-poll setting "show-results-before-voting" which takes precedence over the
# group permission.
#
# permission 'ajaxpoll-view-results' >>
# >> per-poll setting "show-results-before-voting" (if present)
# >> permission 'ajaxpoll-view-results-before-vote'

# anons
# default: anons cannot vote and will never see results
$wgGroupPermissions['*']['ajaxpoll-vote'] = false;
$wgGroupPermissions['*']['ajaxpoll-view-results'] = false;
$wgGroupPermissions['*']['ajaxpoll-view-results-before-vote'] = false;

# users
# default: users can vote and can see poll results - when they have voted
$wgGroupPermissions['user']['ajaxpoll-vote'] = true;
$wgGroupPermissions['user']['ajaxpoll-view-results'] = true;

אם מעוניינים לבטל את הקטגוריות האוטומטיות שמתווספות לדפים שמכילים סקר, יש להגדיר את תוכן הודעת המערכת "MediaWiki:Ajaxpoll-tracking-category" באתר ל־"-" (מינוס).

שימוש

תחביר

<poll>
Question
Choice 1
Choice 2
Choice 3
Choice 4
</poll>

דוגמה

<poll>
Do you like this poll ?
Yes, it is awesome.
Yes.
No, I do not like polls.
I have no idea, what this means.
</poll>

If you want this, you can allow or deny the result-viewing before voting per-poll by adding the show-results-before-voting parameter in the opening tag:

<poll show-results-before-voting>
<poll show-results-before-voting=1>
<poll show-results-before-voting=0>

If the first line after <poll> is "STATS", then some statistics about the wiki and its polls will be displayed. These statistics are not localizable and this whole feature will probably be removed (or at least refactored, but probably removed) in the future.

Category:Social tools/he Category:Poll extensions/he Category:Ajax extensions/he Category:Extensions by ShoutWiki/he Category:Extensions by Fandom/he
Category:Ajax extensions/he Category:All extensions/he Category:Extensions by Fandom/he Category:Extensions by ShoutWiki/he Category:Extensions in Wikimedia version control/he Category:Extensions included in Canasta/he Category:Extensions included in Miraheze/he Category:Extensions included in WikiForge/he Category:Extensions not in ExtensionJson Category:Extensions with manual MediaWiki version Category:FDL licensed extensions/he Category:Parser extensions/he Category:Poll extensions/he Category:Social tools/he Category:Stable extensions/he