INFRA-132 - CRM/SMS - Convert single-line @param to multi-line
[civicrm-core.git] / CRM / UF / Form / AbstractPreview.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
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 +--------------------------------------------------------------------+
26*/
27
28/**
29 *
30 * @package CRM
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
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 /**
100fef9d 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 *
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 *
6a488035
TO
77 *
78 * @return array the default array reference
79 */
00be9182 80 public function setDefaultValues() {
6a488035 81 $defaults = array();
6a488035
TO
82 foreach ($this->_fields as $name => $field) {
83 if ($customFieldID = CRM_Core_BAO_CustomField::getKeyID($field['name'])) {
84 CRM_Core_BAO_CustomField::setProfileDefaults($customFieldID, $name, $defaults, NULL, CRM_Profile_Form::MODE_REGISTER);
85 }
6a488035
TO
86 }
87
88 //set default for country.
89 CRM_Core_BAO_UFGroup::setRegisterDefaults($this->_fields, $defaults);
90
6a488035
TO
91 return $defaults;
92 }
93
94 /**
c490a46a 95 * Build the form object
6a488035
TO
96 *
97 * @return void
6a488035
TO
98 */
99 public function buildQuickForm() {
100 foreach ($this->_fields as $name => $field) {
a7488080 101 if (empty($field['is_view'])) {
6a488035
TO
102 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE);
103 }
104 }
105 }
106
624e56fa
EM
107 /**
108 * Use the form name to create the tpl file name
109 *
110 * @return string
624e56fa
EM
111 */
112 /**
113 * @return string
114 */
6a488035
TO
115 public function getTemplateFileName() {
116 return 'CRM/UF/Form/Preview.tpl';
117 }
118}