function poll_block_info

Implements hook_block_info().

File

drupal/core/modules/poll/poll.module, line 124
Collects votes on different topics in the form of multiple choice questions.

Code

function poll_block_info() {
  $blocks['recent']['info'] = t('Most recent poll');
  $blocks['recent']['properties']['administrative'] = TRUE;
  return $blocks;
}