# formidable/2.05.09/classes/views/shared/form-nav.php

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

- Page: https://pluginprobe.com/plugins/formidable/2.05.09/code/classes/views/shared/form-nav.php
- Raw: https://pluginprobe.com/plugins/formidable/2.05.09/raw/classes/views/shared/form-nav.php
- Modified: 2018-01-03T22:31:08+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/2.05.09/code/classes/views/shared/form-nav.php#L10-L20`.

```php
<div id="titlediv">
<ul class="frm_form_nav">
<?php

$class = ' class="first"';
foreach ( $nav_items as $nav_item ) {
	if ( current_user_can( $nav_item['permission'] ) ) {
		?>
		<li<?php echo $class ?>><a<?php FrmAppHelper::select_current_page( $nav_item['page'], $current_page, $nav_item['current'] ); ?> href="<?php echo esc_url( $nav_item['link'] ) ?>"><?php echo esc_html( $nav_item['label'] ) ?></a> </li>
		<?php
		$class = '';
	}
}

FrmFormsHelper::form_switcher();
?>
</ul>

<?php if ( $form && $title == 'show' ) { ?>
    <input id="title" type="text" value="<?php echo esc_attr( $form->name == '' ? __( '(no title)') : $form->name ) ?>" readonly="readonly" disabled="disabled" />
<?php } ?>
</div>

```
