INFRA 32 - Batch #17
[civicrm-core.git] / CRM / Core / BAO / PaperSize.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 Paper Sizes
39 */
40class CRM_Core_BAO_PaperSize extends CRM_Core_DAO_OptionValue {
41
42 /**
100fef9d 43 * Static holder for the Paper Size Option Group ID
6a488035
TO
44 */
45 private static $_gid = NULL;
46
47 /**
48 * Paper Size fields stored in the 'value' field of the Option Value table.
49 */
50 private static $optionValueFields = array(
51 'metric' => array(
52 'name' => 'metric',
53 'type' => CRM_Utils_Type::T_STRING,
54 'default' => 'mm',
55 ),
56 'width' => array(
57 'name' => 'width',
58 'type' => CRM_Utils_Type::T_FLOAT,
59 'metric' => TRUE,
60 'default' => 612,
61 ),
62 'height' => array(
63 'name' => 'height',
64 'type' => CRM_Utils_Type::T_FLOAT,
65 'metric' => TRUE,
66 'default' => 792,
67 ),
68 );
69
70 /**
71 * Get Option Group ID for Paper Sizes
72 *
a6c01b45
CW
73 * @return int
74 * Group ID (null if Group ID doesn't exist)
6a488035 75 */
a5611c8e 76 private static function _getGid() {
6a488035
TO
77 if (!self::$_gid) {
78 self::$_gid = CRM_Core_DAO::getFieldValue('CRM_Core_DAO_OptionGroup', 'paper_size', 'id', 'name');
79 if (!self::$_gid) {
80 CRM_Core_Error::fatal(ts('Paper Size Option Group not found in database.'));
81 }
82 }
83 return self::$_gid;
84 }
85
86 /**
87 * Add ordering fields to Paper Size list
88 *
6a0b768e
TO
89 * @param array (reference) $list List of Paper Sizes
90 * @param string $returnURL
91 * URL of page calling this function.
6a488035 92 *
6a488035 93 */
00be9182 94 public static function &addOrder(&$list, $returnURL) {
6a488035
TO
95 $filter = "option_group_id = " . self::_getGid();
96 CRM_Utils_Weight::addOrder($list, 'CRM_Core_DAO_OptionValue', 'id', $returnURL, $filter);
97 }
98
99 /**
100 * Retrieve list of Paper Sizes.
101 *
6a0b768e
TO
102 * @param bool $namesOnly
103 * Return simple list of names.
6a488035 104 *
a6c01b45
CW
105 * @return array
106 * (reference) Paper Size list
6a488035 107 */
00be9182 108 public static function &getList($namesOnly = FALSE) {
6a488035
TO
109 static $list = array();
110 if (self::_getGid()) {
111 // get saved Paper Sizes from Option Value table
112 $dao = new CRM_Core_DAO_OptionValue();
113 $dao->option_group_id = self::_getGid();
114 $dao->is_active = 1;
115 $dao->orderBy('weight');
116 $dao->find();
117 while ($dao->fetch()) {
118 if ($namesOnly) {
119 $list[$dao->name] = $dao->label;
120 }
121 else {
122 CRM_Core_DAO::storeValues($dao, $list[$dao->id]);
123 }
124 }
125 }
126 return $list;
127 }
128
129 /**
100fef9d 130 * Retrieve the default Paper Size values
6a488035 131 *
a6c01b45
CW
132 * @return array
133 * Name/value pairs containing the default Paper Size values.
6a488035 134 */
00be9182 135 public static function &getDefaultValues() {
6a488035
TO
136 $params = array('is_active' => 1, 'is_default' => 1);
137 $defaults = array();
138 if (!self::retrieve($params, $defaults)) {
139 foreach (self::$optionValueFields as $name => $field) {
140 $defaults[$name] = $field['default'];
141 }
142 $filter = array('option_group_id' => self::_getGid());
143 $defaults['weight'] = CRM_Utils_Weight::getDefaultWeight('CRM_Core_DAO_OptionValue', $filter);
144 }
145 return $defaults;
146 }
147
148 /**
149 * Get Paper Size from the DB
150 *
6a0b768e
TO
151 * @param string $field
152 * Field name to search by.
153 * @param int $val
154 * Field value to search for.
6a488035 155 *
a6c01b45
CW
156 * @return array
157 * (reference) associative array of name/value pairs
6a488035 158 */
00be9182 159 public static function &getPaperFormat($field, $val) {
6a488035
TO
160 $params = array('is_active' => 1, $field => $val);
161 $paperFormat = array();
162 if (self::retrieve($params, $paperFormat)) {
163 return $paperFormat;
164 }
165 else {
166 return self::getDefaultValues();
167 }
168 }
169
170 /**
171 * Get Paper Size by Name
172 *
6a0b768e
TO
173 * @param int $name
174 * Paper Size name. Empty = get default Paper Size.
6a488035 175 *
a6c01b45
CW
176 * @return array
177 * (reference) associative array of name/value pairs
6a488035 178 */
00be9182 179 public static function &getByName($name) {
6a488035
TO
180 return self::getPaperFormat('name', $name);
181 }
182
183 /**
184 * Get Paper Size by ID
185 *
6a0b768e
TO
186 * @param int $id
187 * Paper Size id. 0 = get default Paper Size.
6a488035 188 *
a6c01b45
CW
189 * @return array
190 * (reference) associative array of name/value pairs
6a488035 191 */
00be9182 192 public static function &getById($id) {
6a488035
TO
193 return self::getPaperFormat('id', $id);
194 }
195
196 /**
197 * Get Paper Size field from associative array
198 *
6a0b768e
TO
199 * @param string $field
200 * Name of a Paper Size field.
da6b46f4 201 * @param array (reference) $values associative array of name/value pairs containing
6a488035
TO
202 * Paper Size field selections
203 *
da6b46f4
EM
204 * @param null $default
205 *
6a488035 206 * @return value
6a488035 207 */
00be9182 208 public static function getValue($field, &$values, $default = NULL) {
6a488035
TO
209 if (array_key_exists($field, self::$optionValueFields)) {
210 switch (self::$optionValueFields[$field]['type']) {
211 case CRM_Utils_Type::T_INT:
353ffa53 212 return (int) CRM_Utils_Array::value($field, $values, $default);
6a488035
TO
213
214 case CRM_Utils_Type::T_FLOAT:
215 // Round float values to three decimal places and trim trailing zeros.
216 // Add a leading zero to values less than 1.
217 $f = sprintf('%05.3f', $values[$field]);
218 $f = rtrim($f, '0');
219 $f = rtrim($f, '.');
353ffa53 220 return (float) (empty($f) ? '0' : $f);
6a488035
TO
221 }
222 return CRM_Utils_Array::value($field, $values, $default);
223 }
224 return $default;
225 }
226
227 /**
228 * Takes a bunch of params that are needed to match certain criteria and
229 * retrieves the relevant objects. Typically the valid params are only
230 * paper size id. It also stores all the retrieved values in the default array.
231 *
6a0b768e
TO
232 * @param array $params
233 * (reference ) an assoc array of name/value pairs.
234 * @param array $values
235 * (reference ) an assoc array to hold the flattened values.
6a488035 236 *
16b10e64 237 * @return CRM_Core_DAO_OptionValue
6a488035 238 */
00be9182 239 public static function retrieve(&$params, &$values) {
6a488035
TO
240 $optionValue = new CRM_Core_DAO_OptionValue();
241 $optionValue->copyValues($params);
242 $optionValue->option_group_id = self::_getGid();
243 if ($optionValue->find(TRUE)) {
244 // Extract fields that have been serialized in the 'value' column of the Option Value table.
245 $values = json_decode($optionValue->value, TRUE);
246 // Add any new fields that don't yet exist in the saved values.
247 foreach (self::$optionValueFields as $name => $field) {
248 if (!isset($values[$name])) {
249 $values[$name] = $field['default'];
250 if ($field['metric']) {
251 $values[$name] = CRM_Utils_PDF_Utils::convertMetric($field['default'],
252 self::$optionValueFields['metric']['default'],
253 $values['metric'], 3
254 );
255 }
256 }
257 }
258 // Add fields from the OptionValue base class
259 CRM_Core_DAO::storeValues($optionValue, $values);
260 return $optionValue;
261 }
262 return NULL;
263 }
264
265 /**
266 * Save the Paper Size in the DB
267 *
6a0b768e
TO
268 * @param array (reference) $values associative array of name/value pairs
269 * @param int $id
270 * Id of the database record (null = new record).
6a488035
TO
271 *
272 * @return void
6a488035 273 */
00be9182 274 public function savePaperSize(&$values, $id) {
6a488035
TO
275 // get the Option Group ID for Paper Sizes (create one if it doesn't exist)
276 $group_id = self::_getGid(TRUE);
277
278 // clear other default if this is the new default Paper Size
279 if ($values['is_default']) {
280 $query = "UPDATE civicrm_option_value SET is_default = 0 WHERE option_group_id = $group_id";
281 CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray);
282 }
283 if ($id) {
284 // fetch existing record
285 $this->id = $id;
286 if ($this->find()) {
287 $this->fetch();
288 }
289 }
290 else {
291 // new record: set group = custom
292 $values['grouping'] = self::customGroupName();
293 }
294 // copy the supplied form values to the corresponding Option Value fields in the base class
295 foreach ($this->fields() as $name => $field) {
296 $this->$name = trim(CRM_Utils_Array::value($name, $values, $this->$name));
297 if (empty($this->$name)) {
298 $this->$name = 'null';
299 }
300 }
301 $this->id = $id;
302 $this->option_group_id = $group_id;
303 $this->label = $this->name;
304 $this->is_active = 1;
305
306 // serialize Paper Size fields into a single string to store in the 'value' column of the Option Value table
307 $v = json_decode($this->value, TRUE);
308 foreach (self::$optionValueFields as $name => $field) {
309 $v[$name] = self::getValue($name, $values, $v[$name]);
310 }
311 $this->value = json_encode($v);
312
313 // make sure serialized array will fit in the 'value' column
314 $attribute = CRM_Core_DAO::getAttribute('CRM_Core_BAO_PaperSize', 'value');
315 if (strlen($this->value) > $attribute['maxlength']) {
316 CRM_Core_Error::fatal(ts('Paper Size does not fit in database.'));
317 }
318 $this->save();
319
320 // fix duplicate weights
321 $filter = array('option_group_id' => self::_getGid());
322 CRM_Utils_Weight::correctDuplicateWeights('CRM_Core_DAO_OptionValue', $filter);
323 }
324
325 /**
100fef9d 326 * Delete a Paper Size
6a488035 327 *
6a0b768e
TO
328 * @param int $id
329 * ID of the Paper Size to be deleted.
6a488035 330 *
6a488035 331 */
00be9182 332 public static function del($id) {
6a488035
TO
333 if ($id) {
334 $dao = new CRM_Core_DAO_OptionValue();
335 $dao->id = $id;
336 if ($dao->find(TRUE)) {
337 if ($dao->option_group_id == self::_getGid()) {
338 $filter = array('option_group_id' => self::_getGid());
339 CRM_Utils_Weight::delWeight('CRM_Core_DAO_OptionValue', $id, $filter);
340 $dao->delete();
341 return;
342 }
343 }
344 }
345 CRM_Core_Error::fatal(ts('Invalid value passed to delete function.'));
346 }
347}