PluginProbe
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder / 6.2.2
Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder v6.2.2
6.2.14 6.2.13 6.2.12 6.2.10 6.2.11 6.2.9 6.2.8 6.2.7 6.2.6 6.2.5 6.2.4 6.2.3 6.2.2 3.6.22 3.6.31 3.6.40 3.6.41 3.6.42 3.6.50 3.6.51 3.6.60 3.6.61 3.6.62 3.6.64 3.6.65 All 196 releases
fluentform / app / Views / admin / addons / pdf_promo.php

pdf_promo.php in Fluent Forms – Customizable Contact Forms, Survey, Quiz, & Conversational Form Builder 6.2.2, at app/Views/admin/addons/pdf_promo.php

27 lines 1.4 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2
3 defined('ABSPATH') or die;
4
5 ?>
6 <div class="add_on_modules">
7 <div class="modules_header mb-6">
8 <h4 class="title mb-2"><?php esc_html_e('Fluent Forms PDF Modules', 'fluentform'); ?></h4>
9 <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>
10 </div>
11 <div class="modules_body">
12 <?php if(!$is_installed): ?>
13 <div class="install_wrapper text-center mb-5">
14 <img class="mb-5" src="<?php echo esc_url($public_url . 'img/pdf-promo-img.png'); ?>" alt="">
15 <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>
16 <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>
17 <a class="el-button el-button--primary" href="<?php echo esc_url($install_url); ?>">
18 <?php esc_html_e('Install Fluent Forms PDF Addon', 'fluentform'); ?>
19 </a>
20 </div>
21 <?php else:
22 do_action('fluentform/addons_page_render_fluentform_pdf_settings');
23 endif; ?>
24
25 </div>
26 </div>
27