INFRA-132 - Comment grammar cleanup
[civicrm-core.git] / CRM / Core / BAO / LabelFormat.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
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 /**
100fef9d 43 * Static holder for the Label Formats Option Group ID
6a488035
TO
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
01d7cdd8 163 * @static
6a488035 164 */
01d7cdd8 165 public static function getPageOrientations() {
6a488035
TO
166 return array(
167 'portrait' => ts('Portrait'),
168 'landscape' => ts('Landscape'),
169 );
170 }
171
172 /**
173 * Get font names supported by the TCPDF package used to create PDF labels.
174 *
6a0b768e
TO
175 * @param string $name
176 * Group name.
6a488035
TO
177 *
178 * @return array array of font names
01d7cdd8 179 * @static
6a488035 180 */
d3e86119 181 public static function getFontNames($name = 'label_format') {
eaf5045f 182 $label = new CRM_Utils_PDF_Label(self::getDefaultValues($name));
6a488035
TO
183 return $label->getFontNames();
184 }
185
186 /**
187 * Get font sizes supported by the TCPDF package used to create PDF labels.
188 *
189 * @param void
190 *
191 * @return array array of font sizes
01d7cdd8 192 * @static
6a488035 193 */
01d7cdd8 194 public static function getFontSizes() {
b4a3ab6f 195 $fontSizes = array();
ccc0db8c 196 for ($i = 6; $i <= 60; $i++) {
197 $fontSizes[$i] = ts('%1 pt', array(1 => $i));
b4a3ab6f 198 }
199
200 return $fontSizes;
6a488035
TO
201 }
202
203 /**
204 * Get measurement units recognized by the TCPDF package used to create PDF labels.
205 *
206 * @param void
207 *
208 * @return array array of measurement units
01d7cdd8 209 * @static
6a488035 210 */
01d7cdd8 211 public static function getUnits() {
6a488035
TO
212 return array(
213 'in' => ts('Inches'),
214 'cm' => ts('Centimeters'),
215 'mm' => ts('Millimeters'),
216 'pt' => ts('Points'),
217 );
218 }
219
636f1cbe
KJ
220 /**
221 * Get text alignment recognized by the TCPDF package used to create PDF labels.
222 *
223 * @param void
224 *
225 * @return array array of alignments
636f1cbe
KJ
226 * @static
227 */
228 public static function getTextAlignments() {
229 return array(
230 'R' => ts('Right'),
231 'L' => ts('Left'),
1b1d29d8 232 'C' => ts('Center'),
636f1cbe
KJ
233 );
234 }
235
0bc1ba89 236 /**
237 * Get text alignment recognized by the TCPDF package used to create PDF labels.
238 *
239 * @param void
240 *
241 * @return array array of alignments
0bc1ba89 242 * @static
243 */
244 public static function getFontStyles() {
245 return array(
246 '' => ts('Normal'),
247 'B' => ts('Bold'),
248 'I' => ts('Italic'),
249 );
250 }
251
6a488035
TO
252 /**
253 * Get Option Group ID for Label Formats
254 *
77b97be7
EM
255 * @param string $name
256 *
6a488035 257 * @return int Group ID (null if Group ID doesn't exist)
6a488035 258 */
d3e86119 259 private static function _getGid($name = 'label_format') {
eaf5045f
KJ
260 if (!isset(self::$_gid[$name]) || !self::$_gid[$name]) {
261 self::$_gid[$name] = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', $name, 'id', 'name');
262 if (!self::$_gid[$name]) {
6a488035
TO
263 CRM_Core_Error::fatal(ts('Label Format Option Group not found in database.'));
264 }
265 }
eaf5045f 266 return self::$_gid[$name];
6a488035
TO
267 }
268
269 /**
270 * Add ordering fields to Label Format list
271 *
6a0b768e
TO
272 * @param array (reference) $list List of Label Formats
273 * @param string $returnURL
274 * URL of page calling this function.
6a488035
TO
275 *
276 * @return array (reference) List of Label Formats
277 * @static
6a488035 278 */
00be9182 279 public static function addOrder(&$list, $returnURL) {
6a488035
TO
280 $filter = "option_group_id = " . self::_getGid();
281 CRM_Utils_Weight::addOrder($list, 'CRM_Core_DAO_OptionValue', 'id', $returnURL, $filter);
282 }
283
284 /**
285 * Retrieve list of Label Formats.
286 *
6a0b768e
TO
287 * @param bool $namesOnly
288 * Return simple list of names.
289 * @param string $groupName
290 * Group name of the label format option group.
6a488035
TO
291 *
292 * @return array (reference) label format list
293 * @static
6a488035 294 */
d3e86119 295 public static function &getList($namesOnly = FALSE, $groupName = 'label_format') {
6a488035 296 static $list = array();
4f1ddb25 297 if (self::_getGid($groupName)) {
6a488035
TO
298 // get saved label formats from Option Value table
299 $dao = new CRM_Core_DAO_OptionValue();
4f1ddb25 300 $dao->option_group_id = self::_getGid($groupName);
6a488035
TO
301 $dao->is_active = 1;
302 $dao->orderBy('weight');
303 $dao->find();
304 while ($dao->fetch()) {
305 if ($namesOnly) {
4f1ddb25 306 $list[$groupName][$dao->name] = $dao->label;
6a488035
TO
307 }
308 else {
4f1ddb25 309 CRM_Core_DAO::storeValues($dao, $list[$groupName][$dao->id]);
6a488035
TO
310 }
311 }
312 }
4f1ddb25 313 return $list[$groupName];
6a488035
TO
314 }
315
316 /**
100fef9d 317 * Retrieve the default Label Format values
6a488035 318 *
6a0b768e
TO
319 * @param string $groupName
320 * Label format group name.
6a488035
TO
321 *
322 * @return array Name/value pairs containing the default Label Format values.
323 * @static
6a488035 324 */
00be9182 325 public static function &getDefaultValues($groupName = 'label_format') {
6a488035
TO
326 $params = array('is_active' => 1, 'is_default' => 1);
327 $defaults = array();
eaf5045f 328 if (!self::retrieve($params, $defaults, $groupName)) {
6a488035
TO
329 foreach (self::$optionValueFields as $name => $field) {
330 $defaults[$name] = $field['default'];
331 }
eaf5045f 332 $filter = array('option_group_id' => self::_getGid($groupName));
6a488035
TO
333 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue', $filter);
334 }
335 return $defaults;
336 }
337
338 /**
339 * Get Label Format from the DB
340 *
6a0b768e
TO
341 * @param string $field
342 * Field name to search by.
343 * @param int $val
344 * Field value to search for.
77b97be7
EM
345 *
346 * @param string $groupName
6a488035
TO
347 *
348 * @return array $values (reference) associative array of name/value pairs
6a488035 349 */
00be9182 350 public static function &getLabelFormat($field, $val, $groupName = 'label_format') {
6a488035
TO
351 $params = array('is_active' => 1, $field => $val);
352 $labelFormat = array();
eaf5045f 353 if (self::retrieve($params, $labelFormat, $groupName)) {
6a488035
TO
354 return $labelFormat;
355 }
356 else {
eaf5045f 357 return self::getDefaultValues($groupName);
6a488035
TO
358 }
359 }
360
361 /**
362 * Get Label Format by Name
363 *
6a0b768e
TO
364 * @param int $name
365 * Label format name. Empty = get default label format.
6a488035
TO
366 *
367 * @return array $values (reference) associative array of name/value pairs
6a488035 368 */
00be9182 369 public static function &getByName($name) {
6a488035
TO
370 return self::getLabelFormat('name', $name);
371 }
372
373 /**
374 * Get Label Format by ID
375 *
6a0b768e
TO
376 * @param int $id
377 * Label format id. 0 = get default label format.
378 * @param string $groupName
379 * Group name.
6a488035
TO
380 *
381 * @return array $values (reference) associative array of name/value pairs
6a488035 382 */
00be9182 383 public static function &getById($id, $groupName = 'label_format') {
eaf5045f 384 return self::getLabelFormat('id', $id, $groupName);
6a488035
TO
385 }
386
387 /**
388 * Get Label Format field from associative array
389 *
6a0b768e
TO
390 * @param string $field
391 * Name of a label format field.
2a6da8d7 392 * @param array (reference) $values associative array of name/value pairs containing
6a488035
TO
393 * label format field selections
394 *
2a6da8d7
EM
395 * @param null $default
396 *
6a488035 397 * @return value
6a488035
TO
398 * @static
399 */
00be9182 400 public static function getValue($field, &$values, $default = NULL) {
6a488035
TO
401 if (array_key_exists($field, self::$optionValueFields)) {
402 switch (self::$optionValueFields[$field]['type']) {
403 case CRM_Utils_Type::T_INT:
404 return (int)CRM_Utils_Array::value($field, $values, $default);
405
406 case CRM_Utils_Type::T_FLOAT:
407 // Round float values to three decimal places and trim trailing zeros.
408 // Add a leading zero to values less than 1.
409 $f = sprintf('%05.3f', $values[$field]);
410 $f = rtrim($f, '0');
411 $f = rtrim($f, '.');
412 return (float)(empty($f) ? '0' : $f);
413 }
414 return CRM_Utils_Array::value($field, $values, $default);
415 }
416 return $default;
417 }
418
419 /**
420 * Takes a bunch of params that are needed to match certain criteria and
421 * retrieves the relevant objects. Typically the valid params are only
422 * label id. It also stores all the retrieved values in the default array.
423 *
6a0b768e
TO
424 * @param array $params
425 * (reference ) an assoc array of name/value pairs.
426 * @param array $values
427 * (reference ) an assoc array to hold the flattened values.
77b97be7
EM
428 *
429 * @param string $groupName
6a488035 430 *
c490a46a 431 * @return CRM_Core_DAO_OptionValue object
6a488035
TO
432 * @static
433 */
d3e86119 434 public static function retrieve(&$params, &$values, $groupName = 'label_format') {
6a488035
TO
435 $optionValue = new CRM_Core_DAO_OptionValue();
436 $optionValue->copyValues($params);
eaf5045f 437 $optionValue->option_group_id = self::_getGid($groupName);
6a488035
TO
438 if ($optionValue->find(TRUE)) {
439 // Extract fields that have been serialized in the 'value' column of the Option Value table.
440 $values = json_decode($optionValue->value, TRUE);
441 // Add any new fields that don't yet exist in the saved values.
442 foreach (self::$optionValueFields as $name => $field) {
443 if (!isset($values[$name])) {
444 $values[$name] = $field['default'];
445 if ($field['metric']) {
446 $values[$name] = CRM_Utils_PDF_Utils::convertMetric($field['default'],
447 self::$optionValueFields['metric']['default'],
448 $values['metric'], 3
449 );
450 }
451 }
452 }
453 // Add fields from the OptionValue base class
454 CRM_Core_DAO::storeValues($optionValue, $values);
455 return $optionValue;
456 }
457 return NULL;
458 }
459
460 /**
461 * Return the name of the group for customized labels
462 *
463 * @param void
464 *
465 * @return void
6a488035 466 */
4f1ddb25 467 public static function customGroupName() {
6a488035
TO
468 return ts('Custom');
469 }
470
471 /**
472 * Save the Label Format in the DB
473 *
6a0b768e
TO
474 * @param array (reference) $values associative array of name/value pairs
475 * @param int $id
476 * Id of the database record (null = new record).
477 * @param string $groupName
478 * Group name of the label format.
6a488035
TO
479 *
480 * @return void
6a488035 481 */
00be9182 482 public function saveLabelFormat(&$values, $id = NULL, $groupName = 'label_format') {
6a488035 483 // get the Option Group ID for Label Formats (create one if it doesn't exist)
eaf5045f 484 $group_id = self::_getGid($groupName);
6a488035
TO
485
486 // clear other default if this is the new default label format
487 if ($values['is_default']) {
488 $query = "UPDATE civicrm_option_value SET is_default = 0 WHERE option_group_id = $group_id";
489 CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray);
490 }
491 if ($id) {
492 // fetch existing record
493 $this->id = $id;
494 if ($this->find()) {
495 $this->fetch();
496 }
497 }
498 else {
499 // new record
eaf5045f 500 $list = self::getList(TRUE,$groupName);
6a488035
TO
501 $cnt = 1;
502 while (array_key_exists("custom_$cnt", $list)) $cnt++;
503 $values['name'] = "custom_$cnt";
504 $values['grouping'] = self::customGroupName();
505 }
506 // copy the supplied form values to the corresponding Option Value fields in the base class
507 foreach ($this->fields() as $name => $field) {
508 $this->$name = trim(CRM_Utils_Array::value($name, $values, $this->$name));
509 if (empty($this->$name)) {
510 $this->$name = 'null';
511 }
512 }
513 $this->id = $id;
514 $this->option_group_id = $group_id;
515 $this->is_active = 1;
516
517 // serialize label format fields into a single string to store in the 'value' column of the Option Value table
518 $v = json_decode($this->value, TRUE);
519 foreach (self::$optionValueFields as $name => $field) {
8e9fd9e4 520 if (!isset($v[$name])) {
521 $v[$name] = NULL;
522 }
6a488035
TO
523 $v[$name] = self::getValue($name, $values, $v[$name]);
524 }
525 $this->value = json_encode($v);
526
527 // make sure serialized array will fit in the 'value' column
528 $attribute = CRM_Core_DAO::getAttribute('CRM_Core_BAO_LabelFormat', 'value');
529 if (strlen($this->value) > $attribute['maxlength']) {
530 CRM_Core_Error::fatal(ts('Label Format does not fit in database.'));
531 }
532 $this->save();
533
534 // fix duplicate weights
535 $filter = array('option_group_id' => self::_getGid());
536 CRM_Utils_Weight::correctDuplicateWeights('CRM_Core_DAO_OptionValue', $filter);
537 }
538
539 /**
100fef9d 540 * Delete a Label Format
6a488035 541 *
6a0b768e
TO
542 * @param int $id
543 * ID of the label format to be deleted.
544 * @param string $groupName
545 * Group name.
6a488035
TO
546 * @static
547 */
00be9182 548 public static function del($id, $groupName) {
6a488035
TO
549 if ($id) {
550 $dao = new CRM_Core_DAO_OptionValue();
551 $dao->id = $id;
552 if ($dao->find(TRUE)) {
eaf5045f
KJ
553 if ($dao->option_group_id == self::_getGid($groupName)) {
554 $filter = array('option_group_id' => self::_getGid($groupName));
6a488035
TO
555 CRM_Utils_Weight::delWeight('CRM_Core_DAO_OptionValue', $id, $filter);
556 $dao->delete();
557 return;
558 }
559 }
560 }
561 CRM_Core_Error::fatal(ts('Invalid value passed to delete function.'));
562 }
563}