queue_help

Versions
4.6
queue_help($section)

Implementation of hook_help().

Code

modules/queue.module, line 11

<?php
function queue_help($section) {
  switch ($section) {
    case 'admin/modules#description':
      return t('Allows content to be moderated by the community.');
    case 'admin/settings/queue':
      return t("<p>The queue provides a way for your users to vote on submitted content. This is called <strong>moderation</strong>. Users can moderate a post up (give it a point), or down (subtract a point). The settings below give you control over how many points are required for the status of a post to be automatically changed. See individual items for details.</p>");
  }
}
?>
Login or register to post comments
 
 

All source code and documentation on this site is released under the terms of the GNU General Public License, version 2 and later. Drupal is a registered trademark of Dries Buytaert.