Merge pull request #5086 from deepak-srivastava/CRM-15490
[civicrm-core.git] / CRM / Badge / BAO / Layout.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.6 |
5 +--------------------------------------------------------------------+
6 | Copyright CiviCRM LLC (c) 2004-2014 |
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-2014
32 * $Id$
33 *
34 */
35 class CRM_Badge_BAO_Layout extends CRM_Core_DAO_PrintLabel {
36
37 /**
38 * Class constructor.
39 */
40 public function __construct() {
41 parent::__construct();
42 }
43
44 /**
45 * Retrieve DB object based on input parameters.
46 *
47 * It also stores all the retrieved values in the default array.
48 *
49 * @param array $params
50 * (reference ) an assoc array of name/value pairs.
51 * @param array $defaults
52 * (reference ) an assoc array to hold the flattened values.
53 *
54 * @return CRM_Core_DAO_PrintLabel|null
55 * object on success, null otherwise
56 */
57 public static function retrieve(&$params, &$defaults) {
58 $printLabel = new CRM_Core_DAO_PrintLabel();
59 $printLabel->copyValues($params);
60 if ($printLabel->find(TRUE)) {
61 CRM_Core_DAO::storeValues($printLabel, $defaults);
62 return $printLabel;
63 }
64 return NULL;
65 }
66
67 /**
68 * Update the is_active flag in the db.
69 *
70 * @param int $id
71 * Id of the database record.
72 * @param bool $is_active
73 * Value we want to set the is_active field.
74 *
75 * @return Object
76 * DAO object on success, null otherwise
77 *
78 */
79 public static function setIsActive($id, $is_active) {
80 return CRM_Core_DAO::setFieldValue('CRM_Core_DAO_PrintLabel', $id, 'is_active', $is_active);
81 }
82
83 /**
84 * Add a name label.
85 *
86 * @param array $params
87 * Reference array contains the values submitted by the form.
88 *
89 *
90 * @return object
91 */
92 public static function create(&$params) {
93 $params['is_active'] = CRM_Utils_Array::value('is_active', $params, FALSE);
94 $params['is_default'] = CRM_Utils_Array::value('is_default', $params, FALSE);
95 $params['is_reserved'] = CRM_Utils_Array::value('is_reserved', $params, FALSE);
96
97 $params['label_type_id'] = CRM_Core_OptionGroup::getValue('label_type', 'Event Badge', 'name');
98
99 // check if new layout is create, if so set the created_id (if not set)
100 if (empty($params['id'])) {
101 if (empty($params['created_id'])) {
102 $session = CRM_Core_Session::singleton();
103 $params['created_id'] = $session->get('userID');
104 }
105 }
106
107 if (!isset($params['id']) && !isset($params['name'])) {
108 $params['name'] = CRM_Utils_String::munge($params['title'], '_', 64);
109 }
110
111 // action is taken depending upon the mode
112 $printLabel = new CRM_Core_DAO_PrintLabel();
113 $printLabel->copyValues($params);
114
115 if ($params['is_default']) {
116 $query = "UPDATE civicrm_print_label SET is_default = 0";
117 CRM_Core_DAO::executeQuery($query, CRM_Core_DAO::$_nullArray);
118 }
119
120 $printLabel->save();
121 return $printLabel;
122 }
123
124 /**
125 * Delete name labels.
126 *
127 * @param int $printLabelId
128 * ID of the name label to be deleted.
129 *
130 */
131 public static function del($printLabelId) {
132 $printLabel = new CRM_Core_DAO_PrintLabel();
133 $printLabel->id = $printLabelId;
134 $printLabel->delete();
135 }
136
137 /**
138 * get the list of print labels.
139 *
140 * @return array
141 * list of labels
142 */
143 public static function getList() {
144 $printLabel = new CRM_Core_DAO_PrintLabel();
145 $printLabel->find();
146
147 $labels = array();
148 while ($printLabel->fetch()) {
149 $labels[$printLabel->id] = $printLabel->title;
150 }
151 return $labels;
152 }
153
154 /**
155 * Build layout structure.
156 *
157 * @param array $params
158 * Associated array of submitted values.
159 *
160 * @return array
161 * array formatted array
162 */
163 public static function buildLayout(&$params) {
164 $layoutParams = array('id' => $params['badge_id']);
165 CRM_Badge_BAO_Layout::retrieve($layoutParams, $layoutInfo);
166
167 $formatProperties = CRM_Core_OptionGroup::getValue('name_badge', $layoutInfo['label_format_name'], 'name');
168 $layoutInfo['format'] = json_decode($formatProperties, TRUE);
169 $layoutInfo['data'] = CRM_Badge_BAO_Layout::getDecodedData($layoutInfo['data']);
170 return $layoutInfo;
171 }
172
173 /**
174 * Decode encoded data and return as an array.
175 *
176 * @param json $jsonData
177 * Json object.
178 *
179 * @return array
180 * associated array of decoded elements
181 */
182 static public function getDecodedData($jsonData) {
183 return json_decode($jsonData, TRUE);
184 }
185
186 }