PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 5.4.4
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v5.4.4
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 / applications / header.php

header.php in Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More 5.4.4, at classes/views/applications/header.php

36 lines 971 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 <div id="frm_top_bar">
7 <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>" class="frm-header-logo">
8 <?php FrmAppHelper::show_header_logo(); ?>
9 </a>
10 <div id="frm_bs_dropdown">
11 <h1>
12 <span>
13 <?php echo esc_html( $title ); ?>
14 </span>
15 <?php do_action( 'frm_applications_header_inside_title_after_span', $context ); ?>
16 </h1>
17 <?php if ( 'index' === $context && ! FrmAppHelper::pro_is_installed() ) { ?>
18 <?php
19 FrmAddonsController::show_conditional_action_button(
20 array(
21 'addon' => false,
22 'upgrade_link' => FrmAppHelper::admin_upgrade_link(
23 array(
24 'medium' => 'applications-header',
25 'content' => 'applications',
26 )
27 ),
28 )
29 );
30 ?>
31 <?php } ?>
32 <?php do_action( 'frm_applications_header_after_title', $context ); ?>
33 </div>
34 <div style="clear: both;"></div>
35 </div>
36