@@ -63,7 +63,7 @@ discard block |
||
| 63 | 63 | 'total' => wp_count_posts( 'gravityview' )->publish, |
| 64 | 64 | ); |
| 65 | 65 | foreach ( $items as $item ) { |
| 66 | - $data['views'][] = $this->prepare_view_for_response( $item, $request ); |
|
| 66 | + $data[ 'views' ][ ] = $this->prepare_view_for_response( $item, $request ); |
|
| 67 | 67 | } |
| 68 | 68 | |
| 69 | 69 | return new \WP_REST_Response( $data, 200 ); |
@@ -82,7 +82,7 @@ discard block |
||
| 82 | 82 | |
| 83 | 83 | $url = $request->get_url_params(); |
| 84 | 84 | |
| 85 | - $view_id = intval( $url['id'] ); |
|
| 85 | + $view_id = intval( $url[ 'id' ] ); |
|
| 86 | 86 | |
| 87 | 87 | $item = get_post( $view_id ); |
| 88 | 88 | |
@@ -114,7 +114,7 @@ discard block |
||
| 114 | 114 | // Only output the fields that should be displayed. |
| 115 | 115 | $allowed = array(); |
| 116 | 116 | foreach ( $view->fields->by_position( "{$context}_*" )->by_visible( $view )->all() as $field ) { |
| 117 | - $allowed[] = $field; |
|
| 117 | + $allowed[ ] = $field; |
|
| 118 | 118 | } |
| 119 | 119 | |
| 120 | 120 | /** |
@@ -133,7 +133,7 @@ discard block |
||
| 133 | 133 | |
| 134 | 134 | // Tack on additional fields if needed |
| 135 | 135 | foreach ( array_diff( $allowed_field_ids, wp_list_pluck( $allowed, 'ID' ) ) as $field_id ) { |
| 136 | - $allowed[] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
| 136 | + $allowed[ ] = is_numeric( $field_id ) ? \GV\GF_Field::by_id( $view->form, $field_id ) : \GV\Internal_Field::by_id( $field_id ); |
|
| 137 | 137 | } |
| 138 | 138 | |
| 139 | 139 | $r = new Request( $request ); |
@@ -211,10 +211,10 @@ discard block |
||
| 211 | 211 | public function get_sub_items( $request ) { |
| 212 | 212 | |
| 213 | 213 | $url = $request->get_url_params(); |
| 214 | - $view_id = intval( $url['id'] ); |
|
| 214 | + $view_id = intval( $url[ 'id' ] ); |
|
| 215 | 215 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
| 216 | 216 | |
| 217 | - if( $post_id = $request->get_param('post_id') ) { |
|
| 217 | + if ( $post_id = $request->get_param( 'post_id' ) ) { |
|
| 218 | 218 | global $post; |
| 219 | 219 | |
| 220 | 220 | $post = get_post( $post_id ); |
@@ -319,7 +319,7 @@ discard block |
||
| 319 | 319 | |
| 320 | 320 | $data = array( 'entries' => $entries->all(), 'total' => $entries->total() ); |
| 321 | 321 | |
| 322 | - foreach ( $data['entries'] as &$entry ) { |
|
| 322 | + foreach ( $data[ 'entries' ] as &$entry ) { |
|
| 323 | 323 | $entry = $this->prepare_entry_for_response( $view, $entry, $request, 'directory' ); |
| 324 | 324 | } |
| 325 | 325 | |
@@ -338,8 +338,8 @@ discard block |
||
| 338 | 338 | */ |
| 339 | 339 | public function get_sub_item( $request ) { |
| 340 | 340 | $url = $request->get_url_params(); |
| 341 | - $view_id = intval( $url['id'] ); |
|
| 342 | - $entry_id = intval( $url['s_id'] ); |
|
| 341 | + $view_id = intval( $url[ 'id' ] ); |
|
| 342 | + $entry_id = intval( $url[ 's_id' ] ); |
|
| 343 | 343 | $format = \GV\Utils::get( $url, 'format', 'json' ); |
| 344 | 344 | |
| 345 | 345 | $view = \GV\View::by_id( $view_id ); |
@@ -374,32 +374,32 @@ discard block |
||
| 374 | 374 | // Add all the WP_Post data |
| 375 | 375 | $view_post = $view_post->to_array(); |
| 376 | 376 | |
| 377 | - unset( $view_post['to_ping'], $view_post['ping_status'], $view_post['pinged'], $view_post['post_type'], $view_post['filter'], $view_post['post_category'], $view_post['tags_input'], $view_post['post_content'], $view_post['post_content_filtered'] ); |
|
| 377 | + unset( $view_post[ 'to_ping' ], $view_post[ 'ping_status' ], $view_post[ 'pinged' ], $view_post[ 'post_type' ], $view_post[ 'filter' ], $view_post[ 'post_category' ], $view_post[ 'tags_input' ], $view_post[ 'post_content' ], $view_post[ 'post_content_filtered' ] ); |
|
| 378 | 378 | |
| 379 | 379 | $return = wp_parse_args( $item, $view_post ); |
| 380 | 380 | |
| 381 | - $return['title'] = $return['post_title']; |
|
| 381 | + $return[ 'title' ] = $return[ 'post_title' ]; |
|
| 382 | 382 | |
| 383 | - $return['settings'] = isset( $return['atts'] ) ? $return['atts'] : array(); |
|
| 384 | - unset( $return['atts'], $return['view_id'] ); |
|
| 383 | + $return[ 'settings' ] = isset( $return[ 'atts' ] ) ? $return[ 'atts' ] : array(); |
|
| 384 | + unset( $return[ 'atts' ], $return[ 'view_id' ] ); |
|
| 385 | 385 | |
| 386 | - $return['search_criteria'] = array( |
|
| 386 | + $return[ 'search_criteria' ] = array( |
|
| 387 | 387 | 'page_size' => rgars( $return, 'settings/page_size' ), |
| 388 | 388 | 'sort_field' => rgars( $return, 'settings/sort_field' ), |
| 389 | 389 | 'sort_direction' => rgars( $return, 'settings/sort_direction' ), |
| 390 | 390 | 'offset' => rgars( $return, 'settings/offset' ), |
| 391 | 391 | ); |
| 392 | 392 | |
| 393 | - unset( $return['settings']['page_size'], $return['settings']['sort_field'], $return['settings']['sort_direction'] ); |
|
| 393 | + unset( $return[ 'settings' ][ 'page_size' ], $return[ 'settings' ][ 'sort_field' ], $return[ 'settings' ][ 'sort_direction' ] ); |
|
| 394 | 394 | |
| 395 | 395 | // Redact for non-logged ins |
| 396 | 396 | if ( ! \GVCommon::has_cap( 'edit_others_gravityviews' ) ) { |
| 397 | - unset( $return['settings'] ); |
|
| 398 | - unset( $return['search_criteria'] ); |
|
| 397 | + unset( $return[ 'settings' ] ); |
|
| 398 | + unset( $return[ 'search_criteria' ] ); |
|
| 399 | 399 | } |
| 400 | 400 | |
| 401 | 401 | if ( ! \GFCommon::current_user_can_any( 'gravityforms_edit_forms' ) ) { |
| 402 | - unset( $return['form'] ); |
|
| 402 | + unset( $return[ 'form' ] ); |
|
| 403 | 403 | } |
| 404 | 404 | |
| 405 | 405 | return $return; |
@@ -415,7 +415,7 @@ discard block |
||
| 415 | 415 | $view_id = func_get_arg( 1 ); // $view_id override |
| 416 | 416 | } else { |
| 417 | 417 | $url = $request->get_url_params(); |
| 418 | - $view_id = intval( $url['id'] ); |
|
| 418 | + $view_id = intval( $url[ 'id' ] ); |
|
| 419 | 419 | } |
| 420 | 420 | |
| 421 | 421 | if ( ! $view = \GV\View::by_id( $view_id ) ) { |
@@ -461,8 +461,8 @@ discard block |
||
| 461 | 461 | } |
| 462 | 462 | |
| 463 | 463 | $url = $request->get_url_params(); |
| 464 | - $view_id = intval( $url['id'] ); |
|
| 465 | - $entry_id = intval( $url['s_id'] ); |
|
| 464 | + $view_id = intval( $url[ 'id' ] ); |
|
| 465 | + $entry_id = intval( $url[ 's_id' ] ); |
|
| 466 | 466 | |
| 467 | 467 | $view = \GV\View::by_id( $view_id ); |
| 468 | 468 | |
@@ -470,11 +470,11 @@ discard block |
||
| 470 | 470 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
| 471 | 471 | } |
| 472 | 472 | |
| 473 | - if ( $entry['form_id'] != $view->form->ID ) { |
|
| 473 | + if ( $entry[ 'form_id' ] != $view->form->ID ) { |
|
| 474 | 474 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
| 475 | 475 | } |
| 476 | 476 | |
| 477 | - if ( $entry['status'] != 'active' ) { |
|
| 477 | + if ( $entry[ 'status' ] != 'active' ) { |
|
| 478 | 478 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
| 479 | 479 | } |
| 480 | 480 | |
@@ -482,10 +482,10 @@ discard block |
||
| 482 | 482 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
| 483 | 483 | } |
| 484 | 484 | |
| 485 | - $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap('gravityview_moderate_entries', $view->ID ); |
|
| 485 | + $is_admin_and_can_view = $view->settings->get( 'admin_show_all_statuses' ) && \GVCommon::has_cap( 'gravityview_moderate_entries', $view->ID ); |
|
| 486 | 486 | |
| 487 | 487 | if ( $view->settings->get( 'show_only_approved' ) && ! $is_admin_and_can_view ) { |
| 488 | - if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 488 | + if ( ! \GravityView_Entry_Approval_Status::is_approved( gform_get_meta( $entry->ID, \GravityView_Entry_Approval::meta_key ) ) ) { |
|
| 489 | 489 | return new \WP_Error( 'rest_forbidden', 'You are not allowed to view this content.', 'gravityview' ); |
| 490 | 490 | } |
| 491 | 491 | } |
@@ -9,9 +9,9 @@ discard block |
||
| 9 | 9 | $gravityview_view = GravityView_View::getInstance(); |
| 10 | 10 | |
| 11 | 11 | $visibility_settings = $gravityview_view->getCurrentFieldSetting( 'notes' ); |
| 12 | -$show_notes_logged_out = ( ! empty( $visibility_settings['view'] ) && ! empty( $visibility_settings['view_loggedout'] ) ); |
|
| 12 | +$show_notes_logged_out = ( ! empty( $visibility_settings[ 'view' ] ) && ! empty( $visibility_settings[ 'view_loggedout' ] ) ); |
|
| 13 | 13 | |
| 14 | -if( ! GVCommon::has_cap( array( 'gravityview_view_entry_notes', 'gravityview_add_entry_notes', 'gravityview_delete_entry_notes' ) ) && ! $show_notes_logged_out ) { |
|
| 14 | +if ( ! GVCommon::has_cap( array( 'gravityview_view_entry_notes', 'gravityview_add_entry_notes', 'gravityview_delete_entry_notes' ) ) && ! $show_notes_logged_out ) { |
|
| 15 | 15 | return; |
| 16 | 16 | } |
| 17 | 17 | |
@@ -25,20 +25,20 @@ discard block |
||
| 25 | 25 | do_action( 'gravityview/field/notes/scripts' ); |
| 26 | 26 | |
| 27 | 27 | $entry = $gravityview_view->getCurrentEntry(); |
| 28 | -$notes = (array) GravityView_Entry_Notes::get_notes( $entry['id'] ); |
|
| 28 | +$notes = (array)GravityView_Entry_Notes::get_notes( $entry[ 'id' ] ); |
|
| 29 | 29 | $strings = GravityView_Field_Notes::strings(); |
| 30 | -$entry_slug = GravityView_API::get_entry_slug( $entry['id'], $entry ); |
|
| 30 | +$entry_slug = GravityView_API::get_entry_slug( $entry[ 'id' ], $entry ); |
|
| 31 | 31 | |
| 32 | -$show_add = ! empty( $visibility_settings['add'] ); |
|
| 33 | -$show_delete = ( ! empty( $visibility_settings['delete'] ) && GVCommon::has_cap( 'gravityview_delete_entry_notes' ) ); |
|
| 34 | -$show_notes = $show_notes_logged_out || ( ! empty( $visibility_settings['view'] ) && GVCommon::has_cap( 'gravityview_view_entry_notes' ) ); |
|
| 32 | +$show_add = ! empty( $visibility_settings[ 'add' ] ); |
|
| 33 | +$show_delete = ( ! empty( $visibility_settings[ 'delete' ] ) && GVCommon::has_cap( 'gravityview_delete_entry_notes' ) ); |
|
| 34 | +$show_notes = $show_notes_logged_out || ( ! empty( $visibility_settings[ 'view' ] ) && GVCommon::has_cap( 'gravityview_view_entry_notes' ) ); |
|
| 35 | 35 | |
| 36 | 36 | $container_class = ( sizeof( $notes ) > 0 ? 'gv-has-notes' : 'gv-no-notes' ); |
| 37 | 37 | $container_class .= $show_notes ? ' gv-show-notes' : ' gv-hide-notes'; |
| 38 | 38 | ?> |
| 39 | 39 | <div class="gv-notes <?php echo $container_class; ?>"> |
| 40 | 40 | <?php |
| 41 | - if( $show_notes ) { |
|
| 41 | + if ( $show_notes ) { |
|
| 42 | 42 | ?> |
| 43 | 43 | <form method="post" class="gv-notes-list"> |
| 44 | 44 | <?php if ( $show_delete ) { wp_nonce_field( 'gv_delete_notes_' . $entry_slug, 'gv_delete_notes' ); } ?> |
@@ -46,21 +46,21 @@ discard block |
||
| 46 | 46 | <input type="hidden" name="action" value="gv_delete_notes" /> |
| 47 | 47 | <input type="hidden" name="entry-slug" value="<?php echo esc_attr( $entry_slug ); ?>" /> |
| 48 | 48 | <table> |
| 49 | - <caption><?php echo $strings['caption']; ?></caption> |
|
| 49 | + <caption><?php echo $strings[ 'caption' ]; ?></caption> |
|
| 50 | 50 | <?php |
| 51 | 51 | if ( $show_delete ) { |
| 52 | 52 | ?> |
| 53 | 53 | <thead> |
| 54 | 54 | <tr> |
| 55 | 55 | <th colspan="2"> |
| 56 | - <label><input type="checkbox" value="" class="gv-notes-toggle" title="<?php echo $strings['toggle-notes']; ?>"><span class="screen-reader-text"><?php echo $strings['toggle-notes']; ?></span></label> |
|
| 57 | - <button type="submit" class="button button-small gv-notes-delete"><?php echo $strings['delete']; ?></button> |
|
| 56 | + <label><input type="checkbox" value="" class="gv-notes-toggle" title="<?php echo $strings[ 'toggle-notes' ]; ?>"><span class="screen-reader-text"><?php echo $strings[ 'toggle-notes' ]; ?></span></label> |
|
| 57 | + <button type="submit" class="button button-small gv-notes-delete"><?php echo $strings[ 'delete' ]; ?></button> |
|
| 58 | 58 | </th> |
| 59 | 59 | </tr> |
| 60 | 60 | </thead> |
| 61 | 61 | <?php } ?> |
| 62 | 62 | <tbody> |
| 63 | - <tr class="gv-notes-no-notes"><td colspan="2"><?php echo $strings['no-notes']; ?></td></tr> |
|
| 63 | + <tr class="gv-notes-no-notes"><td colspan="2"><?php echo $strings[ 'no-notes' ]; ?></td></tr> |
|
| 64 | 64 | <?php |
| 65 | 65 | foreach ( $notes as $note ) { |
| 66 | 66 | echo GravityView_Field_Notes::display_note( $note, $show_delete ); |
@@ -73,7 +73,7 @@ discard block |
||
| 73 | 73 | <?php |
| 74 | 74 | } // End if can view notes |
| 75 | 75 | |
| 76 | - if( $show_add ) { |
|
| 76 | + if ( $show_add ) { |
|
| 77 | 77 | echo do_shortcode( '[gv_note_add]' ); |
| 78 | 78 | } |
| 79 | 79 | ?> |
@@ -113,7 +113,7 @@ discard block |
||
| 113 | 113 | |
| 114 | 114 | $args = array(); |
| 115 | 115 | |
| 116 | - $view_id = is_null ( $view ) ? null : $view->ID; |
|
| 116 | + $view_id = is_null( $view ) ? null : $view->ID; |
|
| 117 | 117 | |
| 118 | 118 | $permalink = null; |
| 119 | 119 | |
@@ -126,8 +126,8 @@ discard block |
||
| 126 | 126 | |
| 127 | 127 | $view_collection = View_Collection::from_post( $post ); |
| 128 | 128 | |
| 129 | - if( 1 < $view_collection->count() ) { |
|
| 130 | - $args['gvid'] = $view_id; |
|
| 129 | + if ( 1 < $view_collection->count() ) { |
|
| 130 | + $args[ 'gvid' ] = $view_id; |
|
| 131 | 131 | } |
| 132 | 132 | } |
| 133 | 133 | } |
@@ -157,21 +157,21 @@ discard block |
||
| 157 | 157 | */ |
| 158 | 158 | $link_parts = explode( '?', $permalink ); |
| 159 | 159 | |
| 160 | - $query = ! empty( $link_parts[1] ) ? '?' . $link_parts[1] : ''; |
|
| 160 | + $query = ! empty( $link_parts[ 1 ] ) ? '?' . $link_parts[ 1 ] : ''; |
|
| 161 | 161 | |
| 162 | - $permalink = trailingslashit( $link_parts[0] ) . $entry_endpoint_name . '/'. $entry_slug .'/' . $query; |
|
| 162 | + $permalink = trailingslashit( $link_parts[ 0 ] ) . $entry_endpoint_name . '/' . $entry_slug . '/' . $query; |
|
| 163 | 163 | } else { |
| 164 | 164 | $args[ $entry_endpoint_name ] = $entry_slug; |
| 165 | 165 | } |
| 166 | 166 | |
| 167 | 167 | if ( $track_directory ) { |
| 168 | - if ( ! empty( $_GET['pagenum'] ) ) { |
|
| 169 | - $args['pagenum'] = intval( $_GET['pagenum'] ); |
|
| 168 | + if ( ! empty( $_GET[ 'pagenum' ] ) ) { |
|
| 169 | + $args[ 'pagenum' ] = intval( $_GET[ 'pagenum' ] ); |
|
| 170 | 170 | } |
| 171 | 171 | |
| 172 | 172 | if ( $sort = Utils::_GET( 'sort' ) ) { |
| 173 | - $args['sort'] = $sort; |
|
| 174 | - $args['dir'] = Utils::_GET( 'dir' ); |
|
| 173 | + $args[ 'sort' ] = $sort; |
|
| 174 | + $args[ 'dir' ] = Utils::_GET( 'dir' ); |
|
| 175 | 175 | } |
| 176 | 176 | } |
| 177 | 177 | |
@@ -209,7 +209,7 @@ discard block |
||
| 209 | 209 | |
| 210 | 210 | $entry_slug = \GravityView_API::get_entry_slug( $this->ID, $this->as_entry() ); |
| 211 | 211 | |
| 212 | - if( ! $apply_filter ) { |
|
| 212 | + if ( ! $apply_filter ) { |
|
| 213 | 213 | return $entry_slug; |
| 214 | 214 | } |
| 215 | 215 | |
@@ -190,8 +190,8 @@ discard block |
||
| 190 | 190 | public function get_output() { |
| 191 | 191 | |
| 192 | 192 | // No Entries |
| 193 | - if( empty( $this->entries ) ) { |
|
| 194 | - return '<div class="gv-no-results">'.$this->empty_message.'</div>'; |
|
| 193 | + if ( empty( $this->entries ) ) { |
|
| 194 | + return '<div class="gv-no-results">' . $this->empty_message . '</div>'; |
|
| 195 | 195 | } |
| 196 | 196 | |
| 197 | 197 | $output = ''; |
@@ -202,22 +202,22 @@ discard block |
||
| 202 | 202 | $current_entry = GravityView_View::getInstance()->getCurrentEntry(); |
| 203 | 203 | } |
| 204 | 204 | |
| 205 | - $output .= '<'. $this->wrapper_tag .'>'; |
|
| 205 | + $output .= '<' . $this->wrapper_tag . '>'; |
|
| 206 | 206 | |
| 207 | - foreach( $this->entries as $entry ) { |
|
| 207 | + foreach ( $this->entries as $entry ) { |
|
| 208 | 208 | |
| 209 | 209 | if ( $entry instanceof \GV\Entry ) { |
| 210 | 210 | $entry = $entry->as_entry(); |
| 211 | 211 | } |
| 212 | 212 | |
| 213 | - if( $this->skip_entry( $entry, $current_entry ) ) { |
|
| 213 | + if ( $this->skip_entry( $entry, $current_entry ) ) { |
|
| 214 | 214 | continue; |
| 215 | 215 | } |
| 216 | 216 | |
| 217 | 217 | $output .= $this->get_item_output( $entry ); |
| 218 | 218 | } |
| 219 | 219 | |
| 220 | - $output .= '</'. $this->wrapper_tag .'>'; |
|
| 220 | + $output .= '</' . $this->wrapper_tag . '>'; |
|
| 221 | 221 | |
| 222 | 222 | /** |
| 223 | 223 | * @filter `gravityview/widget/recent-entries/output` Modify the HTML of the Recent Entries widget output |
@@ -240,15 +240,15 @@ discard block |
||
| 240 | 240 | private function skip_entry( $entry, $current_entry ) { |
| 241 | 241 | |
| 242 | 242 | // If skip entry is off, or there's no current entry, return false |
| 243 | - if( empty( $this->skip_current_entry ) || empty( $current_entry ) ) { |
|
| 243 | + if ( empty( $this->skip_current_entry ) || empty( $current_entry ) ) { |
|
| 244 | 244 | return false; |
| 245 | 245 | } |
| 246 | 246 | |
| 247 | 247 | // If in Single or Edit mode, $current_entry will be an array. |
| 248 | - $current_entry_id = is_array( $current_entry ) ? $current_entry['id'] : $current_entry; |
|
| 248 | + $current_entry_id = is_array( $current_entry ) ? $current_entry[ 'id' ] : $current_entry; |
|
| 249 | 249 | |
| 250 | 250 | // If the entry ID matches the current entry, yes: skip |
| 251 | - if( $entry['id'] === $current_entry_id ) { |
|
| 251 | + if ( $entry[ 'id' ] === $current_entry_id ) { |
|
| 252 | 252 | return true; |
| 253 | 253 | } |
| 254 | 254 | |
@@ -283,7 +283,7 @@ discard block |
||
| 283 | 283 | |
| 284 | 284 | $item_output = gravityview_get_link( $link, $this->link_format ); |
| 285 | 285 | |
| 286 | - if( !empty( $this->after_link ) ) { |
|
| 286 | + if ( ! empty( $this->after_link ) ) { |
|
| 287 | 287 | |
| 288 | 288 | /** |
| 289 | 289 | * @filter `gravityview/entry-list/after-link` Modify the content displayed after the entry link in an entry list |
@@ -292,14 +292,14 @@ discard block |
||
| 292 | 292 | * @param array $entry Gravity Forms entry array |
| 293 | 293 | * @param GravityView_Entry_List $this The current class instance |
| 294 | 294 | */ |
| 295 | - $after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>'.$this->after_link.'</div>', $entry, $this ); |
|
| 295 | + $after_link = apply_filters( 'gravityview/entry-list/after-link', '<div>' . $this->after_link . '</div>', $entry, $this ); |
|
| 296 | 296 | |
| 297 | 297 | $item_output .= $after_link; |
| 298 | 298 | } |
| 299 | 299 | |
| 300 | 300 | $item_output = GravityView_API::replace_variables( $item_output, $this->form, $entry ); |
| 301 | 301 | |
| 302 | - $item_output = '<'. $this->item_tag .'>'. $item_output .'</'. $this->item_tag .'>'; |
|
| 302 | + $item_output = '<' . $this->item_tag . '>' . $item_output . '</' . $this->item_tag . '>'; |
|
| 303 | 303 | |
| 304 | 304 | /** |
| 305 | 305 | * @filter `gravityview/entry-list/item` Modify each item's output in an entry list |
@@ -88,15 +88,15 @@ |
||
| 88 | 88 | */ |
| 89 | 89 | public function maybe_modify_button_label( $label = '', $atts = array() ) { |
| 90 | 90 | |
| 91 | - if( $this->template_id !== \GV\Utils::get( $atts, 'template_id' ) ) { |
|
| 91 | + if ( $this->template_id !== \GV\Utils::get( $atts, 'template_id' ) ) { |
|
| 92 | 92 | return $label; |
| 93 | 93 | } |
| 94 | 94 | |
| 95 | - if( 'field' !== \GV\Utils::get( $atts, 'type' ) ) { |
|
| 95 | + if ( 'field' !== \GV\Utils::get( $atts, 'type' ) ) { |
|
| 96 | 96 | return $label; |
| 97 | 97 | } |
| 98 | 98 | |
| 99 | - if( 'edit' === \GV\Utils::get( $atts, 'zone' ) ) { |
|
| 99 | + if ( 'edit' === \GV\Utils::get( $atts, 'zone' ) ) { |
|
| 100 | 100 | return $label; |
| 101 | 101 | } |
| 102 | 102 | |
@@ -33,14 +33,14 @@ discard block |
||
| 33 | 33 | $defaults = self::get_field_defaults(); |
| 34 | 34 | |
| 35 | 35 | // Backward compatibility |
| 36 | - if( !empty( $field['choices'] ) ) { |
|
| 37 | - $field['options'] = $field['choices']; |
|
| 38 | - unset( $field['choices'] ); |
|
| 36 | + if ( ! empty( $field[ 'choices' ] ) ) { |
|
| 37 | + $field[ 'options' ] = $field[ 'choices' ]; |
|
| 38 | + unset( $field[ 'choices' ] ); |
|
| 39 | 39 | } |
| 40 | 40 | |
| 41 | - $this->field = wp_parse_args( $field, $defaults ); |
|
| 41 | + $this->field = wp_parse_args( $field, $defaults ); |
|
| 42 | 42 | |
| 43 | - $this->value = is_null( $curr_value ) ? $this->field['value'] : $curr_value; |
|
| 43 | + $this->value = is_null( $curr_value ) ? $this->field[ 'value' ] : $curr_value; |
|
| 44 | 44 | |
| 45 | 45 | } |
| 46 | 46 | |
@@ -79,7 +79,7 @@ discard block |
||
| 79 | 79 | |
| 80 | 80 | |
| 81 | 81 | function get_tooltip() { |
| 82 | - if( ! function_exists('gform_tooltip') ) { |
|
| 82 | + if ( ! function_exists( 'gform_tooltip' ) ) { |
|
| 83 | 83 | return null; |
| 84 | 84 | } |
| 85 | 85 | |
@@ -89,7 +89,7 @@ discard block |
||
| 89 | 89 | 'url' => '#', |
| 90 | 90 | ) ); |
| 91 | 91 | |
| 92 | - return !empty( $this->field['tooltip'] ) ? ' '. $this->tooltip( $this->field['tooltip'], false, true, $article ) : null; |
|
| 92 | + return ! empty( $this->field[ 'tooltip' ] ) ? ' ' . $this->tooltip( $this->field[ 'tooltip' ], false, true, $article ) : null; |
|
| 93 | 93 | } |
| 94 | 94 | |
| 95 | 95 | /** |
@@ -132,7 +132,7 @@ discard block |
||
| 132 | 132 | * Below this line has been modified by GravityView. |
| 133 | 133 | */ |
| 134 | 134 | |
| 135 | - if ( empty( $tooltip_text ) && empty( $article['id'] ) ) { |
|
| 135 | + if ( empty( $tooltip_text ) && empty( $article[ 'id' ] ) ) { |
|
| 136 | 136 | return ''; |
| 137 | 137 | } |
| 138 | 138 | |
@@ -168,8 +168,8 @@ discard block |
||
| 168 | 168 | * @return string |
| 169 | 169 | */ |
| 170 | 170 | function get_field_id() { |
| 171 | - if( isset( $this->field['id'] ) ) { |
|
| 172 | - return esc_attr( $this->field['id'] ); |
|
| 171 | + if ( isset( $this->field[ 'id' ] ) ) { |
|
| 172 | + return esc_attr( $this->field[ 'id' ] ); |
|
| 173 | 173 | } |
| 174 | 174 | return esc_attr( sanitize_html_class( $this->name ) ); |
| 175 | 175 | } |
@@ -179,7 +179,7 @@ discard block |
||
| 179 | 179 | * @return string |
| 180 | 180 | */ |
| 181 | 181 | function get_field_label() { |
| 182 | - return esc_html( trim( $this->field['label'] ) ); |
|
| 182 | + return esc_html( trim( $this->field[ 'label' ] ) ); |
|
| 183 | 183 | } |
| 184 | 184 | |
| 185 | 185 | /** |
@@ -190,7 +190,7 @@ discard block |
||
| 190 | 190 | * @return string |
| 191 | 191 | */ |
| 192 | 192 | function get_field_left_label() { |
| 193 | - return ! empty( $this->field['left_label'] ) ? esc_html( trim( $this->field['left_label'] ) ) : NULL; |
|
| 193 | + return ! empty( $this->field[ 'left_label' ] ) ? esc_html( trim( $this->field[ 'left_label' ] ) ) : NULL; |
|
| 194 | 194 | } |
| 195 | 195 | |
| 196 | 196 | /** |
@@ -198,7 +198,7 @@ discard block |
||
| 198 | 198 | * @return string |
| 199 | 199 | */ |
| 200 | 200 | function get_label_class() { |
| 201 | - return 'gv-label-'. sanitize_html_class( $this->field['type'] ); |
|
| 201 | + return 'gv-label-' . sanitize_html_class( $this->field[ 'type' ] ); |
|
| 202 | 202 | } |
| 203 | 203 | |
| 204 | 204 | |
@@ -207,7 +207,7 @@ discard block |
||
| 207 | 207 | * @return string |
| 208 | 208 | */ |
| 209 | 209 | function get_field_desc() { |
| 210 | - return !empty( $this->field['desc'] ) ? '<span class="howto">'. $this->field['desc'] .'</span>' : ''; |
|
| 210 | + return ! empty( $this->field[ 'desc' ] ) ? '<span class="howto">' . $this->field[ 'desc' ] . '</span>' : ''; |
|
| 211 | 211 | } |
| 212 | 212 | |
| 213 | 213 | |
@@ -240,7 +240,7 @@ discard block |
||
| 240 | 240 | */ |
| 241 | 241 | function render_setting( $override_input = NULL ) { |
| 242 | 242 | |
| 243 | - if( !empty( $this->field['full_width'] ) ) { ?> |
|
| 243 | + if ( ! empty( $this->field[ 'full_width' ] ) ) { ?> |
|
| 244 | 244 | <th scope="row" colspan="2"> |
| 245 | 245 | <div> |
| 246 | 246 | <label for="<?php echo $this->get_field_id(); ?>"> |
@@ -91,7 +91,7 @@ discard block |
||
| 91 | 91 | * Try subkeys after split. |
| 92 | 92 | */ |
| 93 | 93 | if ( count( $parts = explode( '/', $key, 2 ) ) > 1 ) { |
| 94 | - return self::get( self::get( $array, $parts[0] ), $parts[1], $default ); |
|
| 94 | + return self::get( self::get( $array, $parts[ 0 ] ), $parts[ 1 ], $default ); |
|
| 95 | 95 | } |
| 96 | 96 | |
| 97 | 97 | return $default; |
@@ -145,7 +145,7 @@ discard block |
||
| 145 | 145 | public static function gf_query_debug( $query ) { |
| 146 | 146 | $introspect = $query->_introspect(); |
| 147 | 147 | return array( |
| 148 | - 'where' => $query->_where_unwrap( $introspect['where'] ) |
|
| 148 | + 'where' => $query->_where_unwrap( $introspect[ 'where' ] ) |
|
| 149 | 149 | ); |
| 150 | 150 | } |
| 151 | 151 | |
@@ -158,7 +158,7 @@ discard block |
||
| 158 | 158 | if ( $condition->expressions ) { |
| 159 | 159 | $conditions = array(); |
| 160 | 160 | foreach ( $condition->expressions as $expression ) { |
| 161 | - $conditions[] = self::gf_query_strip_condition_column_aliases( $expression ); |
|
| 161 | + $conditions[ ] = self::gf_query_strip_condition_column_aliases( $expression ); |
|
| 162 | 162 | } |
| 163 | 163 | return call_user_func_array( |
| 164 | 164 | array( '\GF_Query_Condition', $condition->operator == 'AND' ? '_and' : '_or' ), |
@@ -47,11 +47,11 @@ discard block |
||
| 47 | 47 | */ |
| 48 | 48 | public function field_options( $field_options, $template_id, $field_id, $context, $input_type, $form_id ) { |
| 49 | 49 | |
| 50 | - if( 'edit' === $context ) { |
|
| 50 | + if ( 'edit' === $context ) { |
|
| 51 | 51 | return $field_options; |
| 52 | 52 | } |
| 53 | 53 | |
| 54 | - $this->add_field_support('date_display', $field_options ); |
|
| 54 | + $this->add_field_support( 'date_display', $field_options ); |
|
| 55 | 55 | |
| 56 | 56 | return $field_options; |
| 57 | 57 | } |
@@ -71,11 +71,11 @@ discard block |
||
| 71 | 71 | public function get_content( $output = '', $entry = array(), $field_settings = array(), $field = array() ) { |
| 72 | 72 | |
| 73 | 73 | /** Overridden by a template. */ |
| 74 | - if( \GV\Utils::get( $field, 'field_path' ) !== gravityview()->plugin->dir( 'templates/fields/field-html.php' ) ) { |
|
| 74 | + if ( \GV\Utils::get( $field, 'field_path' ) !== gravityview()->plugin->dir( 'templates/fields/field-html.php' ) ) { |
|
| 75 | 75 | return $output; |
| 76 | 76 | } |
| 77 | 77 | |
| 78 | - return GVCommon::format_date( $field['value'], 'format=' . \GV\Utils::get( $field_settings, 'date_display' ) ); |
|
| 78 | + return GVCommon::format_date( $field[ 'value' ], 'format=' . \GV\Utils::get( $field_settings, 'date_display' ) ); |
|
| 79 | 79 | } |
| 80 | 80 | } |
| 81 | 81 | |
@@ -38,7 +38,7 @@ discard block |
||
| 38 | 38 | */ |
| 39 | 39 | public function set_provider( $provider = null ) { |
| 40 | 40 | |
| 41 | - if( gravityview()->request->is_admin() ) { |
|
| 41 | + if ( gravityview()->request->is_admin() ) { |
|
| 42 | 42 | return; |
| 43 | 43 | } |
| 44 | 44 | |
@@ -57,7 +57,7 @@ discard block |
||
| 57 | 57 | } |
| 58 | 58 | |
| 59 | 59 | // We're switching providers; remove the hooks that were added. |
| 60 | - if( self::$active_provider ) { |
|
| 60 | + if ( self::$active_provider ) { |
|
| 61 | 61 | self::$active_provider->remove_hooks(); |
| 62 | 62 | } |
| 63 | 63 | |