commiting uncommited changes on live site
[weblabels.fsf.org.git] / crm.fsf.org / 20131203 / files / sites / all / modules-old / civicrm / CRM / UF / Form / AbstractPreview.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2015 |
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-2015
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
54 * List of fields per CRM_Core_BAO_UFGroup::formatUFFields or CRM_Core_BAO_UFGroup::getFields.
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 /**
76 * Set the default form values.
77 *
78 *
79 * @return array
80 * the default array reference
81 */
82 public function setDefaultValues() {
83 $defaults = 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
90 //set default for country.
91 CRM_Core_BAO_UFGroup::setRegisterDefaults($this->_fields, $defaults);
92
93 return $defaults;
94 }
95
96 /**
97 * Build the form object.
98 *
99 * @return void
100 */
101 public function buildQuickForm() {
102 foreach ($this->_fields as $name => $field) {
103 if (empty($field['is_view'])) {
104 CRM_Core_BAO_UFGroup::buildProfile($this, $field, CRM_Profile_Form::MODE_CREATE);
105 }
106 }
107 }
108
109 /**
110 * Use the form name to create the tpl file name.
111 *
112 * @return string
113 */
114 /**
115 * @return string
116 */
117 public function getTemplateFileName() {
118 return 'CRM/UF/Form/Preview.tpl';
119 }
120
121 }