GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
gravityview-content.php
Go to the documentation of this file.
1 <?php
2 /**
3  * Display the tab panels for the Settings metabox
4  *
5  * @package GravityView
6  * @subpackage Gravityview/admin/metaboxes/views
7  * @since 1.8
8  *
9  * @global array $metaboxes
10  * @global WP_Post $post
11  */
12 
13 ?>
14 
15 <div id="gravityview-metabox-content-container">
16 <?php
17 
18  /**
19  * Loop through the array of registered metaboxes
20  * @var GravityView_Metabox_Tab $metabox
21  */
22  foreach( $metaboxes as $metabox ) {
23 
24  echo '<div id="'.esc_attr( $metabox->id ).'">';
25 
26  $metabox->render( $post );
27 
28  echo '</div>';
29  }
30 ?>
31 </div>
global $post
Definition: delete-entry.php:7