6bbaf902a67e40a81adf6cbeed47933424093b21
[civicrm-core.git] / CRM / Contact / Form / Edit / CustomData.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.4 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2013 |
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-2013
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 * @return void
45 * @access public
46 */
47 static function preProcess(&$form) {
48 $form->_type = CRM_Utils_Request::retrieve('type', 'String', CRM_Core_DAO::$_nullObject);
49 $form->_subType = CRM_Utils_Request::retrieve('subType', 'String', CRM_Core_DAO::$_nullObject);
50
51 //build the custom data as other blocks.
52 //$form->assign( "addBlock", false );
53 if ($form->_type) {
54 $form->_addBlockName = 'CustomData';
55 $form->assign("addBlock", TRUE);
56 $form->assign("blockName", $form->_addBlockName);
57 }
58
59 CRM_Custom_Form_CustomData::preProcess($form, NULL, $form->_subType, NULL,
60 ($form->_type) ? $form->_type : $form->_contactType
61 );
62
63 //assign group tree after build.
64 $form->assign('groupTree', $form->_groupTree);
65 }
66
67 /**
68 * build the form elements for CustomData object
69 *
70 * @param CRM_Core_Form $form reference to the form object
71 *
72 * @return void
73 * @access public
74 * @static
75 */
76 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"]) &&
93 CRM_Utils_Array::value('contact_sub_type', $_POST)
94 ) {
95 $contactSubType = $_POST['contact_sub_type'];
96 }
97 else {
98 $contactSubType = CRM_Utils_Array::value('contact_sub_type', $form->_values);
99 }
100 $form->assign('contactType', $form->_contactType);
101 $form->assign('contactSubType', $contactSubType);
102 }
103
104 /**
105 * This function sets the default values for the form. Note that in edit/view mode
106 * the default values are retrieved from the database
107 *
108 * @access public
109 *
110 * @return void
111 */
112 static function setDefaultValues(&$form, &$defaults) {
113 $defaults += CRM_Custom_Form_CustomData::setDefaultValues($form);
114 }
115 }
116