PluginProbe
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More / 6.35
Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes & More v6.35
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 6.35, at classes/views/applications/header.php

37 lines 1.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 <?php
2 /**
3 * Applications header.
4 *
5 * @package Formidable
6 *
7 * @var string $title Header title text.
8 * @var string $context Current applications view context (e.g. 'index').
9 */
10
11 if ( ! defined( 'ABSPATH' ) ) {
12 die( 'You are not allowed to call this page directly.' );
13 }
14 ?>
15 <div id="frm_top_bar">
16 <a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>" class="frm-header-logo">
17 <?php FrmAppHelper::show_header_logo(); ?>
18 <span class="screen-reader-text"><?php esc_html_e( 'View Forms', 'formidable' ); ?></span>
19 </a>
20 <div id="frm_bs_dropdown">
21 <h1>
22 <span>
23 <?php echo esc_html( $title ); ?>
24 </span>
25 </h1>
26 </div>
27 <div id="frm-publishing">
28 <?php do_action( 'frm_applications_header_inside_title_after_span', $context ); ?>
29 <?php do_action( 'frm_applications_header_after_title', $context ); ?>
30 <?php if ( 'index' === $context && ! FrmAppHelper::pro_is_installed() ) { ?>
31 <a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'header' ) ); ?>" class="button button-secondary frm-button-secondary" target="_blank" rel="noopener">
32 <?php esc_html_e( 'Upgrade', 'formidable' ); ?>
33 </a>
34 <?php } ?>
35 </div>
36 </div>
37