Merge pull request #5473 from aydun/CRM-16160
[civicrm-core.git] / CRM / Activity / Form / Task / AddToTag.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
32 * $Id$
33 *
34 */
35
36 /**
37 * This class provides the functionality to delete a group of
38 * contacts. This class provides functionality for the actual
39 * addition of contacts to groups.
40 */
41 class CRM_Activity_Form_Task_AddToTag extends CRM_Activity_Form_Task {
42
43 /**
44 * Name of the tag.
45 *
46 * @var string
47 */
48 protected $_name;
49
50 /**
51 * All the tags in the system.
52 *
53 * @var array
54 */
55 protected $_tags;
56
57 /**
58 * Build the form object.
59 *
60 *
61 * @return void
62 */
63 public function buildQuickForm() {
64 // add select for tag
65 $this->_tags = CRM_Core_BAO_Tag::getTags('civicrm_activity');
66
67 foreach ($this->_tags as $tagID => $tagName) {
68 $this->_tagElement = &$this->addElement('checkbox', "tag[$tagID]", NULL, $tagName);
69 }
70
71 $parentNames = CRM_Core_BAO_Tag::getTagSet('civicrm_activity');
72
73 CRM_Core_Form_Tag::buildQuickForm($this, $parentNames, 'civicrm_activity');
74
75 $this->addDefaultButtons(ts('Tag Activities'));
76 }
77
78 public function addRules() {
79 $this->addFormRule(array('CRM_Activity_Form_Task_AddToTag', 'formRule'));
80 }
81
82 /**
83 * @param CRM_Core_Form $form
84 * @param $rule
85 *
86 * @return array
87 */
88 public static function formRule($form, $rule) {
89 $errors = array();
90 if (empty($form['tag']) && empty($form['activity_taglist'])) {
91 $errors['_qf_default'] = ts("Please select at least one tag.");
92 }
93 return $errors;
94 }
95
96 /**
97 * Process the form after the input has been submitted and validated.
98 *
99 *
100 * @return void
101 */
102 public function postProcess() {
103 //get the submitted values in an array
104 $params = $this->controller->exportValues($this->_name);
105 $activityTags = $tagList = array();
106
107 // check if contact tags exists
108 if (!empty($params['tag'])) {
109 $activityTags = $params['tag'];
110 }
111
112 // check if tags are selected from taglists
113 if (!empty($params['activity_taglist'])) {
114 foreach ($params['activity_taglist'] as $val) {
115 if ($val) {
116 if (is_numeric($val)) {
117 $tagList[$val] = 1;
118 }
119 else {
120 $tagIDs = explode(',', $val);
121 if (!empty($tagIDs)) {
122 foreach ($tagIDs as $tagID) {
123 if (is_numeric($tagID)) {
124 $tagList[$tagID] = 1;
125 }
126 }
127 }
128 }
129 }
130 }
131 }
132
133 $tagSets = CRM_Core_BAO_Tag::getTagsUsedFor('civicrm_activity', FALSE, TRUE);
134
135 foreach ($tagSets as $key => $value) {
136 $this->_tags[$key] = $value['name'];
137 }
138
139 // merge activity and taglist tags
140 $allTags = CRM_Utils_Array::crmArrayMerge($activityTags, $tagList);
141
142 $this->_name = array();
143 foreach ($allTags as $key => $dnc) {
144 $this->_name[] = $this->_tags[$key];
145
146 list($total, $added, $notAdded) = CRM_Core_BAO_EntityTag::addEntitiesToTag($this->_activityHolderIds, $key, 'civicrm_activity');
147
148 $status = array(ts('Activity tagged', array('count' => $added, 'plural' => '%count activities tagged')));
149 if ($notAdded) {
150 $status[] = ts('1 activity already had this tag', array(
151 'count' => $notAdded,
152 'plural' => '%count activities already had this tag',
153 ));
154 }
155 $status = '<ul><li>' . implode('</li><li>', $status) . '</li></ul>';
156 CRM_Core_Session::setStatus($status, ts("Added Tag <em>%1</em>", array(1 => $this->_tags[$key])), 'success', array('expires' => 0));
157 }
158
159 }
160
161 }