You are here

public function ogGroupThreePosts::groupList in Organic groups 7

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

File

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

Class

ogGroupThreePosts
A group with three posts.

Code

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