123 lines
3.6 KiB
PHP
123 lines
3.6 KiB
PHP
|
<?php
|
||
|
/*
|
||
|
+--------------------------------------------------------------------+
|
||
|
| CiviCRM version 4.7 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| Copyright CiviCRM LLC (c) 2004-2017 |
|
||
|
+--------------------------------------------------------------------+
|
||
|
| This file is a part of CiviCRM. |
|
||
|
| |
|
||
|
| CiviCRM is free software; you can copy, modify, and distribute it |
|
||
|
| under the terms of the GNU Affero General Public License |
|
||
|
| Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
|
||
|
| |
|
||
|
| CiviCRM is distributed in the hope that it will be useful, but |
|
||
|
| WITHOUT ANY WARRANTY; without even the implied warranty of |
|
||
|
| MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
|
||
|
| See the GNU Affero General Public License for more details. |
|
||
|
| |
|
||
|
| You should have received a copy of the GNU Affero General Public |
|
||
|
| License and the CiviCRM Licensing Exception along |
|
||
|
| with this program; if not, contact CiviCRM LLC |
|
||
|
| at info[AT]civicrm[DOT]org. If you have questions about the |
|
||
|
| GNU Affero General Public License or the licensing of CiviCRM, |
|
||
|
| see the CiviCRM license FAQ at http://civicrm.org/licensing |
|
||
|
+--------------------------------------------------------------------+
|
||
|
*/
|
||
|
|
||
|
/**
|
||
|
*
|
||
|
* @package CRM
|
||
|
* @copyright CiviCRM LLC (c) 2004-2017
|
||
|
*/
|
||
|
class CRM_Bridge_OG_CiviCRM {
|
||
|
|
||
|
/**
|
||
|
* @param int $groupID
|
||
|
* @param $group
|
||
|
* @param $op
|
||
|
*/
|
||
|
public static function group($groupID, $group, $op) {
|
||
|
if ($op == 'add') {
|
||
|
self::groupAdd($groupID, $group);
|
||
|
}
|
||
|
else {
|
||
|
self::groupDelete($groupID, $group);
|
||
|
}
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $groupID
|
||
|
* @param $group
|
||
|
*/
|
||
|
public static function groupAdd($groupID, $group) {
|
||
|
$ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
|
||
|
|
||
|
$node = new StdClass();
|
||
|
if ($ogID) {
|
||
|
$node->nid = $ogID;
|
||
|
}
|
||
|
|
||
|
global $user;
|
||
|
$node->uid = $user->uid;
|
||
|
$node->title = $group->title;
|
||
|
$node->type = 'og';
|
||
|
$node->status = 1;
|
||
|
|
||
|
// set the og values
|
||
|
$node->og_description = $group->description;
|
||
|
$node->og_selective = OF_OPEN;
|
||
|
$node->og_register = 0;
|
||
|
$node->og_directory = 1;
|
||
|
|
||
|
node_save($node);
|
||
|
|
||
|
// also change the source field of the group
|
||
|
CRM_Core_DAO::setFieldValue('CRM_Contact_DAO_Group',
|
||
|
$groupID,
|
||
|
'source',
|
||
|
CRM_Bridge_OG_Utils::ogSyncName($node->nid)
|
||
|
);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $groupID
|
||
|
* @param $group
|
||
|
*/
|
||
|
public static function groupDelete($groupID, $group) {
|
||
|
$ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
|
||
|
if (!$ogID) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
node_delete($ogID);
|
||
|
}
|
||
|
|
||
|
/**
|
||
|
* @param int $groupID
|
||
|
* @param $contactIDs
|
||
|
* @param $op
|
||
|
*/
|
||
|
public static function groupContact($groupID, $contactIDs, $op) {
|
||
|
$config = CRM_Core_Config::singleton();
|
||
|
$ogID = CRM_Bridge_OG_Utils::ogID($groupID, FALSE);
|
||
|
|
||
|
if (!$ogID) {
|
||
|
return;
|
||
|
}
|
||
|
|
||
|
foreach ($contactIDs as $contactID) {
|
||
|
$drupalID = CRM_Core_BAO_UFMatch::getUFId($contactID);
|
||
|
if ($drupalID) {
|
||
|
if ($op == 'add') {
|
||
|
$group_membership = $config->userSystem->og_membership_create($ogID, $drupalID);
|
||
|
}
|
||
|
else {
|
||
|
$group_membership = $config->userSystem->og_membership_delete($ogID, $drupalID);
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
}
|