Merge pull request #4837 from eileenmcnaughton/CRM-15779
[civicrm-core.git] / CRM / Contact / Form / Inline / IM.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * form helper class for an IM object
38 */
39class CRM_Contact_Form_Inline_IM extends CRM_Contact_Form_Inline {
40
41 /**
100fef9d 42 * Ims of the contact that is been viewed
6a488035
TO
43 */
44 private $_ims = array();
45
46 /**
47 * No of im blocks for inline edit
48 */
49 private $_blockCount = 6;
50
51 /**
100fef9d 52 * Call preprocess
6a488035
TO
53 */
54 public function preProcess() {
55 parent::preProcess();
56
57 //get all the existing ims
58 $im = new CRM_Core_BAO_IM();
59 $im->contact_id = $this->_contactId;
60
61 $this->_ims = CRM_Core_BAO_Block::retrieveBlock($im, NULL);
62 }
63
64 /**
c490a46a 65 * Build the form object elements for im object
6a488035
TO
66 *
67 * @return void
6a488035
TO
68 */
69 public function buildQuickForm() {
70 parent::buildQuickForm();
71
72 $totalBlocks = $this->_blockCount;
73 $actualBlockCount = 1;
74 if (count($this->_ims) > 1) {
75 $actualBlockCount = $totalBlocks = count($this->_ims);
76 if ($totalBlocks < $this->_blockCount) {
77 $additionalBlocks = $this->_blockCount - $totalBlocks;
78 $totalBlocks += $additionalBlocks;
79 }
80 else {
81 $actualBlockCount++;
82 $totalBlocks++;
83 }
84 }
85
86 $this->assign('actualBlockCount', $actualBlockCount);
87 $this->assign('totalBlocks', $totalBlocks);
88
89 $this->applyFilter('__ALL__', 'trim');
90
91 for ($blockId = 1; $blockId < $totalBlocks; $blockId++) {
92 CRM_Contact_Form_Edit_IM::buildQuickForm($this, $blockId, TRUE);
93 }
94
95 $this->addFormRule(array('CRM_Contact_Form_Inline_IM', 'formRule'));
96 }
97
98 /**
100fef9d 99 * Global validation rules for the form
6a488035 100 *
6c8f6e67
EM
101 * @param array $fields posted values of the form
102 * @param array $errors list of errors to be posted back to the form
6a488035 103 *
6c8f6e67 104 * @return array $errors@static
6a488035 105 */
00be9182 106 public static function formRule($fields, $errors) {
6a488035 107 $hasData = $hasPrimary = $errors = array();
a7488080 108 if (!empty($fields['im']) && is_array($fields['im'])) {
6a488035
TO
109 foreach ($fields['im'] as $instance => $blockValues) {
110 $dataExists = CRM_Contact_Form_Contact::blockDataExists($blockValues);
111
112 if ($dataExists) {
113 $hasData[] = $instance;
a7488080 114 if (!empty($blockValues['is_primary'])) {
6a488035 115 $hasPrimary[] = $instance;
8cc574cf 116 if (!$primaryID && !empty($blockValues['im'])) {
6a488035
TO
117 $primaryID = $blockValues['im'];
118 }
119 }
120 }
121 }
122
123 if (empty($hasPrimary) && !empty($hasData)) {
124 $errors["im[1][is_primary]"] = ts('One IM should be marked as primary.');
125 }
126
127 if (count($hasPrimary) > 1) {
128 $errors["im[".array_pop($hasPrimary)."][is_primary]"] = ts('Only one IM can be marked as primary.');
129 }
130 }
131 return $errors;
132 }
133
134 /**
100fef9d 135 * Set defaults for the form
6a488035
TO
136 *
137 * @return array
6a488035
TO
138 */
139 public function setDefaultValues() {
140 $defaults = array();
141 if (!empty($this->_ims)) {
142 foreach ($this->_ims as $id => $value) {
143 $defaults['im'][$id] = $value;
144 }
145 }
146 else {
147 // get the default location type
148 $locationType = CRM_Core_BAO_LocationType::getDefault();
149 $defaults['im'][1]['location_type_id'] = $locationType->id;
150 }
151 return $defaults;
152 }
153
154 /**
100fef9d 155 * Process the form
6a488035
TO
156 *
157 * @return void
6a488035
TO
158 */
159 public function postProcess() {
160 $params = $this->exportValues();
161
162 // Process / save IMs
163 $params['contact_id'] = $this->_contactId;
164 $params['updateBlankLocInfo'] = TRUE;
165 CRM_Core_BAO_Block::create('im', $params);
166
167 $this->log();
168 $this->response();
169 }
170}