@@ -22,7 +22,7 @@ discard block |
||
22 | 22 | /** |
23 | 23 | * Register Twitter as a servcie |
24 | 24 | * @param array $services The registered services |
25 | - * @return array With Twitter added |
|
25 | + * @return string[] With Twitter added |
|
26 | 26 | */ |
27 | 27 | function ppp_tw_register_service( $services = array() ) { |
28 | 28 | $services[] = 'tw'; |
@@ -240,7 +240,7 @@ discard block |
||
240 | 240 | /** |
241 | 241 | * Register the Twitter connection area for the Social Media Accounts section |
242 | 242 | * @param array $content The existing content tokens |
243 | - * @return array The content tokens with Twitter added |
|
243 | + * @return string[] The content tokens with Twitter added |
|
244 | 244 | */ |
245 | 245 | function ppp_tw_register_admin_social_content( $content ) { |
246 | 246 | $content[] = 'tw'; |
@@ -429,9 +429,12 @@ |
||
429 | 429 | } |
430 | 430 | ?> |
431 | 431 | |
432 | - <?php else: ?> |
|
432 | + <?php else { |
|
433 | + : ?> |
|
433 | 434 | |
434 | - <?php ppp_render_tweet_row( 1, array( 'date' => '', 'time' => '', 'text' => '', 'image' => '', 'attachment_id' => '' ), $post->ID, 1 ); ?> |
|
435 | + <?php ppp_render_tweet_row( 1, array( 'date' => '', 'time' => '', 'text' => '', 'image' => '', 'attachment_id' => '' ), $post->ID, 1 ); |
|
436 | +} |
|
437 | +?> |
|
435 | 438 | |
436 | 439 | <?php endif; ?> |
437 | 440 |
@@ -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_twitter_enabled() { |
13 | 13 | global $ppp_social_settings; |
14 | 14 | |
15 | - if ( isset( $ppp_social_settings['twitter'] ) && !empty( $ppp_social_settings['twitter'] ) ) { |
|
15 | + if (isset($ppp_social_settings['twitter']) && ! empty($ppp_social_settings['twitter'])) { |
|
16 | 16 | return true; |
17 | 17 | } |
18 | 18 | |
@@ -50,10 +50,10 @@ discard block |
||
50 | 50 | */ |
51 | 51 | function ppp_tw_account_list_avatar( $string = '' ) { |
52 | 52 | |
53 | - if ( ppp_twitter_enabled() ) { |
|
53 | + if (ppp_twitter_enabled()) { |
|
54 | 54 | global $ppp_social_settings; |
55 | 55 | $avatar_url = $ppp_social_settings['twitter']['user']->profile_image_url_https; |
56 | - $string .= '<img class="ppp-social-icon" src="' . $avatar_url . '" />'; |
|
56 | + $string .= '<img class="ppp-social-icon" src="'.$avatar_url.'" />'; |
|
57 | 57 | } |
58 | 58 | |
59 | 59 | return $string; |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | */ |
68 | 68 | function ppp_tw_account_list_name( $string = '' ) { |
69 | 69 | |
70 | - if ( ppp_twitter_enabled() ) { |
|
70 | + if (ppp_twitter_enabled()) { |
|
71 | 71 | global $ppp_social_settings; |
72 | 72 | $string .= $ppp_social_settings['twitter']['user']->name; |
73 | 73 | } |
@@ -83,17 +83,17 @@ discard block |
||
83 | 83 | */ |
84 | 84 | function ppp_tw_account_list_actions( $string = '' ) { |
85 | 85 | |
86 | - if ( ! ppp_twitter_enabled() ) { |
|
86 | + if ( ! ppp_twitter_enabled()) { |
|
87 | 87 | global $ppp_twitter_oauth, $ppp_social_settings; |
88 | 88 | $tw_auth = $ppp_twitter_oauth->ppp_verify_twitter_credentials(); |
89 | 89 | $tw_authurl = $ppp_twitter_oauth->ppp_get_twitter_auth_url(); |
90 | 90 | |
91 | - $string .= '<span id="tw-oob-auth-link-wrapper"><a id="tw-oob-auth-link" href="' . $tw_authurl . '" target="_blank"><img src="' . PPP_URL . '/includes/images/sign-in-with-twitter-gray.png" /></a></span>'; |
|
92 | - $string .= '<span style="display:none;" id="tw-oob-pin-notice">' . __( 'You are being directed to Twitter to authenticate. When complete, return here and enter the PIN you were provided.', 'ppp-txt' ) . '</span>'; |
|
93 | - $string .= '<span style="display:none;" id="tw-oob-pin-wrapper"><input type="text" size="10" placeholder="Enter your PIN" value="" id="tw-oob-pin" data-nonce="' . wp_create_nonce( 'ppp-tw-pin' ) . '" data-user="0" /> <a href="#" class="button-secondary tw-oob-pin-submit">' . __( 'Submit', 'ppp-txt' ) . '</a><span class="spinner"></span></span>'; |
|
91 | + $string .= '<span id="tw-oob-auth-link-wrapper"><a id="tw-oob-auth-link" href="'.$tw_authurl.'" target="_blank"><img src="'.PPP_URL.'/includes/images/sign-in-with-twitter-gray.png" /></a></span>'; |
|
92 | + $string .= '<span style="display:none;" id="tw-oob-pin-notice">'.__( 'You are being directed to Twitter to authenticate. When complete, return here and enter the PIN you were provided.', 'ppp-txt' ).'</span>'; |
|
93 | + $string .= '<span style="display:none;" id="tw-oob-pin-wrapper"><input type="text" size="10" placeholder="Enter your PIN" value="" id="tw-oob-pin" data-nonce="'.wp_create_nonce( 'ppp-tw-pin' ).'" data-user="0" /> <a href="#" class="button-secondary tw-oob-pin-submit">'.__( 'Submit', 'ppp-txt' ).'</a><span class="spinner"></span></span>'; |
|
94 | 94 | } else { |
95 | - $string .= '<a class="button-primary" href="' . admin_url( 'admin.php?page=ppp-social-settings&ppp_social_disconnect=true&ppp_network=twitter' ) . '" >' . __( 'Disconnect from Twitter', 'ppp-txt' ) . '</a> '; |
|
96 | - $string .= '<a class="button-secondary" href="https://twitter.com/settings/applications" target="blank">' . __( 'Revoke Access via Twitter', 'ppp-txt' ) . '</a>'; |
|
95 | + $string .= '<a class="button-primary" href="'.admin_url( 'admin.php?page=ppp-social-settings&ppp_social_disconnect=true&ppp_network=twitter' ).'" >'.__( 'Disconnect from Twitter', 'ppp-txt' ).'</a> '; |
|
96 | + $string .= '<a class="button-secondary" href="https://twitter.com/settings/applications" target="blank">'.__( 'Revoke Access via Twitter', 'ppp-txt' ).'</a>'; |
|
97 | 97 | } |
98 | 98 | |
99 | 99 | return $string; |
@@ -106,27 +106,27 @@ discard block |
||
106 | 106 | |
107 | 107 | ppp_set_social_tokens(); |
108 | 108 | |
109 | - $nonce = isset( $_POST['nonce'] ) ? sanitize_text_field( $_POST['nonce'] ) : ''; |
|
109 | + $nonce = isset($_POST['nonce']) ? sanitize_text_field( $_POST['nonce'] ) : ''; |
|
110 | 110 | $nonce_verified = wp_verify_nonce( $nonce, 'ppp-tw-pin' ); |
111 | 111 | |
112 | - if ( ! $nonce_verified ) { |
|
112 | + if ( ! $nonce_verified) { |
|
113 | 113 | wp_die(); |
114 | 114 | } |
115 | 115 | |
116 | - $pin = isset( $_POST['pin'] ) ? absint( $_POST['pin'] ) : false; |
|
116 | + $pin = isset($_POST['pin']) ? absint( $_POST['pin'] ) : false; |
|
117 | 117 | |
118 | - if ( empty( $pin ) ) { |
|
118 | + if (empty($pin)) { |
|
119 | 119 | wp_die(); |
120 | 120 | } |
121 | 121 | |
122 | 122 | $_REQUEST['oauth_verifier'] = $pin; |
123 | 123 | |
124 | - if ( empty( $_POST['user_auth'] ) ) { |
|
124 | + if (empty($_POST['user_auth'])) { |
|
125 | 125 | $twitter = new PPP_Twitter; |
126 | 126 | $twitter->ppp_initialize_twitter(); |
127 | 127 | $settings = get_option( 'ppp_social_settings', true ); |
128 | 128 | |
129 | - if ( ! empty( $settings['twitter']['user']->id ) ) { |
|
129 | + if ( ! empty($settings['twitter']['user']->id)) { |
|
130 | 130 | echo 1; |
131 | 131 | } else { |
132 | 132 | echo 0; |
@@ -136,7 +136,7 @@ discard block |
||
136 | 136 | $twitter->init(); |
137 | 137 | |
138 | 138 | $user = get_user_meta( get_current_user_id(), '_ppp_twitter_data', true ); |
139 | - if ( ! empty( $user['user']->id ) ) { |
|
139 | + if ( ! empty($user['user']->id)) { |
|
140 | 140 | echo 1; |
141 | 141 | } else { |
142 | 142 | echo 0; |
@@ -152,13 +152,13 @@ discard block |
||
152 | 152 | * @return void |
153 | 153 | */ |
154 | 154 | function ppp_capture_twitter_oauth() { |
155 | - if ( isset( $_REQUEST['oauth_verifier'] ) && isset( $_REQUEST['oauth_token'] ) ) { |
|
155 | + if (isset($_REQUEST['oauth_verifier']) && isset($_REQUEST['oauth_token'])) { |
|
156 | 156 | $current_screen = get_current_screen(); |
157 | - if ( 'user-edit' === $current_screen->base ) { |
|
158 | - $user_id = ! empty( $_GET['user_id'] ) && is_numeric( $_GET['user_id'] ) ? $_GET['user_id'] : false; |
|
157 | + if ('user-edit' === $current_screen->base) { |
|
158 | + $user_id = ! empty($_GET['user_id']) && is_numeric( $_GET['user_id'] ) ? $_GET['user_id'] : false; |
|
159 | 159 | $twitter = new PPP_Twitter_User( $user_id ); |
160 | 160 | $twitter->init(); |
161 | - $redirect = admin_url( 'user-edit.php?updated=1&user_id=' . $user_id ); |
|
161 | + $redirect = admin_url( 'user-edit.php?updated=1&user_id='.$user_id ); |
|
162 | 162 | } else { |
163 | 163 | global $ppp_twitter_oauth; |
164 | 164 | $ppp_twitter_oauth->ppp_initialize_twitter(); |
@@ -176,17 +176,17 @@ discard block |
||
176 | 176 | * @return void |
177 | 177 | */ |
178 | 178 | function ppp_disconnect_twitter() { |
179 | - if ( ! empty( $_GET['user_id'] ) ) { |
|
179 | + if ( ! empty($_GET['user_id'])) { |
|
180 | 180 | $user_id = (int) sanitize_text_field( $_GET['user_id'] ); |
181 | - if ( $user_id !== get_current_user_id() || ! current_user_can( PostPromoterPro::get_manage_capability() ) ) { |
|
181 | + if ($user_id !== get_current_user_id() || ! current_user_can( PostPromoterPro::get_manage_capability() )) { |
|
182 | 182 | wp_die( __( 'Unable to disconnect Twitter account', 'ppp-txt' ) ); |
183 | 183 | } |
184 | 184 | delete_user_meta( $user_id, '_ppp_twitter_data' ); |
185 | 185 | } else { |
186 | 186 | global $ppp_social_settings; |
187 | 187 | $ppp_social_settings = get_option( 'ppp_social_settings' ); |
188 | - if ( isset( $ppp_social_settings['twitter'] ) ) { |
|
189 | - unset( $ppp_social_settings['twitter'] ); |
|
188 | + if (isset($ppp_social_settings['twitter'])) { |
|
189 | + unset($ppp_social_settings['twitter']); |
|
190 | 190 | update_option( 'ppp_social_settings', $ppp_social_settings ); |
191 | 191 | } |
192 | 192 | } |
@@ -217,12 +217,12 @@ discard block |
||
217 | 217 | global $ppp_options, $wp_logs, $wp_filter; |
218 | 218 | |
219 | 219 | $post_meta = get_post_meta( $post_id, '_ppp_tweets', true ); |
220 | - $this_share = $post_meta[ $index ]; |
|
221 | - $attachment_id = isset( $this_share['attachment_id'] ) ? $this_share['attachment_id'] : false; |
|
220 | + $this_share = $post_meta[$index]; |
|
221 | + $attachment_id = isset($this_share['attachment_id']) ? $this_share['attachment_id'] : false; |
|
222 | 222 | |
223 | 223 | $share_message = ppp_tw_build_share_message( $post_id, $name ); |
224 | 224 | |
225 | - if ( empty( $attachment_id ) && ! empty( $this_share['image'] ) ) { |
|
225 | + if (empty($attachment_id) && ! empty($this_share['image'])) { |
|
226 | 226 | $media = $this_share['image']; |
227 | 227 | } else { |
228 | 228 | $use_media = ppp_tw_use_media( $post_id, $index ); |
@@ -249,12 +249,12 @@ discard block |
||
249 | 249 | |
250 | 250 | update_post_meta( $log_entry, '_ppp_share_status', $status ); |
251 | 251 | |
252 | - if ( ! empty( $status->id_str ) ) { |
|
252 | + if ( ! empty($status->id_str)) { |
|
253 | 253 | $post = get_post( $post_id ); |
254 | 254 | $author_id = $post->post_author; |
255 | 255 | $author_rt = get_user_meta( $author_id, '_ppp_share_scheduled', true ); |
256 | 256 | |
257 | - if ( $author_rt ) { |
|
257 | + if ($author_rt) { |
|
258 | 258 | $twitter_user = new PPP_Twitter_User( $author_id ); |
259 | 259 | $twitter_user->retweet( $status->id_str ); |
260 | 260 | } |
@@ -275,8 +275,8 @@ discard block |
||
275 | 275 | ); |
276 | 276 | $other_rt = get_users( $args ); |
277 | 277 | |
278 | - if ( $other_rt ){ |
|
279 | - foreach ( $other_rt as $user ) { |
|
278 | + if ($other_rt) { |
|
279 | + foreach ($other_rt as $user) { |
|
280 | 280 | $twitter_user = new PPP_Twitter_User( $user->ID ); |
281 | 281 | $twitter_user->retweet( $status->id_str ); |
282 | 282 | } |
@@ -296,9 +296,9 @@ discard block |
||
296 | 296 | function ppp_tw_build_share_message( $post_id, $name, $scheduled = true, $include_link = true ) { |
297 | 297 | $share_content = ppp_tw_generate_share_content( $post_id, $name, $scheduled ); |
298 | 298 | |
299 | - if ( $include_link ) { |
|
299 | + if ($include_link) { |
|
300 | 300 | $share_link = ppp_generate_link( $post_id, $name, $scheduled ); |
301 | - $share_content = $share_content . ' ' . $share_link; |
|
301 | + $share_content = $share_content.' '.$share_link; |
|
302 | 302 | } |
303 | 303 | |
304 | 304 | return apply_filters( 'ppp_tw_build_share_message', $share_content ); |
@@ -312,22 +312,22 @@ discard block |
||
312 | 312 | */ |
313 | 313 | function ppp_tw_generate_share_content( $post_id, $name, $is_scheduled = true ) { |
314 | 314 | global $ppp_options; |
315 | - $default_text = isset( $ppp_options['default_text'] ) ? $ppp_options['default_text'] : ''; |
|
315 | + $default_text = isset($ppp_options['default_text']) ? $ppp_options['default_text'] : ''; |
|
316 | 316 | $ppp_tweets = get_post_meta( $post_id, '_ppp_tweets', true ); |
317 | 317 | |
318 | - if ( ! empty( $ppp_tweets ) ) { |
|
318 | + if ( ! empty($ppp_tweets)) { |
|
319 | 319 | $name_array = explode( '_', $name ); |
320 | 320 | $index = $name_array[1]; |
321 | - if ( isset( $ppp_tweets[ $index ] ) ) { |
|
322 | - $share_content = $ppp_tweets[ $index ]['text']; |
|
321 | + if (isset($ppp_tweets[$index])) { |
|
322 | + $share_content = $ppp_tweets[$index]['text']; |
|
323 | 323 | } |
324 | 324 | } |
325 | 325 | |
326 | 326 | // If an override was found, use it, otherwise try the default text content |
327 | - $share_content = ( isset( $share_content ) && !empty( $share_content ) ) ? $share_content : $default_text; |
|
327 | + $share_content = (isset($share_content) && ! empty($share_content)) ? $share_content : $default_text; |
|
328 | 328 | |
329 | 329 | // If the content is still empty, just use the post title |
330 | - $share_content = ( isset( $share_content ) && !empty( $share_content ) ) ? $share_content : get_the_title( $post_id ); |
|
330 | + $share_content = (isset($share_content) && ! empty($share_content)) ? $share_content : get_the_title( $post_id ); |
|
331 | 331 | |
332 | 332 | return apply_filters( 'ppp_share_content', $share_content, array( 'post_id' => $post_id ) ); |
333 | 333 | } |
@@ -339,12 +339,12 @@ discard block |
||
339 | 339 | * @return bool Whether or not this tweet should contain a media post |
340 | 340 | */ |
341 | 341 | function ppp_tw_use_media( $post_id, $index ) { |
342 | - if ( empty( $post_id ) || empty( $index ) ) { |
|
342 | + if (empty($post_id) || empty($index)) { |
|
343 | 343 | return false; |
344 | 344 | } |
345 | 345 | |
346 | 346 | $share_data = get_post_meta( $post_id, '_ppp_tweets', true ); |
347 | - $use_media = ! empty( $share_data[$index]['attachment_id'] ) || ! empty( $share_data[$index]['image'] ) ? true : false; |
|
347 | + $use_media = ! empty($share_data[$index]['attachment_id']) || ! empty($share_data[$index]['image']) ? true : false; |
|
348 | 348 | |
349 | 349 | return $use_media; |
350 | 350 | } |
@@ -355,7 +355,7 @@ discard block |
||
355 | 355 | * @return void |
356 | 356 | */ |
357 | 357 | function ppp_set_tw_token_constants( $social_tokens ) { |
358 | - if ( !empty( $social_tokens ) && property_exists( $social_tokens, 'twitter' ) ) { |
|
358 | + if ( ! empty($social_tokens) && property_exists( $social_tokens, 'twitter' )) { |
|
359 | 359 | define( 'PPP_TW_CONSUMER_KEY', $social_tokens->twitter->consumer_token ); |
360 | 360 | define( 'PPP_TW_CONSUMER_SECRET', $social_tokens->twitter->consumer_secret ); |
361 | 361 | } |
@@ -393,7 +393,7 @@ discard block |
||
393 | 393 | */ |
394 | 394 | function ppp_tw_add_meta_tab( $tabs ) { |
395 | 395 | global $ppp_social_settings; |
396 | - if ( !isset( $ppp_social_settings['twitter'] ) ) { |
|
396 | + if ( ! isset($ppp_social_settings['twitter'])) { |
|
397 | 397 | return $tabs; |
398 | 398 | } |
399 | 399 | |
@@ -410,7 +410,7 @@ discard block |
||
410 | 410 | */ |
411 | 411 | function ppp_tw_register_metabox_content( $content ) { |
412 | 412 | global $ppp_social_settings; |
413 | - if ( !isset( $ppp_social_settings['twitter'] ) ) { |
|
413 | + if ( ! isset($ppp_social_settings['twitter'])) { |
|
414 | 414 | return $content; |
415 | 415 | } |
416 | 416 | |
@@ -469,16 +469,16 @@ discard block |
||
469 | 469 | <tbody> |
470 | 470 | <?php ppp_render_tweet_share_on_publish_row(); ?> |
471 | 471 | <?php $tweets = get_post_meta( $post->ID, '_ppp_tweets', true ); ?> |
472 | - <?php if ( ! empty( $tweets ) ) : ?> |
|
472 | + <?php if ( ! empty($tweets)) : ?> |
|
473 | 473 | |
474 | - <?php foreach ( $tweets as $key => $value ) : |
|
475 | - $date = isset( $value['date'] ) ? $value['date'] : ''; |
|
476 | - $time = isset( $value['time'] ) ? $value['time'] : ''; |
|
477 | - $text = isset( $value['text'] ) ? $value['text'] : ''; |
|
478 | - $image = isset( $value['image'] ) ? $value['image'] : ''; |
|
479 | - $attachment_id = isset( $value['attachment_id'] ) ? $value['attachment_id'] : ''; |
|
474 | + <?php foreach ($tweets as $key => $value) : |
|
475 | + $date = isset($value['date']) ? $value['date'] : ''; |
|
476 | + $time = isset($value['time']) ? $value['time'] : ''; |
|
477 | + $text = isset($value['text']) ? $value['text'] : ''; |
|
478 | + $image = isset($value['image']) ? $value['image'] : ''; |
|
479 | + $attachment_id = isset($value['attachment_id']) ? $value['attachment_id'] : ''; |
|
480 | 480 | |
481 | - $args = apply_filters( 'ppp_tweet_row_args', compact( 'date','time','text','image','attachment_id' ), $value ); |
|
481 | + $args = apply_filters( 'ppp_tweet_row_args', compact( 'date', 'time', 'text', 'image', 'attachment_id' ), $value ); |
|
482 | 482 | ?> |
483 | 483 | |
484 | 484 | <?php ppp_render_tweet_row( $key, $args, $post->ID ); ?> |
@@ -487,7 +487,7 @@ discard block |
||
487 | 487 | <?php endforeach; ?> |
488 | 488 | |
489 | 489 | <?php |
490 | - if ( ! empty( $has_past_shares ) && count ( $tweets ) == $has_past_shares ) { |
|
490 | + if ( ! empty($has_past_shares) && count( $tweets ) == $has_past_shares) { |
|
491 | 491 | $args = array( |
492 | 492 | 'date' => '', |
493 | 493 | 'time' => '', |
@@ -510,7 +510,7 @@ discard block |
||
510 | 510 | <tr class="ppp-add-repeatable-wrapper"> |
511 | 511 | <td class="submit" colspan="4" style="float: none; clear:both; background:#fff;"> |
512 | 512 | <a class="button-secondary ppp-add-repeatable" style="margin: 6px 0;"><?php _e( 'Add New Tweet', 'ppp-txt' ); ?></a> |
513 | - <?php if ( ! empty( $has_past_shares ) ) : ?> |
|
513 | + <?php if ( ! empty($has_past_shares)) : ?> |
|
514 | 514 | <a class="button-secondary ppp-view-all" style="margin: 6px 0;"><?php _e( 'Toggle Past Tweets', 'ppp-txt' ); ?></a> |
515 | 515 | <?php endif; ?> |
516 | 516 | </td> |
@@ -536,38 +536,38 @@ discard block |
||
536 | 536 | */ |
537 | 537 | function ppp_render_tweet_share_on_publish_row() { |
538 | 538 | global $post, $ppp_share_settings; |
539 | - $default_text = !empty( $ppp_options['default_text'] ) ? $ppp_options['default_text'] : __( 'Social Text', 'ppp-txt' ); |
|
539 | + $default_text = ! empty($ppp_options['default_text']) ? $ppp_options['default_text'] : __( 'Social Text', 'ppp-txt' ); |
|
540 | 540 | |
541 | 541 | $ppp_post_exclude = get_post_meta( $post->ID, '_ppp_post_exclude', true ); |
542 | 542 | |
543 | 543 | $ppp_share_on_publish = get_post_meta( $post->ID, '_ppp_share_on_publish', true ); |
544 | 544 | $show_share_on_publish = false; |
545 | 545 | |
546 | - $share_by_default = empty( $ppp_share_settings['share_on_publish'][ $post->post_type ]['twitter'] ) ? false : true; |
|
546 | + $share_by_default = empty($ppp_share_settings['share_on_publish'][$post->post_type]['twitter']) ? false : true; |
|
547 | 547 | |
548 | - if ( $ppp_share_on_publish == '1' || ( $ppp_share_on_publish == '' && $share_by_default ) ) { |
|
548 | + if ($ppp_share_on_publish == '1' || ($ppp_share_on_publish == '' && $share_by_default)) { |
|
549 | 549 | $show_share_on_publish = true; |
550 | 550 | } |
551 | 551 | |
552 | 552 | $ppp_share_on_publish_text = get_post_meta( $post->ID, '_ppp_share_on_publish_text', true ); |
553 | 553 | $ppp_share_on_publish_include_image = get_post_meta( $post->ID, '_ppp_share_on_publish_include_image', true ); |
554 | 554 | |
555 | - $disabled = ( $post->post_status === 'publish' && time() > strtotime( $post->post_date ) ) ? true : false; |
|
555 | + $disabled = ($post->post_status === 'publish' && time() > strtotime( $post->post_date )) ? true : false; |
|
556 | 556 | ?> |
557 | 557 | <tr class="ppp-tweet-wrapper ppp-repeatable-row on-publish-row"> |
558 | 558 | <td colspan="2" class="ppp-on-plublish-date-column"> |
559 | - <input <?php if ( $disabled ): ?>readonly<?php endif; ?> type="checkbox" name="_ppp_share_on_publish" id="ppp_share_on_publish" value="1" <?php checked( true, $show_share_on_publish, true ); ?> /> |
|
559 | + <input <?php if ($disabled): ?>readonly<?php endif; ?> type="checkbox" name="_ppp_share_on_publish" id="ppp_share_on_publish" value="1" <?php checked( true, $show_share_on_publish, true ); ?> /> |
|
560 | 560 | <label for="ppp_share_on_publish"><?php _e( 'Tweet On Publish', 'ppp-txt' ); ?></label> |
561 | 561 | </td> |
562 | 562 | |
563 | 563 | <td> |
564 | - <textarea <?php if ( $disabled ): ?>readonly<?php endif; ?> class="ppp-tweet-text-repeatable" type="text" name="_ppp_share_on_publish_text"><?php echo esc_attr( $ppp_share_on_publish_text ); ?></textarea> |
|
565 | - <?php $length = ! empty( $ppp_share_on_publish_text ) ? strlen( $ppp_share_on_publish_text ) : 0; ?> |
|
564 | + <textarea <?php if ($disabled): ?>readonly<?php endif; ?> class="ppp-tweet-text-repeatable" type="text" name="_ppp_share_on_publish_text"><?php echo esc_attr( $ppp_share_on_publish_text ); ?></textarea> |
|
565 | + <?php $length = ! empty($ppp_share_on_publish_text) ? strlen( $ppp_share_on_publish_text ) : 0; ?> |
|
566 | 566 | <span class="ppp-text-length"><?php echo $length; ?></span> |
567 | 567 | </td> |
568 | 568 | |
569 | 569 | <td style="width: 200px" colspan="2"> |
570 | - <input class="ppp-tw-featured-image-input" <?php if ( $disabled ): ?>readonly<?php endif; ?> id="ppp-share-on-publish-image" type="checkbox" name="_ppp_share_on_publish_include_image" value="1" <?php checked( '1', $ppp_share_on_publish_include_image, true ); ?>/> |
|
570 | + <input class="ppp-tw-featured-image-input" <?php if ($disabled): ?>readonly<?php endif; ?> id="ppp-share-on-publish-image" type="checkbox" name="_ppp_share_on_publish_include_image" value="1" <?php checked( '1', $ppp_share_on_publish_include_image, true ); ?>/> |
|
571 | 571 | <label for="ppp-share-on-publish-image"><?php _e( 'Featured Image', 'ppp-txt' ); ?></label> |
572 | 572 | </td> |
573 | 573 | |
@@ -586,7 +586,7 @@ discard block |
||
586 | 586 | function ppp_render_tweet_row( $key, $args = array(), $post_id ) { |
587 | 587 | global $post, $has_past_shares; |
588 | 588 | |
589 | - if ( ! empty( $args['date'] ) && ! empty( $args['time'] ) ) { |
|
589 | + if ( ! empty($args['date']) && ! empty($args['time'])) { |
|
590 | 590 | $share_time = ppp_generate_timestamp( $args['date'], $args['time'] ); |
591 | 591 | $readonly = ppp_generate_timestamp() > $share_time ? 'readonly="readonly" ' : false; |
592 | 592 | } else { |
@@ -594,11 +594,11 @@ discard block |
||
594 | 594 | $readonly = false; |
595 | 595 | } |
596 | 596 | |
597 | - $no_date = ! empty( $readonly ) ? ' hasDatepicker' : ''; |
|
598 | - $hide = ! empty( $readonly ) ? 'display: none;' : ''; |
|
599 | - $shared = ! empty( $readonly ) ? 'past-share' : ''; |
|
597 | + $no_date = ! empty($readonly) ? ' hasDatepicker' : ''; |
|
598 | + $hide = ! empty($readonly) ? 'display: none;' : ''; |
|
599 | + $shared = ! empty($readonly) ? 'past-share' : ''; |
|
600 | 600 | |
601 | - if ( ! empty( $readonly ) ) { |
|
601 | + if ( ! empty($readonly)) { |
|
602 | 602 | $has_past_shares++; |
603 | 603 | } |
604 | 604 | ?> |
@@ -613,7 +613,7 @@ discard block |
||
613 | 613 | |
614 | 614 | <td> |
615 | 615 | <textarea class="ppp-tweet-text-repeatable" type="text" name="_ppp_tweets[<?php echo $key; ?>][text]" <?php echo $readonly; ?>><?php echo esc_attr( $args['text'] ); ?></textarea> |
616 | - <?php $length = ! empty( $args['text'] ) ? strlen( $args['text'] ) : 0; ?> |
|
616 | + <?php $length = ! empty($args['text']) ? strlen( $args['text'] ) : 0; ?> |
|
617 | 617 | <span class="ppp-text-length"><?php echo $length; ?></span> |
618 | 618 | </td> |
619 | 619 | |
@@ -648,24 +648,24 @@ discard block |
||
648 | 648 | */ |
649 | 649 | function ppp_tw_save_post_meta_boxes( $post_id, $post ) { |
650 | 650 | |
651 | - if ( ! ppp_should_save( $post_id, $post ) ) { |
|
651 | + if ( ! ppp_should_save( $post_id, $post )) { |
|
652 | 652 | return; |
653 | 653 | } |
654 | 654 | |
655 | - $ppp_post_exclude = ( isset( $_REQUEST['_ppp_post_exclude'] ) ) ? $_REQUEST['_ppp_post_exclude'] : '0'; |
|
655 | + $ppp_post_exclude = (isset($_REQUEST['_ppp_post_exclude'])) ? $_REQUEST['_ppp_post_exclude'] : '0'; |
|
656 | 656 | |
657 | - $ppp_share_on_publish = ( isset( $_REQUEST['_ppp_share_on_publish'] ) ) ? $_REQUEST['_ppp_share_on_publish'] : '0'; |
|
658 | - $ppp_share_on_publish_text = ( isset( $_REQUEST['_ppp_share_on_publish_text'] ) ) ? $_REQUEST['_ppp_share_on_publish_text'] : ''; |
|
659 | - $ppp_share_on_publish_include_image = ( isset( $_REQUEST['_ppp_share_on_publish_include_image'] ) ) ? $_REQUEST['_ppp_share_on_publish_include_image'] : ''; |
|
657 | + $ppp_share_on_publish = (isset($_REQUEST['_ppp_share_on_publish'])) ? $_REQUEST['_ppp_share_on_publish'] : '0'; |
|
658 | + $ppp_share_on_publish_text = (isset($_REQUEST['_ppp_share_on_publish_text'])) ? $_REQUEST['_ppp_share_on_publish_text'] : ''; |
|
659 | + $ppp_share_on_publish_include_image = (isset($_REQUEST['_ppp_share_on_publish_include_image'])) ? $_REQUEST['_ppp_share_on_publish_include_image'] : ''; |
|
660 | 660 | |
661 | 661 | |
662 | 662 | update_post_meta( $post_id, '_ppp_share_on_publish', $ppp_share_on_publish ); |
663 | 663 | update_post_meta( $post_id, '_ppp_share_on_publish_text', $ppp_share_on_publish_text ); |
664 | 664 | update_post_meta( $post_id, '_ppp_share_on_publish_include_image', $ppp_share_on_publish_include_image ); |
665 | 665 | |
666 | - $tweet_data = isset( $_REQUEST['_ppp_tweets'] ) ? $_REQUEST['_ppp_tweets'] : array(); |
|
667 | - foreach ( $tweet_data as $index => $tweet ) { |
|
668 | - $tweet_data[ $index ]['text'] = sanitize_text_field( $tweet['text'] ); |
|
666 | + $tweet_data = isset($_REQUEST['_ppp_tweets']) ? $_REQUEST['_ppp_tweets'] : array(); |
|
667 | + foreach ($tweet_data as $index => $tweet) { |
|
668 | + $tweet_data[$index]['text'] = sanitize_text_field( $tweet['text'] ); |
|
669 | 669 | } |
670 | 670 | update_post_meta( $post_id, '_ppp_tweets', $tweet_data ); |
671 | 671 | |
@@ -682,29 +682,29 @@ discard block |
||
682 | 682 | function ppp_tw_share_on_publish( $new_status, $old_status, $post ) { |
683 | 683 | global $ppp_options; |
684 | 684 | |
685 | - $from_meta = ! empty( $_POST['ppp_post_edit'] ) ? false : get_post_meta( $post->ID, '_ppp_share_on_publish', true ); |
|
686 | - $from_post = isset( $_POST['_ppp_share_on_publish'] ); |
|
685 | + $from_meta = ! empty($_POST['ppp_post_edit']) ? false : get_post_meta( $post->ID, '_ppp_share_on_publish', true ); |
|
686 | + $from_post = isset($_POST['_ppp_share_on_publish']); |
|
687 | 687 | |
688 | - if ( empty( $from_meta ) && empty( $from_post ) ) { |
|
688 | + if (empty($from_meta) && empty($from_post)) { |
|
689 | 689 | return; |
690 | 690 | } |
691 | 691 | |
692 | 692 | // Determine if we're seeing the share on publish in meta or $_POST |
693 | - if ( $from_meta && !$from_post ) { |
|
693 | + if ($from_meta && ! $from_post) { |
|
694 | 694 | $ppp_share_on_publish_text = get_post_meta( $post->ID, '_ppp_share_on_publish_text', true ); |
695 | 695 | $use_media = get_post_meta( $post->ID, '_ppp_share_on_publish_include_image', true ); |
696 | 696 | } else { |
697 | - $ppp_share_on_publish_text = isset( $_POST['_ppp_share_on_publish_text'] ) ? $_POST['_ppp_share_on_publish_text'] : ''; |
|
698 | - $use_media = isset( $_POST['_ppp_share_on_publish_include_image'] ) ? $_POST['_ppp_share_on_publish_include_image'] : false; |
|
697 | + $ppp_share_on_publish_text = isset($_POST['_ppp_share_on_publish_text']) ? $_POST['_ppp_share_on_publish_text'] : ''; |
|
698 | + $use_media = isset($_POST['_ppp_share_on_publish_include_image']) ? $_POST['_ppp_share_on_publish_include_image'] : false; |
|
699 | 699 | } |
700 | 700 | |
701 | - $share_content = ( !empty( $ppp_share_on_publish_text ) ) ? $ppp_share_on_publish_text : ppp_tw_generate_share_content( $post->ID, null, false ); |
|
701 | + $share_content = ( ! empty($ppp_share_on_publish_text)) ? $ppp_share_on_publish_text : ppp_tw_generate_share_content( $post->ID, null, false ); |
|
702 | 702 | $share_content = apply_filters( 'ppp_share_content', $share_content, array( 'post_id' => $post->ID ) ); |
703 | - $name = 'sharedate_0_' . $post->ID; |
|
703 | + $name = 'sharedate_0_'.$post->ID; |
|
704 | 704 | $media = ppp_post_has_media( $post->ID, 'tw', $use_media ); |
705 | 705 | $share_link = ppp_generate_link( $post->ID, $name, true ); |
706 | 706 | |
707 | - $status = ppp_send_tweet( $share_content . ' ' . $share_link, $post->ID, $media ); |
|
707 | + $status = ppp_send_tweet( $share_content.' '.$share_link, $post->ID, $media ); |
|
708 | 708 | |
709 | 709 | $log_title = ppp_tw_build_share_message( $post->ID, $name, false, false ); |
710 | 710 | |
@@ -722,11 +722,11 @@ discard block |
||
722 | 722 | |
723 | 723 | $log_entry = WP_Logging::insert_log( $log_data, $log_meta ); |
724 | 724 | |
725 | - if ( ! empty( $status->id_str ) ) { |
|
725 | + if ( ! empty($status->id_str)) { |
|
726 | 726 | $author_id = $post->post_author; |
727 | 727 | $author_rt = get_user_meta( $author_id, '_ppp_share_on_publish', true ); |
728 | 728 | |
729 | - if ( $author_rt ) { |
|
729 | + if ($author_rt) { |
|
730 | 730 | $twitter_user = new PPP_Twitter_User( $author_id ); |
731 | 731 | $twitter_user->retweet( $status->id_str ); |
732 | 732 | } |
@@ -747,8 +747,8 @@ discard block |
||
747 | 747 | ); |
748 | 748 | $other_rt = get_users( $args ); |
749 | 749 | |
750 | - if ( $other_rt ){ |
|
751 | - foreach ( $other_rt as $user ) { |
|
750 | + if ($other_rt) { |
|
751 | + foreach ($other_rt as $user) { |
|
752 | 752 | $twitter_user = new PPP_Twitter_User( $user->ID ); |
753 | 753 | $twitter_user->retweet( $status->id_str ); |
754 | 754 | } |
@@ -769,20 +769,20 @@ discard block |
||
769 | 769 | function ppp_tw_generate_timestamps( $times, $post_id ) { |
770 | 770 | $ppp_tweets = get_post_meta( $post_id, '_ppp_tweets', true ); |
771 | 771 | |
772 | - if ( empty( $ppp_tweets ) ) { |
|
772 | + if (empty($ppp_tweets)) { |
|
773 | 773 | $ppp_tweets = array(); |
774 | 774 | } |
775 | 775 | |
776 | - foreach ( $ppp_tweets as $key => $data ) { |
|
777 | - if ( ! array_filter( $data ) ) { |
|
776 | + foreach ($ppp_tweets as $key => $data) { |
|
777 | + if ( ! array_filter( $data )) { |
|
778 | 778 | continue; |
779 | 779 | } |
780 | 780 | |
781 | 781 | $timestamp = ppp_generate_timestamp( $data['date'], $data['time'] ); |
782 | 782 | |
783 | - if ( $timestamp > current_time( 'timestamp', 1 ) ) { // Make sure the timestamp we're getting is in the future |
|
784 | - $time_key = strtotime( date_i18n( 'd-m-Y H:i:s', $timestamp , true ) ) . '_tw'; |
|
785 | - $times[ $time_key ] = 'sharedate_' . $key . '_' . $post_id . '_tw'; |
|
783 | + if ($timestamp > current_time( 'timestamp', 1 )) { // Make sure the timestamp we're getting is in the future |
|
784 | + $time_key = strtotime( date_i18n( 'd-m-Y H:i:s', $timestamp, true ) ).'_tw'; |
|
785 | + $times[$time_key] = 'sharedate_'.$key.'_'.$post_id.'_tw'; |
|
786 | 786 | } |
787 | 787 | |
788 | 788 | } |
@@ -802,7 +802,7 @@ discard block |
||
802 | 802 | |
803 | 803 | $ret = false; |
804 | 804 | |
805 | - if ( ! empty( $ppp_share_settings['twitter']['cards_enabled'] ) ) { |
|
805 | + if ( ! empty($ppp_share_settings['twitter']['cards_enabled'])) { |
|
806 | 806 | $ret = true; |
807 | 807 | } |
808 | 808 | |
@@ -817,13 +817,13 @@ discard block |
||
817 | 817 | */ |
818 | 818 | function ppp_tw_card_meta() { |
819 | 819 | |
820 | - if ( ! is_single() || ! ppp_twitter_enabled() || ! ppp_tw_cards_enabled() ) { |
|
820 | + if ( ! is_single() || ! ppp_twitter_enabled() || ! ppp_tw_cards_enabled()) { |
|
821 | 821 | return; |
822 | 822 | } |
823 | 823 | |
824 | 824 | global $post, $ppp_options; |
825 | 825 | |
826 | - if ( ! array_key_exists( $post->post_type, $ppp_options['post_types'] ) ) { |
|
826 | + if ( ! array_key_exists( $post->post_type, $ppp_options['post_types'] )) { |
|
827 | 827 | return; |
828 | 828 | } |
829 | 829 | |
@@ -841,20 +841,20 @@ discard block |
||
841 | 841 | |
842 | 842 | $return = ''; |
843 | 843 | |
844 | - if ( ! is_single() || ! ppp_tw_cards_enabled() ) { |
|
844 | + if ( ! is_single() || ! ppp_tw_cards_enabled()) { |
|
845 | 845 | return $return; |
846 | 846 | } |
847 | 847 | |
848 | 848 | global $post, $ppp_social_settings; |
849 | 849 | |
850 | 850 | |
851 | - if ( empty( $post ) ) { |
|
851 | + if (empty($post)) { |
|
852 | 852 | return; |
853 | 853 | } |
854 | 854 | |
855 | 855 | $elements = ppp_tw_default_meta_elements(); |
856 | - foreach ( $elements as $name => $content ) { |
|
857 | - $return .= '<meta name="' . $name . '" content="' . $content . '" />' . "\n"; |
|
856 | + foreach ($elements as $name => $content) { |
|
857 | + $return .= '<meta name="'.$name.'" content="'.$content.'" />'."\n"; |
|
858 | 858 | } |
859 | 859 | |
860 | 860 | return apply_filters( 'ppp_tw_card_meta', $return ); |
@@ -874,15 +874,15 @@ discard block |
||
874 | 874 | $elements = array(); |
875 | 875 | |
876 | 876 | $image_url = ppp_post_has_media( $post->ID, 'tw', true ); |
877 | - if ( $image_url ) { |
|
877 | + if ($image_url) { |
|
878 | 878 | $elements['twitter:card'] = 'summary_large_image'; |
879 | 879 | $elements['twitter:image:src'] = $image_url; |
880 | 880 | |
881 | 881 | $thumb_id = ppp_get_attachment_id_from_image_url( $image_url ); |
882 | - if ( ! empty( $thumb_id ) ) { |
|
882 | + if ( ! empty($thumb_id)) { |
|
883 | 883 | $alt_text = ppp_get_attachment_alt_text( $thumb_id ); |
884 | 884 | // When adding media via the WP Uploader, any 'alt text' supplied will be used as the accessible alt text. |
885 | - if ( ! empty( $alt_text ) ) { |
|
885 | + if ( ! empty($alt_text)) { |
|
886 | 886 | $elements['twitter:image:alt'] = esc_attr( $alt_text ); |
887 | 887 | } |
888 | 888 | } |
@@ -890,15 +890,15 @@ discard block |
||
890 | 890 | $elements['twitter:card'] = 'summary'; |
891 | 891 | } |
892 | 892 | |
893 | - $elements['twitter:site'] = '@' . $ppp_social_settings['twitter']['user']->screen_name; |
|
893 | + $elements['twitter:site'] = '@'.$ppp_social_settings['twitter']['user']->screen_name; |
|
894 | 894 | $elements['twitter:title'] = esc_attr( strip_tags( $post->post_title ) ); |
895 | 895 | $elements['twitter:description'] = esc_attr( ppp_tw_get_card_description() ); |
896 | 896 | |
897 | 897 | $author_twitter_handle = get_user_meta( $post->post_author, 'twitter', true ); |
898 | - if ( ! empty( $author_twitter_handle ) ) { |
|
898 | + if ( ! empty($author_twitter_handle)) { |
|
899 | 899 | |
900 | - if ( strpos( $author_twitter_handle, '@' ) === false ) { |
|
901 | - $author_twitter_handle = '@' . $author_twitter_handle; |
|
900 | + if (strpos( $author_twitter_handle, '@' ) === false) { |
|
901 | + $author_twitter_handle = '@'.$author_twitter_handle; |
|
902 | 902 | } |
903 | 903 | |
904 | 904 | $elements['twitter:creator'] = esc_attr( strip_tags( $author_twitter_handle ) ); |
@@ -917,13 +917,13 @@ discard block |
||
917 | 917 | function ppp_tw_get_card_description() { |
918 | 918 | global $post; |
919 | 919 | |
920 | - if ( ! is_single() || empty( $post ) ) { |
|
920 | + if ( ! is_single() || empty($post)) { |
|
921 | 921 | return false; |
922 | 922 | } |
923 | 923 | |
924 | 924 | $excerpt = $post->post_excerpt; |
925 | 925 | |
926 | - if ( empty( $excerpt ) ) { |
|
926 | + if (empty($excerpt)) { |
|
927 | 927 | $excerpt = ppp_tw_format_card_description( $post->post_content ); |
928 | 928 | } |
929 | 929 | |
@@ -941,10 +941,10 @@ discard block |
||
941 | 941 | $max_len = apply_filters( 'ppp_tw_cart_desc_length', 200 ); |
942 | 942 | $excerpt = strip_tags( $excerpt ); |
943 | 943 | |
944 | - if ( strlen( $excerpt ) > $max_len ) { |
|
944 | + if (strlen( $excerpt ) > $max_len) { |
|
945 | 945 | $excerpt_pre = substr( $excerpt, 0, $max_len ); |
946 | 946 | $last_space = strrpos( $excerpt_pre, ' ' ); |
947 | - $excerpt = substr( $excerpt_pre, 0, $last_space ) . '...'; |
|
947 | + $excerpt = substr( $excerpt_pre, 0, $last_space ).'...'; |
|
948 | 948 | } |
949 | 949 | |
950 | 950 | return $excerpt; |
@@ -959,7 +959,7 @@ discard block |
||
959 | 959 | */ |
960 | 960 | function ppp_tw_add_contact_method( $user_contactmethods ) { |
961 | 961 | |
962 | - if ( ! isset( $user_contactmethods['twitter'] ) ) { |
|
962 | + if ( ! isset($user_contactmethods['twitter'])) { |
|
963 | 963 | $user_contactmethods['twitter'] = __( 'Twitter', 'ppp-txt' ); |
964 | 964 | } |
965 | 965 | // Returns the contact methods |
@@ -978,15 +978,15 @@ discard block |
||
978 | 978 | function ppp_tw_profile_settings( $user ) { |
979 | 979 | global $ppp_social_settings; |
980 | 980 | |
981 | - if ( $user->ID == get_current_user_id() && ! current_user_can( 'edit_posts' ) ) { |
|
981 | + if ($user->ID == get_current_user_id() && ! current_user_can( 'edit_posts' )) { |
|
982 | 982 | return; |
983 | 983 | } |
984 | 984 | |
985 | - if ( $user->ID !== get_current_user_id() && ! current_user_can( PostPromoterPro::get_manage_capability() ) ) { |
|
985 | + if ($user->ID !== get_current_user_id() && ! current_user_can( PostPromoterPro::get_manage_capability() )) { |
|
986 | 986 | return; |
987 | 987 | } |
988 | 988 | |
989 | - if ( ! isset( $ppp_social_settings['twitter'] ) || is_null( $ppp_social_settings['twitter'] ) ) { |
|
989 | + if ( ! isset($ppp_social_settings['twitter']) || is_null( $ppp_social_settings['twitter'] )) { |
|
990 | 990 | return; |
991 | 991 | } |
992 | 992 | |
@@ -1001,12 +1001,12 @@ discard block |
||
1001 | 1001 | $twitter = new PPP_Twitter_User( get_current_user_id() ); |
1002 | 1002 | $tw_user = get_user_meta( $user->ID, '_ppp_twitter_data', true ); |
1003 | 1003 | |
1004 | - if ( empty( $tw_user ) ) { |
|
1005 | - $tw_authurl = $twitter->get_auth_url( admin_url( 'user-edit.php?user_id=' . $user->ID ) ); |
|
1004 | + if (empty($tw_user)) { |
|
1005 | + $tw_authurl = $twitter->get_auth_url( admin_url( 'user-edit.php?user_id='.$user->ID ) ); |
|
1006 | 1006 | |
1007 | - $string = '<span id="tw-oob-auth-link-wrapper"><a id="tw-oob-auth-link" href="' . $tw_authurl . '" target="_blank"><img src="' . PPP_URL . '/includes/images/sign-in-with-twitter-gray.png" /></a></span>'; |
|
1008 | - $string .= '<span style="display:none;" id="tw-oob-pin-notice">' . __( 'You are being directed to Twitter to authenticate. When complete, return here and enter the PIN you were provided.', 'ppp-txt' ) . '</span>'; |
|
1009 | - $string .= '<span style="display:none;" id="tw-oob-pin-wrapper"><input type="text" size="10" placeholder="Enter your PIN" value="" id="tw-oob-pin" data-nonce="' . wp_create_nonce( 'ppp-tw-pin' ) . '" data-user="1" /> <a href="#" class="button-secondary tw-oob-pin-submit">' . __( 'Submit', 'ppp-txt' ) . '</a><span class="spinner"></span></span>'; |
|
1007 | + $string = '<span id="tw-oob-auth-link-wrapper"><a id="tw-oob-auth-link" href="'.$tw_authurl.'" target="_blank"><img src="'.PPP_URL.'/includes/images/sign-in-with-twitter-gray.png" /></a></span>'; |
|
1008 | + $string .= '<span style="display:none;" id="tw-oob-pin-notice">'.__( 'You are being directed to Twitter to authenticate. When complete, return here and enter the PIN you were provided.', 'ppp-txt' ).'</span>'; |
|
1009 | + $string .= '<span style="display:none;" id="tw-oob-pin-wrapper"><input type="text" size="10" placeholder="Enter your PIN" value="" id="tw-oob-pin" data-nonce="'.wp_create_nonce( 'ppp-tw-pin' ).'" data-user="1" /> <a href="#" class="button-secondary tw-oob-pin-submit">'.__( 'Submit', 'ppp-txt' ).'</a><span class="spinner"></span></span>'; |
|
1010 | 1010 | $string .= '<input type="hidden" name="ppp_user_auth" value="1" />'; |
1011 | 1011 | |
1012 | 1012 | echo $string; |
@@ -1015,7 +1015,7 @@ discard block |
||
1015 | 1015 | ?> |
1016 | 1016 | <p><strong><?php _e( 'Signed in as', 'ppp-txt' ); ?>: </strong><?php echo $tw_user['user']->screen_name; ?></p> |
1017 | 1017 | <p> |
1018 | - <a class="button-primary" href="<?php echo admin_url( 'user-edit.php?user_id=' . $user->ID . '&ppp_social_disconnect=true&ppp_network=twitter&user_id=' . $user->ID ); ?>" ><?php _e( 'Disconnect from Twitter', 'ppp-txt' ); ?></a> |
|
1018 | + <a class="button-primary" href="<?php echo admin_url( 'user-edit.php?user_id='.$user->ID.'&ppp_social_disconnect=true&ppp_network=twitter&user_id='.$user->ID ); ?>" ><?php _e( 'Disconnect from Twitter', 'ppp-txt' ); ?></a> |
|
1019 | 1019 | <a class="button-secondary" href="https://twitter.com/settings/applications" target="blank"><?php _e( 'Revoke Access via Twitter', 'ppp-txt' ); ?></a> |
1020 | 1020 | </p> |
1021 | 1021 | <?php |
@@ -1024,12 +1024,12 @@ discard block |
||
1024 | 1024 | </td> |
1025 | 1025 | </tr> |
1026 | 1026 | |
1027 | - <?php if ( $connected ) : ?> |
|
1027 | + <?php if ($connected) : ?> |
|
1028 | 1028 | <?php |
1029 | 1029 | $share_on_publish = get_user_meta( $user->ID, '_ppp_share_on_publish', true ); |
1030 | - $share_scheduled = get_user_meta( $user->ID, '_ppp_share_scheduled' , true ); |
|
1030 | + $share_scheduled = get_user_meta( $user->ID, '_ppp_share_scheduled', true ); |
|
1031 | 1031 | $share_others_on_publish = get_user_meta( $user->ID, '_ppp_share_others_on_publish', true ); |
1032 | - $share_others_scheduled = get_user_meta( $user->ID, '_ppp_share_others_scheduled' , true ); |
|
1032 | + $share_others_scheduled = get_user_meta( $user->ID, '_ppp_share_others_scheduled', true ); |
|
1033 | 1033 | ?> |
1034 | 1034 | <tr> |
1035 | 1035 | <th><?php _e( 'Sharing Options', 'ppp-txt' ); ?></th> |
@@ -1077,19 +1077,19 @@ discard block |
||
1077 | 1077 | function ppp_tw_save_profile( $user_id ) { |
1078 | 1078 | global $ppp_social_settings; |
1079 | 1079 | |
1080 | - if ( ! isset( $ppp_social_settings['twitter'] ) || is_null( $ppp_social_settings['twitter'] ) ) { |
|
1080 | + if ( ! isset($ppp_social_settings['twitter']) || is_null( $ppp_social_settings['twitter'] )) { |
|
1081 | 1081 | return; |
1082 | 1082 | } |
1083 | 1083 | |
1084 | - $share_on_publish = ! empty( $_POST['share_on_publish'] ) ? true : false; |
|
1085 | - $share_scheduled = ! empty( $_POST['share_scheduled'] ) ? true : false; |
|
1086 | - $share_others_on_publish = ! empty( $_POST['share_others_on_publish'] ) ? true : false; |
|
1087 | - $share_others_scheduled = ! empty( $_POST['share_others_scheduled'] ) ? true : false; |
|
1084 | + $share_on_publish = ! empty($_POST['share_on_publish']) ? true : false; |
|
1085 | + $share_scheduled = ! empty($_POST['share_scheduled']) ? true : false; |
|
1086 | + $share_others_on_publish = ! empty($_POST['share_others_on_publish']) ? true : false; |
|
1087 | + $share_others_scheduled = ! empty($_POST['share_others_scheduled']) ? true : false; |
|
1088 | 1088 | |
1089 | 1089 | update_user_meta( $user_id, '_ppp_share_on_publish', $share_on_publish ); |
1090 | - update_user_meta( $user_id, '_ppp_share_scheduled', $share_scheduled ); |
|
1090 | + update_user_meta( $user_id, '_ppp_share_scheduled', $share_scheduled ); |
|
1091 | 1091 | update_user_meta( $user_id, '_ppp_share_others_on_publish', $share_others_on_publish ); |
1092 | - update_user_meta( $user_id, '_ppp_share_others_scheduled', $share_others_scheduled ); |
|
1092 | + update_user_meta( $user_id, '_ppp_share_others_scheduled', $share_others_scheduled ); |
|
1093 | 1093 | |
1094 | 1094 | } |
1095 | 1095 | add_action( 'personal_options_update', 'ppp_tw_save_profile' ); |
@@ -1098,14 +1098,14 @@ discard block |
||
1098 | 1098 | function ppp_tw_calendar_on_publish_event( $events, $post_id ) { |
1099 | 1099 | $share_on_publish = get_post_meta( $post_id, '_ppp_share_on_publish', true ); |
1100 | 1100 | |
1101 | - if ( ! empty( $share_on_publish ) ) { |
|
1101 | + if ( ! empty($share_on_publish)) { |
|
1102 | 1102 | $share_text = get_post_meta( $post_id, '_ppp_share_on_publish_text', true ); |
1103 | 1103 | $events[] = array( |
1104 | - 'id' => $post_id . '-share-on-publish', |
|
1105 | - 'title' => ( ! empty( $share_text ) ) ? $share_text : ppp_tw_generate_share_content( $post_id, null, false ), |
|
1106 | - 'start' => date_i18n( 'Y-m-d/TH:i:s', strtotime( get_the_date( null, $post_id ) . ' ' . get_the_time( null, $post_id ) ) + 1 ), |
|
1107 | - 'end' => date_i18n( 'Y-m-d/TH:i:s', strtotime( get_the_date( null, $post_id ) . ' ' . get_the_time( null, $post_id ) ) + 1 ), |
|
1108 | - 'className' => 'ppp-calendar-item-tw cal-post-' . $post_id, |
|
1104 | + 'id' => $post_id.'-share-on-publish', |
|
1105 | + 'title' => ( ! empty($share_text)) ? $share_text : ppp_tw_generate_share_content( $post_id, null, false ), |
|
1106 | + 'start' => date_i18n( 'Y-m-d/TH:i:s', strtotime( get_the_date( null, $post_id ).' '.get_the_time( null, $post_id ) ) + 1 ), |
|
1107 | + 'end' => date_i18n( 'Y-m-d/TH:i:s', strtotime( get_the_date( null, $post_id ).' '.get_the_time( null, $post_id ) ) + 1 ), |
|
1108 | + 'className' => 'ppp-calendar-item-tw cal-post-'.$post_id, |
|
1109 | 1109 | 'belongsTo' => $post_id, |
1110 | 1110 | ); |
1111 | 1111 | } |
@@ -1116,9 +1116,9 @@ discard block |
||
1116 | 1116 | |
1117 | 1117 | function ppp_tw_get_post_shares( $items, $post_id ) { |
1118 | 1118 | $tweets = get_post_meta( $post_id, '_ppp_tweets', true ); |
1119 | - if ( empty( $tweets ) ) { return $items; } |
|
1119 | + if (empty($tweets)) { return $items; } |
|
1120 | 1120 | |
1121 | - foreach ( $tweets as $key => $tweet ) { |
|
1121 | + foreach ($tweets as $key => $tweet) { |
|
1122 | 1122 | $items[] = array( 'id' => $key, 'service' => 'tw' ); |
1123 | 1123 | } |
1124 | 1124 | return $items; |
@@ -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 | |
@@ -10,7 +10,7 @@ discard block |
||
10 | 10 | $date = sanitize_text_field( $_POST['date'] ); |
11 | 11 | $time = sanitize_text_field( $_POST['time'] ); |
12 | 12 | |
13 | - $offset = (int) -( get_option( 'gmt_offset' ) ); // Make the timestamp in the users' timezone, b/c that makes more sense |
|
13 | + $offset = (int) -(get_option( 'gmt_offset' )); // Make the timestamp in the users' timezone, b/c that makes more sense |
|
14 | 14 | |
15 | 15 | $share_time = explode( ':', $time ); |
16 | 16 | |
@@ -18,11 +18,11 @@ discard block |
||
18 | 18 | $minutes = (int) substr( $share_time[1], 0, 2 ); |
19 | 19 | $ampm = strtolower( substr( $share_time[1], -2 ) ); |
20 | 20 | |
21 | - if ( $ampm == 'pm' && $hours != 12 ) { |
|
21 | + if ($ampm == 'pm' && $hours != 12) { |
|
22 | 22 | $hours = $hours + 12; |
23 | 23 | } |
24 | 24 | |
25 | - if ( $ampm == 'am' && $hours == 12 ) { |
|
25 | + if ($ampm == 'am' && $hours == 12) { |
|
26 | 26 | $hours = 00; |
27 | 27 | } |
28 | 28 |
@@ -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 |
@@ -43,21 +43,21 @@ |
||
43 | 43 | */ |
44 | 44 | public function column_default( $item, $column_name ) { |
45 | 45 | switch ( $column_name ) { |
46 | - case 'date': |
|
47 | - case 'post_title': |
|
48 | - return $item[ $column_name ]; |
|
49 | - case 'content': |
|
50 | - $content = $item[ $column_name ]; |
|
51 | - return $content; |
|
52 | - case 'image': |
|
53 | - if ( ! empty( $item['image_url'] ) ) { |
|
54 | - $content = '<img src="' . $item['image_url'] . '" />'; |
|
55 | - } else { |
|
56 | - $content = __( 'None', 'ppp-txt' ); |
|
57 | - } |
|
58 | - return $content; |
|
59 | - default: |
|
60 | - return; |
|
46 | + case 'date': |
|
47 | + case 'post_title': |
|
48 | + return $item[ $column_name ]; |
|
49 | + case 'content': |
|
50 | + $content = $item[ $column_name ]; |
|
51 | + return $content; |
|
52 | + case 'image': |
|
53 | + if ( ! empty( $item['image_url'] ) ) { |
|
54 | + $content = '<img src="' . $item['image_url'] . '" />'; |
|
55 | + } else { |
|
56 | + $content = __( 'None', 'ppp-txt' ); |
|
57 | + } |
|
58 | + return $content; |
|
59 | + default: |
|
60 | + return; |
|
61 | 61 | } |
62 | 62 | } |
63 | 63 |
@@ -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 |
@@ -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> |
@@ -10,7 +10,9 @@ discard block |
||
10 | 10 | */ |
11 | 11 | |
12 | 12 | // Exit if accessed directly |
13 | -if ( !defined( 'ABSPATH' ) ) exit; |
|
13 | +if ( !defined( 'ABSPATH' ) ) { |
|
14 | + exit; |
|
15 | +} |
|
14 | 16 | |
15 | 17 | /** |
16 | 18 | * Render Upgrades Screen |
@@ -57,11 +59,14 @@ discard block |
||
57 | 59 | setTimeout(function() { document.location.href = "index.php?ppp_action=<?php echo $action; ?>&step=<?php echo $step; ?>&total=<?php echo $total; ?>&custom=<?php echo $custom; ?>"; }, 250); |
58 | 60 | </script> |
59 | 61 | |
60 | - <?php else : ?> |
|
62 | + <?php else { |
|
63 | + : ?> |
|
61 | 64 | |
62 | 65 | <div id="ppp-upgrade-status"> |
63 | 66 | <p> |
64 | - <?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' ); ?> |
|
67 | + <?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' ); |
|
68 | +} |
|
69 | +?> |
|
65 | 70 | </p> |
66 | 71 | </div> |
67 | 72 | <script type="text/javascript"> |
@@ -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 |
@@ -146,16 +146,16 @@ |
||
146 | 146 | // If last connection failed don't display authorization link. |
147 | 147 | switch( $this->twitter->http_code ) { |
148 | 148 | |
149 | - case 200: |
|
150 | - $_SESSION['ppp_twt_oauth_token'] = $request_token['oauth_token']; |
|
151 | - $_SESSION['ppp_twt_oauth_token_secret'] = $request_token['oauth_token_secret']; |
|
152 | - |
|
153 | - $token = $request_token['oauth_token']; |
|
154 | - $url = $this->twitter->getAuthorizeURL( $token, NULL ); |
|
155 | - break; |
|
156 | - default: |
|
157 | - $url = ''; |
|
158 | - break; |
|
149 | + case 200: |
|
150 | + $_SESSION['ppp_twt_oauth_token'] = $request_token['oauth_token']; |
|
151 | + $_SESSION['ppp_twt_oauth_token_secret'] = $request_token['oauth_token_secret']; |
|
152 | + |
|
153 | + $token = $request_token['oauth_token']; |
|
154 | + $url = $this->twitter->getAuthorizeURL( $token, NULL ); |
|
155 | + break; |
|
156 | + default: |
|
157 | + $url = ''; |
|
158 | + break; |
|
159 | 159 | } |
160 | 160 | return $url; |
161 | 161 | } |
@@ -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 | * Handles all twitter functions |
12 | 12 | * |
13 | 13 | */ |
14 | -if( !class_exists( 'PPP_Twitter' ) ) { |
|
14 | +if ( ! class_exists( 'PPP_Twitter' )) { |
|
15 | 15 | |
16 | 16 | class PPP_Twitter { |
17 | 17 | |
@@ -29,13 +29,13 @@ discard block |
||
29 | 29 | * Handles to load twitter class |
30 | 30 | */ |
31 | 31 | public function ppp_load_twitter() { |
32 | - if( !class_exists( 'TwitterOAuth' ) ) { |
|
33 | - require_once ( PPP_PATH . '/includes/libs/twitter/twitteroauth.php' ); |
|
32 | + if ( ! class_exists( 'TwitterOAuth' )) { |
|
33 | + require_once (PPP_PATH.'/includes/libs/twitter/twitteroauth.php'); |
|
34 | 34 | } |
35 | 35 | |
36 | 36 | ppp_set_social_tokens(); |
37 | 37 | |
38 | - if ( ! defined( 'PPP_TW_CONSUMER_KEY' ) || ! defined( 'PPP_TW_CONSUMER_SECRET' ) ) { |
|
38 | + if ( ! defined( 'PPP_TW_CONSUMER_KEY' ) || ! defined( 'PPP_TW_CONSUMER_SECRET' )) { |
|
39 | 39 | return false; |
40 | 40 | } |
41 | 41 | |
@@ -47,7 +47,7 @@ discard block |
||
47 | 47 | public function revoke_access() { |
48 | 48 | global $ppp_social_settings; |
49 | 49 | |
50 | - unset( $ppp_social_settings['twitter'] ); |
|
50 | + unset($ppp_social_settings['twitter']); |
|
51 | 51 | |
52 | 52 | update_option( 'ppp_social_settings', $ppp_social_settings ); |
53 | 53 | } |
@@ -59,14 +59,14 @@ discard block |
||
59 | 59 | public function ppp_initialize_twitter() { |
60 | 60 | |
61 | 61 | //when user is going to logged in in twitter and verified successfully session will create |
62 | - if ( ! empty( $_REQUEST['oauth_verifier'] ) ) { |
|
62 | + if ( ! empty($_REQUEST['oauth_verifier'])) { |
|
63 | 63 | $ppp_social_settings = get_option( 'ppp_social_settings' ); |
64 | 64 | |
65 | 65 | //load twitter class |
66 | 66 | $twitter = $this->ppp_load_twitter(); |
67 | 67 | |
68 | 68 | //check twitter class is loaded or not |
69 | - if( ! $twitter ) { |
|
69 | + if ( ! $twitter) { |
|
70 | 70 | return false; |
71 | 71 | } |
72 | 72 | |
@@ -78,13 +78,13 @@ discard block |
||
78 | 78 | //session for verifier |
79 | 79 | $verifier['oauth_verifier'] = $_REQUEST['oauth_verifier']; |
80 | 80 | |
81 | - $_SESSION[ 'ppp_twt_user_cache' ] = $verifier; |
|
81 | + $_SESSION['ppp_twt_user_cache'] = $verifier; |
|
82 | 82 | |
83 | 83 | //getting user data from twitter |
84 | - $response = $this->twitter->get('account/verify_credentials'); |
|
84 | + $response = $this->twitter->get( 'account/verify_credentials' ); |
|
85 | 85 | |
86 | 86 | //if user data get successfully |
87 | - if ( $response->id_str ) { |
|
87 | + if ($response->id_str) { |
|
88 | 88 | |
89 | 89 | $data['user'] = $response; |
90 | 90 | $data['user']->accessToken = $ppp_tw_access_token; |
@@ -100,7 +100,7 @@ discard block |
||
100 | 100 | $this->ppp_load_twitter(); |
101 | 101 | |
102 | 102 | global $ppp_social_settings; |
103 | - if ( isset( $ppp_social_settings['twitter'] ) ) { |
|
103 | + if (isset($ppp_social_settings['twitter'])) { |
|
104 | 104 | |
105 | 105 | $this->twitter = new TwitterOAuth( |
106 | 106 | PPP_TW_CONSUMER_KEY, |
@@ -109,11 +109,11 @@ discard block |
||
109 | 109 | $ppp_social_settings['twitter']['user']->accessToken['oauth_token_secret'] |
110 | 110 | ); |
111 | 111 | |
112 | - $response = $this->twitter->get('account/verify_credentials'); |
|
113 | - if ( is_object( $response ) && property_exists( $response, 'errors' ) && count( $response->errors ) > 0 ) { |
|
114 | - foreach ( $response->errors as $error ) { |
|
115 | - if ( $error->code == 89 ) { // Expired or revoked tokens |
|
116 | - unset( $ppp_social_settings['twitter'] ); |
|
112 | + $response = $this->twitter->get( 'account/verify_credentials' ); |
|
113 | + if (is_object( $response ) && property_exists( $response, 'errors' ) && count( $response->errors ) > 0) { |
|
114 | + foreach ($response->errors as $error) { |
|
115 | + if ($error->code == 89) { // Expired or revoked tokens |
|
116 | + unset($ppp_social_settings['twitter']); |
|
117 | 117 | update_option( 'ppp_social_settings', $ppp_social_settings ); |
118 | 118 | |
119 | 119 | return array( 'error' => __( 'Post Promoter Pro has been removed from your Twitter account. Please reauthorize to continue promoting your content.', 'ppp-txt' ) ); |
@@ -129,23 +129,23 @@ discard block |
||
129 | 129 | * Get auth url for twitter |
130 | 130 | * |
131 | 131 | */ |
132 | - public function ppp_get_twitter_auth_url ( $return_url = '' ) { |
|
132 | + public function ppp_get_twitter_auth_url( $return_url = '' ) { |
|
133 | 133 | |
134 | - if ( empty( $return_url ) ) { |
|
134 | + if (empty($return_url)) { |
|
135 | 135 | $return_url = admin_url( 'admin.php?page=ppp-social-settings' ); |
136 | 136 | } |
137 | 137 | //load twitter class |
138 | 138 | $twitter = $this->ppp_load_twitter(); |
139 | 139 | |
140 | 140 | //check twitter class is loaded or not |
141 | - if( !$twitter ) { |
|
141 | + if ( ! $twitter) { |
|
142 | 142 | return false; |
143 | 143 | } |
144 | 144 | |
145 | 145 | $request_token = $this->twitter->getRequestToken( 'oob' ); |
146 | 146 | |
147 | 147 | // If last connection failed don't display authorization link. |
148 | - switch( $this->twitter->http_code ) { |
|
148 | + switch ($this->twitter->http_code) { |
|
149 | 149 | |
150 | 150 | case 200: |
151 | 151 | $_SESSION['ppp_twt_oauth_token'] = $request_token['oauth_token']; |
@@ -162,14 +162,14 @@ discard block |
||
162 | 162 | } |
163 | 163 | |
164 | 164 | public function ppp_tweet( $message = '', $media = null ) { |
165 | - if ( empty( $message ) ) { |
|
165 | + if (empty($message)) { |
|
166 | 166 | return false; |
167 | 167 | } |
168 | 168 | |
169 | 169 | $verify = $this->ppp_verify_twitter_credentials(); |
170 | - if ( $verify === true ) { |
|
170 | + if ($verify === true) { |
|
171 | 171 | $args = array(); |
172 | - if ( ! empty( $media ) ) { |
|
172 | + if ( ! empty($media)) { |
|
173 | 173 | $endpoint = 'statuses/update_with_media'; |
174 | 174 | $args['media[]'] = wp_remote_retrieve_body( wp_remote_get( $media ) ); |
175 | 175 | } else { |
@@ -141,9 +141,9 @@ |
||
141 | 141 | */ |
142 | 142 | function ppp_set_social_tokens() { |
143 | 143 | if ( ( defined( 'PPP_TW_CONSUMER_KEY' ) && defined( 'PPP_TW_CONSUMER_SECRET' ) ) || |
144 | - ( defined( 'LINKEDIN_KEY' ) && defined( 'LINKEDIN_SECRET' ) ) || |
|
145 | - ( defined( 'bitly_clientid' ) && defined( 'bitly_secret' ) ) || |
|
146 | - ( defined( 'PPP_FB_APP_ID' ) && defined( 'PPP_FB_APP_SECRET' ) ) |
|
144 | + ( defined( 'LINKEDIN_KEY' ) && defined( 'LINKEDIN_SECRET' ) ) || |
|
145 | + ( defined( 'bitly_clientid' ) && defined( 'bitly_secret' ) ) || |
|
146 | + ( defined( 'PPP_FB_APP_ID' ) && defined( 'PPP_FB_APP_SECRET' ) ) |
|
147 | 147 | ) { |
148 | 148 | return; |
149 | 149 | } |
@@ -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 | |
@@ -16,17 +16,17 @@ discard block |
||
16 | 16 | */ |
17 | 17 | function ppp_share_on_publish( $new_status, $old_status, $post ) { |
18 | 18 | // don't publish password protected posts |
19 | - if ( '' !== $post->post_password ) { |
|
19 | + if ('' !== $post->post_password) { |
|
20 | 20 | return; |
21 | 21 | } |
22 | 22 | |
23 | - if ( $new_status == 'publish' && $old_status != 'publish' ) { |
|
23 | + if ($new_status == 'publish' && $old_status != 'publish') { |
|
24 | 24 | global $ppp_options; |
25 | 25 | |
26 | - $allowed_post_types = isset( $ppp_options['post_types'] ) ? $ppp_options['post_types'] : array(); |
|
26 | + $allowed_post_types = isset($ppp_options['post_types']) ? $ppp_options['post_types'] : array(); |
|
27 | 27 | $allowed_post_types = apply_filters( 'ppp_schedule_share_post_types', $allowed_post_types ); |
28 | 28 | |
29 | - if ( !isset( $post->post_status ) || !array_key_exists( $post->post_type, $allowed_post_types ) ) { |
|
29 | + if ( ! isset($post->post_status) || ! array_key_exists( $post->post_type, $allowed_post_types )) { |
|
30 | 30 | return false; |
31 | 31 | } |
32 | 32 | |
@@ -55,26 +55,26 @@ discard block |
||
55 | 55 | function ppp_share_post( $post_id, $name ) { |
56 | 56 | global $ppp_options, $ppp_social_settings, $ppp_share_settings, $ppp_twitter_oauth; |
57 | 57 | |
58 | - if ( ppp_is_dev_or_staging() ) { |
|
58 | + if (ppp_is_dev_or_staging()) { |
|
59 | 59 | return; |
60 | 60 | } |
61 | 61 | |
62 | 62 | // If we've already started to share this, don't share it again. |
63 | 63 | // Compensates for wp-cron's race conditions |
64 | - if ( get_transient( 'ppp_sharing' . $name ) === 'true' ) { |
|
64 | + if (get_transient( 'ppp_sharing'.$name ) === 'true') { |
|
65 | 65 | return; |
66 | 66 | } |
67 | 67 | |
68 | 68 | // For 10 seconds, don't allow another share to go for this post |
69 | - set_transient( 'ppp_sharing' . $name, 'true', 10 ); |
|
69 | + set_transient( 'ppp_sharing'.$name, 'true', 10 ); |
|
70 | 70 | |
71 | 71 | $name_parts = explode( '_', $name ); |
72 | 72 | $index = $name_parts[1]; |
73 | - $service = isset( $name_parts[3] ) ? $name_parts[3] : 'tw'; |
|
73 | + $service = isset($name_parts[3]) ? $name_parts[3] : 'tw'; |
|
74 | 74 | |
75 | 75 | // If we're fired on a cron, check for stale cron runs |
76 | - if ( defined( 'DOING_CRON' ) && DOING_CRON ) { |
|
77 | - switch( $service ) { |
|
76 | + if (defined( 'DOING_CRON' ) && DOING_CRON) { |
|
77 | + switch ($service) { |
|
78 | 78 | case 'tw': |
79 | 79 | $post_meta = get_post_meta( $post_id, '_ppp_tweets', true ); |
80 | 80 | break; |
@@ -89,20 +89,20 @@ discard block |
||
89 | 89 | } |
90 | 90 | |
91 | 91 | $share_data = array(); |
92 | - if ( isset( $post_meta[ $index ] ) ) { |
|
93 | - $share_data = $post_meta[ $index ]; |
|
92 | + if (isset($post_meta[$index])) { |
|
93 | + $share_data = $post_meta[$index]; |
|
94 | 94 | } |
95 | 95 | |
96 | 96 | $timestamp = ppp_generate_timestamp( $share_data['date'], $share_data['time'] ); |
97 | 97 | |
98 | 98 | // If the current time is more than 60 minutes (filterable) overdue, don't fire the share |
99 | 99 | $share_buffer = apply_filters( 'ppp_share_buffer', HOUR_IN_SECONDS ); |
100 | - if ( ( current_time( 'timestamp', 1 ) - $timestamp ) > $share_buffer ) { |
|
100 | + if ((current_time( 'timestamp', 1 ) - $timestamp) > $share_buffer) { |
|
101 | 101 | return; |
102 | 102 | } |
103 | 103 | } |
104 | 104 | |
105 | - do_action( 'ppp_share_scheduled_' . $service, $post_id, $index, $name ); |
|
105 | + do_action( 'ppp_share_scheduled_'.$service, $post_id, $index, $name ); |
|
106 | 106 | |
107 | 107 | // Just in case we get caught in a weird state, kill this share immediately after we execute it. |
108 | 108 | wp_clear_scheduled_hook( 'ppp_share_post_event', array( $post_id, $name ) ); |
@@ -114,28 +114,28 @@ discard block |
||
114 | 114 | * @return void |
115 | 115 | */ |
116 | 116 | function ppp_set_social_tokens() { |
117 | - if ( ( defined( 'PPP_TW_CONSUMER_KEY' ) && defined( 'PPP_TW_CONSUMER_SECRET' ) ) || |
|
118 | - ( defined( 'LINKEDIN_KEY' ) && defined( 'LINKEDIN_SECRET' ) ) || |
|
119 | - ( defined( 'bitly_clientid' ) && defined( 'bitly_secret' ) ) || |
|
120 | - ( defined( 'PPP_FB_APP_ID' ) && defined( 'PPP_FB_APP_SECRET' ) ) |
|
117 | + if ((defined( 'PPP_TW_CONSUMER_KEY' ) && defined( 'PPP_TW_CONSUMER_SECRET' )) || |
|
118 | + (defined( 'LINKEDIN_KEY' ) && defined( 'LINKEDIN_SECRET' )) || |
|
119 | + (defined( 'bitly_clientid' ) && defined( 'bitly_secret' )) || |
|
120 | + (defined( 'PPP_FB_APP_ID' ) && defined( 'PPP_FB_APP_SECRET' )) |
|
121 | 121 | ) { |
122 | 122 | return; |
123 | 123 | } |
124 | 124 | |
125 | 125 | $social_tokens = ppp_has_local_tokens(); |
126 | 126 | |
127 | - if ( empty( $social_tokens ) ) { |
|
128 | - if ( ! defined( 'PPP_LOCAL_TOKENS' ) ) { |
|
127 | + if (empty($social_tokens)) { |
|
128 | + if ( ! defined( 'PPP_LOCAL_TOKENS' )) { |
|
129 | 129 | define( 'PPP_LOCAL_TOKENS', false ); |
130 | 130 | } |
131 | 131 | $social_tokens = get_transient( 'ppp_social_tokens' ); |
132 | 132 | |
133 | - if ( ! $social_tokens ) { |
|
133 | + if ( ! $social_tokens) { |
|
134 | 134 | $license = trim( get_option( '_ppp_license_key' ) ); |
135 | - $url = PPP_STORE_URL . '/?ppp-get-tokens&ppp-license-key=' . $license . '&ver=' . md5( time() . $license ); |
|
135 | + $url = PPP_STORE_URL.'/?ppp-get-tokens&ppp-license-key='.$license.'&ver='.md5( time().$license ); |
|
136 | 136 | $response = wp_remote_get( $url, array( 'timeout' => 15, 'sslverify' => false ) ); |
137 | 137 | |
138 | - if ( is_wp_error( $response ) ) { |
|
138 | + if (is_wp_error( $response )) { |
|
139 | 139 | return false; |
140 | 140 | } |
141 | 141 | |
@@ -144,27 +144,27 @@ discard block |
||
144 | 144 | } |
145 | 145 | |
146 | 146 | } else { |
147 | - if ( ! defined ( 'PPP_LOCAL_TOKENS' ) ) { |
|
147 | + if ( ! defined( 'PPP_LOCAL_TOKENS' )) { |
|
148 | 148 | define( 'PPP_LOCAL_TOKENS', true ); |
149 | 149 | } |
150 | 150 | |
151 | 151 | delete_transient( 'ppp_social_tokens' ); |
152 | 152 | |
153 | - if ( isset( $social_tokens->options ) ) { |
|
154 | - foreach ( $social_tokens->options as $constant => $value ) { |
|
153 | + if (isset($social_tokens->options)) { |
|
154 | + foreach ($social_tokens->options as $constant => $value) { |
|
155 | 155 | |
156 | 156 | $constant = strtoupper( $constant ); |
157 | 157 | |
158 | - if ( defined( $constant ) ) { |
|
158 | + if (defined( $constant )) { |
|
159 | 159 | continue; |
160 | 160 | } |
161 | 161 | |
162 | - switch( $constant ) { |
|
162 | + switch ($constant) { |
|
163 | 163 | |
164 | 164 | case 'NO_AUTO_UPDATE': |
165 | 165 | // Avoid the call to the API to check for software updates |
166 | 166 | $value = is_bool( $value ) ? $value : false; |
167 | - if ( ! defined( 'NO_AUTO_UPDATE' ) ) { |
|
167 | + if ( ! defined( 'NO_AUTO_UPDATE' )) { |
|
168 | 168 | define( 'NO_AUTO_UPDATE', $value ); |
169 | 169 | } |
170 | 170 | break; |
@@ -174,7 +174,7 @@ discard block |
||
174 | 174 | } |
175 | 175 | } |
176 | 176 | |
177 | - if ( false === PPP_LOCAL_TOKENS && ! isset( $social_tokens->error ) && ( isset( $social_tokens->twitter ) || isset( $social_tokens->facebook ) || isset( $social_tokens->linkedin ) ) ) { |
|
177 | + if (false === PPP_LOCAL_TOKENS && ! isset($social_tokens->error) && (isset($social_tokens->twitter) || isset($social_tokens->facebook) || isset($social_tokens->linkedin))) { |
|
178 | 178 | set_transient( 'ppp_social_tokens', $social_tokens, WEEK_IN_SECONDS ); |
179 | 179 | } |
180 | 180 | |
@@ -187,22 +187,22 @@ discard block |
||
187 | 187 | */ |
188 | 188 | function ppp_has_local_tokens() { |
189 | 189 | |
190 | - $token_file = apply_filters( 'ppp_local_social_token_path', ppp_get_upload_path() . '/ppp-social-tokens.json' ); |
|
190 | + $token_file = apply_filters( 'ppp_local_social_token_path', ppp_get_upload_path().'/ppp-social-tokens.json' ); |
|
191 | 191 | $local_tokens = false; |
192 | 192 | |
193 | - if ( ! file_exists( $token_file ) ) { |
|
193 | + if ( ! file_exists( $token_file )) { |
|
194 | 194 | return $local_tokens; |
195 | 195 | } |
196 | 196 | |
197 | 197 | $local_tokens = json_decode( file_get_contents( $token_file ) ); |
198 | 198 | |
199 | 199 | // Failed to parse as JSON |
200 | - if ( false === $local_tokens ) { |
|
200 | + if (false === $local_tokens) { |
|
201 | 201 | return $local_tokens; |
202 | 202 | } |
203 | 203 | |
204 | 204 | // No social tokens found in the format we accept or it was empty |
205 | - if ( empty( $local_tokens ) || ( ! isset( $local_tokens->twitter ) || ! isset( $local_tokens->facebook ) || ! isset( $local_tokens->linkedin ) ) ) { |
|
205 | + if (empty($local_tokens) || ( ! isset($local_tokens->twitter) || ! isset($local_tokens->facebook) || ! isset($local_tokens->linkedin))) { |
|
206 | 206 | return false; |
207 | 207 | } |
208 | 208 | |
@@ -220,13 +220,13 @@ discard block |
||
220 | 220 | global $ppp_share_settings; |
221 | 221 | $share_link = get_permalink( $post_id ); |
222 | 222 | |
223 | - if ( ppp_link_tracking_enabled() ) { |
|
223 | + if (ppp_link_tracking_enabled()) { |
|
224 | 224 | $share_link = ppp_generate_link_tracking( $share_link, $post_id, $name ); |
225 | 225 | } |
226 | 226 | |
227 | - if ( ppp_is_shortener_enabled() && $scheduled ) { |
|
227 | + if (ppp_is_shortener_enabled() && $scheduled) { |
|
228 | 228 | $shortener_name = $ppp_share_settings['shortener']; |
229 | - $share_link = apply_filters( 'ppp_apply_shortener-' . $shortener_name, $share_link ); |
|
229 | + $share_link = apply_filters( 'ppp_apply_shortener-'.$shortener_name, $share_link ); |
|
230 | 230 | } |
231 | 231 | |
232 | 232 | |
@@ -241,13 +241,13 @@ discard block |
||
241 | 241 | * @return string The URL to post, with proper analytics applied if necessary |
242 | 242 | */ |
243 | 243 | function ppp_generate_link_tracking( $share_link, $post_id, $name ) { |
244 | - if ( ppp_link_tracking_enabled() ) { |
|
244 | + if (ppp_link_tracking_enabled()) { |
|
245 | 245 | global $ppp_share_settings; |
246 | 246 | $link_tracking_type = $ppp_share_settings['analytics']; |
247 | 247 | |
248 | 248 | // Given the setting name, devs can extend this and apply a filter of ppp_analytics-[setting value] |
249 | 249 | // to apply their own rules for link tracking |
250 | - $share_link = apply_filters( 'ppp_analytics-' . $link_tracking_type, $share_link, $post_id, $name ); |
|
250 | + $share_link = apply_filters( 'ppp_analytics-'.$link_tracking_type, $share_link, $post_id, $name ); |
|
251 | 251 | } |
252 | 252 | |
253 | 253 | $share_link = apply_filters( 'ppp_generate_link_tracking', $share_link, $post_id, $name ); |
@@ -263,14 +263,14 @@ discard block |
||
263 | 263 | * @return mixed If a thumbnail is found returns the URL, otherwise returns false |
264 | 264 | */ |
265 | 265 | function ppp_post_has_media( $post_id, $network, $use_media, $attachment_id = false ) { |
266 | - if ( !$use_media || empty( $post_id ) || empty( $network ) ) { |
|
266 | + if ( ! $use_media || empty($post_id) || empty($network)) { |
|
267 | 267 | return false; |
268 | 268 | } |
269 | 269 | |
270 | - $thumb_id = empty( $attachment_id ) ? get_post_thumbnail_id( $post_id ) : $attachment_id; |
|
271 | - $thumb_url = wp_get_attachment_image_src( $thumb_id, 'ppp-' . $network . '-share-image', true ); |
|
270 | + $thumb_id = empty($attachment_id) ? get_post_thumbnail_id( $post_id ) : $attachment_id; |
|
271 | + $thumb_url = wp_get_attachment_image_src( $thumb_id, 'ppp-'.$network.'-share-image', true ); |
|
272 | 272 | |
273 | - if ( isset( $thumb_url[0] ) && ! empty( $thumb_url[0] ) && !strpos( $thumb_url[0], 'wp-includes/images/media/default.png' ) ) { |
|
273 | + if (isset($thumb_url[0]) && ! empty($thumb_url[0]) && ! strpos( $thumb_url[0], 'wp-includes/images/media/default.png' )) { |
|
274 | 274 | return $thumb_url[0]; |
275 | 275 | } |
276 | 276 | |
@@ -292,14 +292,14 @@ discard block |
||
292 | 292 | $filename = end( $path ); |
293 | 293 | |
294 | 294 | // First check a social media share (thumbnail sizes) |
295 | - $thumb_id = $wpdb->get_col( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_value LIKE '%s';", '%' . $wpdb->esc_like( $filename ) . '%' ) ); |
|
296 | - if ( ! empty( $thumb_id[0] ) ) { |
|
295 | + $thumb_id = $wpdb->get_col( $wpdb->prepare( "SELECT post_id FROM $wpdb->postmeta WHERE meta_value LIKE '%s';", '%'.$wpdb->esc_like( $filename ).'%' ) ); |
|
296 | + if ( ! empty($thumb_id[0])) { |
|
297 | 297 | $attachment_id = $thumb_id[0]; |
298 | 298 | } else { |
299 | 299 | |
300 | 300 | // We didn't find one via the thumbnail sizes, try the full image URL. |
301 | 301 | $thumb_id = $wpdb->get_col( $wpdb->prepare( "SELECT ID FROM $wpdb->posts WHERE guid='%s';", $image_url ) ); |
302 | - if ( ! empty( $thumb_id[0] ) ) { |
|
302 | + if ( ! empty($thumb_id[0])) { |
|
303 | 303 | $attachment_id = $thumb_id[0]; |
304 | 304 | } |
305 | 305 | } |