Merge pull request #14018 from seamuslee001/financial_extension_export_cxn_dashlet
[civicrm-core.git] / CRM / Mailing / Info.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
6b83d5bd 6 | Copyright CiviCRM LLC (c) 2004-2019 |
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 * This class introduces component to the system and provides all the
30 * information about it. It needs to extend CRM_Core_Component_Info
31 * abstract class.
32 *
33 * @package CRM
6b83d5bd 34 * @copyright CiviCRM LLC (c) 2004-2019
6a488035
TO
35 */
36class CRM_Mailing_Info extends CRM_Core_Component_Info {
37
e7c15cb6
CW
38 /**
39 * @inheritDoc
40 */
6a488035
TO
41 protected $keyword = 'mailing';
42
43
e0ef6999 44 /**
e7c15cb6 45 * @inheritDoc
e0ef6999
EM
46 * @return array
47 */
6a488035 48 public function getInfo() {
be2fb01f 49 return [
6a488035
TO
50 'name' => 'CiviMail',
51 'translatedName' => ts('CiviMail'),
e300cf31 52 'title' => ts('CiviCRM Mailing Engine'),
6a488035
TO
53 'search' => 1,
54 'showActivitiesInCore' => 1,
be2fb01f 55 ];
6a488035
TO
56 }
57
ced9bfed 58 /**
25606795 59 * Get AngularJS modules and their dependencies.
ced9bfed
EM
60 *
61 * @return array
62 * list of modules; same format as CRM_Utils_Hook::angularModules(&$angularModules)
63 * @see CRM_Utils_Hook::angularModules
64 */
4aef704e 65 public function getAngularModules() {
56621a6c
KJ
66 // load angular files only if valid permissions are granted to the user
67 if (!CRM_Core_Permission::check('access CiviMail')
011c7136
KJ
68 && !CRM_Core_Permission::check('create mailings')
69 && !CRM_Core_Permission::check('schedule mailings')
70 && !CRM_Core_Permission::check('approve mailings')
56621a6c 71 ) {
be2fb01f 72 return [];
56621a6c 73 }
8456e727 74 global $civicrm_root;
56621a6c 75
be2fb01f
CW
76 $reportIds = [];
77 $reportTypes = ['detail', 'opened', 'bounce', 'clicks'];
78414681 78 foreach ($reportTypes as $report) {
be2fb01f 79 $result = civicrm_api3('ReportInstance', 'get', [
78414681 80 'sequential' => 1,
be2fb01f 81 'report_id' => 'mailing/' . $report]);
56e3a6f6 82 if (!empty($result['values'])) {
83 $reportIds[$report] = $result['values'][0]['id'];
84 }
78414681 85 }
be2fb01f 86 $result = [];
8456e727
TO
87 $result['crmMailing'] = include "$civicrm_root/ang/crmMailing.ang.php";
88 $result['crmMailingAB'] = include "$civicrm_root/ang/crmMailingAB.ang.php";
89 $result['crmD3'] = include "$civicrm_root/ang/crmD3.ang.php";
983052fe 90
8099bfee 91 $config = CRM_Core_Config::singleton();
6bea4a47
TO
92 $session = CRM_Core_Session::singleton();
93 $contactID = $session->get('userID');
d979898e 94
25606795 95 // Generic params.
be2fb01f
CW
96 $params = [
97 'options' => ['limit' => 0],
a0f40af4 98 'sequential' => 1,
be2fb01f
CW
99 ];
100 $groupNames = civicrm_api3('Group', 'get', $params + [
31815c2b
SL
101 'is_active' => 1,
102 'check_permissions' => TRUE,
be2fb01f
CW
103 'return' => ['title', 'visibility', 'group_type', 'is_hidden'],
104 ]);
105 $headerfooterList = civicrm_api3('MailingComponent', 'get', $params + [
a0f40af4 106 'is_active' => 1,
be2fb01f
CW
107 'return' => ['name', 'component_type', 'is_default', 'body_html', 'body_text'],
108 ]);
6bea4a47 109
be2fb01f 110 $emailAdd = civicrm_api3('Email', 'get', [
44a7c67d
TO
111 'sequential' => 1,
112 'return' => "email",
113 'contact_id' => $contactID,
be2fb01f 114 ]);
a0f40af4 115
be2fb01f 116 $mesTemplate = civicrm_api3('MessageTemplate', 'get', $params + [
44a7c67d 117 'sequential' => 1,
a0f40af4 118 'is_active' => 1,
be2fb01f
CW
119 'return' => ["id", "msg_title"],
120 'workflow_id' => ['IS NULL' => ""],
121 ]);
122 $mailTokens = civicrm_api3('Mailing', 'gettokens', [
123 'entity' => ['contact', 'mailing'],
8099bfee 124 'sequential' => 1,
be2fb01f
CW
125 ]);
126 $fromAddress = civicrm_api3('OptionValue', 'get', $params + [
d979898e 127 'option_group_id' => "from_email_address",
84deca8b 128 'domain_id' => CRM_Core_Config::domainID(),
be2fb01f 129 ]);
c00b95ef
ML
130 $enabledLanguages = CRM_Core_I18n::languages(TRUE);
131 $isMultiLingual = (count($enabledLanguages) > 1);
b845ba46 132 // FlexMailer is a refactoring of CiviMail which provides new hooks/APIs/docs. If the sysadmin has opted to enable it, then use that instead of CiviMail.
be2fb01f 133 $requiredTokens = defined('CIVICRM_FLEXMAILER_HACK_REQUIRED_TOKENS') ? Civi\Core\Resolver::singleton()->call(CIVICRM_FLEXMAILER_HACK_REQUIRED_TOKENS, []) : CRM_Utils_Token::getRequiredTokens();
a0f40af4 134 CRM_Core_Resources::singleton()
be2fb01f
CW
135 ->addSetting([
136 'crmMailing' => [
703875d8 137 'templateTypes' => CRM_Mailing_BAO_Mailing::getTemplateTypes(),
be2fb01f 138 'civiMails' => [],
8099bfee 139 'campaignEnabled' => in_array('CiviCampaign', $config->enableComponents),
be2fb01f 140 'groupNames' => [],
d1aefa39 141 // @todo this is not used in core. Remove once Mosaico no longer depends on it.
31815c2b 142 'testGroupNames' => $groupNames['values'],
a0f40af4
CW
143 'headerfooterList' => $headerfooterList['values'],
144 'mesTemplate' => $mesTemplate['values'],
145 'emailAdd' => $emailAdd['values'],
a0f40af4
CW
146 'mailTokens' => $mailTokens['values'],
147 'contactid' => $contactID,
2d7b8444 148 'requiredTokens' => $requiredTokens,
aaffa79f 149 'enableReplyTo' => (int) Civi::settings()->get('replyTo'),
150 'disableMandatoryTokensCheck' => (int) Civi::settings()->get('disable_mandatory_tokens_check'),
a0f40af4 151 'fromAddress' => $fromAddress['values'],
be2fb01f 152 'defaultTestEmail' => civicrm_api3('Contact', 'getvalue', [
a0f40af4
CW
153 'id' => 'user_contact_id',
154 'return' => 'email',
be2fb01f 155 ]),
a0f40af4
CW
156 'visibility' => CRM_Utils_Array::makeNonAssociative(CRM_Core_SelectValues::groupVisibility()),
157 'workflowEnabled' => CRM_Mailing_Info::workflowEnabled(),
78414681 158 'reportIds' => $reportIds,
c00b95ef
ML
159 'enabledLanguages' => $enabledLanguages,
160 'isMultiLingual' => $isMultiLingual,
be2fb01f
CW
161 ],
162 ])
163 ->addPermissions([
a0f40af4 164 'view all contacts',
84fd40f3 165 'edit all contacts',
a0f40af4
CW
166 'access CiviMail',
167 'create mailings',
168 'schedule mailings',
169 'approve mailings',
170 'delete in CiviMail',
867299da 171 'edit message templates',
be2fb01f 172 ]);
983052fe 173
4aef704e 174 return $result;
175 }
983052fe 176
4aef704e 177 /**
e0ef6999
EM
178 * @return bool
179 */
00be9182 180 public static function workflowEnabled() {
6a488035
TO
181 $config = CRM_Core_Config::singleton();
182
183 // early exit, since not true for most
184 if (!$config->userSystem->is_drupal ||
185 !function_exists('module_exists')
186 ) {
187 return FALSE;
188 }
189
190 if (!module_exists('rules')) {
191 return FALSE;
192 }
193
aaffa79f 194 $enableWorkflow = Civi::settings()->get('civimail_workflow');
6a488035
TO
195
196 return ($enableWorkflow &&
197 $config->userSystem->is_drupal
198 ) ? TRUE : FALSE;
199 }
200
e0ef6999 201 /**
e7c15cb6 202 * @inheritDoc
e0ef6999 203 * @param bool $getAllUnconditionally
221b21b4
AH
204 * @param bool $descriptions
205 * Whether to return permission descriptions
e0ef6999
EM
206 *
207 * @return array
208 */
221b21b4 209 public function getPermissions($getAllUnconditionally = FALSE, $descriptions = FALSE) {
be2fb01f
CW
210 $permissions = [
211 'access CiviMail' => [
221b21b4 212 ts('access CiviMail'),
be2fb01f
CW
213 ],
214 'access CiviMail subscribe/unsubscribe pages' => [
221b21b4
AH
215 ts('access CiviMail subscribe/unsubscribe pages'),
216 ts('Subscribe/unsubscribe from mailing list group'),
be2fb01f
CW
217 ],
218 'delete in CiviMail' => [
221b21b4
AH
219 ts('delete in CiviMail'),
220 ts('Delete Mailing'),
be2fb01f
CW
221 ],
222 'view public CiviMail content' => [
221b21b4 223 ts('view public CiviMail content'),
be2fb01f
CW
224 ],
225 ];
6a488035 226
33777e4a 227 if (self::workflowEnabled() || $getAllUnconditionally) {
be2fb01f 228 $permissions['create mailings'] = [
de4bf197 229 ts('create mailings'),
be2fb01f
CW
230 ];
231 $permissions['schedule mailings'] = [
de4bf197 232 ts('schedule mailings'),
be2fb01f
CW
233 ];
234 $permissions['approve mailings'] = [
de4bf197 235 ts('approve mailings'),
be2fb01f 236 ];
221b21b4
AH
237 }
238
239 if (!$descriptions) {
240 foreach ($permissions as $name => $attr) {
241 $permissions[$name] = array_shift($attr);
242 }
6a488035
TO
243 }
244
245 return $permissions;
246 }
247
248
e0ef6999 249 /**
e7c15cb6 250 * @inheritDoc
e0ef6999
EM
251 * @return null
252 */
6a488035
TO
253 public function getUserDashboardElement() {
254 // no dashboard element for this component
255 return NULL;
256 }
257
e0ef6999
EM
258 /**
259 * @return null
260 */
6a488035
TO
261 public function getUserDashboardObject() {
262 // no dashboard element for this component
263 return NULL;
264 }
265
e0ef6999 266 /**
e7c15cb6 267 * @inheritDoc
e0ef6999
EM
268 * @return array
269 */
6a488035 270 public function registerTab() {
be2fb01f 271 return [
2ede60ec
DL
272 'title' => ts('Mailings'),
273 'id' => 'mailing',
274 'url' => 'mailing',
275 'weight' => 45,
be2fb01f 276 ];
6a488035
TO
277 }
278
b04115b4
CW
279 /**
280 * @inheritDoc
281 * @return string
282 */
283 public function getIcon() {
284 return 'crm-i fa-envelope-o';
285 }
286
e0ef6999 287 /**
e7c15cb6 288 * @inheritDoc
e0ef6999
EM
289 * @return array
290 */
6a488035 291 public function registerAdvancedSearchPane() {
be2fb01f 292 return [
353ffa53 293 'title' => ts('Mailings'),
6a488035 294 'weight' => 20,
be2fb01f 295 ];
6a488035
TO
296 }
297
e0ef6999 298 /**
e7c15cb6 299 * @inheritDoc
e0ef6999
EM
300 * @return null
301 */
6a488035
TO
302 public function getActivityTypes() {
303 return NULL;
304 }
305
e0ef6999 306 /**
fe482240 307 * add shortcut to Create New.
e0ef6999
EM
308 * @param $shortCuts
309 */
35f7561f
TO
310 public function creatNewShortcut(&$shortCuts) {
311 }
96025800 312
6a488035 313}