dev-master
9999999-devExtend Mautic custom fields for scalability and HIPAA/PCI compliance.
GPL-3.0-only
The Requires
by Heath Dutton
by Nicholai Bush
by Scott Shipman
plugin marketing mautic marketing automation
Extend Mautic custom fields for scalability and HIPAA/PCI compliance.
, (*1)
Features: * Allows for hundreds of custom fields. * Prevents outages due to field additions/deletions at large scale (when used exclusively). * Allows for separation of data for those with HIPAA/PCI concerns., (*2)
Out of the box Mautic has a few challenges for companies that need hundreds of fields, or to store millions of leads. A full problem definition can be found at https://github.com/mautic/mautic/issues/4139. This plugin is a compromise between a strict EAV approach and current custom field support, and allows an admin to disable the core "Contact" fields in favor of Extended fields if needed., (*3)
, (*4)
When creating a custom field, rather than adding a column to either the Lead (leads) or Company (companies) tables, This plugin implements new tables based on field type (boolean, text, choice, etc), and similar tables for secure data fields. A total of 14 new tables are created following the table name syntax:, (*5)
`leads_fields_leads . [DATA TYPE] . xref` OR `leads_fields_lead . [DATA TYPE] . _secure_xref`
Each table contains the columns:, (*6)
`lead_id` - the id of the lead from the `leads` table the row applies to `lead_field_id` - the id of the corresponding Custom Field from the `lead_fields` table `value` - the value for the Custom Field.
This plugin takes two approaches to overriding current methods for managing custom fields., (*7)
To allow for new Object types for Custom Fields, three form types are overridden
using Symfony's Form Inheritance. By declaring a Form Inheritance tag in the plugin's config
the build
method of the original Form Type can be overridden to allow this plugin to redefine
the form, injecting two new validated Object Types - Extended Field
and Secure Extended Field
.
This Plugin overrides the FieldType
, LeadType
and ListType
form definitions., (*8)
The other method of overriding the Mautic Lead Bundle is Symfony's Compiler Pass method. This allows the plugin to redirect the Classes used for service definitions from the Mautic Lead Bundle to use Classes defined by this plugin. The following services were redefined using this method:, (*9)
`mautic.lead.model.field` `mautic.form.type.leadfield` `mautic.lead.model.lead` `mautic.lead.repository.lead` `mautic.lead.model.list`
Choose a release that matches your version of Mautic., (*10)
Mautic version | Installation |
---|---|
2.12.x | composer require thedmsgroup/mautic-extended-field-bundle "^2.12" |
2.14.x | composer require thedmsgroup/mautic-extended-field-bundle "^2.14" |
2.15.x | composer require thedmsgroup/mautic-extended-field-bundle "^2.15" |
/plugins/MauticExtendedFieldBundle
/s/plugins/reload
. The Extended Fields plugin should show up. Installation is complete./s/contacts/fields/new
select Object "Extended" or "Extended Secure"./s/config/edit
.** NOTE ** The ReportSubscriber event listener dynamically checks for an edit or view request of reports and dynanically sets priority of the REPORT_ON_BUILD. The REPORT_ON_BUILD and REPORT_ON_GENERATE subscribers exist specifically to add UTM Tags into the Segment Membership Data Source. This is tangental functionality to the core "Extended Fields" purpose and will hopefully go away pending approval of a Core modification that adds UTM Tags into the contacts column list.
Icon by lakshishasri from the Noun project., (*11)
Extend Mautic custom fields for scalability and HIPAA/PCI compliance.
GPL-3.0-only
plugin marketing mautic marketing automation