You are here

public function ogGroupNoPosts::groupList in Organic groups 7

Same name and namespace in other branches
  1. 7.2 scripts/generate-og-d6-content.php \ogGroupNoPosts::groupList()

File

scripts/generate-og-d6-content.php, line 118

Class

ogGroupNoPosts
A group without posts.

Code

public function groupList($user_ids) {
  $list = array();
  $list[] = array(
    'title' => 'group-without-posts',
    'uid' => $user_ids[3],
    'body' => 'group without posts',
    'og_description' => 'description group without posts.',
  );
  return $list;
}