Priceset 2nd half
[civicrm-core.git] / settings / Campaign.setting.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 *
30 * @package CRM
6b83d5bd 31 * @copyright CiviCRM LLC (c) 2004-2019
6a488035 32 */
a7e15692 33
34/**
6a488035
TO
35 * Settings metadata file
36 */
37
dfe1f88a
CW
38return [
39 'tag_unconfirmed' => [
6a488035
TO
40 'group_name' => 'Campaign Preferences',
41 'group' => 'campaign',
42 'name' => 'tag_unconfirmed',
43 'type' => 'String',
a7e15692 44 'html_type' => 'text',
6a488035
TO
45 'default' => 'Unconfirmed',
46 'add' => '4.1',
a7e15692 47 'title' => ts('Tag for Unconfirmed Petition Signers'),
6a488035
TO
48 'is_domain' => 1,
49 'is_contact' => 0,
a7e15692 50 'description' => ts('If set, new contacts that are created when signing a petition are assigned a tag of this name.'),
51 'help_text' => '',
dfe1f88a
CW
52 ],
53 'petition_contacts' => [
6a488035
TO
54 'group_name' => 'Campaign Preferences',
55 'group' => 'campaign',
56 'name' => 'petition_contacts',
57 'type' => 'String',
a7e15692 58 'html_type' => 'text',
6a488035
TO
59 'default' => 'Petition Contacts',
60 'add' => '4.1',
a7e15692 61 'title' => ts('Petition Signers Group'),
6a488035
TO
62 'is_domain' => 1,
63 'is_contact' => 0,
a7e15692 64 'description' => ts('All contacts that have signed a CiviCampaign petition will be added to this group. The group will be created if it does not exist (it is required for email verification).'),
65 'help_text' => '',
dfe1f88a 66 ],
6a488035 67
dfe1f88a 68];