PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 3.06.06
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v3.06.06
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
← All changes | classes/views/shared/admin-header.php +23 -63 6.53.06.06 View file →
@@ -1,75 +1,35 @@
1 -<?php
2 -if ( ! defined( 'ABSPATH' ) ) {
3 - die( 'You are not allowed to call this page directly.' );
4 -}
1 +<div id="frm_top_bar">
2 + <?php
5 3
6 -FrmAppHelper::print_admin_banner( ! $has_nav && empty( $atts['switcher'] ) );
7 -?>
8 -<div id="frm_top_bar" class="<?php echo esc_attr( 'frm_nav_bar' ); ?>">
9 - <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>" class="frm-header-logo">
10 - <?php FrmAppHelper::show_header_logo(); ?>
11 - </a>
12 -
13 - <?php
14 4 // Add form nav
15 5 if ( $has_nav ) {
16 6 FrmAppController::get_form_nav( $atts['form'], true, 'hide' );
17 - } elseif ( isset( $atts['switcher'] ) ) {
18 - call_user_func( $atts['switcher'][0], $atts['switcher'][1] );
19 7 } else {
20 - // Used when no form is currently selected.
21 - ?>
8 +
9 + ?>
10 +
22 11 <div class="frm_top_left">
23 - <h1>
24 - <?php
25 - echo esc_html( $atts['label'] );
26 - FrmAppHelper::add_new_item_link( $atts );
27 -
28 - if ( isset( $atts['cancel_link'] ) ) {
29 - ?>
30 - <a href="<?php echo esc_url( $atts['cancel_link'] ); ?>" class="button frm-button-secondary frm_animate_bg">
31 - <?php esc_html_e( 'Cancel', 'formidable' ); ?>
32 - </a>
33 - <?php
34 - }
35 - ?>
36 - </h1>
12 + <h1><?php echo esc_html( $atts['label'] ); ?>
13 + <?php FrmAppHelper::add_new_item_link( $atts ); ?>
14 + <?php if ( isset( $atts['cancel_link'] ) ) { ?>
15 + <a href="<?php echo esc_url( $atts['cancel_link'] ) ?>" class="add-new-h2 frm_animate_bg"><?php esc_html_e( 'Cancel', 'formidable' ); ?></a>
16 + <?php } ?>
17 + </h1>
37 18 </div>
38 - <ul class="frm_form_nav"></ul>
39 - <?php
19 + <?php
40 20 }
21 + ?>
41 22
42 - if ( isset( $atts['nav'] ) ) {
43 - echo FrmAppHelper::kses( $atts['nav'], 'all' ); // phpcs:ignore WordPress.Security.EscapeOutput.OutputNotEscaped
44 - }
23 + <div class="clear"></div>
24 +</div>
45 25
46 - echo '<div id="frm-publishing">';
47 - if ( ! empty( $atts['publish'] ) || ! empty( $atts['import_link'] ) ) {
48 - $btn_type = 'primary';
49 - if ( isset( $atts['publish'] ) && is_array( $atts['publish'] ) ) {
50 - call_user_func( $atts['publish'][0], $atts['publish'][1] );
51 - $btn_type = 'secondary';
26 +<?php if ( isset( $atts['form'] ) && ! empty( $atts['form'] ) && ! isset( $atts['hide_title'] ) ) { ?>
27 + <h<?php echo $has_nav ? 1 : 2 ?> id="frm_form_heading">
28 + <?php
29 + echo esc_html( strip_tags( '' === $atts['form']->name ? __( '(no title)', 'formidable' ) : $atts['form']->name ) );
30 + if ( $has_nav ) {
31 + FrmAppHelper::add_new_item_link( $atts );
52 32 }
53 -
54 - if ( $atts['import_link'] ) {
55 - // Use primary style if it's the only button.
56 - FrmAppHelper::import_link( $btn_type );
57 - }
58 - } elseif ( ! FrmAppHelper::pro_is_installed() ) {
59 33 ?>
60 - <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'header' ) ); ?>" class="button button-secondary frm-button-secondary">
61 - <?php esc_html_e( 'Upgrade', 'formidable' ); ?>
62 - </a>
63 - <?php
64 - }
65 - echo '</div>';
66 -
67 - if ( FrmAppHelper::is_full_screen() ) {
68 - ?>
69 - <div class="frm-full-close">
70 - <a href="<?php echo esc_attr( $atts['close'] ); ?>" aria-label="<?php esc_attr_e( 'Close', 'formidable' ); ?>">
71 - <?php FrmAppHelper::icon_by_class( 'frmfont frm_close_icon', array( 'aria-label' => 'Dismiss' ) ); ?>
72 - </a>
73 - </div>
74 - <?php } ?>
75 -</div>
34 + </h<?php echo $has_nav ? 1 : 2 ?>>
35 +<?php } ?>