PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 4.10.03
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v4.10.03
6.35 6.34 6.33.1 6.33 6.32.1 6.32 6.31 6.25 6.25.1 6.26 6.26.1 6.27 6.28 6.29 6.3 6.3.1 6.3.2 6.30 6.4 6.4.1 6.4.2 6.5 6.5.1 6.5.2 6.5.3 All 141 releases
formidable / classes / views / shared / views-info.php

views-info.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 4.10.03, at classes/views/shared/views-info.php

27 lines 1.0 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 if ( ! defined( 'ABSPATH' ) ) {
3 die( 'You are not allowed to call this page directly.' );
4 }
5 ?>
6 <div class="frm_wrap">
7 <div class="frm_page_container">
8 <?php
9 FrmAppHelper::get_admin_header(
10 array(
11 'label' => __( 'Views', 'formidable' ),
12 'form' => $form,
13 'close' => $form ? admin_url( 'admin.php?page=formidable&frm_action=views&form=' . $form->id ) : '',
14 )
15 );
16 ?>
17 <div class="frmcenter" style="margin-top:10vh">
18 <img src="<?php echo esc_attr( FrmAppHelper::plugin_url() . '/images/views.svg' ); ?>" alt="<?php esc_attr_e( 'Create a View', 'formidable' ); ?>" width="403" height="243" />
19 <h2><?php esc_html_e( 'Show and Edit Entries with Views', 'formidable' ); ?></h2>
20 <p style="max-width:400px;margin:20px auto">
21 <?php esc_html_e( 'Bring entries to the front-end of your site for full-featured applications or just to show the content.', 'formidable' ); ?>
22 </p>
23 <?php FrmAddonsController::conditional_action_button( 'views', 'views-info' ); ?>
24 </div>
25 </div>
26 </div>
27