GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
views/list/list-header.php
Go to the documentation of this file.
1 <?php
2 /**
3  * The header for the output list.
4  *
5  * @global \GV\Template_Context $gravityview
6  */
7 
8 if ( ! isset( $gravityview ) || empty( $gravityview->template ) ) {
9  gravityview()->log->error( '{file} template loaded without context', array( 'file' => __FILE__ ) );
10  return;
11 }
12 
13 ?>
14 <?php gravityview_before( $gravityview ); ?>
15 <div class="<?php gv_container_class( 'gv-list-container gv-list-multiple-container', true, $gravityview ); ?>">
16  <?php gravityview_header( $gravityview ); ?>
gravityview_header()
Definition: class-api.php:1216
gravityview()
The main GravityView wrapper function.
gravityview_before()
Definition: class-api.php:1187