You are here

interface ogContent in Organic groups 7.2

Same name in this branch
  1. 7.2 scripts/generate-og-d6-content.php \ogContent
  2. 7.2 og_ui/scripts/generate-og-ui-d6-content.php \ogContent
Same name and namespace in other branches
  1. 7 scripts/generate-og-d6-content.php \ogContent
  2. 7 og_ui/scripts/generate-og-ui-d6-content.php \ogContent

Organic groups content generation interface.

Hierarchy

Expanded class hierarchy of ogContent

All classes that implement ogContent

File

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

View source
interface ogContent {

  //Returns a list of groups configuration arrays.
  public function groupList($user_ids);

  // Returns a list of posts configuation arrays
  // Groups nids generated in groupList are provided in groups parameter.
  public function postList($user_ids, $groups);

  // Performs actions of the generated groups and posts.
  public function groupActions($user_ids, $groups, $posts);

}

Members