Merge pull request #5317 from sfe-ev/chainselect-missing-fields
[civicrm-core.git] / CRM / Mailing / BAO / Component.php
1 <?php
2 /*
3 +--------------------------------------------------------------------+
4 | CiviCRM version 4.5 |
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_Mailing_BAO_Component extends CRM_Mailing_DAO_Component {
36
37 /**
38 * class constructor
39 */
40 function __construct() {
41 parent::__construct();
42 }
43
44 /**
45 * Takes a bunch of params that are needed to match certain criteria and
46 * retrieves the relevant objects. Typically the valid params are only
47 * contact_id. We'll tweak this function to be more full featured over a period
48 * of time. This is the inverse function of create. It also stores all the retrieved
49 * values in the default array
50 *
51 * @param array $params (reference ) an assoc array of name/value pairs
52 * @param array $defaults (reference ) an assoc array to hold the flattened values
53 *
54 * @return object CRM_Core_BAO_LocaationType object
55 * @access public
56 * @static
57 */
58 static function retrieve(&$params, &$defaults) {
59 $component = new CRM_Mailing_DAO_Component();
60 $component->copyValues($params);
61 if ($component->find(TRUE)) {
62 CRM_Core_DAO::storeValues($component, $defaults);
63 return $component;
64 }
65 return NULL;
66 }
67
68 /**
69 * update the is_active flag in the db
70 *
71 * @param int $id id of the database record
72 * @param boolean $is_active value we want to set the is_active field
73 *
74 * @return Object DAO object on sucess, null otherwise
75 * @static
76 */
77 static function setIsActive($id, $is_active) {
78 return CRM_Core_DAO::setFieldValue('CRM_Mailing_DAO_Component', $id, 'is_active', $is_active);
79 }
80
81 /**
82 * Create and Update mailing component
83 *
84 * @param array $params (reference ) an assoc array of name/value pairs
85 * @param array $ids (deprecated) the array that holds all the db ids
86 *
87 * @return object CRM_Mailing_BAO_Component object
88 *
89 * @access public
90 * @static
91 */
92 static function add(&$params, $ids = array()) {
93 $id = CRM_Utils_Array::value('id', $params, CRM_Utils_Array::value('id', $ids));
94 $component = new CRM_Mailing_DAO_Component();
95 if ($id) {
96 $component->id = $id;
97 $component->find(TRUE);
98 }
99
100 $component->copyValues($params);
101 if (empty($id) && empty($params['body_text'])) {
102 $component->body_text = CRM_Utils_String::htmlToText(CRM_Utils_Array::value('body_html', $params));
103 }
104
105 if ($component->is_default) {
106 if (!empty($id)) {
107 $sql = 'UPDATE civicrm_mailing_component SET is_default = 0 WHERE component_type = %1 AND id <> %2';
108 $sqlParams = array(
109 1 => array($component->component_type, 'String'),
110 2 => array($id, 'Positive'),
111 );
112 }
113 else {
114 $sql = 'UPDATE civicrm_mailing_component SET is_default = 0 WHERE component_type = %1';
115 $sqlParams = array(
116 1 => array($component->component_type, 'String'),
117 );
118 }
119 CRM_Core_DAO::executeQuery($sql, $sqlParams);
120 }
121
122 $component->save();
123 return $component;
124 }
125 }