Merge pull request #4749 from atif-shaikh/CRM-15729
[civicrm-core.git] / CRM / Contact / Form / Inline / CustomData.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35
36 /**
37 * form helper class for custom data section
38 */
39 class CRM_Contact_Form_Inline_CustomData extends CRM_Contact_Form_Inline {
40
41 /**
42 * Custom group id
43 *
44 * @int
45 * @access public
46 */
47 public $_groupID;
48
49 /**
50 * Entity type of the table id
51 *
52 * @var string
53 */
54 protected $_entityType;
55
56 /**
57 * Call preprocess
58 */
59 public function preProcess() {
60 parent::preProcess();
61
62 $this->_groupID = CRM_Utils_Request::retrieve('groupID', 'Positive', $this, TRUE, NULL, $_REQUEST);
63 $this->assign('customGroupId', $this->_groupID);
64 $customRecId = CRM_Utils_Request::retrieve('customRecId', 'Positive', $this, FALSE, 1, $_REQUEST);
65 $cgcount = CRM_Utils_Request::retrieve('cgcount', 'Positive', $this, FALSE, 1, $_REQUEST);
66 $subType = CRM_Contact_BAO_Contact::getContactSubType($this->_contactId, ',');
67 CRM_Custom_Form_CustomData::preProcess($this, null, $subType, $cgcount,
68 $this->_contactType, $this->_contactId);
69 }
70
71 /**
72 * Build the form object elements for custom data
73 *
74 * @return void
75 * @access public
76 */
77 public function buildQuickForm() {
78 parent::buildQuickForm();
79 CRM_Custom_Form_CustomData::buildQuickForm($this);
80 }
81
82 /**
83 * Set defaults for the form
84 *
85 * @return array
86 * @access public
87 */
88 public function setDefaultValues() {
89 return CRM_Custom_Form_CustomData::setDefaultValues($this);
90 }
91
92 /**
93 * Process the form
94 *
95 * @return void
96 * @access public
97 */
98 public function postProcess() {
99 // Process / save custom data
100 // Get the form values and groupTree
101 $params = $this->controller->exportValues($this->_name);
102 CRM_Core_BAO_CustomValueTable::postProcess($params,
103 $this->_groupTree[$this->_groupID]['fields'],
104 'civicrm_contact',
105 $this->_contactId,
106 $this->_entityType
107 );
108
109 // reset the group contact cache for this group
110 CRM_Contact_BAO_GroupContactCache::remove();
111
112 $this->response();
113 }
114 }