You are here

class ogGroupNoPosts in Organic groups 7.2

Same name and namespace in other branches
  1. 7 scripts/generate-og-d6-content.php \ogGroupNoPosts

A group without posts.

Hierarchy

Expanded class hierarchy of ogGroupNoPosts

File

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

View source
class ogGroupNoPosts implements ogContent {
  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;
  }
  public function postList($user_ids, $groups) {
    return array();
  }
  public function groupActions($user_ids, $groups, $posts) {
  }

}

Members