Merge pull request #5101 from agh1/context-abbrev
[civicrm-core.git] / CRM / Contact / Form / Inline / CustomData.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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
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 custom data section
38 */
39class CRM_Contact_Form_Inline_CustomData extends CRM_Contact_Form_Inline {
40
41 /**
fe482240 42 * Custom group id.
6a488035
TO
43 *
44 * @int
6a488035
TO
45 */
46 public $_groupID;
47
48 /**
fe482240 49 * Entity type of the table id.
6a488035
TO
50 *
51 * @var string
52 */
53 protected $_entityType;
54
55 /**
fe482240 56 * Call preprocess.
6a488035
TO
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);
fa6bfe1b 63 $customRecId = CRM_Utils_Request::retrieve('customRecId', 'Positive', $this, FALSE, 1, $_REQUEST);
bd2e25c4 64 $cgcount = CRM_Utils_Request::retrieve('cgcount', 'Positive', $this, FALSE, 1, $_REQUEST);
6a488035 65 $subType = CRM_Contact_BAO_Contact::getContactSubType($this->_contactId, ',');
e60f24eb 66 CRM_Custom_Form_CustomData::preProcess($this, NULL, $subType, $cgcount,
6a488035
TO
67 $this->_contactType, $this->_contactId);
68 }
69
70 /**
fe482240 71 * Build the form object elements for custom data.
6a488035
TO
72 *
73 * @return void
6a488035
TO
74 */
75 public function buildQuickForm() {
76 parent::buildQuickForm();
77 CRM_Custom_Form_CustomData::buildQuickForm($this);
78 }
79
80 /**
fe482240 81 * Set defaults for the form.
6a488035
TO
82 *
83 * @return array
6a488035
TO
84 */
85 public function setDefaultValues() {
86 return CRM_Custom_Form_CustomData::setDefaultValues($this);
87 }
88
89 /**
fe482240 90 * Process the form.
6a488035
TO
91 *
92 * @return void
6a488035
TO
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
b4efde7a
CW
105 $this->log();
106
6a488035
TO
107 // reset the group contact cache for this group
108 CRM_Contact_BAO_GroupContactCache::remove();
109
110 $this->response();
111 }
96025800 112
6a488035 113}