Merge pull request #4892 from colemanw/INFRA-132
[civicrm-core.git] / CRM / Mailing / BAO / Component.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
06b69b18 6 | Copyright CiviCRM LLC (c) 2004-2014 |
6a488035
TO
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
06b69b18 31 * @copyright CiviCRM LLC (c) 2004-2014
6a488035
TO
32 * $Id$
33 *
34 */
35class CRM_Mailing_BAO_Component extends CRM_Mailing_DAO_Component {
36
37 /**
100fef9d 38 * Class constructor
6a488035 39 */
00be9182 40 public function __construct() {
6a488035
TO
41 parent::__construct();
42 }
43
44 /**
c490a46a 45 * Fetch object based on array of properties
6a488035 46 *
90c8230e
TO
47 * @param array $params
48 * (reference ) an assoc array of name/value pairs.
49 * @param array $defaults
50 * (reference ) an assoc array to hold the flattened values.
6a488035 51 *
c490a46a 52 * @return CRM_Core_BAO_LocaationType object
6a488035
TO
53 * @static
54 */
00be9182 55 public static function retrieve(&$params, &$defaults) {
6a488035
TO
56 $component = new CRM_Mailing_DAO_Component();
57 $component->copyValues($params);
58 if ($component->find(TRUE)) {
59 CRM_Core_DAO::storeValues($component, $defaults);
60 return $component;
61 }
62 return NULL;
63 }
64
65 /**
100fef9d 66 * Update the is_active flag in the db
6a488035 67 *
90c8230e
TO
68 * @param int $id
69 * Id of the database record.
70 * @param bool $is_active
71 * Value we want to set the is_active field.
6a488035
TO
72 *
73 * @return Object DAO object on sucess, null otherwise
74 * @static
75 */
00be9182 76 public static function setIsActive($id, $is_active) {
6a488035
TO
77 return CRM_Core_DAO::setFieldValue('CRM_Mailing_DAO_Component', $id, 'is_active', $is_active);
78 }
79
80 /**
81 * Create and Update mailing component
82 *
90c8230e
TO
83 * @param array $params
84 * (reference ) an assoc array of name/value pairs.
85 * @param array $ids
86 * (deprecated) the array that holds all the db ids.
6a488035 87 *
c490a46a 88 * @return CRM_Mailing_BAO_Component object
6a488035 89 *
6a488035
TO
90 * @static
91 */
00be9182 92 public static function add(&$params, $ids = array()) {
2d75534c 93 $id = CRM_Utils_Array::value('id', $params, CRM_Utils_Array::value('id', $ids));
6a488035 94 $component = new CRM_Mailing_DAO_Component();
2d75534c
EM
95 $component->id = $id;
96 $component->copyValues($params);
97 if (empty($id) && empty($params['body_text'])) {
e5439581 98 $component->body_text = CRM_Utils_String::htmlToText(CRM_Utils_Array::value('body_html', $params));
6a488035 99 }
6a488035 100
0e994f08 101 if ($component->is_default && !empty($id)) {
2d75534c 102 CRM_Core_DAO::executeQuery("UPDATE civicrm_mailing_component SET is_default = 0 WHERE component_type ='{$component->component_type}' AND id <> $id");
6a488035
TO
103 }
104
6a488035 105 $component->save();
2d75534c 106 return $component;
6a488035
TO
107 }
108}