Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add preference_center.tooltip to landing page PageType #7915

Merged
merged 4 commits into from
Jan 28, 2020
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
5 changes: 4 additions & 1 deletion app/bundles/PageBundle/Form/Type/PageType.php
Original file line number Diff line number Diff line change
Expand Up @@ -127,8 +127,11 @@ public function buildForm(FormBuilderInterface $builder, array $options)
'isPreferenceCenter',
'yesno_button_group',
[
'label' => 'mautic.page.config.preference_center',
'label' => 'mautic.page.form.preference_center',
'data' => $options['data']->isPreferenceCenter() ? $options['data']->isPreferenceCenter() : false,
'attr' => [
'tooltip' => 'mautic.page.form.preference_center.tooltip',
],
]
);

Expand Down
3 changes: 2 additions & 1 deletion app/bundles/PageBundle/Translations/en_US/messages.ini
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,8 @@ mautic.page.config.form.tracking.landingpage.enabled="Enable on Mautic landing p
mautic.page.config.form.tracking.trackingpage.enabled="Enabled on your tracking page"
mautic.page.config.form.tracking.anonymize.ip.enabled="Enabled IP Anonymization"
mautic.page.config.form.tracking.anonymize.ip.enabled.tooltip="In some cases, you might need to anonymize the IP address of the hit sent to Google Analytics."
mautic.page.config.preference_center="Is preference center"
mautic.page.form.preference_center="Set as preference center page"
mautic.page.form.preference_center.tooltip="If selected, the page will be marked as a preference center landing page. When this page is configured as a preference center in a Mautic Email, recipients will be shown the page when clicking on the <strong><code>{unsubscribe_url}</code></strong> link.<br />See the <a href="https://www.mautic.org/docs/en/contacts/customize_preference_center.html" target="_blank">Mautic documentation</a> under Contacts / Preference Center for more information."
mautic.page.config.no_index="Disable search indexing"
mautic.email.form.preference_center="Preference center page"
mautic.email.form.preference_center.tooltip="Display the selected page as the preference center if a user accesses it through this email."
Expand Down