Merge pull request #12018 from civicrm/5.1
[civicrm-core.git] / CRM / Contact / Form / Edit / CustomData.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2018 |
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-2018
32 */
33
34 /**
35 * Form helper class for an Demographics object.
36 */
37 class CRM_Contact_Form_Edit_CustomData {
38
39 /**
40 * Build all the data structures needed to build the form.
41 *
42 * @param CRM_Core_Form $form
43 */
44 public static function preProcess(&$form) {
45 $form->_type = CRM_Utils_Request::retrieve('type', 'String');
46 $form->_subType = CRM_Utils_Request::retrieve('subType', 'String');
47
48 //build the custom data as other blocks.
49 //$form->assign( "addBlock", false );
50 if ($form->_type) {
51 $form->_addBlockName = 'CustomData';
52 $form->assign("addBlock", TRUE);
53 $form->assign("blockName", $form->_addBlockName);
54 }
55
56 CRM_Custom_Form_CustomData::preProcess($form, NULL, $form->_subType, NULL,
57 ($form->_type) ? $form->_type : $form->_contactType
58 );
59
60 //assign group tree after build.
61 $form->assign('groupTree', $form->_groupTree);
62 }
63
64 /**
65 * Build the form object elements for CustomData object.
66 *
67 * @param CRM_Core_Form $form
68 * Reference to the form object.
69 */
70 public static function buildQuickForm(&$form) {
71 if (!empty($form->_submitValues)) {
72 if ($customValueCount = CRM_Utils_Array::value('hidden_custom_group_count', $form->_submitValues)) {
73 if (is_array($customValueCount)) {
74 if (array_key_exists(0, $customValueCount)) {
75 unset($customValueCount[0]);
76 }
77 $form->_customValueCount = $customValueCount;
78 $form->assign('customValueCount', $customValueCount);
79 }
80 }
81 }
82 CRM_Custom_Form_CustomData::buildQuickForm($form);
83
84 //build custom data.
85 $contactSubType = NULL;
86 if (!empty($_POST["hidden_custom"]) && !empty($_POST['contact_sub_type'])) {
87 $contactSubType = $_POST['contact_sub_type'];
88 }
89 else {
90 $contactSubType = CRM_Utils_Array::value('contact_sub_type', $form->_values);
91 }
92 $form->assign('contactType', $form->_contactType);
93 $form->assign('contactSubType', $contactSubType);
94 }
95
96 /**
97 * Set default values for the form. Note that in edit/view mode
98 * the default values are retrieved from the database
99 *
100 *
101 * @param CRM_Core_Form $form
102 * @param array $defaults
103 */
104 public static function setDefaultValues(&$form, &$defaults) {
105 $defaults += CRM_Custom_Form_CustomData::setDefaultValues($form);
106 }
107
108 }