GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gravityview-admin-view-widget.php
Go to the documentation of this file.
1 <?php
2 /**
3  * @file class-gravityview-admin-view-widget.php
4  * @since 1.17.3
5  */
6 
8 
9  protected $label_type = 'widget';
10 
11  protected function additional_info() {
12 
13  $field_info_items = array();
14 
15  if( !empty( $this->item['description'] ) ) {
16 
17  $field_info_items[] = array(
18  'value' => $this->item['description']
19  );
20 
21  }
22 
23  return $field_info_items;
24  }
25 
26 }
A field or widget in GravityView view configuration.