You are here

function commons_groups_commons_bw_group_widget in Drupal Commons 7.3

Implements hook_commons_bw_group_widget().

File

modules/commons/commons_groups/commons_groups.commons.inc, line 25
Commons module integration for the Commons Groups module.

Code

function commons_groups_commons_bw_group_widget() {
  return array(
    'commons_all' => array(
      'title' => t('All'),
      'type' => 'view',
      'vid' => 'commons_bw_all',
      'display' => 'default',
      'weight' => -10,
      'default' => 1,
      'bundle' => 'post',
    ),
  );
}