Merge pull request #12031 from mukeshcompucorp/fix-template-structure-issues
[civicrm-core.git] / CRM / Bridge / OG / CiviCRM.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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 +--------------------------------------------------------------------+
26 */
27
28 /**
29 *
30 * @package CRM
31 * @copyright CiviCRM LLC (c) 2004-2018
32 */
33 class CRM_Bridge_OG_CiviCRM {
34
35 /**
36 * @param int $groupID
37 * @param $group
38 * @param $op
39 */
40 public static function group($groupID, $group, $op) {
41 if ($op == 'add') {
42 self::groupAdd($groupID, $group);
43 }
44 else {
45 self::groupDelete($groupID, $group);
46 }
47 }
48
49 /**
50 * @param int $groupID
51 * @param $group
52 */
53 public static function groupAdd($groupID, $group) {
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;
62 $node->uid = $user->uid;
63 $node->title = $group->title;
64 $node->type = 'og';
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
83 /**
84 * @param int $groupID
85 * @param $group
86 */
87 public static function groupDelete($groupID, $group) {
88 $ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
89 if (!$ogID) {
90 return;
91 }
92
93 node_delete($ogID);
94 }
95
96 /**
97 * @param int $groupID
98 * @param $contactIDs
99 * @param $op
100 */
101 public static function groupContact($groupID, $contactIDs, $op) {
102 $config = CRM_Core_Config::singleton();
103 $ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
104
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 }
121
122 }