3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
7 +--------------------------------------------------------------------+
8 | This file is a part of CiviCRM. |
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. |
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. |
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 +--------------------------------------------------------------------+
31 * @copyright CiviCRM LLC (c) 2004-2014
37 * This class provides the functionality to email a group of contacts
39 class CRM_Activity_Form_Task_PickOption
extends CRM_Activity_Form_Task
{
42 * the title of the group
49 * maximum Activities that should be allowed to update
52 protected $_maxActivities = 100;
55 * variable to store redirect path
58 protected $_userContext;
61 * variable to store contact Ids
67 * build all the data structures needed to build the form
72 function preProcess() {
74 * initialize the task and row fields
78 $session = CRM_Core_Session
::singleton();
79 $this->_userContext
= $session->readUserContext();
81 CRM_Utils_System
::setTitle(ts('Send Email to Contacts'));
85 if (count($this->_activityHolderIds
) > $this->_maxActivities
) {
86 CRM_Core_Session
::setStatus(ts("The maximum number of Activities you can select to send an email is %1. You have selected %2. Please select fewer Activities from your search results and try again.", array(1 => $this->_maxActivities
, 2 => count($this->_activityHolderIds
))), ts("Maximum Exceeded"), "error");
91 CRM_Utils_System
::redirect($this->_userContext
);
102 function buildQuickForm() {
103 $this->addElement('checkbox', 'with_contact', ts('With Contact'));
104 $this->addElement('checkbox', 'assigned_to', ts('Assigned to Contact'));
105 $this->addElement('checkbox', 'created_by', ts('Created by'));
106 $this->setDefaults(array('with_contact' => 1));
107 $this->addDefaultButtons(ts('Continue >>'));
111 * Add local and global form rules
117 function addRules() {
118 $this->addFormRule(array('CRM_Activity_Form_Task_PickOption', 'formRule'));
122 * global validation rules for the form
124 * @param array $fields posted values of the form
126 * @return array list of errors to be posted back to the form
130 static function formRule($fields) {
131 if ( !isset($fields['with_contact']) &&
132 !isset($fields['assigned_to']) &&
133 !isset($fields['created_by'])
135 return array('with_contact' => ts('You must select at least one email recipient type.'));
141 * process the form after the input has been submitted and validated
147 public function postProcess() {
148 // Clear any formRule errors from Email form in case they came back here via Cancel button
149 $this->controller
->resetPage('Email');
150 $params = $this->exportValues();
151 $this->_contacts
= array();
153 $activityContacts = CRM_Core_OptionGroup
::values('activity_contacts', FALSE, FALSE, FALSE, NULL, 'name');
154 $assigneeID = CRM_Utils_Array
::key('Activity Assignees', $activityContacts);
155 $targetID = CRM_Utils_Array
::key('Activity Targets', $activityContacts);
156 //get assignee contacts
157 if (!empty($params['assigned_to'])) {
158 foreach ($this->_activityHolderIds
as $key => $id) {
159 $ids = array_keys(CRM_Activity_BAO_ActivityContact
::getNames($id, $assigneeID));
160 $this->_contacts
= array_merge($this->_contacts
, $ids);
163 //get target contacts
164 if (!empty($params['with_contact'])) {
165 foreach ($this->_activityHolderIds
as $key => $id) {
166 $ids = array_keys(CRM_Activity_BAO_ActivityContact
::getNames($id, $targetID));
167 $this->_contacts
= array_merge($this->_contacts
, $ids);
170 //get 'Added by' contacts
171 if (!empty($params['created_by'])) {
172 parent
::setContactIDs();
173 if (!empty($this->_contactIds
)) {
174 $this->_contacts
= array_merge($this->_contacts
, $this->_contactIds
);
177 $this->_contacts
= array_unique($this->_contacts
);
179 //bounce to pick option if no contacts to send to
180 if ( empty($this->_contacts
) ) {
181 $urlParams = "_qf_PickOption_display=true&qfKey={$params['qfKey']}";
182 $urlRedirect = CRM_Utils_System
::url('civicrm/activity/search', $urlParams);
183 CRM_Core_Error
::statusBounce(
184 ts('It appears you have no contacts with emails from the selected recipients.'),
189 $this->set('contacts', $this->_contacts
);