Merge pull request #3208 from eileenmcnaughton/comments
[civicrm-core.git] / CRM / Core / BAO / LabelFormat.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
06b69b18 4 | CiviCRM version 4.5 |
6a488035
TO
5 +--------------------------------------------------------------------+
6 | Copyright (C) 2011 Marty Wright |
7 | Licensed to CiviCRM under the Academic Free License version 3.0. |
8 +--------------------------------------------------------------------+
9 | This file is a part of CiviCRM. |
10 | |
11 | CiviCRM is free software; you can copy, modify, and distribute it |
12 | under the terms of the GNU Affero General Public License |
13 | Version 3, 19 November 2007 and the CiviCRM Licensing Exception. |
14 | |
15 | CiviCRM is distributed in the hope that it will be useful, but |
16 | WITHOUT ANY WARRANTY; without even the implied warranty of |
17 | MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. |
18 | See the GNU Affero General Public License for more details. |
19 | |
20 | You should have received a copy of the GNU Affero General Public |
21 | License and the CiviCRM Licensing Exception along |
22 | with this program; if not, contact CiviCRM LLC |
23 | at info[AT]civicrm[DOT]org. If you have questions about the |
24 | GNU Affero General Public License or the licensing of CiviCRM, |
25 | see the CiviCRM license FAQ at http://civicrm.org/licensing |
26 +--------------------------------------------------------------------+
27*/
28
29/**
30 *
31 * @package CRM
06b69b18 32 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
33 * $Id$
34 *
35 */
36
37/**
38 * This class contains functions for managing Label Formats
39 */
40class CRM_Core_BAO_LabelFormat extends CRM_Core_DAO_OptionValue {
41
42 /**
43 * static holder for the Label Formats Option Group ID
44 */
45 private static $_gid = NULL;
46
47 /**
48 * Label Format fields stored in the 'value' field of the Option Value table.
49 */
50 private static $optionValueFields = array(
51 'paper-size' => array(
52 // Paper size: names defined in option_value table (option_group = 'paper_size')
53 'name' => 'paper-size',
54 'type' => CRM_Utils_Type::T_STRING,
55 'default' => 'letter',
56 ),
57 'orientation' => array(
58 // Paper orientation: 'portrait' or 'landscape'
59 'name' => 'orientation',
60 'type' => CRM_Utils_Type::T_STRING,
61 'default' => 'portrait',
62 ),
63 'font-name' => array(
64 // Font name: 'courier', 'helvetica', 'times'
65 'name' => 'font-name',
66 'type' => CRM_Utils_Type::T_STRING,
67 'default' => 'helvetica',
68 ),
69 'font-size' => array(
70 // Font size: always in points
71 'name' => 'font-size',
72 'type' => CRM_Utils_Type::T_INT,
73 'default' => 8,
74 ),
75 'font-style' => array(
76 // Font style: 'B' bold, 'I' italic, 'BI' bold+italic
77 'name' => 'font-style',
78 'type' => CRM_Utils_Type::T_STRING,
79 'default' => '',
80 ),
81 'NX' => array(
82 // Number of labels horizontally
83 'name' => 'NX',
84 'type' => CRM_Utils_Type::T_INT,
85 'default' => 3,
86 ),
87 'NY' => array(
88 // Number of labels vertically
89 'name' => 'NY',
90 'type' => CRM_Utils_Type::T_INT,
91 'default' => 10,
92 ),
93 'metric' => array(
94 // Unit of measurement for all of the following fields
95 'name' => 'metric',
96 'type' => CRM_Utils_Type::T_STRING,
97 'default' => 'mm',
98 ),
99 'lMargin' => array(
100 // Left margin
101 'name' => 'lMargin',
102 'type' => CRM_Utils_Type::T_FLOAT,
103 'metric' => TRUE,
104 'default' => 4.7625,
105 ),
106 'tMargin' => array(
107 // Right margin
108 'name' => 'tMargin',
109 'type' => CRM_Utils_Type::T_FLOAT,
110 'metric' => TRUE,
111 'default' => 12.7,
112 ),
113 'SpaceX' => array(
114 // Horizontal space between two labels
115 'name' => 'SpaceX',
116 'type' => CRM_Utils_Type::T_FLOAT,
117 'metric' => TRUE,
118 'default' => 3.96875,
119 ),
120 'SpaceY' => array(
121 // Vertical space between two labels
122 'name' => 'SpaceY',
123 'type' => CRM_Utils_Type::T_FLOAT,
124 'metric' => TRUE,
125 'default' => 0,
126 ),
127 'width' => array(
128 // Width of label
129 'name' => 'width',
130 'type' => CRM_Utils_Type::T_FLOAT,
131 'metric' => TRUE,
132 'default' => 65.875,
133 ),
134 'height' => array(
135 // Height of label
136 'name' => 'height',
137 'type' => CRM_Utils_Type::T_FLOAT,
138 'metric' => TRUE,
139 'default' => 25.4,
140 ),
141 'lPadding' => array(
142 // Space between text and left edge of label
143 'name' => 'lPadding',
144 'type' => CRM_Utils_Type::T_FLOAT,
145 'metric' => TRUE,
146 'default' => 5.08,
147 ),
148 'tPadding' => array(
149 // Space between text and top edge of label
150 'name' => 'tPadding',
151 'type' => CRM_Utils_Type::T_FLOAT,
152 'metric' => TRUE,
153 'default' => 5.08,
154 ),
155 );
156
157 /**
158 * Get page orientations recognized by the DOMPDF package used to create PDF letters.
159 *
160 * @param void
161 *
162 * @return array array of page orientations
163 * @access public
01d7cdd8 164 * @static
6a488035 165 */
01d7cdd8 166 public static function getPageOrientations() {
6a488035
TO
167 return array(
168 'portrait' => ts('Portrait'),
169 'landscape' => ts('Landscape'),
170 );
171 }
172
173 /**
174 * Get font names supported by the TCPDF package used to create PDF labels.
175 *
eaf5045f 176 * @param string $name group name
6a488035
TO
177 *
178 * @return array array of font names
179 * @access public
01d7cdd8 180 * @static
6a488035 181 */
eaf5045f
KJ
182 public static function getFontNames($name='label_format') {
183 $label = new CRM_Utils_PDF_Label(self::getDefaultValues($name));
6a488035
TO
184 return $label->getFontNames();
185 }
186
187 /**
188 * Get font sizes supported by the TCPDF package used to create PDF labels.
189 *
190 * @param void
191 *
192 * @return array array of font sizes
193 * @access public
01d7cdd8 194 * @static
6a488035 195 */
01d7cdd8 196 public static function getFontSizes() {
b4a3ab6f 197 $fontSizes = array();
ccc0db8c 198 for ($i = 6; $i <= 60; $i++) {
199 $fontSizes[$i] = ts('%1 pt', array(1 => $i));
b4a3ab6f 200 }
201
202 return $fontSizes;
6a488035
TO
203 }
204
205 /**
206 * Get measurement units recognized by the TCPDF package used to create PDF labels.
207 *
208 * @param void
209 *
210 * @return array array of measurement units
211 * @access public
01d7cdd8 212 * @static
6a488035 213 */
01d7cdd8 214 public static function getUnits() {
6a488035
TO
215 return array(
216 'in' => ts('Inches'),
217 'cm' => ts('Centimeters'),
218 'mm' => ts('Millimeters'),
219 'pt' => ts('Points'),
220 );
221 }
222
636f1cbe
KJ
223 /**
224 * Get text alignment recognized by the TCPDF package used to create PDF labels.
225 *
226 * @param void
227 *
228 * @return array array of alignments
229 * @access public
230 * @static
231 */
232 public static function getTextAlignments() {
233 return array(
234 'R' => ts('Right'),
235 'L' => ts('Left'),
1b1d29d8 236 'C' => ts('Center'),
636f1cbe
KJ
237 );
238 }
239
0bc1ba89 240 /**
241 * Get text alignment recognized by the TCPDF package used to create PDF labels.
242 *
243 * @param void
244 *
245 * @return array array of alignments
246 * @access public
247 * @static
248 */
249 public static function getFontStyles() {
250 return array(
251 '' => ts('Normal'),
252 'B' => ts('Bold'),
253 'I' => ts('Italic'),
254 );
255 }
256
6a488035
TO
257 /**
258 * Get Option Group ID for Label Formats
259 *
260 * @param void
261 *
262 * @return int Group ID (null if Group ID doesn't exist)
263 * @access private
264 */
eaf5045f
KJ
265 private static function _getGid($name='label_format') {
266 if (!isset(self::$_gid[$name]) || !self::$_gid[$name]) {
267 self::$_gid[$name] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $name, 'id', 'name');
268 if (!self::$_gid[$name]) {
6a488035
TO
269 CRM_Core_Error::fatal(ts('Label Format Option Group not found in database.'));
270 }
271 }
eaf5045f 272 return self::$_gid[$name];
6a488035
TO
273 }
274
275 /**
276 * Add ordering fields to Label Format list
277 *
278 * @param array (reference) $list List of Label Formats
279 * @param string $returnURL URL of page calling this function
280 *
281 * @return array (reference) List of Label Formats
282 * @static
283 * @access public
284 */
285 static function addOrder(&$list, $returnURL) {
286 $filter = "option_group_id = " . self::_getGid();
287 CRM_Utils_Weight::addOrder($list, 'CRM_Core_DAO_OptionValue', 'id', $returnURL, $filter);
288 }
289
290 /**
291 * Retrieve list of Label Formats.
292 *
293 * @param bool $namesOnly return simple list of names
4f1ddb25 294 * @param string $groupName group name of the label format option group
6a488035
TO
295 *
296 * @return array (reference) label format list
297 * @static
298 * @access public
299 */
4f1ddb25 300 static function &getList($namesOnly = FALSE, $groupName='label_format') {
6a488035 301 static $list = array();
4f1ddb25 302 if (self::_getGid($groupName)) {
6a488035
TO
303 // get saved label formats from Option Value table
304 $dao = new CRM_Core_DAO_OptionValue();
4f1ddb25 305 $dao->option_group_id = self::_getGid($groupName);
6a488035
TO
306 $dao->is_active = 1;
307 $dao->orderBy('weight');
308 $dao->find();
309 while ($dao->fetch()) {
310 if ($namesOnly) {
4f1ddb25 311 $list[$groupName][$dao->name] = $dao->label;
6a488035
TO
312 }
313 else {
4f1ddb25 314 CRM_Core_DAO::storeValues($dao, $list[$groupName][$dao->id]);
6a488035
TO
315 }
316 }
317 }
4f1ddb25 318 return $list[$groupName];
6a488035
TO
319 }
320
321 /**
322 * retrieve the default Label Format values
323 *
eaf5045f 324 * @param string $groupName label format group name
6a488035
TO
325 *
326 * @return array Name/value pairs containing the default Label Format values.
327 * @static
328 * @access public
329 */
eaf5045f 330 static function &getDefaultValues($groupName = 'label_format') {
6a488035
TO
331 $params = array('is_active' => 1, 'is_default' => 1);
332 $defaults = array();
eaf5045f 333 if (!self::retrieve($params, $defaults, $groupName)) {
6a488035
TO
334 foreach (self::$optionValueFields as $name => $field) {
335 $defaults[$name] = $field['default'];
336 }
eaf5045f 337 $filter = array('option_group_id' => self::_getGid($groupName));
6a488035
TO
338 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue', $filter);
339 }
340 return $defaults;
341 }
342
343 /**
344 * Get Label Format from the DB
345 *
346 * @param string $field Field name to search by
347 * @param int $val Field value to search for
348 *
349 * @return array $values (reference) associative array of name/value pairs
350 * @access public
351 */
eaf5045f 352 static function &getLabelFormat($field, $val, $groupName = 'label_format') {
6a488035
TO
353 $params = array('is_active' => 1, $field => $val);
354 $labelFormat = array();
eaf5045f 355 if (self::retrieve($params, $labelFormat, $groupName)) {
6a488035
TO
356 return $labelFormat;
357 }
358 else {
eaf5045f 359 return self::getDefaultValues($groupName);
6a488035
TO
360 }
361 }
362
363 /**
364 * Get Label Format by Name
365 *
366 * @param int $name Label format name. Empty = get default label format
367 *
368 * @return array $values (reference) associative array of name/value pairs
369 * @access public
370 */
371 static function &getByName($name) {
372 return self::getLabelFormat('name', $name);
373 }
374
375 /**
376 * Get Label Format by ID
377 *
378 * @param int $id label format id. 0 = get default label format
eaf5045f 379 * @param string $groupName group name
6a488035
TO
380 *
381 * @return array $values (reference) associative array of name/value pairs
382 * @access public
383 */
eaf5045f
KJ
384 static function &getById($id, $groupName = 'label_format') {
385 return self::getLabelFormat('id', $id, $groupName);
6a488035
TO
386 }
387
388 /**
389 * Get Label Format field from associative array
390 *
391 * @param string $field name of a label format field
392 * @param array (reference) $values associative array of name/value pairs containing
393 * label format field selections
394 *
395 * @return value
396 * @access public
397 * @static
398 */
399 static function getValue($field, &$values, $default = NULL) {
400 if (array_key_exists($field, self::$optionValueFields)) {
401 switch (self::$optionValueFields[$field]['type']) {
402 case CRM_Utils_Type::T_INT:
403 return (int)CRM_Utils_Array::value($field, $values, $default);
404
405 case CRM_Utils_Type::T_FLOAT:
406 // Round float values to three decimal places and trim trailing zeros.
407 // Add a leading zero to values less than 1.
408 $f = sprintf('%05.3f', $values[$field]);
409 $f = rtrim($f, '0');
410 $f = rtrim($f, '.');
411 return (float)(empty($f) ? '0' : $f);
412 }
413 return CRM_Utils_Array::value($field, $values, $default);
414 }
415 return $default;
416 }
417
418 /**
419 * Takes a bunch of params that are needed to match certain criteria and
420 * retrieves the relevant objects. Typically the valid params are only
421 * label id. It also stores all the retrieved values in the default array.
422 *
423 * @param array $params (reference ) an assoc array of name/value pairs
424 * @param array $values (reference ) an assoc array to hold the flattened values
425 *
426 * @return object CRM_Core_DAO_OptionValue object
427 * @access public
428 * @static
429 */
eaf5045f 430 static function retrieve(&$params, &$values, $groupName='label_format') {
6a488035
TO
431 $optionValue = new CRM_Core_DAO_OptionValue();
432 $optionValue->copyValues($params);
eaf5045f 433 $optionValue->option_group_id = self::_getGid($groupName);
6a488035
TO
434 if ($optionValue->find(TRUE)) {
435 // Extract fields that have been serialized in the 'value' column of the Option Value table.
436 $values = json_decode($optionValue->value, TRUE);
437 // Add any new fields that don't yet exist in the saved values.
438 foreach (self::$optionValueFields as $name => $field) {
439 if (!isset($values[$name])) {
440 $values[$name] = $field['default'];
441 if ($field['metric']) {
442 $values[$name] = CRM_Utils_PDF_Utils::convertMetric($field['default'],
443 self::$optionValueFields['metric']['default'],
444 $values['metric'], 3
445 );
446 }
447 }
448 }
449 // Add fields from the OptionValue base class
450 CRM_Core_DAO::storeValues($optionValue, $values);
451 return $optionValue;
452 }
453 return NULL;
454 }
455
456 /**
457 * Return the name of the group for customized labels
458 *
459 * @param void
460 *
461 * @return void
462 * @access public
463 */
4f1ddb25 464 public static function customGroupName() {
6a488035
TO
465 return ts('Custom');
466 }
467
468 /**
469 * Save the Label Format in the DB
470 *
471 * @param array (reference) $values associative array of name/value pairs
472 * @param int $id id of the database record (null = new record)
eaf5045f 473 * @param string $groupName group name of the label format
6a488035
TO
474 *
475 * @return void
476 * @access public
477 */
eaf5045f 478 function saveLabelFormat(&$values, $id = NULL, $groupName = 'label_format') {
6a488035 479 // get the Option Group ID for Label Formats (create one if it doesn't exist)
eaf5045f 480 $group_id = self::_getGid($groupName);
6a488035
TO
481
482 // clear other default if this is the new default label format
483 if ($values['is_default']) {
484 $query = "UPDATE civicrm_option_value SET is_default = 0 WHERE option_group_id = $group_id";
485 CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray);
486 }
487 if ($id) {
488 // fetch existing record
489 $this->id = $id;
490 if ($this->find()) {
491 $this->fetch();
492 }
493 }
494 else {
495 // new record
eaf5045f 496 $list = self::getList(TRUE,$groupName);
6a488035
TO
497 $cnt = 1;
498 while (array_key_exists("custom_$cnt", $list)) $cnt++;
499 $values['name'] = "custom_$cnt";
500 $values['grouping'] = self::customGroupName();
501 }
502 // copy the supplied form values to the corresponding Option Value fields in the base class
503 foreach ($this->fields() as $name => $field) {
504 $this->$name = trim(CRM_Utils_Array::value($name, $values, $this->$name));
505 if (empty($this->$name)) {
506 $this->$name = 'null';
507 }
508 }
509 $this->id = $id;
510 $this->option_group_id = $group_id;
511 $this->is_active = 1;
512
513 // serialize label format fields into a single string to store in the 'value' column of the Option Value table
514 $v = json_decode($this->value, TRUE);
515 foreach (self::$optionValueFields as $name => $field) {
8e9fd9e4 516 if (!isset($v[$name])) {
517 $v[$name] = NULL;
518 }
6a488035
TO
519 $v[$name] = self::getValue($name, $values, $v[$name]);
520 }
521 $this->value = json_encode($v);
522
523 // make sure serialized array will fit in the 'value' column
524 $attribute = CRM_Core_DAO::getAttribute('CRM_Core_BAO_LabelFormat', 'value');
525 if (strlen($this->value) > $attribute['maxlength']) {
526 CRM_Core_Error::fatal(ts('Label Format does not fit in database.'));
527 }
528 $this->save();
529
530 // fix duplicate weights
531 $filter = array('option_group_id' => self::_getGid());
532 CRM_Utils_Weight::correctDuplicateWeights('CRM_Core_DAO_OptionValue', $filter);
533 }
534
535 /**
536 * Function to delete a Label Format
537 *
538 * @param int $id ID of the label format to be deleted.
eaf5045f 539 * @param string $groupName group name
6a488035
TO
540 * @access public
541 * @static
542 */
eaf5045f 543 static function del($id, $groupName) {
6a488035
TO
544 if ($id) {
545 $dao = new CRM_Core_DAO_OptionValue();
546 $dao->id = $id;
547 if ($dao->find(TRUE)) {
eaf5045f
KJ
548 if ($dao->option_group_id == self::_getGid($groupName)) {
549 $filter = array('option_group_id' => self::_getGid($groupName));
6a488035
TO
550 CRM_Utils_Weight::delWeight('CRM_Core_DAO_OptionValue', $id, $filter);
551 $dao->delete();
552 return;
553 }
554 }
555 }
556 CRM_Core_Error::fatal(ts('Invalid value passed to delete function.'));
557 }
558}
559