Merge pull request #8426 from Anjali2906/crm_18560_validation
[civicrm-core.git] / CRM / Mailing / BAO / Component.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
7e9e8871 4 | CiviCRM version 4.7 |
6a488035 5 +--------------------------------------------------------------------+
fa938177 6 | Copyright CiviCRM LLC (c) 2004-2016 |
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 +--------------------------------------------------------------------+
d25dd0ee 26 */
6a488035
TO
27
28/**
29 *
30 * @package CRM
fa938177 31 * @copyright CiviCRM LLC (c) 2004-2016
6a488035
TO
32 */
33class CRM_Mailing_BAO_Component extends CRM_Mailing_DAO_Component {
34
35 /**
fe482240 36 * Class constructor.
6a488035 37 */
00be9182 38 public function __construct() {
6a488035
TO
39 parent::__construct();
40 }
41
42 /**
fe482240 43 * Fetch object based on array of properties.
6a488035 44 *
90c8230e
TO
45 * @param array $params
46 * (reference ) an assoc array of name/value pairs.
47 * @param array $defaults
48 * (reference ) an assoc array to hold the flattened values.
6a488035 49 *
25606795 50 * @return CRM_Core_BAO_LocationType.
6a488035 51 */
00be9182 52 public static function retrieve(&$params, &$defaults) {
6a488035
TO
53 $component = new CRM_Mailing_DAO_Component();
54 $component->copyValues($params);
55 if ($component->find(TRUE)) {
56 CRM_Core_DAO::storeValues($component, $defaults);
57 return $component;
58 }
59 return NULL;
60 }
61
62 /**
fe482240 63 * Update the is_active flag in the db.
6a488035 64 *
90c8230e
TO
65 * @param int $id
66 * Id of the database record.
67 * @param bool $is_active
68 * Value we want to set the is_active field.
6a488035 69 *
a6c01b45 70 * @return Object
b44e3f84 71 * DAO object on success, null otherwise
6a488035 72 */
00be9182 73 public static function setIsActive($id, $is_active) {
6a488035
TO
74 return CRM_Core_DAO::setFieldValue('CRM_Mailing_DAO_Component', $id, 'is_active', $is_active);
75 }
76
77 /**
fe482240 78 * Create and Update mailing component.
6a488035 79 *
90c8230e
TO
80 * @param array $params
81 * (reference ) an assoc array of name/value pairs.
82 * @param array $ids
83 * (deprecated) the array that holds all the db ids.
6a488035 84 *
16b10e64 85 * @return CRM_Mailing_BAO_Component
6a488035 86 */
00be9182 87 public static function add(&$params, $ids = array()) {
2d75534c 88 $id = CRM_Utils_Array::value('id', $params, CRM_Utils_Array::value('id', $ids));
6a488035 89 $component = new CRM_Mailing_DAO_Component();
17b3b987
TO
90 if ($id) {
91 $component->id = $id;
92 $component->find(TRUE);
93 }
94
2d75534c
EM
95 $component->copyValues($params);
96 if (empty($id) && empty($params['body_text'])) {
e5439581 97 $component->body_text = CRM_Utils_String::htmlToText(CRM_Utils_Array::value('body_html', $params));
6a488035 98 }
6a488035 99
736eccb6
TO
100 if ($component->is_default) {
101 if (!empty($id)) {
17b3b987
TO
102 $sql = 'UPDATE civicrm_mailing_component SET is_default = 0 WHERE component_type = %1 AND id <> %2';
103 $sqlParams = array(
104 1 => array($component->component_type, 'String'),
105 2 => array($id, 'Positive'),
106 );
736eccb6
TO
107 }
108 else {
17b3b987
TO
109 $sql = 'UPDATE civicrm_mailing_component SET is_default = 0 WHERE component_type = %1';
110 $sqlParams = array(
111 1 => array($component->component_type, 'String'),
112 );
736eccb6 113 }
17b3b987 114 CRM_Core_DAO::executeQuery($sql, $sqlParams);
6a488035
TO
115 }
116
6a488035 117 $component->save();
2d75534c 118 return $component;
6a488035 119 }
96025800 120
6a488035 121}