commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / CRM / Contact / Form / Inline / CustomData.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 * 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 */
46 public $_groupID;
47
48 /**
49 * Entity type of the table id.
50 *
51 * @var string
52 */
53 protected $_entityType;
54
55 /**
56 * Call preprocess.
57 */
58 public function preProcess() {
59 parent::preProcess();
60
61 $this->_groupID = CRM_Utils_Request::retrieve('groupID', 'Positive', $this, TRUE, NULL, $_REQUEST);
62 $this->assign('customGroupId', $this->_groupID);
63 $customRecId = CRM_Utils_Request::retrieve('customRecId', 'Positive', $this, FALSE, 1, $_REQUEST);
64 $cgcount = CRM_Utils_Request::retrieve('cgcount', 'Positive', $this, FALSE, 1, $_REQUEST);
65 $subType = CRM_Contact_BAO_Contact::getContactSubType($this->_contactId, ',');
66 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, $cgcount,
67 $this->_contactType, $this->_contactId);
68 }
69
70 /**
71 * Build the form object elements for custom data.
72 *
73 * @return void
74 */
75 public function buildQuickForm() {
76 parent::buildQuickForm();
77 CRM_Custom_Form_CustomData::buildQuickForm($this);
78 }
79
80 /**
81 * Set defaults for the form.
82 *
83 * @return array
84 */
85 public function setDefaultValues() {
86 return CRM_Custom_Form_CustomData::setDefaultValues($this);
87 }
88
89 /**
90 * Process the form.
91 *
92 * @return void
93 */
94 public function postProcess() {
95 // Process / save custom data
96 // Get the form values and groupTree
97 $params = $this->controller->exportValues($this->_name);
98 CRM_Core_BAO_CustomValueTable::postProcess($params,
99 $this->_groupTree[$this->_groupID]['fields'],
100 'civicrm_contact',
101 $this->_contactId,
102 $this->_entityType
103 );
104
105 $this->log();
106
107 // reset the group contact cache for this group
108 CRM_Contact_BAO_GroupContactCache::remove();
109
110 $this->response();
111 }
112
113 }