You are here

function commons_polls_commons_bw_group_widget in Drupal Commons 7.3

Implements hook_commons_bw_group_widget().

File

modules/commons/commons_polls/commons_polls.commons.inc, line 24
Commons module integration for the Commons Polls module.

Code

function commons_polls_commons_bw_group_widget() {
  return array(
    'commons_polls' => array(
      'title' => t('Polls'),
      'type' => 'view',
      'vid' => 'commons_bw_polls',
      'display' => 'default',
      'weight' => 10,
      'bundle' => 'poll',
    ),
  );
}