Come aggiungere a livello di programmazione un utente a un gruppo in Drupal 7


10

Sto cercando di creare a livello di codice un nodo di gruppo e aggiungere un utente a quel gruppo in Drupal 7. Il nodo del gruppo viene creato correttamente ma l'utente non viene aggiunto al gruppo e non sto riscontrando errori. Immagino che sto usando la funzione og_group in modo errato ma non ne sono sicuro. Che cosa sto facendo di sbagliato?

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"));
}

ciao max - hai sollevato una buona domanda. grazie mille
zero

Risposte:


13

L'avevo capito. Alla fine non funzionava perché l'ID gruppo NON è uguale all'ID nodo per quel gruppo organico. Ecco la versione funzionante:

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

Poiché OG7-2.x l'ID nodo == ID gruppo, non è necessario utilizzare og_get_group (). E in og_group () e og_role_grant () il tipo di gruppo è il primo argomento. Quindi ecco lo stesso codice per 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"));

}


Questo non fornisce una risposta alla domanda. Per criticare o richiedere chiarimenti a un autore, lascia un commento sotto il suo post: puoi sempre commentare i tuoi post e una volta che avrai una reputazione sufficiente sarai in grado di commentare qualsiasi post .
Chapabu,

2
Scusa se ho fatto qualcosa di sbagliato. Credo di fornire una risposta per le persone che vengono qui attraverso un motore di ricerca e utilizzano 7.x-2.x. Puoi eliminare l'intero post se non viene reso noto qui.
Capono,

Le tue risposte sono un buon inizio, ma sottolineare ciò che è sbagliato nella domanda non è sufficiente per essere considerato una risposta. Per favore, rivedi il testo per essere più utile dicendo alle persone cosa fare invece di usare og_get_group, e probabilmente i voti negativi verranno convertiti in voti positivi. :)
Letharion,

Ok, ho modificato il mio post. Immagino sia questo che intendi?
Capono,

1
Funziona bene con 7.2.x. Come accennato, 7.1.x aveva questa funzione og_get_group ma che è stata rimossa in 7.2.x. Quindi, per coloro che cercano il dopo, si prega di utilizzare questo.
Gladiatore,

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);
Utilizzando il nostro sito, riconosci di aver letto e compreso le nostre Informativa sui cookie e Informativa sulla privacy.
Licensed under cc by-sa 3.0 with attribution required.