Jak programowo dodać użytkownika do grupy w Drupal 7


10

Próbuję programowo utworzyć węzeł grupy i dodać użytkownika do tej grupy w Drupal 7. Węzeł grupy jest w porządku, ale użytkownik nie jest dodawany do grupy i nie otrzymuję żadnych błędów. Zgaduję, że używam nieprawidłowo funkcji og_group, ale nie jestem pewien. Co ja robię źle?

function MYMODULE_form_submit($form_id, $form_values) {
    global $user;

    $node = new stdClass();

    $node->type     = "group";
    $node->uid      = $user->uid;
    $node->title        = t("Group Node Title");
    $node->body     = t("Group Node Body");
    $node->status       = 1;
    $node->promote      = 0;
    $node->comment      = 1;

    $node->og_description   = t("OG Description");
    $node->og_register  = 0;
    $node->og_directory = 0;
    $node->og_private   = 1;
    $node->og_selective = 3;

    $node = node_submit($node);
    node_save($node);

    $account = user_load(2);

    og_group($node->nid, array(
                "entity type"       => "user",
                "entity"        => $account,
                "membership type"   => "OG_MEMBERSHIP_TYPE_DEFAULT",
            ));

    drupal_set_message(t("Finished"));
}

cześć max - zadałeś dobre pytanie. dzięki bardzo
zero

Odpowiedzi:


13

Rozgryzłem to. Skończyło się to niedziałaniem, ponieważ identyfikator grupy NIE jest taki sam jak identyfikator węzła dla tej grupy organicznej. Oto działająca wersja:

function MYMODULE_page_form_submit($form_id, $form_values) {
    global $user;

    $node = new stdClass();

    $node->type     = "group";
    $node->uid      = $user->uid;
    $node->title        = t("Group Node Title");
    $node->body     = t("Group Node Body");
    $node->status       = 1; //(1 or 0): published or not
    $node->promote      = 0; //(1 or 0): promoted to front page
    $node->comment      = 1; //2 = comments on, 1 = comments off

    $node->og_description   = t("OD Description");
    $node->og_register  = 0;
    $node->og_directory = 0;
    $node->og_private   = 1;
    $node->og_selective = 3;

    $node = node_submit($node);
    node_save($node);

    // Get the group ID from the node ID
    $group = og_get_group("node", $node->nid);

    // Load the user we want to add to the group (ID #2 was my test user)
    $account = user_load(2);

    // Add the user to the group
    og_group($group->gid, array(
                "entity type"       => "user",
                "entity"        => $account,
                "membership type"   => OG_MEMBERSHIP_TYPE_DEFAULT,
            ));

    // Changes the users role in the group (1 = non-member, 2 = member, 3 = administrator member)
    og_role_grant($group->gid, $account->uid, 3);

    drupal_set_message(t("Finished"));
}

13

Ponieważ OG7-2.x identyfikator węzła == identyfikator grupy, nie ma potrzeby używania og_get_group (). A w og_group () i og_role_grant () twój typ grupy jest pierwszym argumentem. Oto ten sam kod dla OG 7.x-2.x

function MYMODULE_page_form_submit($form_id, $form_values) {
global $user;

$node = new stdClass();

$node->type     = "group";
$node->uid      = $user->uid;
$node->title        = t("Group Node Title");
$node->body     = t("Group Node Body");
$node->status       = 1; //(1 or 0): published or not
$node->promote      = 0; //(1 or 0): promoted to front page
$node->comment      = 1; //2 = comments on, 1 = comments off

$node->og_description   = t("OD Description");
$node->og_register  = 0;
$node->og_directory = 0;
$node->og_private   = 1;
$node->og_selective = 3;

$node = node_submit($node);
node_save($node);

// Load the user we want to add to the group (ID #2 was my test user)
$account = user_load(2);

// Add the user to the group
og_group('node', $node->nid, array(
            "entity type"       => "user",
            "entity"        => $account,
            "membership type"   => OG_MEMBERSHIP_TYPE_DEFAULT,
        ));

// Changes the users role in the group (1 = non-member, 2 = member, 3 = administrator member)
og_role_grant('node', $node->nid, $account->uid, 3);

drupal_set_message(t("Finished"));

}


To nie daje odpowiedzi na pytanie. Aby skrytykować lub poprosić autora o wyjaśnienie, zostaw komentarz pod jego postem - zawsze możesz komentować własne posty, a gdy będziesz mieć wystarczającą reputację , będziesz mógł komentować każdy post .
Chapabu

2
Przepraszam, jeśli zrobiłem coś złego. Wydaje mi się, że udzielam odpowiedzi osobom, które przychodzą tutaj przez wyszukiwarkę i używają wersji 7.x – 2.x. Możesz usunąć cały post, jeśli nie ma tu znaczenia.
Capono,

Twoje odpowiedzi to dobry początek, ale wskazanie, co jest złego w pytaniu, nie wystarczy, aby uznać to za odpowiedź. Popraw tekst, aby był bardziej pomocny, mówiąc ludziom, co robić, zamiast korzystać z og_get_group, a opinie negatywne zostaną prawdopodobnie zamienione na głosy podwyższające. :)
Letharion

Ok, zredagowałem swój post. Chyba o to ci chodzi?
Capono,

1
Działa to dobrze z 7.2.x. Jak wspomniano, wersja 7.1.x miała tę funkcję og_get_group, ale została ona usunięta w 7.2.x. Więc dla tych, którzy szukają później, skorzystaj z tego.
Gladiator

1
Adding programmatically Group  content:
$node->type     = "group_post";
$node->uid      = $user->uid;
$node->title        = t("Group postNode Title");
$node->body     = t("Group Node Body");
$node->status       = 1; //(1 or 0): published or not
$node->promote      = 0; //(1 or 0): promoted to front page
$node->comment      = 1; //2 = comments on, 1 = comments off

$node->og_group_ref['und'][] = array('target_id' => $gid);

$node = node_submit($node);
node_save($node);
Korzystając z naszej strony potwierdzasz, że przeczytałeś(-aś) i rozumiesz nasze zasady używania plików cookie i zasady ochrony prywatności.
Licensed under cc by-sa 3.0 with attribution required.