GravityView  2.17
The best, easiest way to display Gravity Forms entries on your website.
class-gv-template-entry-list.php
Go to the documentation of this file.
1 <?php
2 namespace GV;
3 
4 /** If this file is called directly, abort. */
5 if ( ! defined( 'GRAVITYVIEW_DIR' ) ) {
6  die();
7 }
8 
9 /**
10  * The Entry List Template class .
11  *
12  * Renders a \GV\Entry using a \GV\Entry_Renderer.
13  */
15  /**
16  * @var string The template slug to be loaded (like "table", "list")
17  */
18  public static $slug = 'list';
19 
20  /**
21  * Output the field in the list view.
22  *
23  * @param \GV\Field $field The field to output.
24  * @param array $extras Extra stuff, like wpautop, etc.
25  *
26  * @return string
27  */
28  public function the_field( \GV\Field $field, $extras = null ) {
29  $form = \GV\GF_Form::by_id( $field->form_id ) ? : $this->view->form;
30  $entry = $this->entry->from_field( $field );
31 
32  if ( ! $entry ) {
33  return '';
34  }
35 
36  $renderer = new Field_Renderer();
37  $source = is_numeric( $field->ID ) ? ( GF_Form::by_id( $field->form_id ) ? : $this->view->form ) : new Internal_Source();
38 
39  $value = $renderer->render( $field, $this->view, $source, $entry, $this->request );
40 
41  $context = Template_Context::from_template( $this, compact( 'field', 'entry' ) );
42 
43  /**
44  * @deprecated Here for back-compatibility.
45  */
46  $label = apply_filters( 'gravityview_render_after_label', $field->get_label( $this->view, $form, $entry ), $field->as_configuration() );
47  $label = apply_filters( 'gravityview/template/field_label', $label, $field->as_configuration(), is_numeric( $field->ID ) ? ( $source->form ? $source->form : null ) : null, $entry->as_entry() );
48 
49  /**
50  * @filter `gravityview/template/field/label` Override the field label.
51  * @since 2.0
52  * @param string $label The label to override.
53  * @param \GV\Template_Context $context The context.
54  */
55  $label = apply_filters( 'gravityview/template/field/label', $label, $context );
56 
57  /**
58  * @filter `gravityview/template/table/entry/hide_empty`
59  * @param boolean $hide_empty Should the row be hidden if the value is empty? Default: don't hide.
60  * @param \GV\Template_Context $context The context ;) Love it, cherish it. And don't you dare modify it!
61  */
62  $hide_empty = apply_filters( 'gravityview/render/hide-empty-zone', Utils::get( $extras, 'hide_empty', $this->view->settings->get( 'hide_empty', false ) ), $context );
63 
64  if ( is_numeric( $field->ID ) ) {
65  $extras['field'] = $field->as_configuration();
66  }
67 
68  $extras['entry'] = $this->entry->as_entry();
69  $extras['hide_empty'] = $hide_empty;
70  $extras['label'] = $label;
71  $extras['value'] = $value;
72 
73  return \gravityview_field_output( $extras, $context );
74  }
75 
76  /**
77  * Return an array of variables ready to be extracted.
78  *
79  * @param string|array $zones The field zones to grab.
80  *
81  * @return array An array ready to be extract()ed in the form of
82  * $zone => \GV\Field_Collection
83  * has_$zone => int
84  */
85  public function extract_zone_vars( $zones ) {
86  if ( ! is_array( $zones ) ) {
87  $zones = array( $zones );
88  }
89 
90  $vars = array();
91  foreach ( $zones as $zone ) {
92  $zone_var = str_replace( '-', '_', $zone );
93  $vars[ $zone_var ] = $this->view->fields->by_position( 'single_list-' . $zone )->by_visible( $this->view );
94  $vars[ "has_$zone_var" ] = $vars[ $zone_var ]->count();
95  }
96 
97  return $vars;
98  }
99 }
If this file is called directly, abort.
the_field(\GV\Field $field, $extras=null)
Output the field in the list view.
if(gravityview() ->plugin->is_GF_25()) $form
If this file is called directly, abort.
If this file is called directly, abort.
If this file is called directly, abort.
extract_zone_vars( $zones)
Return an array of variables ready to be extracted.
static by_id( $form_id)
Construct a instance by ID.
If this file is called directly, abort.
gravityview_field_output( $passed_args, $context=null)
Output field based on a certain html markup.
Definition: class-api.php:1452
$entry
Definition: notes.php:27