Merge pull request #13972 from eileenmcnaughton/array_format_5
[civicrm-core.git] / CRM / Bridge / OG / CiviCRM.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
6a488035
TO
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
9 | |
10 | CiviCRM is free software; you can copy, modify, and distribute it |
11 | under the terms of the GNU Affero General Public License |
12 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
13 | |
14 | CiviCRM is distributed in the hope that it will be useful, but |
15 | WITHOUT ANY WARRANTY; without even the implied warranty of |
16 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
17 | See the GNU Affero General Public License for more details. |
18 | |
19 | You should have received a copy of the GNU Affero General Public |
20 | License and the CiviCRM Licensing Exception along |
21 | with this program; if not, contact CiviCRM LLC |
22 | at info[AT]civicrm[DOT]org. If you have questions about the |
23 | GNU Affero General Public License or the licensing of CiviCRM, |
24 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
25 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
32 */
33class CRM_Bridge_OG_CiviCRM {
34
e0ef6999 35 /**
100fef9d 36 * @param int $groupID
e0ef6999
EM
37 * @param $group
38 * @param $op
39 */
00be9182 40 public static function group($groupID, $group, $op) {
6a488035
TO
41 if ($op == 'add') {
42 self::groupAdd($groupID, $group);
43 }
44 else {
45 self::groupDelete($groupID, $group);
46 }
47 }
48
e0ef6999 49 /**
100fef9d 50 * @param int $groupID
e0ef6999
EM
51 * @param $group
52 */
00be9182 53 public static function groupAdd($groupID, $group) {
6a488035
TO
54 $ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
55
56 $node = new StdClass();
57 if ($ogID) {
58 $node->nid = $ogID;
59 }
60
61 global $user;
353ffa53
TO
62 $node->uid = $user->uid;
63 $node->title = $group->title;
64 $node->type = 'og';
6a488035
TO
65 $node->status = 1;
66
67 // set the og values
68 $node->og_description = $group->description;
69 $node->og_selective = OF_OPEN;
70 $node->og_register = 0;
71 $node->og_directory = 1;
72
73 node_save($node);
74
75 // also change the source field of the group
76 CRM_Core_DAO::setFieldValue('CRM_Contact_DAO_Group',
77 $groupID,
78 'source',
79 CRM_Bridge_OG_Utils::ogSyncName($node->nid)
80 );
81 }
82
e0ef6999 83 /**
100fef9d 84 * @param int $groupID
e0ef6999
EM
85 * @param $group
86 */
00be9182 87 public static function groupDelete($groupID, $group) {
6a488035
TO
88 $ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
89 if (!$ogID) {
90 return;
91 }
92
93 node_delete($ogID);
94 }
95
e0ef6999 96 /**
100fef9d 97 * @param int $groupID
e0ef6999
EM
98 * @param $contactIDs
99 * @param $op
100 */
00be9182 101 public static function groupContact($groupID, $contactIDs, $op) {
6a488035
TO
102 $config = CRM_Core_Config::singleton();
103 $ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
8ef12e64 104
6a488035
TO
105 if (!$ogID) {
106 return;
107 }
108
109 foreach ($contactIDs as $contactID) {
110 $drupalID = CRM_Core_BAO_UFMatch::getUFId($contactID);
111 if ($drupalID) {
112 if ($op == 'add') {
113 $group_membership = $config->userSystem->og_membership_create($ogID, $drupalID);
114 }
115 else {
116 $group_membership = $config->userSystem->og_membership_delete($ogID, $drupalID);
117 }
118 }
119 }
120 }
96025800 121
6a488035 122}