File Manager / wp-content Search Upload New Item Settings File "db5.php" Full path: /home1/epichome/public_html/wp-content/db5.php File size: 60.67 B (60.67 KB bytes) MIME-type: text/x-php Charset: utf-8 Download Open Edit Advanced Editor Back
/home/pharmacy/www/wp-content/plugins/ninja-forms/includes/Templates/admin-menu-all-forms.html.php
<div class="wrap">

    <h1>Forms
        <a href="<?php echo $add_new_url; ?>" class="page-title-action">
            <?php echo $add_new_text; ?>
        </a>
    </h1>

    <?php do_action( 'nf_admin_before_form_list' ); ?>

    <form method="post">
        <?php $table->display(); ?>
    </form>

    <?php

        if( isset( $_GET['debug' ] ) ){

            $forms = Ninja_Forms()->form()->get_forms();

            foreach( $forms as $form ){

                echo "<pre>";
                var_dump( $form->get_settings() );
                echo "</pre>";
            }
        }

    ?>

</div>