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