GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
views/table/table-footer.php
Go to the documentation of this file.
1 <?php
2 /**
3  * The footer for the output table.
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  <tfoot>
15  <tr>
16  <?php $gravityview->template->the_columns(); ?>
17  </tr>
18  <?php gravityview_footer( $gravityview ); ?>
19  </tfoot>
20 </table>
21 </div><!-- end .gv-table-container -->
22 <?php gravityview_after( $gravityview ); ?>
gravityview_after()
Definition: class-api.php:1274
gravityview_footer()
Definition: class-api.php:1245
gravityview()
The main GravityView wrapper function.