First commit
This commit is contained in:
commit
c6e2478c40
13918 changed files with 2303184 additions and 0 deletions
|
@ -0,0 +1,158 @@
|
|||
<?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
|
||||
*/
|
||||
|
||||
/**
|
||||
* This class is for activity assignment functions.
|
||||
*/
|
||||
class CRM_Activity_BAO_ActivityAssignment extends CRM_Activity_DAO_ActivityContact {
|
||||
|
||||
/**
|
||||
* Class constructor.
|
||||
*/
|
||||
public function __construct() {
|
||||
parent::__construct();
|
||||
}
|
||||
|
||||
/**
|
||||
* Add activity assignment.
|
||||
*
|
||||
* @param array $params
|
||||
* (reference ) an assoc array of name/value pairs.
|
||||
*
|
||||
* @return object
|
||||
* activity type of object that is added
|
||||
*/
|
||||
public static function create(&$params) {
|
||||
$assignment = new CRM_Activity_BAO_ActivityContact();
|
||||
$activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
|
||||
$assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
|
||||
|
||||
$assignment->copyValues($params);
|
||||
$assignment->record_type_id = $assigneeID;
|
||||
|
||||
return $assignment->save();
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve assignee_id by activity_id.
|
||||
*
|
||||
* @param int $activity_id
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function retrieveAssigneeIdsByActivityId($activity_id) {
|
||||
$assigneeArray = array();
|
||||
if (!CRM_Utils_Rule::positiveInteger($activity_id)) {
|
||||
return $assigneeArray;
|
||||
}
|
||||
|
||||
$activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
|
||||
$assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
|
||||
|
||||
$sql = "
|
||||
SELECT contact_id
|
||||
FROM civicrm_activity_contact
|
||||
INNER JOIN civicrm_contact ON contact_id = civicrm_contact.id
|
||||
WHERE activity_id = %1
|
||||
AND record_type_id = $assigneeID
|
||||
AND civicrm_contact.is_deleted = 0
|
||||
";
|
||||
$assignment = CRM_Core_DAO::executeQuery($sql, array(1 => array($activity_id, 'Integer')));
|
||||
while ($assignment->fetch()) {
|
||||
$assigneeArray[] = $assignment->contact_id;
|
||||
}
|
||||
|
||||
return $assigneeArray;
|
||||
}
|
||||
|
||||
/**
|
||||
* Retrieve assignee names by activity_id.
|
||||
*
|
||||
* @param array $activityIDs
|
||||
* IDs of the activities.
|
||||
* @param bool $isDisplayName
|
||||
* If set returns display names of assignees.
|
||||
* @param bool $skipDetails
|
||||
* If false returns all details of assignee contact.
|
||||
*
|
||||
* @return array
|
||||
*/
|
||||
public static function getAssigneeNames($activityIDs, $isDisplayName = FALSE, $skipDetails = TRUE) {
|
||||
$assigneeNames = array();
|
||||
if (empty($activityIDs)) {
|
||||
return $assigneeNames;
|
||||
}
|
||||
$activityContacts = CRM_Activity_BAO_ActivityContact::buildOptions('record_type_id', 'validate');
|
||||
$assigneeID = CRM_Utils_Array::key('Activity Assignees', $activityContacts);
|
||||
|
||||
$whereClause = "";
|
||||
if (!$skipDetails) {
|
||||
$whereClause = " AND ce.is_primary= 1";
|
||||
}
|
||||
$inClause = implode(",", $activityIDs);
|
||||
|
||||
$query = "
|
||||
SELECT contact_a.id, contact_a.sort_name, contact_a.display_name, ce.email,
|
||||
civicrm_activity_contact.activity_id
|
||||
FROM civicrm_contact contact_a
|
||||
INNER JOIN civicrm_activity_contact ON civicrm_activity_contact.contact_id = contact_a.id
|
||||
LEFT JOIN civicrm_email ce ON ce.contact_id = contact_a.id
|
||||
WHERE civicrm_activity_contact.activity_id IN ( $inClause )
|
||||
AND contact_a.is_deleted = 0
|
||||
AND civicrm_activity_contact.record_type_id = $assigneeID
|
||||
{$whereClause}
|
||||
";
|
||||
|
||||
$dao = CRM_Core_DAO::executeQuery($query);
|
||||
while ($dao->fetch()) {
|
||||
if (!$isDisplayName) {
|
||||
$assigneeNames[$dao->id] = $dao->sort_name;
|
||||
}
|
||||
else {
|
||||
if ($skipDetails) {
|
||||
$assigneeNames[$dao->id] = $dao->display_name;
|
||||
}
|
||||
else {
|
||||
$assigneeNames[$dao->id]['contact_id'] = $dao->id;
|
||||
$assigneeNames[$dao->id]['display_name'] = $dao->display_name;
|
||||
$assigneeNames[$dao->id]['sort_name'] = $dao->sort_name;
|
||||
$assigneeNames[$dao->id]['email'] = $dao->email;
|
||||
$assigneeNames[$dao->id]['role'] = ts('Activity Assignee');
|
||||
$assigneeNames[$dao->id]['activity_id'] = $dao->activity_id;
|
||||
}
|
||||
}
|
||||
}
|
||||
return $assigneeNames;
|
||||
}
|
||||
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue