@@ -125,7 +125,7 @@ discard block |
||
125 | 125 | $supports = array( 'title', 'revisions' ); |
126 | 126 | |
127 | 127 | if ( $is_hierarchical ) { |
128 | - $supports[] = 'page-attributes'; |
|
128 | + $supports[ ] = 'page-attributes'; |
|
129 | 129 | } |
130 | 130 | |
131 | 131 | /** |
@@ -227,11 +227,11 @@ discard block |
||
227 | 227 | $rule = array( sprintf( '%s/([^/]+)/csv/?', $slug ), 'index.php?gravityview=$matches[1]&csv=1', 'top' ); |
228 | 228 | |
229 | 229 | add_filter( 'query_vars', function( $query_vars ) { |
230 | - $query_vars[] = 'csv'; |
|
230 | + $query_vars[ ] = 'csv'; |
|
231 | 231 | return $query_vars; |
232 | 232 | } ); |
233 | 233 | |
234 | - if ( ! isset( $wp_rewrite->extra_rules_top[ $rule[0] ] ) ) { |
|
234 | + if ( ! isset( $wp_rewrite->extra_rules_top[ $rule[ 0 ] ] ) ) { |
|
235 | 235 | call_user_func_array( 'add_rewrite_rule', $rule ); |
236 | 236 | } |
237 | 237 | } |
@@ -308,13 +308,13 @@ discard block |
||
308 | 308 | return $content; |
309 | 309 | } |
310 | 310 | |
311 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
311 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
312 | 312 | |
313 | 313 | /** |
314 | 314 | * Editing a single entry. |
315 | 315 | */ |
316 | 316 | if ( $entry = $request->is_edit_entry( $view->form ? $view->form->ID : 0 ) ) { |
317 | - if ( $entry['status'] != 'active' ) { |
|
317 | + if ( $entry[ 'status' ] != 'active' ) { |
|
318 | 318 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
319 | 319 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
320 | 320 | } |
@@ -325,7 +325,7 @@ discard block |
||
325 | 325 | } |
326 | 326 | |
327 | 327 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
328 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
328 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
329 | 329 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
330 | 330 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
331 | 331 | } |
@@ -348,7 +348,7 @@ discard block |
||
348 | 348 | |
349 | 349 | foreach ( $entryset as $e ) { |
350 | 350 | |
351 | - if ( 'active' !== $e['status'] ) { |
|
351 | + if ( 'active' !== $e[ 'status' ] ) { |
|
352 | 352 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $e->ID ) ); |
353 | 353 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
354 | 354 | } |
@@ -359,7 +359,7 @@ discard block |
||
359 | 359 | } |
360 | 360 | |
361 | 361 | if ( $show_only_approved && ! $is_admin_and_can_view ) { |
362 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
362 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $e->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
363 | 363 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $e->ID ) ); |
364 | 364 | return __( 'You are not allowed to view this content.', 'gravityview' ); |
365 | 365 | } |
@@ -534,7 +534,7 @@ discard block |
||
534 | 534 | $join_column = is_numeric( $join_column ) ? GF_Field::by_id( $join, $join_column ) : Internal_Field::by_id( $join_column ); |
535 | 535 | $join_on_column = is_numeric( $join_on_column ) ? GF_Field::by_id( $join_on, $join_on_column ) : Internal_Field::by_id( $join_on_column ); |
536 | 536 | |
537 | - $joins [] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
537 | + $joins [ ] = new Join( $join, $join_column, $join_on, $join_on_column ); |
|
538 | 538 | } |
539 | 539 | |
540 | 540 | return $joins; |
@@ -624,13 +624,13 @@ discard block |
||
624 | 624 | } |
625 | 625 | |
626 | 626 | foreach ( $_fields as $field ) { |
627 | - if ( ! empty( $field['unions'] ) ) { |
|
628 | - foreach ( $field['unions'] as $form_id => $field_id ) { |
|
627 | + if ( ! empty( $field[ 'unions' ] ) ) { |
|
628 | + foreach ( $field[ 'unions' ] as $form_id => $field_id ) { |
|
629 | 629 | if ( ! isset( $unions[ $form_id ] ) ) { |
630 | 630 | $unions[ $form_id ] = array(); |
631 | 631 | } |
632 | 632 | |
633 | - $unions[ $form_id ][ $field['id'] ] = |
|
633 | + $unions[ $form_id ][ $field[ 'id' ] ] = |
|
634 | 634 | is_numeric( $field_id ) ? \GV\GF_Field::by_id( \GV\GF_Form::by_id( $form_id ), $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
635 | 635 | } |
636 | 636 | } |
@@ -685,7 +685,7 @@ discard block |
||
685 | 685 | if ( ! $view->form ) { |
686 | 686 | gravityview()->log->error( 'View #{view_id} tried attaching non-existent Form #{form_id} to it.', array( |
687 | 687 | 'view_id' => $view->ID, |
688 | - 'form_id' => $view->_gravityview_form_id ? : 0, |
|
688 | + 'form_id' => $view->_gravityview_form_id ?: 0, |
|
689 | 689 | ) ); |
690 | 690 | } |
691 | 691 | |
@@ -925,10 +925,10 @@ discard block |
||
925 | 925 | * Remove multiple sorting before calling legacy filters. |
926 | 926 | * This allows us to fake it till we make it. |
927 | 927 | */ |
928 | - if ( ! empty( $parameters['sort_field'] ) && is_array( $parameters['sort_field'] ) ) { |
|
929 | - $parameters['sort_field'] = reset( $parameters['sort_field'] ); |
|
930 | - if ( ! empty( $parameters['sort_direction'] ) && is_array( $parameters['sort_direction'] ) ) { |
|
931 | - $parameters['sort_direction'] = reset( $parameters['sort_direction'] ); |
|
928 | + if ( ! empty( $parameters[ 'sort_field' ] ) && is_array( $parameters[ 'sort_field' ] ) ) { |
|
929 | + $parameters[ 'sort_field' ] = reset( $parameters[ 'sort_field' ] ); |
|
930 | + if ( ! empty( $parameters[ 'sort_direction' ] ) && is_array( $parameters[ 'sort_direction' ] ) ) { |
|
931 | + $parameters[ 'sort_direction' ] = reset( $parameters[ 'sort_direction' ] ); |
|
932 | 932 | } |
933 | 933 | } |
934 | 934 | |
@@ -937,31 +937,30 @@ discard block |
||
937 | 937 | */ |
938 | 938 | $parameters = \GravityView_frontend::get_view_entries_parameters( $parameters, $this->form->ID ); |
939 | 939 | |
940 | - $parameters['context_view_id'] = $this->ID; |
|
940 | + $parameters[ 'context_view_id' ] = $this->ID; |
|
941 | 941 | $parameters = \GVCommon::calculate_get_entries_criteria( $parameters, $this->form->ID ); |
942 | 942 | |
943 | 943 | if ( ! is_array( $parameters ) ) { |
944 | 944 | $parameters = array(); |
945 | 945 | } |
946 | 946 | |
947 | - if ( ! is_array( $parameters['search_criteria'] ) ) { |
|
948 | - $parameters['search_criteria'] = array(); |
|
947 | + if ( ! is_array( $parameters[ 'search_criteria' ] ) ) { |
|
948 | + $parameters[ 'search_criteria' ] = array(); |
|
949 | 949 | } |
950 | 950 | |
951 | - if ( ( ! isset( $parameters['search_criteria']['field_filters'] ) ) || ( ! is_array( $parameters['search_criteria']['field_filters'] ) ) ) { |
|
952 | - $parameters['search_criteria']['field_filters'] = array(); |
|
951 | + if ( ( ! isset( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) || ( ! is_array( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) ) { |
|
952 | + $parameters[ 'search_criteria' ][ 'field_filters' ] = array(); |
|
953 | 953 | } |
954 | 954 | |
955 | 955 | if ( $request instanceof REST\Request ) { |
956 | 956 | $atts = $this->settings->as_atts(); |
957 | 957 | $paging_parameters = wp_parse_args( $request->get_paging(), array( |
958 | - 'paging' => array( 'page_size' => $atts['page_size'] ), |
|
958 | + 'paging' => array( 'page_size' => $atts[ 'page_size' ] ), |
|
959 | 959 | ) ); |
960 | - $parameters['paging'] = $paging_parameters['paging']; |
|
960 | + $parameters[ 'paging' ] = $paging_parameters[ 'paging' ]; |
|
961 | 961 | } |
962 | 962 | |
963 | - $page = Utils::get( $parameters['paging'], 'current_page' ) ? |
|
964 | - : ( ( ( $parameters['paging']['offset'] - $this->settings->get( 'offset' ) ) / \GV\Utils::get( $parameters, 'paging/page_size', 25 ) ) + 1 ); |
|
963 | + $page = Utils::get( $parameters[ 'paging' ], 'current_page' ) ?: ( ( ( $parameters[ 'paging' ][ 'offset' ] - $this->settings->get( 'offset' ) ) / \GV\Utils::get( $parameters, 'paging/page_size', 25 ) ) + 1 ); |
|
965 | 964 | |
966 | 965 | /** |
967 | 966 | * Cleanup duplicate field_filter parameters to simplify the query. |
@@ -969,28 +968,28 @@ discard block |
||
969 | 968 | $unique_field_filters = array(); |
970 | 969 | foreach ( Utils::get( $parameters, 'search_criteria/field_filters', array() ) as $key => $filter ) { |
971 | 970 | if ( 'mode' === $key ) { |
972 | - $unique_field_filters['mode'] = $filter; |
|
971 | + $unique_field_filters[ 'mode' ] = $filter; |
|
973 | 972 | } else if ( ! in_array( $filter, $unique_field_filters ) ) { |
974 | - $unique_field_filters[] = $filter; |
|
973 | + $unique_field_filters[ ] = $filter; |
|
975 | 974 | } |
976 | 975 | } |
977 | - $parameters['search_criteria']['field_filters'] = $unique_field_filters; |
|
976 | + $parameters[ 'search_criteria' ][ 'field_filters' ] = $unique_field_filters; |
|
978 | 977 | |
979 | - if ( ! empty( $parameters['search_criteria']['field_filters'] ) ) { |
|
978 | + if ( ! empty( $parameters[ 'search_criteria' ][ 'field_filters' ] ) ) { |
|
980 | 979 | gravityview()->log->notice( 'search_criteria/field_filters is not empty, third-party code may be using legacy search_criteria filters.' ); |
981 | 980 | } |
982 | 981 | |
983 | 982 | $entries = $this->form->get_entries( $this ) |
984 | - ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters['search_criteria'] ) ) |
|
983 | + ->filter( \GV\GF_Entry_Filter::from_search_criteria( $parameters[ 'search_criteria' ] ) ) |
|
985 | 984 | ->offset( $this->settings->get( 'offset' ) ) |
986 | - ->limit( $parameters['paging']['page_size'] ) |
|
985 | + ->limit( $parameters[ 'paging' ][ 'page_size' ] ) |
|
987 | 986 | ->page( $page ); |
988 | 987 | |
989 | 988 | |
990 | - if ( ! empty( $parameters['sorting'] ) && ! empty( $parameters['sorting']['key'] ) ) { |
|
989 | + if ( ! empty( $parameters[ 'sorting' ] ) && ! empty( $parameters[ 'sorting' ][ 'key' ] ) ) { |
|
991 | 990 | $field = new \GV\Field(); |
992 | - $field->ID = $parameters['sorting']['key']; |
|
993 | - $direction = strtolower( $parameters['sorting']['direction'] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
991 | + $field->ID = $parameters[ 'sorting' ][ 'key' ]; |
|
992 | + $direction = strtolower( $parameters[ 'sorting' ][ 'direction' ] ) == 'asc' ? \GV\Entry_Sort::ASC : \GV\Entry_Sort::DESC; |
|
994 | 993 | $entries = $entries->sort( new \GV\Entry_Sort( $field, $direction ) ); |
995 | 994 | } |
996 | 995 | } |
@@ -1064,7 +1063,7 @@ discard block |
||
1064 | 1063 | $allowed = $headers = array(); |
1065 | 1064 | |
1066 | 1065 | foreach ( $view->fields->by_position( "directory_*" )->by_visible( $view )->all() as $id => $field ) { |
1067 | - $allowed[] = $field; |
|
1066 | + $allowed[ ] = $field; |
|
1068 | 1067 | } |
1069 | 1068 | |
1070 | 1069 | $renderer = new Field_Renderer(); |
@@ -1086,17 +1085,17 @@ discard block |
||
1086 | 1085 | } ); |
1087 | 1086 | |
1088 | 1087 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
1089 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
1088 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
1090 | 1089 | } |
1091 | 1090 | |
1092 | 1091 | foreach ( $allowed as $field ) { |
1093 | 1092 | $source = is_numeric( $field->ID ) ? $view->form : new \GV\Internal_Source(); |
1094 | 1093 | |
1095 | - $return[] = $renderer->render( $field, $view, $source, $entry, gravityview()->request, '\GV\Field_CSV_Template' ); |
|
1094 | + $return[ ] = $renderer->render( $field, $view, $source, $entry, gravityview()->request, '\GV\Field_CSV_Template' ); |
|
1096 | 1095 | |
1097 | 1096 | if ( ! $headers_done ) { |
1098 | 1097 | $label = $field->get_label( $view, $source, $entry ); |
1099 | - $headers[] = $label ? $label : $field->ID; |
|
1098 | + $headers[ ] = $label ? $label : $field->ID; |
|
1100 | 1099 | } |
1101 | 1100 | } |
1102 | 1101 |
@@ -47,22 +47,22 @@ discard block |
||
47 | 47 | */ |
48 | 48 | $atts = apply_filters( 'gravityview/shortcodes/gventry/atts', $atts ); |
49 | 49 | |
50 | - $view = \GV\View::by_id( $atts['view_id'] ); |
|
50 | + $view = \GV\View::by_id( $atts[ 'view_id' ] ); |
|
51 | 51 | |
52 | 52 | if ( ! $view ) { |
53 | - gravityview()->log->error( 'View does not exist #{view_id}', array( 'view_id' => $atts['view_id'] ) ); |
|
53 | + gravityview()->log->error( 'View does not exist #{view_id}', array( 'view_id' => $atts[ 'view_id' ] ) ); |
|
54 | 54 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', null, null, $atts ); |
55 | 55 | } |
56 | 56 | |
57 | - $entry_id = ! empty( $atts['entry_id'] ) ? $atts['entry_id'] : $atts['id']; |
|
57 | + $entry_id = ! empty( $atts[ 'entry_id' ] ) ? $atts[ 'entry_id' ] : $atts[ 'id' ]; |
|
58 | 58 | |
59 | - switch( $entry_id ): |
|
59 | + switch ( $entry_id ): |
|
60 | 60 | case 'last': |
61 | 61 | $entries = $view->get_entries( null ); |
62 | 62 | |
63 | 63 | /** If a sort already exists, reverse it. */ |
64 | 64 | if ( $sort = end( $entries->sorts ) ) { |
65 | - $entries = $entries->sort( new \GV\Entry_Sort( $sort->field, $sort->direction == \GV\Entry_Sort::RAND ? : ( $sort->direction == \GV\Entry_Sort::ASC ? \GV\Entry_Sort::DESC : \GV\Entry_Sort::ASC ) ), $sort->mode ); |
|
65 | + $entries = $entries->sort( new \GV\Entry_Sort( $sort->field, $sort->direction == \GV\Entry_Sort::RAND ?: ( $sort->direction == \GV\Entry_Sort::ASC ? \GV\Entry_Sort::DESC : \GV\Entry_Sort::ASC ) ), $sort->mode ); |
|
66 | 66 | } else { |
67 | 67 | /** Otherwise, sort by date_created */ |
68 | 68 | $entries = $entries->sort( new \GV\Entry_Sort( \GV\Internal_Field::by_id( 'id' ), \GV\Entry_Sort::ASC ), \GV\Entry_Sort::NUMERIC ); |
@@ -79,12 +79,12 @@ discard block |
||
79 | 79 | break; |
80 | 80 | default: |
81 | 81 | if ( ! $entry = \GV\GF_Entry::by_id( $entry_id ) ) { |
82 | - gravityview()->log->error( 'Entry #{entry_id} not found', array( 'view_id' => $atts['view_id'] ) ); |
|
82 | + gravityview()->log->error( 'Entry #{entry_id} not found', array( 'view_id' => $atts[ 'view_id' ] ) ); |
|
83 | 83 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, null, $atts ); |
84 | 84 | } |
85 | 85 | endswitch; |
86 | 86 | |
87 | - if ( $view->form->ID != $entry['form_id'] ) { |
|
87 | + if ( $view->form->ID != $entry[ 'form_id' ] ) { |
|
88 | 88 | gravityview()->log->error( 'Entry does not belong to view (form mismatch)' ); |
89 | 89 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts ); |
90 | 90 | } |
@@ -94,7 +94,7 @@ discard block |
||
94 | 94 | return apply_filters( 'gravityview/shortcodes/gventry/output', get_the_password_form( $view->ID ), $view, $entry, $atts ); |
95 | 95 | } |
96 | 96 | |
97 | - if ( ! $view->form ) { |
|
97 | + if ( ! $view->form ) { |
|
98 | 98 | gravityview()->log->notice( 'View #{id} has no form attached to it.', array( 'id' => $view->ID ) ); |
99 | 99 | |
100 | 100 | /** |
@@ -117,43 +117,43 @@ discard block |
||
117 | 117 | } |
118 | 118 | |
119 | 119 | /** Unapproved entries. */ |
120 | - if ( $entry['status'] != 'active' ) { |
|
120 | + if ( $entry[ 'status' ] != 'active' ) { |
|
121 | 121 | gravityview()->log->notice( 'Entry ID #{entry_id} is not active', array( 'entry_id' => $entry->ID ) ); |
122 | 122 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts ); |
123 | 123 | } |
124 | 124 | |
125 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
125 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
126 | 126 | |
127 | 127 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
128 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
128 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
129 | 129 | gravityview()->log->error( 'Entry ID #{entry_id} is not approved for viewing', array( 'entry_id' => $entry->ID ) ); |
130 | 130 | return apply_filters( 'gravityview/shortcodes/gventry/output', '', $view, $entry, $atts ); |
131 | 131 | } |
132 | 132 | } |
133 | 133 | |
134 | - if ( $atts['edit'] ) { |
|
134 | + if ( $atts[ 'edit' ] ) { |
|
135 | 135 | /** |
136 | 136 | * Based on code in our unit-tests. |
137 | 137 | * Mocks old context, etc. |
138 | 138 | */ |
139 | 139 | $loader = \GravityView_Edit_Entry::getInstance(); |
140 | - $render = $loader->instances['render']; |
|
140 | + $render = $loader->instances[ 'render' ]; |
|
141 | 141 | |
142 | 142 | add_filter( 'gravityview/is_single_entry', '__return_true' ); |
143 | 143 | |
144 | - $form = \GFAPI::get_form( $entry['form_id'] ); |
|
144 | + $form = \GFAPI::get_form( $entry[ 'form_id' ] ); |
|
145 | 145 | |
146 | 146 | $data = \GravityView_View_Data::getInstance( $view ); |
147 | 147 | $template = \GravityView_View::getInstance( array( |
148 | 148 | 'form' => $form, |
149 | - 'form_id' => $form['id'], |
|
149 | + 'form_id' => $form[ 'id' ], |
|
150 | 150 | 'view_id' => $view->ID, |
151 | 151 | 'entries' => array( $entry ), |
152 | 152 | 'atts' => \GVCommon::get_template_settings( $view->ID ), |
153 | 153 | ) ); |
154 | 154 | |
155 | - $_GET['edit'] = wp_create_nonce( |
|
156 | - \GravityView_Edit_Entry::get_nonce_key( $view->ID, $form['id'], $entry['id'] ) |
|
155 | + $_GET[ 'edit' ] = wp_create_nonce( |
|
156 | + \GravityView_Edit_Entry::get_nonce_key( $view->ID, $form[ 'id' ], $entry[ 'id' ] ) |
|
157 | 157 | ); |
158 | 158 | |
159 | 159 | add_filter( 'gravityview/edit_entry/success', $callback = function( $message ) use ( $view, $entry, $atts ) { |
@@ -170,7 +170,7 @@ discard block |
||
170 | 170 | return apply_filters( 'gravityview/shortcodes/gventry/edit/success', $message, $view, $entry, $atts ); |
171 | 171 | } ); |
172 | 172 | |
173 | - ob_start() && $render->init( $data, \GV\Entry::by_id( $entry['id'] ), $view ); |
|
173 | + ob_start() && $render->init( $data, \GV\Entry::by_id( $entry[ 'id' ] ), $view ); |
|
174 | 174 | $output = ob_get_clean(); // Render :) |
175 | 175 | |
176 | 176 | remove_filter( 'gravityview/is_single_entry', '__return_true' ); |
@@ -182,7 +182,7 @@ discard block |
||
182 | 182 | $renderer = new \GV\Entry_Renderer(); |
183 | 183 | |
184 | 184 | $request = new \GV\Mock_Request(); |
185 | - $request->returns['is_entry'] = $entry; |
|
185 | + $request->returns[ 'is_entry' ] = $entry; |
|
186 | 186 | |
187 | 187 | $output = $renderer->render( $entry, $view, $request ); |
188 | 188 |