PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.3.2
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.3.2
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 / frm-entries / direct.php

direct.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 6.3.2, at classes/views/frm-entries/direct.php

20 lines 684 B
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 <!DOCTYPE html>
7 <html <?php language_attributes(); ?>>
8 <head>
9 <title><?php bloginfo( 'name' ); ?> | <?php echo esc_html( $form->name ); ?></title>
10 <meta charset="<?php bloginfo( 'charset' ); ?>" />
11 <meta name="viewport" content="width=device-width, initial-scale=1.0"/>
12 <?php wp_head(); ?>
13 <?php FrmFormsController::maybe_load_css( $form, 1, false ); ?>
14 </head>
15 <body class="frm_preview_page">
16 <?php echo FrmFormsController::show_form( $form->id, '', 'auto', 'auto' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped ?>
17 <?php wp_footer(); ?>
18 </body>
19 </html>
20