Merge pull request #15833 from yashodha/participant_edit
[civicrm-core.git] / CRM / UF / Form / AbstractPreview.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
f299f7db 6 | Copyright CiviCRM LLC (c) 2004-2020 |
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
f299f7db 31 * @copyright CiviCRM LLC (c) 2004-2020
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_AbstractPreview extends CRM_Core_Form {
42
43 /**
fe482240 44 * The fields needed to build this form.
6a488035
TO
45 *
46 * @var array
47 */
48 public $_fields;
49
50 /**
51 * Set the profile/field structure for this form
52 *
5ce1712d
TO
53 * @param array $fields
54 * List of fields per CRM_Core_BAO_UFGroup::formatUFFields or CRM_Core_BAO_UFGroup::getFields.
6a488035
TO
55 * @param bool $isSingleField
56 * @param bool $flag
57 */
58 public function setProfile($fields, $isSingleField = FALSE, $flag = FALSE) {
59 if ($isSingleField) {
60 $this->assign('previewField', $isSingleField);
61 }
62
63 if ($flag) {
64 $this->assign('viewOnly', FALSE);
65 }
66 else {
67 $this->assign('viewOnly', TRUE);
68 }
69
70 $this->set('fieldId', NULL);
71 $this->assign("fields", $fields);
72 $this->_fields = $fields;
73 }
74
75 /**
fe482240 76 * Set the default form values.
6a488035 77 *
6a488035 78 *
a6c01b45
CW
79 * @return array
80 * the default array reference
6a488035 81 */
00be9182 82 public function setDefaultValues() {
be2fb01f 83 $defaults = [];
6a488035
TO
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 }
6a488035
TO
88 }
89
90 //set default for country.
91 CRM_Core_BAO_UFGroup::setRegisterDefaults($this->_fields, $defaults);
92
6a488035
TO
93 return $defaults;
94 }
95
96 /**
fe482240 97 * Build the form object.
6a488035
TO
98 *
99 * @return void
6a488035
TO
100 */
101 public function buildQuickForm() {
102 foreach ($this->_fields as $name => $field) {
a7488080 103 if (empty($field['is_view'])) {
6a488035
TO
104 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE);
105 }
106 }
107 }
108
624e56fa 109 /**
fe482240 110 * Use the form name to create the tpl file name.
624e56fa
EM
111 *
112 * @return string
624e56fa 113 */
3655bea4 114
624e56fa
EM
115 /**
116 * @return string
117 */
6a488035
TO
118 public function getTemplateFileName() {
119 return 'CRM/UF/Form/Preview.tpl';
120 }
96025800 121
6a488035 122}