Diff: STRATO-apps/wordpress_03/app/wp-content/plugins/fluentform/app/Views/admin/addons/pdf_promo.php

Keine Baseline-Datei – Diff nur gegen leer.
Zur Liste
1 -
1 + <div class="add_on_modules">
2 + <div class="modules_header mb-6">
3 + <h4 class="title mb-2"><?php esc_html_e('Fluent Forms PDF Modules', 'fluentform'); ?></h4>
4 + <p class="text"><?php esc_html_e('Generate PDF from your form submissions. You can create PDF templates and download / send via email too.', 'fluentform'); ?></p>
5 + </div>
6 + <div class="modules_body">
7 + <?php if(!$is_installed): ?>
8 + <div class="install_wrapper text-center mb-5">
9 + <img class="mb-5" src="<?php echo esc_url($public_url . 'img/pdf-promo-img.png'); ?>" alt="">
10 + <h2 class="mb-4"><?php esc_html_e('PDF Module is not installed yet. Please install now', 'fluentform'); ?> <span class="text-danger"><?php esc_html_e('(it\'s free)', 'fluentform'); ?></span></h2>
11 + <p class="fs-15 mb-5" style="width: 540px; margin-left: auto; margin-right: auto;"><?php esc_html_e('Generate PDF from your form submissions. You can create PDF templates and download / send via email too.', 'fluentform'); ?></p>
12 + <a class="el-button el-button--primary" href="<?php echo esc_url($install_url); ?>">
13 + <?php esc_html_e('Install Fluent Forms PDF Addon', 'fluentform'); ?>
14 + </a>
15 + </div>
16 + <?php else:
17 + do_action_deprecated(
18 + 'fluentform_addons_page_render_fluentform_pdf_settings',
19 + [
20 +
21 + ],
22 + FLUENTFORM_FRAMEWORK_UPGRADE,
23 + 'fluentform/addons_page_render_fluentform_pdf_settings',
24 + 'Use fluentform/addons_page_render_fluentform_pdf_settings instead of fluentform_addons_page_render_fluentform_pdf_settings.'
25 + );
26 + do_action('fluentform/addons_page_render_fluentform_pdf_settings');
27 + endif; ?>
28 +
29 + </div>
30 + </div>
31 +