GravityView
2.17
The best, easiest way to display Gravity Forms entries on your website.
templates
views
table
views/table/table-header.php
Go to the documentation of this file.
1
<?php
2
/**
3
* The header 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
<?php
gravityview_before
( $gravityview ); ?>
15
<div
class
=
"<?php gv_container_class( 'gv-table-view gv-table-container gv-table-multiple-container', true, $gravityview ); ?>"
>
16
<table
class
=
"gv-table-view"
>
17
<thead>
18
<?php
gravityview_header
( $gravityview ); ?>
19
<tr>
20
<?php $gravityview->template->the_columns(); ?>
21
</tr>
22
</thead>
gravityview_header
gravityview_header()
Definition:
class-api.php:1216
gravityview
gravityview()
The main GravityView wrapper function.
Definition:
future/gravityview.php:26
gravityview_before
gravityview_before()
Definition:
class-api.php:1187