further comment fixes
[civicrm-core.git] / CRM / Badge / Form / Layout.php
CommitLineData
50998125
KJ
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
50998125 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
50998125
KJ
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 */
50998125
KJ
27
28/**
29 *
30 * @package CRM
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
50998125
KJ
32 */
33
34/**
ce064e4f 35 * This class generates form components for name badge layout.
50998125
KJ
36 */
37class CRM_Badge_Form_Layout extends CRM_Admin_Form {
38
ea343109 39 const FIELD_ROWCOUNT = 6;
353ffa53 40
50998125 41 /**
eceb18cc 42 * Build the form object.
50998125
KJ
43 */
44 public function buildQuickForm() {
50998125 45 if ($this->_action & CRM_Core_Action::DELETE) {
a1f552a9 46 return parent::buildQuickForm();
50998125
KJ
47 }
48
d87c3006
KJ
49 $config = CRM_Core_Config::singleton();
50 $resources = CRM_Core_Resources::singleton();
51 $resources->addSetting(
52 array(
21dfd5f5 53 'kcfinderPath' => $config->userFrameworkResourceURL . 'packages' . DIRECTORY_SEPARATOR,
d87c3006
KJ
54 )
55 );
96ed17aa 56 $resources->addScriptFile('civicrm', 'templates/CRM/Badge/Form/Layout.js', 1, 'html-header');
d87c3006 57
50998125 58 $this->applyFilter('__ALL__', 'trim');
636f1cbe 59
3a872e59 60 $this->add('text', 'title', ts('Title'), CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'), TRUE);
636f1cbe 61
d34dbf05 62 $labelStyle = CRM_Core_BAO_LabelFormat::getList(TRUE, 'name_badge');
15cb4bd7 63 $this->add('select', 'label_format_name', ts('Label Format'), array('' => ts('- select -')) + $labelStyle, TRUE);
636f1cbe
KJ
64
65 $this->add('text', 'description', ts('Description'),
2df183e7 66 CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
636f1cbe
KJ
67
68 // get the tokens
012ee9a8 69 $contactTokens = CRM_Core_SelectValues::contactTokens();
f5ea9580 70 $eventTokens = array(
71 '{event.event_id}' => ts('Event ID'),
72 '{event.title}' => ts('Event Title'),
73 '{event.start_date}' => ts('Event Start Date'),
21dfd5f5 74 '{event.end_date}' => ts('Event End Date'),
f5ea9580 75 );
ea921622
KJ
76 $participantTokens = CRM_Core_SelectValues::participantTokens();
77
78 $tokens = array_merge($contactTokens, $eventTokens, $participantTokens);
636f1cbe
KJ
79 asort($tokens);
80
50f52554 81 $tokens = array_merge(array('spacer' => ts('- spacer -')) + $tokens);
82
636f1cbe 83 $fontSizes = CRM_Core_BAO_LabelFormat::getFontSizes();
0bc1ba89 84 $fontStyles = CRM_Core_BAO_LabelFormat::getFontStyles();
636f1cbe
KJ
85 $fontNames = CRM_Core_BAO_LabelFormat::getFontNames('name_badge');
86 $textAlignment = CRM_Core_BAO_LabelFormat::getTextAlignments();
609df1ed 87 $imageAlignment = $textAlignment;
e0ef6999 88 unset($imageAlignment['C']);
636f1cbe 89
ea343109 90 $rowCount = self::FIELD_ROWCOUNT;
481a74f4 91 for ($i = 1; $i <= $rowCount; $i++) {
50f52554 92 $this->add('select', "token[$i]", ts('Token'), array('' => ts('- skip -')) + $tokens);
636f1cbe
KJ
93 $this->add('select', "font_name[$i]", ts('Font Name'), $fontNames);
94 $this->add('select', "font_size[$i]", ts('Font Size'), $fontSizes);
0bc1ba89 95 $this->add('select', "font_style[$i]", ts('Font Style'), $fontStyles);
636f1cbe
KJ
96 $this->add('select', "text_alignment[$i]", ts('Alignment'), $textAlignment);
97 }
98 $rowCount++;
99 $this->assign('rowCount', $rowCount);
100
f38395f7 101 $barcodeTypes = CRM_Core_SelectValues::getBarcodeTypes();
636f1cbe 102 $this->add('checkbox', 'add_barcode', ts('Barcode?'));
f38395f7 103 $this->add('select', "barcode_type", ts('Type'), $barcodeTypes);
636f1cbe
KJ
104 $this->add('select', "barcode_alignment", ts('Alignment'), $textAlignment);
105
3a872e59 106 $attributes = array('readonly' => TRUE);
b82c9857 107 $this->add('text', 'image_1', ts('Image (top left)'),
8367d0c5 108 $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
efdb8203 109 $this->add('text', 'width_image_1', ts('Width (mm)'), array('size' => 6));
110 $this->add('text', 'height_image_1', ts('Height (mm)'), array('size' => 6));
07d113b7 111
b82c9857 112 $this->add('text', 'image_2', ts('Image (top right)'),
8367d0c5 113 $attributes + CRM_Core_DAO::getAttribute('CRM_Core_DAO_PrintLabel', 'title'));
efdb8203 114 $this->add('text', 'width_image_2', ts('Width (mm)'), array('size' => 6));
115 $this->add('text', 'height_image_2', ts('Height (mm)'), array('size' => 6));
d87c3006 116
609df1ed 117 $this->add('checkbox', 'show_participant_image', ts('Use Participant Image?'));
cf723d2e
M
118 $this->add('text', 'width_participant_image', ts('Width (mm)'), array('size' => 6));
119 $this->add('text', 'height_participant_image', ts('Height (mm)'), array('size' => 6));
609df1ed 120 $this->add('select', "alignment_participant_image", ts('Image Alignment'), $imageAlignment);
cf723d2e 121
50998125 122 $this->add('checkbox', 'is_default', ts('Default?'));
636f1cbe
KJ
123 $this->add('checkbox', 'is_active', ts('Enabled?'));
124 $this->add('checkbox', 'is_reserved', ts('Reserved?'));
890a1fbb 125
50f52554 126 $this->addRule('width_image_1', ts('Enter valid width'), 'positiveInteger');
127 $this->addRule('width_image_2', ts('Enter valid width'), 'positiveInteger');
128 $this->addRule('height_image_1', ts('Enter valid height'), 'positiveInteger');
129 $this->addRule('height_image_2', ts('Enter valid height'), 'positiveInteger');
cf723d2e
M
130 $this->addRule('height_participant_image', ts('Enter valid height'), 'positiveInteger');
131 $this->addRule('width_participant_image', ts('Enter valid height'), 'positiveInteger');
6d4a64c8
KJ
132
133 $this->addButtons(array(
134 array(
135 'type' => 'next',
136 'name' => ts('Save'),
137 'isDefault' => TRUE,
138 ),
139 array(
140 'type' => 'refresh',
141 'name' => ts('Save and Preview'),
142 ),
143 array(
144 'type' => 'cancel',
145 'name' => ts('Cancel'),
146 ),
147 )
148 );
890a1fbb
KJ
149 }
150
636f1cbe 151 /**
ce064e4f 152 * Set default values for the form.
636f1cbe 153 */
00be9182 154 public function setDefaultValues() {
ea921622 155 if (isset($this->_id)) {
2df183e7
KJ
156 $defaults = array_merge($this->_values,
157 CRM_Badge_BAO_Layout::getDecodedData($this->_values['data']));
158 }
3c7ab739 159 else {
ea343109 160 for ($i = 1; $i <= self::FIELD_ROWCOUNT; $i++) {
3c7ab739
KJ
161 $defaults['text_alignment'][$i] = "C";
162 }
163 }
d87c3006 164
636f1cbe
KJ
165 if ($this->_action == CRM_Core_Action::DELETE && isset($defaults['title'])) {
166 $this->assign('delName', $defaults['title']);
167 }
168
169 // its ok if there is no element called is_active
170 $defaults['is_active'] = ($this->_id) ? CRM_Utils_Array::value('is_active', $defaults) : 1;
171
172 return $defaults;
50998125
KJ
173 }
174
175 /**
eceb18cc 176 * Process the form submission.
50998125
KJ
177 */
178 public function postProcess() {
636f1cbe
KJ
179 if ($this->_action & CRM_Core_Action::DELETE) {
180 CRM_Badge_BAO_Layout::del($this->_id);
181 CRM_Core_Session::setStatus(ts('Selected badge layout has been deleted.'), ts('Record Deleted'), 'success');
182 return;
183 }
184
6d4a64c8 185 $params = $data = $this->exportValues();
636f1cbe
KJ
186
187 unset($data['qfKey']);
188 $params['data'] = json_encode($data);
189
190 if ($this->_id) {
191 $params['id'] = $this->_id;
192 }
193
194 // store the submitted values in an array
6d4a64c8
KJ
195 $badgeInfo = CRM_Badge_BAO_Layout::create($params);
196
197 if (isset($params['_qf_Layout_refresh'])) {
1a502055 198 $this->set('id', $badgeInfo->id);
6d4a64c8
KJ
199 $params['badge_id'] = $badgeInfo->id;
200 self::buildPreview($params);
201 }
202 else {
203 CRM_Core_Session::setStatus(ts("The badge layout '%1' has been saved.",
204 array(1 => $params['title'])
205 ), ts('Saved'), 'success');
206 }
207 }
208
e0ef6999 209 /**
c490a46a 210 * @param array $params
e0ef6999 211 */
6d4a64c8
KJ
212 public function buildPreview(&$params) {
213 // get a max participant id
214 $participantID = CRM_Core_DAO::singleValueQuery('select max(id) from civicrm_participant');
215
1a502055
KJ
216 if (!$participantID) {
217 CRM_Core_Session::setStatus(ts('Preview requires at least one event and one participant record.
218 If you are just getting started, you can add a test participant record.'), ts('Preview Requirements'), 'alert');
219 return;
220 }
221
6d4a64c8
KJ
222 $this->_single = TRUE;
223 $this->_participantIds = array($participantID);
224 $this->_componentClause = " civicrm_participant.id = $participantID ";
636f1cbe 225
6d4a64c8 226 CRM_Badge_BAO_Badge::buildBadges($params, $this);
50998125 227 }
96025800 228
50998125 229}