You are here

function commons_posts_commons_bw_group_widget in Drupal Commons 7.3

Implements hook_commons_bw_group_widget().

File

modules/commons/commons_posts/commons_posts.commons.inc, line 24
Commons module integration for the Commons Posts module.

Code

function commons_posts_commons_bw_group_widget() {
  return array(
    'commons_posts' => array(
      'title' => t('Posts'),
      'type' => 'view',
      'vid' => 'commons_bw_posts',
      'display' => 'default',
      'weight' => -1,
      'bundle' => 'post',
    ),
  );
}