Update copyright date for 2020
[civicrm-core.git] / CRM / Admin / Form / Setting / Mail.php
CommitLineData
6a488035
TO
1<?php
2/*
3 +--------------------------------------------------------------------+
fee14197 4 | CiviCRM version 5 |
6a488035 5 +--------------------------------------------------------------------+
f299f7db 6 | Copyright CiviCRM LLC (c) 2004-2020 |
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
f299f7db 31 * @copyright CiviCRM LLC (c) 2004-2020
6a488035
TO
32 */
33
34/**
ce064e4f 35 * This class generates form components for CiviMail.
6a488035
TO
36 */
37class CRM_Admin_Form_Setting_Mail extends CRM_Admin_Form_Setting {
38
be2fb01f 39 protected $_settings = [
988689cc 40 'mailerBatchLimit' => CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
089360bb 41 'mailThrottleTime' => CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
988689cc
TO
42 'mailerJobSize' => CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
43 'mailerJobsMax' => CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
988689cc 44 'verpSeparator' => CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
089360bb 45 'replyTo' => CRM_Core_BAO_Setting::MAILING_PREFERENCES_NAME,
be2fb01f 46 ];
6098a966 47
6a488035 48 /**
eceb18cc 49 * Build the form object.
6a488035
TO
50 */
51 public function buildQuickForm() {
52 CRM_Utils_System::setTitle(ts('Settings - CiviMail'));
be2fb01f 53 $this->addFormRule(['CRM_Admin_Form_Setting_Mail', 'formRule']);
6a488035 54
089360bb 55 parent::buildQuickForm();
6a488035 56 }
f813f78e 57
e0ef6999
EM
58 /**
59 * @param $fields
60 *
61 * @return array|bool
62 */
00be9182 63 public static function formRule($fields) {
be2fb01f 64 $errors = [];
cc3c3fcc 65
966a1362
AH
66 if (CRM_Utils_Array::value('mailerJobSize', $fields) > 0) {
67 if (CRM_Utils_Array::value('mailerJobSize', $fields) < 1000) {
68 $errors['mailerJobSize'] = ts('The job size must be at least 1000 or set to 0 (unlimited).');
69 }
70 elseif (CRM_Utils_Array::value('mailerJobSize', $fields) <
353ffa53
TO
71 CRM_Utils_Array::value('mailerBatchLimit', $fields)
72 ) {
966a1362
AH
73 $errors['mailerJobSize'] = ts('A job size smaller than the batch limit will negate the effect of the batch limit.');
74 }
cc3c3fcc 75 }
f813f78e 76
cc3c3fcc
AH
77 return empty($errors) ? TRUE : $errors;
78 }
96025800 79
6a488035 80}