Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
form-processor
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Extensions
form-processor
Merge requests
!4
add parent mailing group type and remove redundant $options from Option Group Type
Code
Review changes
Check out branch
Download
Patches
Plain diff
Merged
add parent mailing group type and remove redundant $options from Option Group Type
ErikHommel/form-processor:master
into
master
Overview
0
Commits
2
Pipelines
0
Changes
3
Merged
ErikHommel
requested to merge
ErikHommel/form-processor:master
into
master
5 years ago
Overview
0
Commits
2
Pipelines
0
Changes
3
Expand
Add the Parent Mailing Group Type (and remove unnecessary $options in OptionGroupType)
0
0
Merge request reports
Compare
master
version 1
1694b93e
5 years ago
master (base)
and
latest version
latest version
4966cfbc
2 commits,
5 years ago
version 1
1694b93e
1 commit,
5 years ago
3 files
+
114
−
3
Inline
Compare changes
Side-by-side
Inline
Show whitespace changes
Show one file at a time
Files
3
Search (e.g. *.vue) (Ctrl+P)
Civi/FormProcessor/Type/Factory.php
+
1
−
0
Options
@@ -31,6 +31,7 @@
$this
->
addType
(
new
CountryIsoCodeType
(
'CountryIsoCode'
,
E
::
ts
(
'Country ISO Code'
)));
$this
->
addType
(
new
StateProvinceType
(
'StateProvince'
,
E
::
ts
(
'State/Province'
)));
$this
->
addType
(
new
MailingGroupType
(
'MailingGroup'
,
E
::
ts
(
'Mailing Group'
)));
$this
->
addType
(
new
ParentMailingGroupType
(
'ParentMailingGroup'
,
E
::
ts
(
'Parent Mailing Group'
)));
$this
->
addType
(
new
ParticipantStatusType
(
'ParticipantStatusType'
,
E
::
ts
(
'Participant Status'
)));
$this
->
addType
(
new
CampaignType
(
'CampaignType'
,
E
::
ts
(
'Campaign'
)));
$this
->
addType
(
new
FileType
(
'file'
,
E
::
ts
(
'File'
)));
Loading