Merge pull request #13502 from colemanw/shortcode
[civicrm-core.git] / CRM / UF / Form / Preview.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 5 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2019 |
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-2019
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_Preview extends CRM_UF_Form_AbstractPreview {
42
43 /**
44 * Pre processing work done here.
45 *
46 * gets session variables for group or field id
47 *
48 * @param
49 *
50 * @return void
51 */
52 public function preProcess() {
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 'supplemental_address_3',
83 'city',
84 'postal_code',
85 'postal_code_suffix',
86 'geo_code_1',
87 'geo_code_2',
88 'state_province',
89 'country',
90 'county',
91 'phone',
92 'email',
93 'im',
94 );
95
96 if ($fieldDAO->location_type_id) {
97 $name .= '-' . $fieldDAO->location_type_id;
98 }
99 elseif (in_array($name, $specialFields)) {
100 $name .= '-Primary';
101 }
102
103 if (isset($fieldDAO->phone_type_id)) {
104 $name .= '-' . $fieldDAO->phone_type_id;
105 }
106
107 $fieldArray[$name] = $fields[$name];
108
109 if ($fieldDAO->field_name == 'phone_and_ext') {
110 $phoneExtField = str_replace('phone', 'phone_ext', $name);;
111 $fieldArray[$phoneExtField] = $fields[$phoneExtField];
112 }
113
114 $fields = $fieldArray;
115 if (!is_array($fields[$name])) {
116 $flag = TRUE;
117 }
118 $this->setProfile($fields, TRUE, $flag);
119 }
120 else {
121 $fields = CRM_Core_BAO_UFGroup::getFields($gid);
122 $this->setProfile($fields);
123 }
124 }
125
126 /**
127 * Build the form object.
128 *
129 * @return void
130 */
131 public function buildQuickForm() {
132 parent::buildQuickForm();
133
134 $this->addButtons(array(
135 array(
136 'type' => 'cancel',
137 'name' => ts('Done with Preview'),
138 'isDefault' => TRUE,
139 ),
140 ));
141 }
142
143 }