# formidable/6.35/classes/views/applications/header.php

Formidable Forms – WordPress Form Builder for Contact Forms, Calculators, Quizzes &amp; More, version 6.35. 37 lines.

- Page: https://pluginprobe.com/plugins/formidable/6.35/code/classes/views/applications/header.php
- Raw: https://pluginprobe.com/plugins/formidable/6.35/raw/classes/views/applications/header.php
- Modified: 2026-09-09T16:18:04+00:00

Line numbers below start at 1. Link to a line or a range by appending a fragment to the
page URL, for example `https://pluginprobe.com/plugins/formidable/6.35/code/classes/views/applications/header.php#L10-L20`.

```php
<?php
/**
 * Applications header.
 *
 * @package Formidable
 *
 * @var string $title   Header title text.
 * @var string $context Current applications view context (e.g. 'index').
 */

if ( ! defined( 'ABSPATH' ) ) {
	die( 'You are not allowed to call this page directly.' );
}
?>
<div id="frm_top_bar">
	<a href="<?php echo esc_url( admin_url( 'admin.php?page=formidable' ) ); ?>" class="frm-header-logo">
		<?php FrmAppHelper::show_header_logo(); ?>
		<span class="screen-reader-text"><?php esc_html_e( 'View Forms', 'formidable' ); ?></span>
	</a>
	<div id="frm_bs_dropdown">
		<h1>
			<span>
				<?php echo esc_html( $title ); ?>
			</span>
		</h1>
	</div>
	<div id="frm-publishing">
		<?php do_action( 'frm_applications_header_inside_title_after_span', $context ); ?>
		<?php do_action( 'frm_applications_header_after_title', $context ); ?>
		<?php if ( 'index' === $context && ! FrmAppHelper::pro_is_installed() ) { ?>
			<a href="<?php echo esc_url( FrmAppHelper::admin_upgrade_link( 'header' ) ); ?>" class="button button-secondary frm-button-secondary" target="_blank" rel="noopener">
				<?php esc_html_e( 'Upgrade', 'formidable' ); ?>
			</a>
		<?php } ?>
	</div>
</div>

```
