poll_help
- Versions
- 4.6 – 5
poll_help($section)- 6 – 7
poll_help($path, $arg)
Implementation of hook_help().
Code
modules/poll.module, line 12
<?php
function poll_help($section) {
switch ($section) {
case 'admin/help#poll':
return t("
<p>Users with the correct <a href=\"%permissions\">permissions</a> can create and/or vote on polls.</p>
<ul>
<li>To create a poll a user needs the \"create polls\" permission.</li>
<li>To vote on a poll question a user must have the \"vote on polls\" permission.</li>
<li>To view the results one needs the \"access content\" permission.</li>
<li>To administer polls you need the \"administer nodes\" permission.</li>
</ul>
<p>Creating a poll is much like creating any other node. Click \"create poll\" in your user box. The title of the poll should be the question, then enter the answers and the \"base\" vote counts. You can also choose the time period over which the vote will run.</p><p>The <a href=\"%poll\">Poll</a> item in the navigation links will take you to a page where you can see all the current polls, vote on them (if you haven't already) and view the results.</p>", array("%permissions" => url("admin/access/permissions"), "%poll" => url("poll")));
case 'admin/modules#description':
return t("Allows your site to capture votes on different topics in the form of multiple choice questions.");
case 'node/add#poll':
return t("A poll is a multiple-choice question which visitors can vote on.");
}
}
?>Login or register to post comments 