@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Exit if accessed directly |
4 | -if ( ! defined( 'ABSPATH' ) ) { |
|
4 | +if ( ! defined( 'ABSPATH' )) { |
|
5 | 5 | exit; |
6 | 6 | } |
7 | 7 | |
8 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
9 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
8 | +if ( ! class_exists( 'WP_List_Table' )) { |
|
9 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
@@ -42,7 +42,7 @@ discard block |
||
42 | 42 | * @return string The Content to display |
43 | 43 | */ |
44 | 44 | public function column_default( $item, $column_name ) { |
45 | - return $item[ $column_name ]; |
|
45 | + return $item[$column_name]; |
|
46 | 46 | } |
47 | 47 | |
48 | 48 | /** |
@@ -74,13 +74,13 @@ discard block |
||
74 | 74 | |
75 | 75 | $accounts = apply_filters( 'ppp_register_social_service', array() ); |
76 | 76 | |
77 | - foreach ( $accounts as $account ) { |
|
77 | + foreach ($accounts as $account) { |
|
78 | 78 | $data[$account] = array( |
79 | - 'icon' => apply_filters( 'ppp_account_list_icon-' . $account, '' ), |
|
80 | - 'avatar' => apply_filters( 'ppp_account_list_avatar-' . $account, '' ), |
|
81 | - 'name' => apply_filters( 'ppp_account_list_name-' . $account, '' ), |
|
82 | - 'actions' => apply_filters( 'ppp_account_list_actions-' . $account, '' ), |
|
83 | - 'extras' => apply_filters( 'ppp_account_list_extras-' . $account, '' ), |
|
79 | + 'icon' => apply_filters( 'ppp_account_list_icon-'.$account, '' ), |
|
80 | + 'avatar' => apply_filters( 'ppp_account_list_avatar-'.$account, '' ), |
|
81 | + 'name' => apply_filters( 'ppp_account_list_name-'.$account, '' ), |
|
82 | + 'actions' => apply_filters( 'ppp_account_list_actions-'.$account, '' ), |
|
83 | + 'extras' => apply_filters( 'ppp_account_list_extras-'.$account, '' ), |
|
84 | 84 | ); |
85 | 85 | } |
86 | 86 |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( !defined( 'ABSPATH' ) ) exit; |
|
13 | +if ( ! defined( 'ABSPATH' )) exit; |
|
14 | 14 | |
15 | 15 | /** |
16 | 16 | * Render Upgrades Screen |
@@ -19,12 +19,12 @@ discard block |
||
19 | 19 | * @return void |
20 | 20 | */ |
21 | 21 | function ppp_upgrades_screen() { |
22 | - $action = isset( $_GET['ppp-upgrade'] ) ? sanitize_text_field( $_GET['ppp-upgrade'] ) : ''; |
|
23 | - $step = isset( $_GET['step'] ) ? absint( $_GET['step'] ) : 1; |
|
24 | - $total = isset( $_GET['total'] ) ? absint( $_GET['total'] ) : false; |
|
25 | - $custom = isset( $_GET['custom'] ) ? absint( $_GET['custom'] ) : 0; |
|
26 | - $number = isset( $_GET['number'] ) ? absint( $_GET['number'] ) : 100; |
|
27 | - $steps = round( ( $total / $number ), 0 ); |
|
22 | + $action = isset($_GET['ppp-upgrade']) ? sanitize_text_field( $_GET['ppp-upgrade'] ) : ''; |
|
23 | + $step = isset($_GET['step']) ? absint( $_GET['step'] ) : 1; |
|
24 | + $total = isset($_GET['total']) ? absint( $_GET['total'] ) : false; |
|
25 | + $custom = isset($_GET['custom']) ? absint( $_GET['custom'] ) : 0; |
|
26 | + $number = isset($_GET['number']) ? absint( $_GET['number'] ) : 100; |
|
27 | + $steps = round( ($total / $number), 0 ); |
|
28 | 28 | |
29 | 29 | $doing_upgrade_args = array( |
30 | 30 | 'page' => 'ppp-upgrades', |
@@ -36,7 +36,7 @@ discard block |
||
36 | 36 | ); |
37 | 37 | |
38 | 38 | update_option( 'ppp_doing_upgrade', $doing_upgrade_args ); |
39 | - if ( $step > $steps ) { |
|
39 | + if ($step > $steps) { |
|
40 | 40 | // Prevent a weird case where the estimate was off. Usually only a couple. |
41 | 41 | $steps = $step; |
42 | 42 | } |
@@ -44,12 +44,12 @@ discard block |
||
44 | 44 | <div class="wrap"> |
45 | 45 | <h1><?php _e( 'Post Promoter Pro - Upgrades', 'ppp-txt' ); ?></h1> |
46 | 46 | |
47 | - <?php if( ! empty( $action ) ) : ?> |
|
47 | + <?php if ( ! empty($action)) : ?> |
|
48 | 48 | |
49 | 49 | <div id="ppp-upgrade-status"> |
50 | 50 | <p><?php _e( 'The upgrade process has started, please be patient. This could take several minutes. You will be automatically redirected when the upgrade is finished.', 'ppp-txt' ); ?></p> |
51 | 51 | |
52 | - <?php if( ! empty( $total ) ) : ?> |
|
52 | + <?php if ( ! empty($total)) : ?> |
|
53 | 53 | <p><strong><?php printf( __( 'Step %d of approximately %d running', 'ppp-txt' ), $step, $steps ); ?></strong></p> |
54 | 54 | <?php endif; ?> |
55 | 55 | </div> |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Exit if accessed directly |
4 | -if ( ! defined( 'ABSPATH' ) ) { |
|
4 | +if ( ! defined( 'ABSPATH' )) { |
|
5 | 5 | exit; |
6 | 6 | } |
7 | 7 | |
@@ -12,11 +12,11 @@ discard block |
||
12 | 12 | function ppp_register_meta_boxes() { |
13 | 13 | global $post, $ppp_options; |
14 | 14 | |
15 | - if ( !isset( $ppp_options['post_types'] ) || !is_array( $ppp_options['post_types'] ) ) { |
|
15 | + if ( ! isset($ppp_options['post_types']) || ! is_array( $ppp_options['post_types'] )) { |
|
16 | 16 | return; |
17 | 17 | } |
18 | 18 | |
19 | - foreach ( $ppp_options['post_types'] as $post_type => $value ) { |
|
19 | + foreach ($ppp_options['post_types'] as $post_type => $value) { |
|
20 | 20 | add_meta_box( 'ppp_schedule_metabox', 'Post Promoter Pro', 'ppp_schedule_callback', $post_type, 'normal', 'high' ); |
21 | 21 | } |
22 | 22 | } |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Exit if accessed directly |
4 | -if ( !defined( 'ABSPATH' ) ) { |
|
4 | +if ( ! defined( 'ABSPATH' )) { |
|
5 | 5 | exit; |
6 | 6 | } |
7 | 7 | |
@@ -11,13 +11,13 @@ discard block |
||
11 | 11 | * Handles all bitly functions |
12 | 12 | * |
13 | 13 | */ |
14 | -if( !class_exists( 'PPP_Bitly' ) ) { |
|
14 | +if ( ! class_exists( 'PPP_Bitly' )) { |
|
15 | 15 | |
16 | 16 | class PPP_Bitly { |
17 | 17 | |
18 | 18 | var $bitly; |
19 | 19 | |
20 | - public function __construct(){ |
|
20 | + public function __construct() { |
|
21 | 21 | ppp_maybe_start_session(); |
22 | 22 | } |
23 | 23 | |
@@ -27,20 +27,20 @@ discard block |
||
27 | 27 | * Handles to load twitter class |
28 | 28 | */ |
29 | 29 | public function ppp_load_bitly() { |
30 | - if( !class_exists( 'Bitly' ) ) { |
|
31 | - require_once ( PPP_PATH . '/includes/libs/bitly/bitly.php' ); |
|
30 | + if ( ! class_exists( 'Bitly' )) { |
|
31 | + require_once (PPP_PATH.'/includes/libs/bitly/bitly.php'); |
|
32 | 32 | } |
33 | 33 | |
34 | 34 | ppp_set_social_tokens(); |
35 | 35 | |
36 | - if ( ! defined( 'bitly_clientid' ) || ! defined( 'bitly_secret' ) ) { |
|
36 | + if ( ! defined( 'bitly_clientid' ) || ! defined( 'bitly_secret' )) { |
|
37 | 37 | return false; |
38 | 38 | } |
39 | 39 | |
40 | 40 | global $ppp_social_settings; |
41 | 41 | |
42 | - if ( isset( $ppp_social_settings['bitly'] ) ) { |
|
43 | - if ( !defined( 'bitly_accesstoken' ) ) { |
|
42 | + if (isset($ppp_social_settings['bitly'])) { |
|
43 | + if ( ! defined( 'bitly_accesstoken' )) { |
|
44 | 44 | define( 'bitly_accesstoken', $ppp_social_settings['bitly']['access_token'] ); |
45 | 45 | } |
46 | 46 | $this->bitly = new Bitly( bitly_clientid, bitly_secret, bitly_accesstoken ); |
@@ -54,7 +54,7 @@ discard block |
||
54 | 54 | public function revoke_access() { |
55 | 55 | global $ppp_social_settings; |
56 | 56 | |
57 | - unset( $ppp_social_settings['bitly'] ); |
|
57 | + unset($ppp_social_settings['bitly']); |
|
58 | 58 | |
59 | 59 | update_option( 'ppp_social_settings', $ppp_social_settings ); |
60 | 60 | } |
@@ -63,12 +63,12 @@ discard block |
||
63 | 63 | * Get auth codes for Bitly |
64 | 64 | * |
65 | 65 | */ |
66 | - public function ppp_get_bitly_auth_url () { |
|
66 | + public function ppp_get_bitly_auth_url() { |
|
67 | 67 | //load bitly class |
68 | 68 | $bitly = $this->ppp_load_bitly(); |
69 | 69 | |
70 | 70 | //check bitly class is loaded or not |
71 | - if( !$bitly ) { |
|
71 | + if ( ! $bitly) { |
|
72 | 72 | return false; |
73 | 73 | } |
74 | 74 | |
@@ -77,13 +77,13 @@ discard block |
||
77 | 77 | } |
78 | 78 | |
79 | 79 | public function ppp_make_bitly_link( $link = null ) { |
80 | - if ( empty( $link ) ) { |
|
80 | + if (empty($link)) { |
|
81 | 81 | return false; |
82 | 82 | } |
83 | 83 | |
84 | 84 | $bitly = $this->ppp_load_bitly(); |
85 | 85 | |
86 | - if ( !$bitly ) { |
|
86 | + if ( ! $bitly) { |
|
87 | 87 | return false; |
88 | 88 | } |
89 | 89 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | public function ppp_bitly_user_info() { |
94 | 94 | $bitly = $this->ppp_load_bitly(); |
95 | 95 | |
96 | - if ( !$bitly ) { |
|
96 | + if ( ! $bitly) { |
|
97 | 97 | return false; |
98 | 98 | } |
99 | 99 |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Exit if accessed directly |
4 | -if ( ! defined( 'ABSPATH' ) ) { |
|
4 | +if ( ! defined( 'ABSPATH' )) { |
|
5 | 5 | exit; |
6 | 6 | } |
7 | 7 | |
@@ -11,7 +11,7 @@ discard block |
||
11 | 11 | * @return void |
12 | 12 | */ |
13 | 13 | function ppp_add_wpme_shortener( $selected_shortener ) { |
14 | - if( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'shortlinks' ) ) { ?> |
|
14 | + if (class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'shortlinks' )) { ?> |
|
15 | 15 | <option value="wpme" <?php selected( $selected_shortener, 'wpme', true ); ?>>WP.me</option> |
16 | 16 | <?php } |
17 | 17 | } |
@@ -40,11 +40,11 @@ discard block |
||
40 | 40 | * @return string The link, after shortening through wp.me |
41 | 41 | */ |
42 | 42 | function ppp_apply_wpme( $link ) { |
43 | - if ( class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'shortlinks' ) ) { |
|
43 | + if (class_exists( 'Jetpack' ) && Jetpack::is_module_active( 'shortlinks' )) { |
|
44 | 44 | $id = url_to_postid( $link ); |
45 | 45 | $result = wpme_get_shortlink( $id ); |
46 | 46 | |
47 | - if ( ! empty( $result ) ) { |
|
47 | + if ( ! empty($result)) { |
|
48 | 48 | return $result; |
49 | 49 | } else { |
50 | 50 | return $link; |
@@ -1,6 +1,6 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | // Exit if accessed directly |
3 | -if ( ! defined( 'ABSPATH' ) ) { |
|
3 | +if ( ! defined( 'ABSPATH' )) { |
|
4 | 4 | exit; |
5 | 5 | } |
6 | 6 | |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | */ |
12 | 12 | $options = get_option( 'ppp_options' ); |
13 | 13 | |
14 | -if ( isset( $options['delete_on_uninstall'] ) ) { |
|
14 | +if (isset($options['delete_on_uninstall'])) { |
|
15 | 15 | require_once 'includes/cron-functions.php'; |
16 | 16 | |
17 | 17 | $crons = ppp_get_shceduled_crons(); |
18 | - foreach( $crons as $cron ) { |
|
18 | + foreach ($crons as $cron) { |
|
19 | 19 | $ppp_data = $cron['ppp_share_post_event']; |
20 | 20 | $array_keys = array_keys( $ppp_data ); |
21 | 21 | $hash_key = $array_keys[0]; |
@@ -41,17 +41,17 @@ discard block |
||
41 | 41 | * @uses $this->get_logs_to_prune() Returns array of posts via get_posts of logs to prune |
42 | 42 | * @uses $this->prune_old_logs() Deletes the logs that we don't want anymore |
43 | 43 | */ |
44 | - public function prune_logs(){ |
|
44 | + public function prune_logs() { |
|
45 | 45 | |
46 | 46 | $should_we_prune = apply_filters( 'wp_logging_should_we_prune', false ); |
47 | 47 | |
48 | - if ( $should_we_prune === false ){ |
|
48 | + if ($should_we_prune === false) { |
|
49 | 49 | return; |
50 | 50 | } |
51 | 51 | |
52 | 52 | $logs_to_prune = $this->get_logs_to_prune(); |
53 | 53 | |
54 | - if ( isset( $logs_to_prune ) && ! empty( $logs_to_prune ) ){ |
|
54 | + if (isset($logs_to_prune) && ! empty($logs_to_prune)) { |
|
55 | 55 | $this->prune_old_logs( $logs_to_prune ); |
56 | 56 | } |
57 | 57 | |
@@ -69,11 +69,11 @@ discard block |
||
69 | 69 | * |
70 | 70 | * @filter wp_logging_force_delete_log Allows user to override the force delete setting which bypasses the trash |
71 | 71 | */ |
72 | - private function prune_old_logs( $logs ){ |
|
72 | + private function prune_old_logs( $logs ) { |
|
73 | 73 | |
74 | 74 | $force = apply_filters( 'wp_logging_force_delete_log', true ); |
75 | 75 | |
76 | - foreach( $logs as $l ){ |
|
76 | + foreach ($logs as $l) { |
|
77 | 77 | wp_delete_post( $l->ID, $force ); |
78 | 78 | } |
79 | 79 | |
@@ -93,7 +93,7 @@ discard block |
||
93 | 93 | * @filter wp_logging_prune_when Users can change how long ago we are looking for logs to prune |
94 | 94 | * @filter wp_logging_prune_query_args Gives users access to change any query args for pruning |
95 | 95 | */ |
96 | - private function get_logs_to_prune(){ |
|
96 | + private function get_logs_to_prune() { |
|
97 | 97 | |
98 | 98 | $how_old = apply_filters( 'wp_logging_prune_when', '2 weeks ago' ); |
99 | 99 | |
@@ -184,8 +184,8 @@ discard block |
||
184 | 184 | |
185 | 185 | $types = self::log_types(); |
186 | 186 | |
187 | - foreach ( $types as $type ) { |
|
188 | - if( ! term_exists( $type, 'wp_log_type' ) ) { |
|
187 | + foreach ($types as $type) { |
|
188 | + if ( ! term_exists( $type, 'wp_log_type' )) { |
|
189 | 189 | wp_insert_term( $type, 'wp_log_type' ); |
190 | 190 | } |
191 | 191 | } |
@@ -270,15 +270,15 @@ discard block |
||
270 | 270 | $log_id = wp_insert_post( $args ); |
271 | 271 | |
272 | 272 | // set the log type, if any |
273 | - if( $log_data['log_type'] && self::valid_type( $log_data['log_type'] ) ) { |
|
273 | + if ($log_data['log_type'] && self::valid_type( $log_data['log_type'] )) { |
|
274 | 274 | wp_set_object_terms( $log_id, $log_data['log_type'], 'wp_log_type', false ); |
275 | 275 | } |
276 | 276 | |
277 | 277 | |
278 | 278 | // set log meta, if any |
279 | - if( $log_id && ! empty( $log_meta ) ) { |
|
280 | - foreach( (array) $log_meta as $key => $meta ) { |
|
281 | - update_post_meta( $log_id, '_wp_log_' . sanitize_key( $key ), $meta ); |
|
279 | + if ($log_id && ! empty($log_meta)) { |
|
280 | + foreach ((array) $log_meta as $key => $meta) { |
|
281 | + update_post_meta( $log_id, '_wp_log_'.sanitize_key( $key ), $meta ); |
|
282 | 282 | } |
283 | 283 | } |
284 | 284 | |
@@ -316,10 +316,10 @@ discard block |
||
316 | 316 | // store the log entry |
317 | 317 | $log_id = wp_update_post( $args ); |
318 | 318 | |
319 | - if( $log_id && ! empty( $log_meta ) ) { |
|
320 | - foreach( (array) $log_meta as $key => $meta ) { |
|
321 | - if( ! empty( $meta ) ) |
|
322 | - update_post_meta( $log_id, '_wp_log_' . sanitize_key( $key ), $meta ); |
|
319 | + if ($log_id && ! empty($log_meta)) { |
|
320 | + foreach ((array) $log_meta as $key => $meta) { |
|
321 | + if ( ! empty($meta)) |
|
322 | + update_post_meta( $log_id, '_wp_log_'.sanitize_key( $key ), $meta ); |
|
323 | 323 | } |
324 | 324 | } |
325 | 325 | |
@@ -374,7 +374,7 @@ discard block |
||
374 | 374 | |
375 | 375 | $query_args = wp_parse_args( $args, $defaults ); |
376 | 376 | |
377 | - if( $query_args['log_type'] && self::valid_type( $query_args['log_type'] ) ) { |
|
377 | + if ($query_args['log_type'] && self::valid_type( $query_args['log_type'] )) { |
|
378 | 378 | |
379 | 379 | $query_args['tax_query'] = array( |
380 | 380 | array( |
@@ -388,7 +388,7 @@ discard block |
||
388 | 388 | |
389 | 389 | $logs = get_posts( $query_args ); |
390 | 390 | |
391 | - if( $logs ) |
|
391 | + if ($logs) |
|
392 | 392 | return $logs; |
393 | 393 | |
394 | 394 | // no logs found |
@@ -418,7 +418,7 @@ discard block |
||
418 | 418 | 'post_status' => 'publish' |
419 | 419 | ); |
420 | 420 | |
421 | - if( ! empty( $type ) && self::valid_type( $type ) ) { |
|
421 | + if ( ! empty($type) && self::valid_type( $type )) { |
|
422 | 422 | |
423 | 423 | $query_args['tax_query'] = array( |
424 | 424 | array( |
@@ -430,7 +430,7 @@ discard block |
||
430 | 430 | |
431 | 431 | } |
432 | 432 | |
433 | - if( ! empty( $meta_query ) ) { |
|
433 | + if ( ! empty($meta_query)) { |
|
434 | 434 | $query_args['meta_query'] = $meta_query; |
435 | 435 | } |
436 | 436 |
@@ -1,12 +1,12 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Exit if accessed directly |
4 | -if ( ! defined( 'ABSPATH' ) ) { |
|
4 | +if ( ! defined( 'ABSPATH' )) { |
|
5 | 5 | exit; |
6 | 6 | } |
7 | 7 | |
8 | -if ( ! class_exists( 'WP_List_Table' ) ) { |
|
9 | - require_once ABSPATH . 'wp-admin/includes/class-wp-list-table.php'; |
|
8 | +if ( ! class_exists( 'WP_List_Table' )) { |
|
9 | + require_once ABSPATH.'wp-admin/includes/class-wp-list-table.php'; |
|
10 | 10 | } |
11 | 11 | |
12 | 12 | /** |
@@ -42,16 +42,16 @@ discard block |
||
42 | 42 | * @return string The Content to display |
43 | 43 | */ |
44 | 44 | public function column_default( $item, $column_name ) { |
45 | - switch ( $column_name ) { |
|
45 | + switch ($column_name) { |
|
46 | 46 | case 'date': |
47 | 47 | case 'post_title': |
48 | - return $item[ $column_name ]; |
|
48 | + return $item[$column_name]; |
|
49 | 49 | case 'content': |
50 | - $content = $item[ $column_name ]; |
|
50 | + $content = $item[$column_name]; |
|
51 | 51 | return $content; |
52 | 52 | case 'image': |
53 | - if ( ! empty( $item['image_url'] ) ) { |
|
54 | - $content = '<img src="' . $item['image_url'] . '" />'; |
|
53 | + if ( ! empty($item['image_url'])) { |
|
54 | + $content = '<img src="'.$item['image_url'].'" />'; |
|
55 | 55 | } else { |
56 | 56 | $content = __( 'None', 'ppp-txt' ); |
57 | 57 | } |
@@ -82,15 +82,15 @@ discard block |
||
82 | 82 | * @return string The HTML to display for this column. |
83 | 83 | */ |
84 | 84 | public function column_post_title( $item ) { |
85 | - $item_name = $item['name'] . '_' . $item['service']; |
|
85 | + $item_name = $item['name'].'_'.$item['service']; |
|
86 | 86 | $actions = array( |
87 | - 'edit' => sprintf( __( '<a href="%s">Edit</a>', 'ppp-txt' ), admin_url( 'post.php?post=' . $item['post_id'] . '&action=edit#ppp_schedule_metabox' ) ), |
|
88 | - 'delete' => sprintf( __( '<a href="%s">Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=delete_item&post_id=' . $item['post_id'] . '&name=' . $item_name . '&index=' . $item['index'] ) ), |
|
89 | - 'share' => sprintf( __( '<a href="%s">Share Now</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id=' . $item['post_id'] . '&name=' . $item_name ) ), |
|
90 | - 'share_delete' => sprintf( __( '<a href="%s">Share Now & Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id=' . $item['post_id'] . '&name=' . $item_name . '&index=' . $item['index'] . '&delete_too=true' ) ), |
|
87 | + 'edit' => sprintf( __( '<a href="%s">Edit</a>', 'ppp-txt' ), admin_url( 'post.php?post='.$item['post_id'].'&action=edit#ppp_schedule_metabox' ) ), |
|
88 | + 'delete' => sprintf( __( '<a href="%s">Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=delete_item&post_id='.$item['post_id'].'&name='.$item_name.'&index='.$item['index'] ) ), |
|
89 | + 'share' => sprintf( __( '<a href="%s">Share Now</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id='.$item['post_id'].'&name='.$item_name ) ), |
|
90 | + 'share_delete' => sprintf( __( '<a href="%s">Share Now & Delete</a>', 'ppp-txt' ), admin_url( 'admin.php?page=ppp-schedule-info&action=share_now&post_id='.$item['post_id'].'&name='.$item_name.'&index='.$item['index'].'&delete_too=true' ) ), |
|
91 | 91 | ); |
92 | 92 | |
93 | - return sprintf( '<span class="dashicons icon-ppp-' . $item['service'] . '"></span> %1$s %2$s', $item['post_title'], $this->row_actions( $actions ) ); |
|
93 | + return sprintf( '<span class="dashicons icon-ppp-'.$item['service'].'"></span> %1$s %2$s', $item['post_title'], $this->row_actions( $actions ) ); |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | /** |
@@ -99,9 +99,9 @@ discard block |
||
99 | 99 | * @return string The HTML to display the date |
100 | 100 | */ |
101 | 101 | public function column_date( $item ) { |
102 | - $date = date_i18n( get_option('date_format') . ' @ ' . get_option('time_format'), $item['date'] ); |
|
103 | - if ( $item['conflict'] ) { |
|
104 | - $date .= '<br /><small style="color: red">' . __( 'Warning: Multiple items scheduled at this time.', 'ppp-txt' ) . '</small>'; |
|
102 | + $date = date_i18n( get_option( 'date_format' ).' @ '.get_option( 'time_format' ), $item['date'] ); |
|
103 | + if ($item['conflict']) { |
|
104 | + $date .= '<br /><small style="color: red">'.__( 'Warning: Multiple items scheduled at this time.', 'ppp-txt' ).'</small>'; |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | return $date; |
@@ -123,48 +123,48 @@ discard block |
||
123 | 123 | $crons = ppp_get_shceduled_crons(); |
124 | 124 | |
125 | 125 | $cron_tally = array(); |
126 | - foreach ( $crons as $key => $cron ) { |
|
126 | + foreach ($crons as $key => $cron) { |
|
127 | 127 | $ppp_data = $cron; |
128 | 128 | $timestamp = $ppp_data['timestamp']; |
129 | 129 | |
130 | - $cron_tally[$timestamp] = isset( $cron_tally[$timestamp] ) ? $cron_tally[$timestamp] + 1 : 1; |
|
130 | + $cron_tally[$timestamp] = isset($cron_tally[$timestamp]) ? $cron_tally[$timestamp] + 1 : 1; |
|
131 | 131 | |
132 | 132 | $name_parts = explode( '_', $ppp_data['args'][1] ); |
133 | 133 | $post_id = $ppp_data['args'][0]; |
134 | 134 | $index = $name_parts[1]; |
135 | - $service = isset( $name_parts[3] ) ? $name_parts[3] : 'tw'; |
|
136 | - $builder = 'ppp_' . $service . '_build_share_message'; |
|
137 | - $post_meta = apply_filters( 'ppp_get_scheduled_items_' . $service, array(), $post_id ); |
|
135 | + $service = isset($name_parts[3]) ? $name_parts[3] : 'tw'; |
|
136 | + $builder = 'ppp_'.$service.'_build_share_message'; |
|
137 | + $post_meta = apply_filters( 'ppp_get_scheduled_items_'.$service, array(), $post_id ); |
|
138 | 138 | $image_url = ''; |
139 | 139 | |
140 | - if ( ! empty( $post_meta[$index]['attachment_id'] ) ) { |
|
141 | - $image_url = ppp_post_has_media( $post_id, $service, true, $post_meta[ $index ]['attachment_id'] ); |
|
142 | - } elseif ( ! empty( $post_meta[ $index ]['image'] ) ) { |
|
143 | - $image_url = $post_meta[ $index ]['image']; |
|
140 | + if ( ! empty($post_meta[$index]['attachment_id'])) { |
|
141 | + $image_url = ppp_post_has_media( $post_id, $service, true, $post_meta[$index]['attachment_id'] ); |
|
142 | + } elseif ( ! empty($post_meta[$index]['image'])) { |
|
143 | + $image_url = $post_meta[$index]['image']; |
|
144 | 144 | } |
145 | 145 | |
146 | - $conflict = $cron_tally[ $timestamp ] > 1 ? true : false; |
|
146 | + $conflict = $cron_tally[$timestamp] > 1 ? true : false; |
|
147 | 147 | |
148 | - $data[ $key ] = array( |
|
148 | + $data[$key] = array( |
|
149 | 149 | 'post_id' => $post_id, |
150 | 150 | 'post_title' => get_the_title( $post_id ), |
151 | 151 | 'service' => $service, |
152 | 152 | 'index' => $index, |
153 | - 'date' => $timestamp + ( get_option( 'gmt_offset' ) * 3600 ), |
|
153 | + 'date' => $timestamp + (get_option( 'gmt_offset' ) * 3600), |
|
154 | 154 | 'content' => function_exists( $builder ) ? $builder( $post_id, $ppp_data['args'][1], false ) : '', |
155 | - 'name' => 'sharedate_' . $index . '_' . $post_id, |
|
155 | + 'name' => 'sharedate_'.$index.'_'.$post_id, |
|
156 | 156 | 'conflict' => $conflict, |
157 | 157 | ); |
158 | 158 | |
159 | - if ( ! empty( $image_url ) ) { |
|
160 | - $data[ $key ]['image_url'] = $image_url; |
|
159 | + if ( ! empty($image_url)) { |
|
160 | + $data[$key]['image_url'] = $image_url; |
|
161 | 161 | } |
162 | 162 | |
163 | - $description_function = 'ppp_' . $service . '_get_share_description'; |
|
164 | - if ( function_exists( $description_function ) ) { |
|
163 | + $description_function = 'ppp_'.$service.'_get_share_description'; |
|
164 | + if (function_exists( $description_function )) { |
|
165 | 165 | $description = $description_function( $post_id, $index ); |
166 | - if ( ! empty( $description ) ) { |
|
167 | - $data[ $key ]['content'] .= '<br />' . $description; |
|
166 | + if ( ! empty($description)) { |
|
167 | + $data[$key]['content'] .= '<br />'.$description; |
|
168 | 168 | } |
169 | 169 | } |
170 | 170 | |
@@ -172,9 +172,9 @@ discard block |
||
172 | 172 | |
173 | 173 | $total_items = count( $data ); |
174 | 174 | |
175 | - $offset = isset( $_GET['paged'] ) ? $_GET['paged'] : 1; |
|
175 | + $offset = isset($_GET['paged']) ? $_GET['paged'] : 1; |
|
176 | 176 | |
177 | - $data = array_slice( $data, ( $offset - 1 ) * $per_page, $per_page, true ); |
|
177 | + $data = array_slice( $data, ($offset - 1) * $per_page, $per_page, true ); |
|
178 | 178 | $this->items = $data; |
179 | 179 | |
180 | 180 |
@@ -1,7 +1,7 @@ discard block |
||
1 | 1 | <?php |
2 | 2 | |
3 | 3 | // Exit if accessed directly |
4 | -if ( ! defined( 'ABSPATH' ) ) { |
|
4 | +if ( ! defined( 'ABSPATH' )) { |
|
5 | 5 | exit; |
6 | 6 | } |
7 | 7 | |
@@ -12,7 +12,7 @@ discard block |
||
12 | 12 | function ppp_bitly_enabled() { |
13 | 13 | global $ppp_social_settings; |
14 | 14 | |
15 | - if ( isset( $ppp_social_settings['bitly'] ) && !empty( $ppp_social_settings['bitly'] ) ) { |
|
15 | + if (isset($ppp_social_settings['bitly']) && ! empty($ppp_social_settings['bitly'])) { |
|
16 | 16 | return true; |
17 | 17 | } |
18 | 18 | |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | global $ppp_bitly_oauth, $ppp_social_settings; |
38 | 38 | ?> |
39 | 39 | <p> |
40 | - <?php if ( !ppp_bitly_enabled() ) : ?> |
|
40 | + <?php if ( ! ppp_bitly_enabled()) : ?> |
|
41 | 41 | <form autocomplete="off"> |
42 | 42 | <input id="bitly-username" name="ppp-bitly-username" autocomplete="off" type="text" value="" placeholder="Bit.ly Username" size="25" /><br /> |
43 | 43 | <input id="bitly-password" name="ppp-bitly-password" autocomplete="off" type="password" value="" placeholder="Bit.ly Password" size="25" /><br /> |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | <input type="hidden" id="bitly-redirect-url" value="<?php echo admin_url( 'admin.php?page=ppp-social-settings' ); ?>" /> |
49 | 49 | </form> |
50 | 50 | <?php endif; ?> |
51 | - <?php if ( ppp_bitly_enabled() ) : ?> |
|
51 | + <?php if (ppp_bitly_enabled()) : ?> |
|
52 | 52 | <div class="ppp-social-profile ppp-bitly-profile"> |
53 | 53 | <div class="ppp-bitly-info"> |
54 | 54 | <?php _e( 'Signed in as', 'ppp-txt' ); ?>:<br /><?php echo $ppp_social_settings['bitly']['login']; ?><br /> |
@@ -71,15 +71,15 @@ discard block |
||
71 | 71 | function ppp_disconnect_bitly() { |
72 | 72 | global $ppp_social_settings; |
73 | 73 | $ppp_social_settings = get_option( 'ppp_social_settings' ); |
74 | - if ( isset( $ppp_social_settings['bitly'] ) ) { |
|
75 | - unset( $ppp_social_settings['bitly'] ); |
|
74 | + if (isset($ppp_social_settings['bitly'])) { |
|
75 | + unset($ppp_social_settings['bitly']); |
|
76 | 76 | update_option( 'ppp_social_settings', $ppp_social_settings ); |
77 | 77 | } |
78 | 78 | } |
79 | 79 | add_action( 'ppp_disconnect-bitly', 'ppp_disconnect_bitly', 10 ); |
80 | 80 | |
81 | 81 | function ppp_set_bitly_token_constants( $social_tokens ) { |
82 | - if ( !empty( $social_tokens ) && property_exists( $social_tokens, 'bitly' ) ) { |
|
82 | + if ( ! empty($social_tokens) && property_exists( $social_tokens, 'bitly' )) { |
|
83 | 83 | define( 'bitly_clientid', $social_tokens->bitly->client_id ); |
84 | 84 | define( 'bitly_secret', $social_tokens->bitly->client_secret ); |
85 | 85 | } |
@@ -97,7 +97,7 @@ discard block |
||
97 | 97 | $result = $ppp_bitly_oauth->ppp_make_bitly_link( $link ); |
98 | 98 | $result = json_decode( $result, true ); |
99 | 99 | |
100 | - if ( isset ( $result['status_code'] ) && $result['status_code'] == 200 ) { |
|
100 | + if (isset ($result['status_code']) && $result['status_code'] == 200) { |
|
101 | 101 | return $result['data']['url']; |
102 | 102 | } else { |
103 | 103 | return $link; |
@@ -115,13 +115,13 @@ discard block |
||
115 | 115 | $url = 'https://api-ssl.bitly.com/oauth/access_token'; |
116 | 116 | $username = $_POST['username']; |
117 | 117 | $password = $_POST['password']; |
118 | - $headers = array( 'Authorization' => 'Basic ' . base64_encode( bitly_clientid . ':' . bitly_secret ) ); |
|
119 | - $body = 'grant_type=password&username=' . $username . '&password=' . $password; |
|
118 | + $headers = array( 'Authorization' => 'Basic '.base64_encode( bitly_clientid.':'.bitly_secret ) ); |
|
119 | + $body = 'grant_type=password&username='.$username.'&password='.$password; |
|
120 | 120 | $result = wp_remote_post( $url, array( 'headers' => $headers, 'body' => $body ) ); |
121 | 121 | $body = wp_remote_retrieve_body( $result ); |
122 | 122 | $data = json_decode( $body ); |
123 | 123 | |
124 | - if ( isset( $data->access_token ) ) { |
|
124 | + if (isset($data->access_token)) { |
|
125 | 125 | global $ppp_social_settings; |
126 | 126 | $ppp_social_settings['bitly']['access_token'] = $data->access_token; |
127 | 127 | |
@@ -131,7 +131,7 @@ discard block |
||
131 | 131 | |
132 | 132 | update_option( 'ppp_social_settings', $ppp_social_settings ); |
133 | 133 | echo 1; |
134 | - } elseif ( $data->status_txt == 'INVALID_LOGIN' ) { |
|
134 | + } elseif ($data->status_txt == 'INVALID_LOGIN') { |
|
135 | 135 | echo 'INVALID_LOGIN'; |
136 | 136 | } else { |
137 | 137 | echo 0; |