Ian province abbreviation patch - issue 724
[civicrm-core.git] / CRM / UF / Form / Preview.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * This class generates form components
38 * for previewing Civicrm Profile Group
39 *
40 */
41class CRM_UF_Form_Preview extends CRM_UF_Form_AbstractPreview {
42
43 /**
100fef9d 44 * Pre processing work done here.
6a488035
TO
45 *
46 * gets session variables for group or field id
47 *
48 * @param
49 *
50 * @return void
6a488035 51 */
00be9182 52 public function preProcess() {
6a488035
TO
53 $flag = FALSE;
54 $gid = $this->get('id');
55 $this->set('gid', $gid);
56 $field = CRM_Utils_Request::retrieve('field', 'Boolean', $this, TRUE, 0);
57
58 if ($field) {
59 $fields = CRM_Core_BAO_UFGroup::getFields($gid, FALSE, NULL, NULL, NULL, TRUE);
60 $fieldDAO = new CRM_Core_DAO_UFField();
61 $fieldDAO->id = $this->get('fieldId');
62 $fieldDAO->find(TRUE);
63
64 if ($fieldDAO->is_active == 0) {
65 CRM_Core_Error::statusBounce(ts('This field is inactive so it will not be displayed on profile form.'));
66 }
67 elseif ($fieldDAO->is_view == 1) {
68 CRM_Core_Error::statusBounce(ts('This field is view only so it will not be displayed on profile form.'));
69 }
70 $name = $fieldDAO->field_name;
71
72 if ($fieldDAO->field_name == 'phone_and_ext') {
73 $name = 'phone';
74 }
75
76 // preview for field
77 $specialFields = array(
78 'address_name',
79 'street_address',
80 'supplemental_address_1',
81 'supplemental_address_2',
82 'city',
83 'postal_code',
84 'postal_code_suffix',
85 'geo_code_1',
86 'geo_code_2',
87 'state_province',
88 'country',
89 'county',
90 'phone',
91 'email',
21dfd5f5 92 'im',
6a488035
TO
93 );
94
95 if ($fieldDAO->location_type_id) {
96 $name .= '-' . $fieldDAO->location_type_id;
97 }
98 elseif (in_array($name, $specialFields)) {
99 $name .= '-Primary';
100 }
101
102 if (isset($fieldDAO->phone_type_id)) {
103 $name .= '-' . $fieldDAO->phone_type_id;
104 }
105
106 $fieldArray[$name] = $fields[$name];
107
108 if ($fieldDAO->field_name == 'phone_and_ext') {
109 $phoneExtField = str_replace('phone', 'phone_ext', $name);;
110 $fieldArray[$phoneExtField] = $fields[$phoneExtField];
111 }
112
113 $fields = $fieldArray;
114 if (!is_array($fields[$name])) {
115 $flag = TRUE;
116 }
117 $this->setProfile($fields, TRUE, $flag);
118 }
119 else {
120 $fields = CRM_Core_BAO_UFGroup::getFields($gid);
121 $this->setProfile($fields);
122 }
123 }
124
125 /**
fe482240 126 * Build the form object.
6a488035
TO
127 *
128 * @return void
6a488035
TO
129 */
130 public function buildQuickForm() {
131 parent::buildQuickForm();
132
133 $this->addButtons(array(
134 array(
135 'type' => 'cancel',
136 'name' => ts('Done with Preview'),
137 'isDefault' => TRUE,
138 ),
139 )
140 );
141 }
142
143}