Merge pull request #2495 from civicrm/4.4
[civicrm-core.git] / CRM / UF / Form / AbstractPreview.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 * This class generates form components
38 * for previewing Civicrm Profile Group
39 *
40 */
41 class CRM_UF_Form_AbstractPreview extends CRM_Core_Form {
42
43 /**
44 * the fields needed to build this form
45 *
46 * @var array
47 */
48 public $_fields;
49
50 /**
51 * Set the profile/field structure for this form
52 *
53 * @param array $fields list of fields per CRM_Core_BAO_UFGroup::formatUFFields or CRM_Core_BAO_UFGroup::getFields
54 * @param bool $isSingleField
55 * @param bool $flag
56 */
57 public function setProfile($fields, $isSingleField = FALSE, $flag = FALSE) {
58 if ($isSingleField) {
59 $this->assign('previewField', $isSingleField);
60 }
61
62 if ($flag) {
63 $this->assign('viewOnly', FALSE);
64 }
65 else {
66 $this->assign('viewOnly', TRUE);
67 }
68
69 $this->set('fieldId', NULL);
70 $this->assign("fields", $fields);
71 $this->_fields = $fields;
72 }
73
74 /**
75 * Set the default form values
76 *
77 * @access protected
78 *
79 * @return array the default array reference
80 */
81 function setDefaultValues() {
82 $defaults = array();
83 $stateCountryMap = array();
84 foreach ($this->_fields as $name => $field) {
85 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($field['name'])) {
86 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID, $name, $defaults, NULL, CRM_Profile_Form::MODE_REGISTER);
87 }
88
89 //CRM-5403
90 if ((substr($name, 0, 14) === 'state_province') || (substr($name, 0, 7) === 'country') || (substr($name, 0, 6) === 'county')) {
91 list($fieldName, $index) = CRM_Utils_System::explode('-', $name, 2);
92 if (!array_key_exists($index, $stateCountryMap)) {
93 $stateCountryMap[$index] = array();
94 }
95 $stateCountryMap[$index][$fieldName] = $name;
96 }
97 }
98
99 // also take care of state country widget
100 if (!empty($stateCountryMap)) {
101 CRM_Core_BAO_Address::addStateCountryMap($stateCountryMap, $defaults);
102 }
103
104 //set default for country.
105 CRM_Core_BAO_UFGroup::setRegisterDefaults($this->_fields, $defaults);
106
107 // now fix all state country selectors
108 CRM_Core_BAO_Address::fixAllStateSelects($this, $defaults);
109
110 return $defaults;
111 }
112
113 /**
114 * Function to actually build the form
115 *
116 * @return void
117 * @access public
118 */
119 public function buildQuickForm() {
120 foreach ($this->_fields as $name => $field) {
121 if (empty($field['is_view'])) {
122 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE);
123 }
124 }
125 }
126
127 public function getTemplateFileName() {
128 return 'CRM/UF/Form/Preview.tpl';
129 }
130 }