|
@@ -44,7 +44,7 @@ discard block |
|
|
block discarded – undo |
|
44
|
44
|
/** gf_entries page - entries table screen */ |
|
45
|
45
|
|
|
46
|
46
|
// capture bulk actions |
|
47
|
|
- add_action( 'gform_loaded', array( $this, 'process_bulk_action') ); |
|
|
47
|
+ add_action( 'gform_loaded', array( $this, 'process_bulk_action' ) ); |
|
48
|
48
|
|
|
49
|
49
|
// add hidden field with approve status |
|
50
|
50
|
add_action( 'gform_entries_first_column_actions', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
|
@@ -52,7 +52,7 @@ discard block |
|
|
block discarded – undo |
|
52
|
52
|
add_filter( 'gravityview/metaboxes/tooltips', array( $this, 'tooltips' ) ); |
|
53
|
53
|
|
|
54
|
54
|
// adding styles and scripts |
|
55
|
|
- add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
|
55
|
+ add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
56
|
56
|
// bypass Gravity Forms no-conflict mode |
|
57
|
57
|
add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
|
58
|
58
|
add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
|
@@ -81,7 +81,7 @@ discard block |
|
|
block discarded – undo |
|
81
|
81
|
* @param bool $show_filter_links True: show the "approved"/"disapproved" filter links. False: hide them. |
|
82
|
82
|
* @param array $form GF Form object of current form |
|
83
|
83
|
*/ |
|
84
|
|
- if( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
|
84
|
+ if ( false === apply_filters( 'gravityview/approve_entries/show_filter_links_entry_list', true, $form ) ) { |
|
85
|
85
|
return $filter_links; |
|
86
|
86
|
} |
|
87
|
87
|
|
|
@@ -109,27 +109,27 @@ discard block |
|
|
block discarded – undo |
|
109
|
109
|
$approved_count = $disapproved_count = $unapproved_count = 0; |
|
110
|
110
|
|
|
111
|
111
|
// Only count if necessary |
|
112
|
|
- if( $include_counts ) { |
|
113
|
|
- $approved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
114
|
|
- $disapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
115
|
|
- $unapproved_count = count( gravityview_get_entry_ids( $form['id'], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
|
112
|
+ if ( $include_counts ) { |
|
|
113
|
+ $approved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_approved ) ) ); |
|
|
114
|
+ $disapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_disapproved ) ) ); |
|
|
115
|
+ $unapproved_count = count( gravityview_get_entry_ids( $form[ 'id' ], array( 'status' => 'active', 'field_filters' => $field_filters_unapproved ) ) ); |
|
116
|
116
|
} |
|
117
|
117
|
|
|
118
|
|
- $filter_links[] = array( |
|
|
118
|
+ $filter_links[ ] = array( |
|
119
|
119
|
'id' => 'gv_approved', |
|
120
|
120
|
'field_filters' => $field_filters_approved, |
|
121
|
121
|
'count' => $approved_count, |
|
122
|
122
|
'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::APPROVED ), |
|
123
|
123
|
); |
|
124
|
124
|
|
|
125
|
|
- $filter_links[] = array( |
|
|
125
|
+ $filter_links[ ] = array( |
|
126
|
126
|
'id' => 'gv_disapproved', |
|
127
|
127
|
'field_filters' => $field_filters_disapproved, |
|
128
|
128
|
'count' => $disapproved_count, |
|
129
|
129
|
'label' => GravityView_Entry_Approval_Status::get_label( GravityView_Entry_Approval_Status::DISAPPROVED ), |
|
130
|
130
|
); |
|
131
|
131
|
|
|
132
|
|
- $filter_links[] = array( |
|
|
132
|
+ $filter_links[ ] = array( |
|
133
|
133
|
'id' => 'gv_unapproved', |
|
134
|
134
|
'field_filters' => $field_filters_unapproved, |
|
135
|
135
|
'count' => $unapproved_count, |
|
@@ -148,9 +148,9 @@ discard block |
|
|
block discarded – undo |
|
148
|
148
|
*/ |
|
149
|
149
|
function tooltips( $tooltips ) { |
|
150
|
150
|
|
|
151
|
|
- $tooltips['form_gravityview_fields'] = array( |
|
152
|
|
- 'title' => __('GravityView Fields', 'gravityview'), |
|
153
|
|
- 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
|
151
|
+ $tooltips[ 'form_gravityview_fields' ] = array( |
|
|
152
|
+ 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
|
153
|
+ 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
154
|
154
|
); |
|
155
|
155
|
|
|
156
|
156
|
return $tooltips; |
|
@@ -261,7 +261,7 @@ discard block |
|
|
block discarded – undo |
|
261
|
261
|
|
|
262
|
262
|
$gv_bulk_action = false; |
|
263
|
263
|
|
|
264
|
|
- if( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
|
264
|
+ if ( version_compare( GFForms::$version, '2.0', '>=' ) ) { |
|
265
|
265
|
$bulk_action = ( '-1' !== \GV\Utils::_POST( 'action' ) ) ? \GV\Utils::_POST( 'action' ) : \GV\Utils::_POST( 'action2' ); |
|
266
|
266
|
} else { |
|
267
|
267
|
// GF 1.9.x - Bulk action 2 is the bottom bulk action select form. |
|
@@ -269,7 +269,7 @@ discard block |
|
|
block discarded – undo |
|
269
|
269
|
} |
|
270
|
270
|
|
|
271
|
271
|
// Check the $bulk_action value against GV actions, see if they're the same. I hate strpos(). |
|
272
|
|
- if( ! empty( $bulk_action ) && preg_match( '/^('. implode( '|', $this->bulk_action_prefixes ) .')/ism', $bulk_action ) ) { |
|
|
272
|
+ if ( ! empty( $bulk_action ) && preg_match( '/^(' . implode( '|', $this->bulk_action_prefixes ) . ')/ism', $bulk_action ) ) { |
|
273
|
273
|
$gv_bulk_action = $bulk_action; |
|
274
|
274
|
} |
|
275
|
275
|
|
|
@@ -294,7 +294,7 @@ discard block |
|
|
block discarded – undo |
|
294
|
294
|
|
|
295
|
295
|
// gforms_entry_list is the nonce that confirms we're on the right page |
|
296
|
296
|
// gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
|
297
|
|
- if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
|
297
|
+ if ( $bulk_action && \GV\Utils::_POST( 'gforms_entry_list' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
298
|
298
|
|
|
299
|
299
|
check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
|
300
|
300
|
|
|
@@ -312,13 +312,13 @@ discard block |
|
|
block discarded – undo |
|
312
|
312
|
} |
|
313
|
313
|
|
|
314
|
314
|
// All entries are set to be updated, not just the visible ones |
|
315
|
|
- if ( ! empty( $_POST['all_entries'] ) ) { |
|
|
315
|
+ if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
316
|
316
|
|
|
317
|
317
|
// Convert the current entry search into GF-formatted search criteria |
|
318
|
318
|
$search = array( |
|
319
|
|
- 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
320
|
|
- 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
321
|
|
- 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
|
319
|
+ 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
|
320
|
+ 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
|
321
|
+ 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
322
|
322
|
); |
|
323
|
323
|
|
|
324
|
324
|
$search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
|
@@ -329,7 +329,7 @@ discard block |
|
|
block discarded – undo |
|
329
|
329
|
} else { |
|
330
|
330
|
|
|
331
|
331
|
// Changed from 'lead' to 'entry' in 2.0 |
|
332
|
|
- $entries = isset( $_POST['lead'] ) ? $_POST['lead'] : $_POST['entry']; |
|
|
332
|
+ $entries = isset( $_POST[ 'lead' ] ) ? $_POST[ 'lead' ] : $_POST[ 'entry' ]; |
|
333
|
333
|
|
|
334
|
334
|
} |
|
335
|
335
|
|
|
@@ -341,15 +341,15 @@ discard block |
|
|
block discarded – undo |
|
341
|
341
|
$entry_count = count( $entries ) > 1 ? sprintf( __( '%d entries', 'gravityview' ), count( $entries ) ) : __( '1 entry', 'gravityview' ); |
|
342
|
342
|
|
|
343
|
343
|
switch ( $approved_status ) { |
|
344
|
|
- case $this->bulk_action_prefixes['approve']: |
|
|
344
|
+ case $this->bulk_action_prefixes[ 'approve' ]: |
|
345
|
345
|
GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::APPROVED, $form_id ); |
|
346
|
346
|
$this->bulk_update_message = sprintf( __( '%s approved.', 'gravityview' ), $entry_count ); |
|
347
|
347
|
break; |
|
348
|
|
- case $this->bulk_action_prefixes['unapprove']: |
|
|
348
|
+ case $this->bulk_action_prefixes[ 'unapprove' ]: |
|
349
|
349
|
GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::UNAPPROVED, $form_id ); |
|
350
|
350
|
$this->bulk_update_message = sprintf( __( '%s unapproved.', 'gravityview' ), $entry_count ); |
|
351
|
351
|
break; |
|
352
|
|
- case $this->bulk_action_prefixes['disapprove']: |
|
|
352
|
+ case $this->bulk_action_prefixes[ 'disapprove' ]: |
|
353
|
353
|
GravityView_Entry_Approval::update_bulk( $entries, GravityView_Entry_Approval_Status::DISAPPROVED, $form_id ); |
|
354
|
354
|
$this->bulk_update_message = sprintf( __( '%s disapproved.', 'gravityview' ), $entry_count ); |
|
355
|
355
|
break; |
|
@@ -371,7 +371,7 @@ discard block |
|
|
block discarded – undo |
|
371
|
371
|
* |
|
372
|
372
|
* @return boolean True: It worked; False: it failed |
|
373
|
373
|
*/ |
|
374
|
|
- public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
|
374
|
+ public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
375
|
375
|
return GravityView_Entry_Approval::update_approved( $entry_id, $approved, $form_id, $approvedcolumn ); |
|
376
|
376
|
} |
|
377
|
377
|
|
|
@@ -401,20 +401,20 @@ discard block |
|
|
block discarded – undo |
|
401
|
401
|
* |
|
402
|
402
|
* @return void |
|
403
|
403
|
*/ |
|
404
|
|
- static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
|
404
|
+ static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
405
|
405
|
|
|
406
|
|
- if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
|
406
|
+ if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
407
|
407
|
return; |
|
408
|
408
|
} |
|
409
|
409
|
|
|
410
|
|
- if( empty( $entry['id'] ) ) { |
|
|
410
|
+ if ( empty( $entry[ 'id' ] ) ) { |
|
411
|
411
|
return; |
|
412
|
412
|
} |
|
413
|
413
|
|
|
414
|
414
|
$status_value = GravityView_Entry_Approval::get_entry_status( $entry, 'value' ); |
|
415
|
415
|
|
|
416
|
|
- if( $status_value ) { |
|
417
|
|
- echo '<input type="hidden" class="entry_approval" id="entry_approved_'. $entry['id'] .'" value="' . esc_attr( $status_value ) . '" />'; |
|
|
416
|
+ if ( $status_value ) { |
|
|
417
|
+ echo '<input type="hidden" class="entry_approval" id="entry_approved_' . $entry[ 'id' ] . '" value="' . esc_attr( $status_value ) . '" />'; |
|
418
|
418
|
} |
|
419
|
419
|
} |
|
420
|
420
|
|
|
@@ -427,10 +427,10 @@ discard block |
|
|
block discarded – undo |
|
427
|
427
|
*/ |
|
428
|
428
|
private function get_form_id() { |
|
429
|
429
|
|
|
430
|
|
- $form_id = GFForms::get('id'); |
|
|
430
|
+ $form_id = GFForms::get( 'id' ); |
|
431
|
431
|
|
|
432
|
432
|
// If there are no forms identified, use the first form. That's how GF does it. |
|
433
|
|
- if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
|
433
|
+ if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
434
|
434
|
$form_id = $this->get_first_form_id(); |
|
435
|
435
|
} |
|
436
|
436
|
|
|
@@ -450,14 +450,14 @@ discard block |
|
|
block discarded – undo |
|
450
|
450
|
|
|
451
|
451
|
$forms = RGFormsModel::get_forms( null, 'title' ); |
|
452
|
452
|
|
|
453
|
|
- if( ! isset( $forms[0] ) ) { |
|
|
453
|
+ if ( ! isset( $forms[ 0 ] ) ) { |
|
454
|
454
|
gravityview()->log->error( 'No forms were found' ); |
|
455
|
455
|
return 0; |
|
456
|
456
|
} |
|
457
|
457
|
|
|
458
|
|
- $first_form = $forms[0]; |
|
|
458
|
+ $first_form = $forms[ 0 ]; |
|
459
|
459
|
|
|
460
|
|
- $form_id = is_object( $forms[0] ) ? $first_form->id : $first_form['id']; |
|
|
460
|
+ $form_id = is_object( $forms[ 0 ] ) ? $first_form->id : $first_form[ 'id' ]; |
|
461
|
461
|
|
|
462
|
462
|
return intval( $form_id ); |
|
463
|
463
|
} |
|
@@ -465,33 +465,33 @@ discard block |
|
|
block discarded – undo |
|
465
|
465
|
|
|
466
|
466
|
function add_scripts_and_styles( $hook ) { |
|
467
|
467
|
|
|
468
|
|
- if( ! class_exists( 'GFForms' ) ) { |
|
|
468
|
+ if ( ! class_exists( 'GFForms' ) ) { |
|
469
|
469
|
gravityview()->log->error( 'GFForms does not exist.' ); |
|
470
|
470
|
return; |
|
471
|
471
|
} |
|
472
|
472
|
|
|
473
|
473
|
// enqueue styles & scripts gf_entries |
|
474
|
474
|
// But only if we're on the main Entries page, not on reports pages |
|
475
|
|
- if( GFForms::get_page() !== 'entry_list' ) { |
|
|
475
|
+ if ( GFForms::get_page() !== 'entry_list' ) { |
|
476
|
476
|
return; |
|
477
|
477
|
} |
|
478
|
478
|
|
|
479
|
479
|
$form_id = $this->get_form_id(); |
|
480
|
480
|
|
|
481
|
481
|
// Things are broken; no forms were found |
|
482
|
|
- if( empty( $form_id ) ) { |
|
|
482
|
+ if ( empty( $form_id ) ) { |
|
483
|
483
|
return; |
|
484
|
484
|
} |
|
485
|
485
|
|
|
486
|
|
- wp_enqueue_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
|
486
|
+ wp_enqueue_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
487
|
487
|
|
|
488
|
|
- $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
|
488
|
+ $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
489
|
489
|
|
|
490
|
|
- wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
|
490
|
+ wp_enqueue_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
491
|
491
|
|
|
492
|
492
|
wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
|
493
|
|
- 'nonce' => wp_create_nonce( 'gravityview_entry_approval'), |
|
494
|
|
- 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval'), |
|
|
493
|
+ 'nonce' => wp_create_nonce( 'gravityview_entry_approval' ), |
|
|
494
|
+ 'admin_nonce' => wp_create_nonce( 'gravityview_admin_entry_approval' ), |
|
495
|
495
|
'form_id' => $form_id, |
|
496
|
496
|
'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
|
497
|
497
|
'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
|
@@ -500,10 +500,10 @@ discard block |
|
|
block discarded – undo |
|
500
|
500
|
'status_unapproved' => GravityView_Entry_Approval_Status::UNAPPROVED, |
|
501
|
501
|
'bulk_actions' => $this->get_bulk_actions( $form_id ), |
|
502
|
502
|
'bulk_message' => $this->bulk_update_message, |
|
503
|
|
- 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('unapproved'), |
|
504
|
|
- 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr('disapproved'), |
|
505
|
|
- 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr('approved'), |
|
506
|
|
- 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
|
503
|
+ 'unapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'unapproved' ), |
|
|
504
|
+ 'approve_title' => GravityView_Entry_Approval_Status::get_title_attr( 'disapproved' ), |
|
|
505
|
+ 'disapprove_title' => GravityView_Entry_Approval_Status::get_title_attr( 'approved' ), |
|
|
506
|
+ 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
507
|
507
|
'column_link' => esc_url( $this->get_sort_link() ), |
|
508
|
508
|
) ); |
|
509
|
509
|
|
|
@@ -545,16 +545,16 @@ discard block |
|
|
block discarded – undo |
|
545
|
545
|
$bulk_actions = array( |
|
546
|
546
|
'GravityView' => array( |
|
547
|
547
|
array( |
|
548
|
|
- 'label' => GravityView_Entry_Approval_Status::get_string('approved', 'action'), |
|
549
|
|
- 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['approve'], $form_id ), |
|
|
548
|
+ 'label' => GravityView_Entry_Approval_Status::get_string( 'approved', 'action' ), |
|
|
549
|
+ 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'approve' ], $form_id ), |
|
550
|
550
|
), |
|
551
|
551
|
array( |
|
552
|
|
- 'label' => GravityView_Entry_Approval_Status::get_string('disapproved', 'action'), |
|
553
|
|
- 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['disapprove'], $form_id ), |
|
|
552
|
+ 'label' => GravityView_Entry_Approval_Status::get_string( 'disapproved', 'action' ), |
|
|
553
|
+ 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'disapprove' ], $form_id ), |
|
554
|
554
|
), |
|
555
|
555
|
array( |
|
556
|
|
- 'label' => GravityView_Entry_Approval_Status::get_string('unapproved', 'action'), |
|
557
|
|
- 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes['unapprove'], $form_id ), |
|
|
556
|
+ 'label' => GravityView_Entry_Approval_Status::get_string( 'unapproved', 'action' ), |
|
|
557
|
+ 'value' => sprintf( '%s-%d', $this->bulk_action_prefixes[ 'unapprove' ], $form_id ), |
|
558
|
558
|
), |
|
559
|
559
|
), |
|
560
|
560
|
); |
|
@@ -571,13 +571,13 @@ discard block |
|
|
block discarded – undo |
|
571
|
571
|
// Sanitize the values, just to be sure. |
|
572
|
572
|
foreach ( $bulk_actions as $key => $group ) { |
|
573
|
573
|
|
|
574
|
|
- if( empty( $group ) ) { |
|
|
574
|
+ if ( empty( $group ) ) { |
|
575
|
575
|
continue; |
|
576
|
576
|
} |
|
577
|
577
|
|
|
578
|
578
|
foreach ( $group as $i => $action ) { |
|
579
|
|
- $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
580
|
|
- $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
|
579
|
+ $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
|
580
|
+ $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
581
|
581
|
} |
|
582
|
582
|
} |
|
583
|
583
|
|
|
@@ -602,13 +602,13 @@ discard block |
|
|
block discarded – undo |
|
602
|
602
|
* @since 1.7.2 |
|
603
|
603
|
* @param boolean $hide_if_no_connections |
|
604
|
604
|
*/ |
|
605
|
|
- $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
|
605
|
+ $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
606
|
606
|
|
|
607
|
|
- if( $hide_if_no_connections ) { |
|
|
607
|
+ if ( $hide_if_no_connections ) { |
|
608
|
608
|
|
|
609
|
609
|
$connected_views = gravityview_get_connected_views( $form_id ); |
|
610
|
610
|
|
|
611
|
|
- if( empty( $connected_views ) ) { |
|
|
611
|
+ if ( empty( $connected_views ) ) { |
|
612
|
612
|
$show_approve_column = false; |
|
613
|
613
|
} |
|
614
|
614
|
} |
|
@@ -618,18 +618,18 @@ discard block |
|
|
block discarded – undo |
|
618
|
618
|
* @param boolean $show_approve_column Whether the column will be shown |
|
619
|
619
|
* @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
|
620
|
620
|
*/ |
|
621
|
|
- $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
|
621
|
+ $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
622
|
622
|
|
|
623
|
623
|
return $show_approve_column; |
|
624
|
624
|
} |
|
625
|
625
|
|
|
626
|
626
|
function register_gform_noconflict_script( $scripts ) { |
|
627
|
|
- $scripts[] = 'gravityview_gf_entries_scripts'; |
|
|
627
|
+ $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
628
|
628
|
return $scripts; |
|
629
|
629
|
} |
|
630
|
630
|
|
|
631
|
631
|
function register_gform_noconflict_style( $styles ) { |
|
632
|
|
- $styles[] = 'gravityview_entries_list'; |
|
|
632
|
+ $styles[ ] = 'gravityview_entries_list'; |
|
633
|
633
|
return $styles; |
|
634
|
634
|
} |
|
635
|
635
|
|