class ogGroupNoPosts in Organic groups 7
Same name and namespace in other branches
- 7.2 scripts/generate-og-d6-content.php \ogGroupNoPosts
A group without posts.
Hierarchy
- class \ogGroupNoPosts implements \ogContent
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
Name | Modifiers | Type | Description | Overrides |
---|---|---|---|---|
ogGroupNoPosts:: |
public | function | ||
ogGroupNoPosts:: |
public | function | ||
ogGroupNoPosts:: |
public | function |