|
@@ -34,19 +34,19 @@ discard block |
|
|
block discarded – undo |
|
34
|
34
|
/** gf_entries page - entries table screen */ |
|
35
|
35
|
|
|
36
|
36
|
// capture bulk actions |
|
37
|
|
- add_action( 'init', array( $this, 'process_bulk_action') ); |
|
|
37
|
+ add_action( 'init', array( $this, 'process_bulk_action' ) ); |
|
38
|
38
|
// add hidden field with approve status |
|
39
|
39
|
add_action( 'gform_entries_first_column', array( $this, 'add_entry_approved_hidden_input' ), 1, 5 ); |
|
40
|
40
|
// process ajax approve entry requests |
|
41
|
|
- add_action('wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved')); |
|
|
41
|
+ add_action( 'wp_ajax_gv_update_approved', array( $this, 'ajax_update_approved' ) ); |
|
42
|
42
|
|
|
43
|
43
|
// in case entry is edited (on admin or frontend) |
|
44
|
|
- add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2); |
|
|
44
|
+ add_action( 'gform_after_update_entry', array( $this, 'after_update_entry_update_approved_meta' ), 10, 2 ); |
|
45
|
45
|
|
|
46
|
46
|
add_filter( 'gravityview_tooltips', array( $this, 'tooltips' ) ); |
|
47
|
47
|
|
|
48
|
48
|
// adding styles and scripts |
|
49
|
|
- add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles') ); |
|
|
49
|
+ add_action( 'admin_enqueue_scripts', array( $this, 'add_scripts_and_styles' ) ); |
|
50
|
50
|
// bypass Gravity Forms no-conflict mode |
|
51
|
51
|
add_filter( 'gform_noconflict_scripts', array( $this, 'register_gform_noconflict_script' ) ); |
|
52
|
52
|
add_filter( 'gform_noconflict_styles', array( $this, 'register_gform_noconflict_style' ) ); |
|
@@ -61,9 +61,9 @@ discard block |
|
|
block discarded – undo |
|
61
|
61
|
*/ |
|
62
|
62
|
function tooltips( $tooltips ) { |
|
63
|
63
|
|
|
64
|
|
- $tooltips['form_gravityview_fields'] = array( |
|
65
|
|
- 'title' => __('GravityView Fields', 'gravityview'), |
|
66
|
|
- 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview'), |
|
|
64
|
+ $tooltips[ 'form_gravityview_fields' ] = array( |
|
|
65
|
+ 'title' => __( 'GravityView Fields', 'gravityview' ), |
|
|
66
|
+ 'value' => __( 'Allow administrators to approve or reject entries and users to opt-in or opt-out of their entries being displayed.', 'gravityview' ), |
|
67
|
67
|
); |
|
68
|
68
|
|
|
69
|
69
|
return $tooltips; |
|
@@ -178,12 +178,12 @@ discard block |
|
|
block discarded – undo |
|
178
|
178
|
} |
|
179
|
179
|
|
|
180
|
180
|
// gforms_update_note is sent when bulk editing entry notes. We don't want to process then. |
|
181
|
|
- if ( 'bulk' === RGForms::post( 'action' ) && empty( $_POST['gforms_update_note'] ) ) { |
|
|
181
|
+ if ( 'bulk' === RGForms::post( 'action' ) && empty( $_POST[ 'gforms_update_note' ] ) ) { |
|
182
|
182
|
|
|
183
|
183
|
check_admin_referer( 'gforms_entry_list', 'gforms_entry_list' ); |
|
184
|
184
|
|
|
185
|
185
|
// The action is formatted like: approve-16 or disapprove-16, where the first word is the name of the action and the second is the ID of the form. Bulk action 2 is the bottom bulk action select form. |
|
186
|
|
- $bulk_action = ! empty( $_POST['bulk_action'] ) ? $_POST['bulk_action'] : $_POST['bulk_action2']; |
|
|
186
|
+ $bulk_action = ! empty( $_POST[ 'bulk_action' ] ) ? $_POST[ 'bulk_action' ] : $_POST[ 'bulk_action2' ]; |
|
187
|
187
|
|
|
188
|
188
|
/** |
|
189
|
189
|
* The extra '-' is to make sure that there are at *least* two items in array. |
|
@@ -199,13 +199,13 @@ discard block |
|
|
block discarded – undo |
|
199
|
199
|
} |
|
200
|
200
|
|
|
201
|
201
|
// All entries are set to be updated, not just the visible ones |
|
202
|
|
- if ( ! empty( $_POST['all_entries'] ) ) { |
|
|
202
|
+ if ( ! empty( $_POST[ 'all_entries' ] ) ) { |
|
203
|
203
|
|
|
204
|
204
|
// Convert the current entry search into GF-formatted search criteria |
|
205
|
205
|
$search = array( |
|
206
|
|
- 'search_field' => isset( $_POST['f'] ) ? $_POST['f'][0] : 0, |
|
207
|
|
- 'search_value' => isset( $_POST['v'][0] ) ? $_POST['v'][0] : '', |
|
208
|
|
- 'search_operator' => isset( $_POST['o'][0] ) ? $_POST['o'][0] : 'contains', |
|
|
206
|
+ 'search_field' => isset( $_POST[ 'f' ] ) ? $_POST[ 'f' ][ 0 ] : 0, |
|
|
207
|
+ 'search_value' => isset( $_POST[ 'v' ][ 0 ] ) ? $_POST[ 'v' ][ 0 ] : '', |
|
|
208
|
+ 'search_operator' => isset( $_POST[ 'o' ][ 0 ] ) ? $_POST[ 'o' ][ 0 ] : 'contains', |
|
209
|
209
|
); |
|
210
|
210
|
|
|
211
|
211
|
$search_criteria = GravityView_frontend::get_search_criteria( $search, $form_id ); |
|
@@ -215,7 +215,7 @@ discard block |
|
|
block discarded – undo |
|
215
|
215
|
|
|
216
|
216
|
} else { |
|
217
|
217
|
|
|
218
|
|
- $entries = $_POST['lead']; |
|
|
218
|
+ $entries = $_POST[ 'lead' ]; |
|
219
|
219
|
|
|
220
|
220
|
} |
|
221
|
221
|
|
|
@@ -256,12 +256,12 @@ discard block |
|
|
block discarded – undo |
|
256
|
256
|
*/ |
|
257
|
257
|
private static function update_bulk( $entries, $approved, $form_id ) { |
|
258
|
258
|
|
|
259
|
|
- if( empty($entries) || ( $entries !== true && !is_array($entries) ) ) { |
|
|
259
|
+ if ( empty( $entries ) || ( $entries !== true && ! is_array( $entries ) ) ) { |
|
260
|
260
|
do_action( 'gravityview_log_error', __METHOD__ . ' Entries were empty or malformed.', $entries ); |
|
261
|
261
|
return false; |
|
262
|
262
|
} |
|
263
|
263
|
|
|
264
|
|
- if( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
|
264
|
+ if ( ! GVCommon::has_cap( 'gravityview_moderate_entries' ) ) { |
|
265
|
265
|
do_action( 'gravityview_log_error', __METHOD__ . ' User does not have the `gravityview_moderate_entries` capability.' ); |
|
266
|
266
|
return false; |
|
267
|
267
|
} |
|
@@ -271,7 +271,7 @@ discard block |
|
|
block discarded – undo |
|
271
|
271
|
// calculate approved field id |
|
272
|
272
|
$approved_column_id = self::get_approved_column( $form_id ); |
|
273
|
273
|
|
|
274
|
|
- foreach( $entries as $entry_id ) { |
|
|
274
|
+ foreach ( $entries as $entry_id ) { |
|
275
|
275
|
self::update_approved( (int)$entry_id, $approved, $form_id, $approved_column_id ); |
|
276
|
276
|
} |
|
277
|
277
|
} |
|
@@ -290,14 +290,14 @@ discard block |
|
|
block discarded – undo |
|
290
|
290
|
* @param int $approvedcolumn (default: 0) |
|
291
|
291
|
* @return boolean True: It worked; False: it failed |
|
292
|
292
|
*/ |
|
293
|
|
- public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0) { |
|
|
293
|
+ public static function update_approved( $entry_id = 0, $approved = 0, $form_id = 0, $approvedcolumn = 0 ) { |
|
294
|
294
|
|
|
295
|
|
- if( !class_exists( 'GFAPI' ) ) { |
|
|
295
|
+ if ( ! class_exists( 'GFAPI' ) ) { |
|
296
|
296
|
do_action( 'gravityview_log_error', __METHOD__ . 'GFAPI does not exist' ); |
|
297
|
297
|
return false; |
|
298
|
298
|
} |
|
299
|
299
|
|
|
300
|
|
- if( empty( $approvedcolumn ) ) { |
|
|
300
|
+ if ( empty( $approvedcolumn ) ) { |
|
301
|
301
|
$approvedcolumn = self::get_approved_column( $form_id ); |
|
302
|
302
|
} |
|
303
|
303
|
|
|
@@ -316,10 +316,10 @@ discard block |
|
|
block discarded – undo |
|
316
|
316
|
self::update_approved_meta( $entry_id, $approved ); |
|
317
|
317
|
|
|
318
|
318
|
// add note to entry |
|
319
|
|
- if( $result === true ) { |
|
|
319
|
+ if ( $result === true ) { |
|
320
|
320
|
$note = empty( $approved ) ? __( 'Disapproved the Entry for GravityView', 'gravityview' ) : __( 'Approved the Entry for GravityView', 'gravityview' ); |
|
321
|
321
|
|
|
322
|
|
- if( class_exists( 'GravityView_Entry_Notes' ) ){ |
|
|
322
|
+ if ( class_exists( 'GravityView_Entry_Notes' ) ) { |
|
323
|
323
|
global $current_user; |
|
324
|
324
|
get_currentuserinfo(); |
|
325
|
325
|
GravityView_Entry_Notes::add_note( $entry_id, $current_user->ID, $current_user->display_name, $note ); |
|
@@ -332,7 +332,7 @@ discard block |
|
|
block discarded – undo |
|
332
|
332
|
*/ |
|
333
|
333
|
do_action( 'gravityview_clear_form_cache', $form_id ); |
|
334
|
334
|
|
|
335
|
|
- } else if( is_wp_error( $result ) ) { |
|
|
335
|
+ } else if ( is_wp_error( $result ) ) { |
|
336
|
336
|
|
|
337
|
337
|
do_action( 'gravityview_log_error', __METHOD__ . sprintf( ' - Entry approval not updated: %s', $result->get_error_message() ) ); |
|
338
|
338
|
|
|
@@ -354,12 +354,12 @@ discard block |
|
|
block discarded – undo |
|
354
|
354
|
*/ |
|
355
|
355
|
public static function after_update_entry_update_approved_meta( $form, $entry_id = NULL ) { |
|
356
|
356
|
|
|
357
|
|
- $approvedcolumn = self::get_approved_column( $form['id'] ); |
|
|
357
|
+ $approvedcolumn = self::get_approved_column( $form[ 'id' ] ); |
|
358
|
358
|
|
|
359
|
359
|
/** |
|
360
|
360
|
* If the form doesn't contain the approve field, don't assume anything. |
|
361
|
361
|
*/ |
|
362
|
|
- if( empty( $approvedcolumn ) ) { |
|
|
362
|
+ if ( empty( $approvedcolumn ) ) { |
|
363
|
363
|
return; |
|
364
|
364
|
} |
|
365
|
365
|
|
|
@@ -381,7 +381,7 @@ discard block |
|
|
block discarded – undo |
|
381
|
381
|
private static function update_approved_meta( $entry_id, $is_approved ) { |
|
382
|
382
|
|
|
383
|
383
|
// update entry meta |
|
384
|
|
- if( function_exists('gform_update_meta') ) { |
|
|
384
|
+ if ( function_exists( 'gform_update_meta' ) ) { |
|
385
|
385
|
|
|
386
|
386
|
gform_update_meta( $entry_id, 'is_approved', $is_approved ); |
|
387
|
387
|
|
|
@@ -393,7 +393,7 @@ discard block |
|
|
block discarded – undo |
|
393
|
393
|
*/ |
|
394
|
394
|
do_action( 'gravityview/approve_entries/updated', $entry_id, $is_approved ); |
|
395
|
395
|
|
|
396
|
|
- if( empty( $is_approved ) ) { |
|
|
396
|
+ if ( empty( $is_approved ) ) { |
|
397
|
397
|
|
|
398
|
398
|
/** |
|
399
|
399
|
* @action `gravityview/approve_entries/disapproved` Triggered when an entry is rejected |
|
@@ -415,7 +415,7 @@ discard block |
|
|
block discarded – undo |
|
415
|
415
|
|
|
416
|
416
|
} else { |
|
417
|
417
|
|
|
418
|
|
- do_action('gravityview_log_error', __METHOD__ . ' - `gform_update_meta` does not exist.' ); |
|
|
418
|
+ do_action( 'gravityview_log_error', __METHOD__ . ' - `gform_update_meta` does not exist.' ); |
|
419
|
419
|
|
|
420
|
420
|
} |
|
421
|
421
|
} |
|
@@ -427,21 +427,21 @@ discard block |
|
|
block discarded – undo |
|
427
|
427
|
*/ |
|
428
|
428
|
public function ajax_update_approved() { |
|
429
|
429
|
|
|
430
|
|
- if( empty( $_POST['entry_id'] ) || empty( $_POST['form_id'] ) ) { |
|
|
430
|
+ if ( empty( $_POST[ 'entry_id' ] ) || empty( $_POST[ 'form_id' ] ) ) { |
|
431
|
431
|
|
|
432
|
432
|
do_action( 'gravityview_log_error', __METHOD__ . ' entry_id or form_id are empty.', $_POST ); |
|
433
|
433
|
|
|
434
|
434
|
$result = false; |
|
435
|
435
|
} |
|
436
|
436
|
|
|
437
|
|
- else if ( ! isset( $_POST['nonce'] ) || ! wp_verify_nonce( $_POST['nonce'], 'gravityview_ajaxgfentries' ) ) { |
|
|
437
|
+ else if ( ! isset( $_POST[ 'nonce' ] ) || ! wp_verify_nonce( $_POST[ 'nonce' ], 'gravityview_ajaxgfentries' ) ) { |
|
438
|
438
|
|
|
439
|
439
|
do_action( 'gravityview_log_error', __METHOD__ . ' Security check failed.', $_POST ); |
|
440
|
440
|
|
|
441
|
441
|
$result = false; |
|
442
|
442
|
} |
|
443
|
443
|
|
|
444
|
|
- else if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $_POST['entry_id'] ) ) { |
|
|
444
|
+ else if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $_POST[ 'entry_id' ] ) ) { |
|
445
|
445
|
|
|
446
|
446
|
do_action( 'gravityview_log_error', __METHOD__ . ' User does not have the `gravityview_moderate_entries` capability.' ); |
|
447
|
447
|
|
|
@@ -450,11 +450,11 @@ discard block |
|
|
block discarded – undo |
|
450
|
450
|
|
|
451
|
451
|
else { |
|
452
|
452
|
|
|
453
|
|
- $result = self::update_approved( $_POST['entry_id'], $_POST['approved'], $_POST['form_id'] ); |
|
|
453
|
+ $result = self::update_approved( $_POST[ 'entry_id' ], $_POST[ 'approved' ], $_POST[ 'form_id' ] ); |
|
454
|
454
|
|
|
455
|
|
- if( is_wp_error( $result ) ) { |
|
|
455
|
+ if ( is_wp_error( $result ) ) { |
|
456
|
456
|
/** @var WP_Error $result */ |
|
457
|
|
- do_action( 'gravityview_log_error', __METHOD__ .' Error updating approval: ' . $result->get_error_message() ); |
|
|
457
|
+ do_action( 'gravityview_log_error', __METHOD__ . ' Error updating approval: ' . $result->get_error_message() ); |
|
458
|
458
|
$result = false; |
|
459
|
459
|
} |
|
460
|
460
|
|
|
@@ -474,29 +474,29 @@ discard block |
|
|
block discarded – undo |
|
474
|
474
|
*/ |
|
475
|
475
|
static public function get_approved_column( $form ) { |
|
476
|
476
|
|
|
477
|
|
- if( empty( $form ) ) { |
|
|
477
|
+ if ( empty( $form ) ) { |
|
478
|
478
|
return null; |
|
479
|
479
|
} |
|
480
|
480
|
|
|
481
|
|
- if( !is_array( $form ) ) { |
|
|
481
|
+ if ( ! is_array( $form ) ) { |
|
482
|
482
|
$form = GVCommon::get_form( $form ); |
|
483
|
483
|
} |
|
484
|
484
|
|
|
485
|
|
- foreach( $form['fields'] as $key => $field ) { |
|
|
485
|
+ foreach ( $form[ 'fields' ] as $key => $field ) { |
|
486
|
486
|
|
|
487
|
|
- $field = (array) $field; |
|
|
487
|
+ $field = (array)$field; |
|
488
|
488
|
|
|
489
|
|
- if( !empty( $field['gravityview_approved'] ) ) { |
|
490
|
|
- if( !empty($field['inputs'][0]['id']) ) { |
|
491
|
|
- return $field['inputs'][0]['id']; |
|
|
489
|
+ if ( ! empty( $field[ 'gravityview_approved' ] ) ) { |
|
|
490
|
+ if ( ! empty( $field[ 'inputs' ][ 0 ][ 'id' ] ) ) { |
|
|
491
|
+ return $field[ 'inputs' ][ 0 ][ 'id' ]; |
|
492
|
492
|
} |
|
493
|
493
|
} |
|
494
|
494
|
|
|
495
|
495
|
// Note: This is just for backward compatibility from GF Directory plugin and old GV versions - when using i18n it may not work.. |
|
496
|
|
- if( 'checkbox' == $field['type'] && isset( $field['inputs'] ) && is_array( $field['inputs'] ) ) { |
|
497
|
|
- foreach ( $field['inputs'] as $key2 => $input ) { |
|
498
|
|
- if ( strtolower( $input['label'] ) == 'approved' ) { |
|
499
|
|
- return $input['id']; |
|
|
496
|
+ if ( 'checkbox' == $field[ 'type' ] && isset( $field[ 'inputs' ] ) && is_array( $field[ 'inputs' ] ) ) { |
|
|
497
|
+ foreach ( $field[ 'inputs' ] as $key2 => $input ) { |
|
|
498
|
+ if ( strtolower( $input[ 'label' ] ) == 'approved' ) { |
|
|
499
|
+ return $input[ 'id' ]; |
|
500
|
500
|
} |
|
501
|
501
|
} |
|
502
|
502
|
} |
|
@@ -507,18 +507,18 @@ discard block |
|
|
block discarded – undo |
|
507
|
507
|
|
|
508
|
508
|
|
|
509
|
509
|
|
|
510
|
|
- static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
|
510
|
+ static public function add_entry_approved_hidden_input( $form_id, $field_id, $value, $entry, $query_string ) { |
|
511
|
511
|
|
|
512
|
|
- if( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry['id'] ) ) { |
|
|
512
|
+ if ( ! GVCommon::has_cap( 'gravityview_moderate_entries', $entry[ 'id' ] ) ) { |
|
513
|
513
|
return; |
|
514
|
514
|
} |
|
515
|
515
|
|
|
516
|
|
- if( empty( $entry['id'] ) ) { |
|
|
516
|
+ if ( empty( $entry[ 'id' ] ) ) { |
|
517
|
517
|
return; |
|
518
|
518
|
} |
|
519
|
519
|
|
|
520
|
|
- if( gform_get_meta( $entry['id'], 'is_approved' ) ) { |
|
521
|
|
- echo '<input type="hidden" class="entry_approved" id="entry_approved_'. $entry['id'] .'" value="true" />'; |
|
|
520
|
+ if ( gform_get_meta( $entry[ 'id' ], 'is_approved' ) ) { |
|
|
521
|
+ echo '<input type="hidden" class="entry_approved" id="entry_approved_' . $entry[ 'id' ] . '" value="true" />'; |
|
522
|
522
|
} |
|
523
|
523
|
} |
|
524
|
524
|
|
|
@@ -527,7 +527,7 @@ discard block |
|
|
block discarded – undo |
|
527
|
527
|
|
|
528
|
528
|
function add_scripts_and_styles( $hook ) { |
|
529
|
529
|
|
|
530
|
|
- if( !class_exists( 'RGForms' ) ) { |
|
|
530
|
+ if ( ! class_exists( 'RGForms' ) ) { |
|
531
|
531
|
|
|
532
|
532
|
do_action( 'gravityview_log_error', 'GravityView_Admin_ApproveEntries[add_scripts_and_styles] RGForms does not exist.' ); |
|
533
|
533
|
|
|
@@ -536,39 +536,39 @@ discard block |
|
|
block discarded – undo |
|
536
|
536
|
|
|
537
|
537
|
// enqueue styles & scripts gf_entries |
|
538
|
538
|
// But only if we're on the main Entries page, not on reports pages |
|
539
|
|
- if( RGForms::get_page() === 'entry_list' ) { |
|
|
539
|
+ if ( RGForms::get_page() === 'entry_list' ) { |
|
540
|
540
|
|
|
541
|
|
- $form_id = RGForms::get('id'); |
|
|
541
|
+ $form_id = RGForms::get( 'id' ); |
|
542
|
542
|
|
|
543
|
543
|
// If there are no forms identified, use the first form. That's how GF does it. |
|
544
|
|
- if( empty( $form_id ) && class_exists('RGFormsModel') ) { |
|
|
544
|
+ if ( empty( $form_id ) && class_exists( 'RGFormsModel' ) ) { |
|
545
|
545
|
$forms = gravityview_get_forms(); |
|
546
|
|
- if( !empty( $forms ) ) { |
|
547
|
|
- $form_id = $forms[0]['id']; |
|
|
546
|
+ if ( ! empty( $forms ) ) { |
|
|
547
|
+ $form_id = $forms[ 0 ][ 'id' ]; |
|
548
|
548
|
} |
|
549
|
549
|
} |
|
550
|
550
|
|
|
551
|
551
|
$approvedcolumn = self::get_approved_column( $form_id ); |
|
552
|
552
|
|
|
553
|
|
- wp_register_style( 'gravityview_entries_list', plugins_url('assets/css/admin-entries-list.css', GRAVITYVIEW_FILE), array(), GravityView_Plugin::version ); |
|
|
553
|
+ wp_register_style( 'gravityview_entries_list', plugins_url( 'assets/css/admin-entries-list.css', GRAVITYVIEW_FILE ), array(), GravityView_Plugin::version ); |
|
554
|
554
|
wp_enqueue_style( 'gravityview_entries_list' ); |
|
555
|
555
|
|
|
556
|
|
- $script_debug = (defined('SCRIPT_DEBUG') && SCRIPT_DEBUG) ? '' : '.min'; |
|
|
556
|
+ $script_debug = ( defined( 'SCRIPT_DEBUG' ) && SCRIPT_DEBUG ) ? '' : '.min'; |
|
557
|
557
|
|
|
558
|
|
- wp_register_script( 'gravityview_gf_entries_scripts', plugins_url('assets/js/admin-entries-list'.$script_debug.'.js', GRAVITYVIEW_FILE), array( 'jquery' ), GravityView_Plugin::version ); |
|
|
558
|
+ wp_register_script( 'gravityview_gf_entries_scripts', plugins_url( 'assets/js/admin-entries-list' . $script_debug . '.js', GRAVITYVIEW_FILE ), array( 'jquery' ), GravityView_Plugin::version ); |
|
559
|
559
|
wp_enqueue_script( 'gravityview_gf_entries_scripts' ); |
|
560
|
560
|
|
|
561
|
561
|
wp_localize_script( 'gravityview_gf_entries_scripts', 'gvGlobals', array( |
|
562
|
|
- 'nonce' => wp_create_nonce( 'gravityview_ajaxgfentries'), |
|
|
562
|
+ 'nonce' => wp_create_nonce( 'gravityview_ajaxgfentries' ), |
|
563
|
563
|
'form_id' => $form_id, |
|
564
|
564
|
'show_column' => (int)$this->show_approve_entry_column( $form_id ), |
|
565
|
565
|
'add_bulk_action' => (int)GVCommon::has_cap( 'gravityview_moderate_entries' ), |
|
566
|
566
|
'bulk_actions' => $this->get_bulk_actions( $form_id ), |
|
567
|
567
|
'bulk_message' => $this->bulk_update_message, |
|
568
|
|
- 'approve_title' => __( 'Entry not approved for directory viewing. Click to approve this entry.', 'gravityview'), |
|
569
|
|
- 'unapprove_title' => __( 'Entry approved for directory viewing. Click to disapprove this entry.', 'gravityview'), |
|
570
|
|
- 'column_title' => __( 'Show entry in directory view?', 'gravityview'), |
|
571
|
|
- 'column_link' => esc_url( add_query_arg( array('sort' => $approvedcolumn) ) ), |
|
|
568
|
+ 'approve_title' => __( 'Entry not approved for directory viewing. Click to approve this entry.', 'gravityview' ), |
|
|
569
|
+ 'unapprove_title' => __( 'Entry approved for directory viewing. Click to disapprove this entry.', 'gravityview' ), |
|
|
570
|
+ 'column_title' => __( 'Show entry in directory view?', 'gravityview' ), |
|
|
571
|
+ 'column_link' => esc_url( add_query_arg( array( 'sort' => $approvedcolumn ) ) ), |
|
572
|
572
|
) ); |
|
573
|
573
|
|
|
574
|
574
|
} |
|
@@ -589,7 +589,7 @@ discard block |
|
|
block discarded – undo |
|
589
|
589
|
$bulk_actions = array( |
|
590
|
590
|
'GravityView' => array( |
|
591
|
591
|
array( |
|
592
|
|
- 'label' => __( 'Approve', 'gravityview' ) , |
|
|
592
|
+ 'label' => __( 'Approve', 'gravityview' ), |
|
593
|
593
|
'value' => sprintf( 'approve-%d', $form_id ), |
|
594
|
594
|
), |
|
595
|
595
|
array( |
|
@@ -610,9 +610,9 @@ discard block |
|
|
block discarded – undo |
|
610
|
610
|
|
|
611
|
611
|
// Sanitize the values, just to be sure. |
|
612
|
612
|
foreach ( $bulk_actions as $key => $group ) { |
|
613
|
|
- foreach( $group as $i => $action ) { |
|
614
|
|
- $bulk_actions[ $key ][ $i ]['label'] = esc_html( $bulk_actions[ $key ][ $i ]['label'] ); |
|
615
|
|
- $bulk_actions[ $key ][ $i ]['value'] = esc_attr( $bulk_actions[ $key ][ $i ]['value'] ); |
|
|
613
|
+ foreach ( $group as $i => $action ) { |
|
|
614
|
+ $bulk_actions[ $key ][ $i ][ 'label' ] = esc_html( $bulk_actions[ $key ][ $i ][ 'label' ] ); |
|
|
615
|
+ $bulk_actions[ $key ][ $i ][ 'value' ] = esc_attr( $bulk_actions[ $key ][ $i ][ 'value' ] ); |
|
616
|
616
|
} |
|
617
|
617
|
} |
|
618
|
618
|
|
|
@@ -637,13 +637,13 @@ discard block |
|
|
block discarded – undo |
|
637
|
637
|
* @since 1.7.2 |
|
638
|
638
|
* @param boolean $hide_if_no_connections |
|
639
|
639
|
*/ |
|
640
|
|
- $hide_if_no_connections = apply_filters('gravityview/approve_entries/hide-if-no-connections', false ); |
|
|
640
|
+ $hide_if_no_connections = apply_filters( 'gravityview/approve_entries/hide-if-no-connections', false ); |
|
641
|
641
|
|
|
642
|
|
- if( $hide_if_no_connections ) { |
|
|
642
|
+ if ( $hide_if_no_connections ) { |
|
643
|
643
|
|
|
644
|
644
|
$connected_views = gravityview_get_connected_views( $form_id ); |
|
645
|
645
|
|
|
646
|
|
- if( empty( $connected_views ) ) { |
|
|
646
|
+ if ( empty( $connected_views ) ) { |
|
647
|
647
|
$show_approve_column = false; |
|
648
|
648
|
} |
|
649
|
649
|
} |
|
@@ -653,18 +653,18 @@ discard block |
|
|
block discarded – undo |
|
653
|
653
|
* @param boolean $show_approve_column Whether the column will be shown |
|
654
|
654
|
* @param int $form_id The ID of the Gravity Forms form for which entries are being shown |
|
655
|
655
|
*/ |
|
656
|
|
- $show_approve_column = apply_filters('gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
|
656
|
+ $show_approve_column = apply_filters( 'gravityview/approve_entries/show-column', $show_approve_column, $form_id ); |
|
657
|
657
|
|
|
658
|
658
|
return $show_approve_column; |
|
659
|
659
|
} |
|
660
|
660
|
|
|
661
|
661
|
function register_gform_noconflict_script( $scripts ) { |
|
662
|
|
- $scripts[] = 'gravityview_gf_entries_scripts'; |
|
|
662
|
+ $scripts[ ] = 'gravityview_gf_entries_scripts'; |
|
663
|
663
|
return $scripts; |
|
664
|
664
|
} |
|
665
|
665
|
|
|
666
|
666
|
function register_gform_noconflict_style( $styles ) { |
|
667
|
|
- $styles[] = 'gravityview_entries_list'; |
|
|
667
|
+ $styles[ ] = 'gravityview_entries_list'; |
|
668
|
668
|
return $styles; |
|
669
|
669
|
} |
|
670
|
670
|
|