Merge pull request #17828 from eileenmcnaughton/matt
[civicrm-core.git] / ext / flexmailer / settings / flexmailer.setting.php
1 <?php
2
3 use CRM_Flexmailer_ExtensionUtil as E;
4
5 return [
6 'flexmailer_traditional' => [
7 'group_name' => 'Flexmailer Preferences',
8 'group' => 'flexmailer',
9 'name' => 'flexmailer_traditional',
10 'type' => 'String',
11 'html_type' => 'select',
12 'html_attributes' => ['class' => 'crm-select2'],
13 'pseudoconstant' => ['callback' => '_flexmailer_traditional_options'],
14 'default' => 'auto',
15 'add' => '5.13',
16 'title' => E::ts('Traditional Mailing Handler'),
17 'is_domain' => 1,
18 'is_contact' => 0,
19 'description' => E::ts('For greater backward-compatibility, process "<code>traditional</code>" mailings with the CiviMail\'s hard-coded BAO.') . '<br/>'
20 . E::ts('For greater forward-compatibility, process "<code>traditional</code>" mailings with Flexmailer\'s extensible pipeline.'),
21 'help_text' => NULL,
22 'settings_pages' => [
23 'flexmailer' => [
24 'weight' => 5,
25 ],
26 ],
27 ],
28 ];