Avoid CiviCRM running full drupal cache flush, as this results in CiviCRM clobbering...
[civicrm-core.git] / CRM / Admin / Page / MailSettings.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
39de6fd5 4 | CiviCRM version 4.6 |
6a488035 5 +--------------------------------------------------------------------+
e7112fa7 6 | Copyright CiviCRM LLC (c) 2004-2015 |
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
e7112fa7 31 * @copyright CiviCRM LLC (c) 2004-2015
6a488035
TO
32 * $Id$
33 *
34 */
35
36/**
37 * Page for displaying list of Mail account settings
38 */
39class CRM_Admin_Page_MailSettings extends CRM_Core_Page_Basic {
40
96f50de2 41 public $useLivePageJS = TRUE;
da6b46f4 42
6a488035 43 /**
eceb18cc 44 * The action links that we need to display for the browse screen.
6a488035
TO
45 *
46 * @var array
6a488035
TO
47 */
48 static $_links = NULL;
49
50 /**
eceb18cc 51 * Get BAO Name.
6a488035 52 *
a6c01b45
CW
53 * @return string
54 * Classname of BAO.
6a488035 55 */
00be9182 56 public function getBAOName() {
6a488035
TO
57 return 'CRM_Core_BAO_MailSettings';
58 }
59
60 /**
eceb18cc 61 * Get action Links.
6a488035 62 *
a6c01b45
CW
63 * @return array
64 * (reference) of action links
6a488035 65 */
00be9182 66 public function &links() {
6a488035
TO
67 if (!(self::$_links)) {
68 // helper variable for nicer formatting
69 self::$_links = array(
70 CRM_Core_Action::UPDATE => array(
71 'name' => ts('Edit'),
72 'url' => 'civicrm/admin/mailSettings',
73 'qs' => 'action=update&id=%%id%%&reset=1',
74 'title' => ts('Edit Mail Settings'),
75 ),
76 CRM_Core_Action::DELETE => array(
77 'name' => ts('Delete'),
78 'url' => 'civicrm/admin/mailSettings',
79 'qs' => 'action=delete&id=%%id%%',
80 'title' => ts('Delete Mail Settings'),
81 ),
82 );
83 }
84
85 return self::$_links;
86 }
87
88 /**
89 * Browse all mail settings.
90 *
91 * @return void
6a488035 92 */
00be9182 93 public function browse() {
6a488035
TO
94 //get all mail settings.
95 $allMailSettings = array();
96 $mailSetting = new CRM_Core_DAO_MailSettings();
97
cbf48754 98 $allProtocols = CRM_Core_PseudoConstant::get('CRM_Core_DAO_MailSettings', 'protocol');
6a488035
TO
99
100 //multi-domain support for mail settings. CRM-5244
101 $mailSetting->domain_id = CRM_Core_Config::domainID();
102
103 //find all mail settings.
104 $mailSetting->find();
105 while ($mailSetting->fetch()) {
106 //replace protocol value with name
107 $mailSetting->protocol = CRM_Utils_Array::value($mailSetting->protocol, $allProtocols);
108 CRM_Core_DAO::storeValues($mailSetting, $allMailSettings[$mailSetting->id]);
109
110 //form all action links
111 $action = array_sum(array_keys($this->links()));
112
113 // disallow the DELETE action for the default set of settings
114 if ($mailSetting->is_default) {
115 $action &= ~CRM_Core_Action::DELETE;
116 }
117
118 //add action links.
119 $allMailSettings[$mailSetting->id]['action'] = CRM_Core_Action::formLink(self::links(), $action,
87dab4a4
AH
120 array('id' => $mailSetting->id),
121 ts('more'),
122 FALSE,
123 'mailSetting.manage.action',
124 'MailSetting',
125 $mailSetting->id
6a488035
TO
126 );
127 }
128
129 $this->assign('rows', $allMailSettings);
130 }
131
132 /**
eceb18cc 133 * Get name of edit form.
6a488035 134 *
a6c01b45
CW
135 * @return string
136 * Classname of edit form.
6a488035 137 */
00be9182 138 public function editForm() {
6a488035
TO
139 return 'CRM_Admin_Form_MailSettings';
140 }
141
142 /**
eceb18cc 143 * Get edit form name.
6a488035 144 *
a6c01b45
CW
145 * @return string
146 * name of this page.
6a488035 147 */
00be9182 148 public function editName() {
6a488035
TO
149 return 'Mail Settings';
150 }
151
152 /**
153 * Get user context.
154 *
da6b46f4
EM
155 * @param null $mode
156 *
a6c01b45
CW
157 * @return string
158 * user context.
6a488035 159 */
00be9182 160 public function userContext($mode = NULL) {
6a488035
TO
161 return 'civicrm/admin/mailSettings';
162 }
96025800 163
6a488035 164}