@@ -102,14 +102,14 @@ discard block |
||
| 102 | 102 | * |
| 103 | 103 | * @var array |
| 104 | 104 | */ |
| 105 | - private $_aspects = []; |
|
| 105 | + private $_aspects = [ ]; |
|
| 106 | 106 | |
| 107 | 107 | /** |
| 108 | 108 | * The list of user's connected services, which get set after ever http request. |
| 109 | 109 | * |
| 110 | 110 | * @var array |
| 111 | 111 | */ |
| 112 | - private $_services = []; |
|
| 112 | + private $_services = [ ]; |
|
| 113 | 113 | |
| 114 | 114 | /** |
| 115 | 115 | * List of regex expressions used to filter out details from http request responses. |
@@ -372,8 +372,8 @@ discard block |
||
| 372 | 372 | $this->_is_logged_in = false; |
| 373 | 373 | $this->_username = null; |
| 374 | 374 | $this->_password = null; |
| 375 | - $this->_aspects = []; |
|
| 376 | - $this->_services = []; |
|
| 375 | + $this->_aspects = [ ]; |
|
| 376 | + $this->_services = [ ]; |
|
| 377 | 377 | } |
| 378 | 378 | |
| 379 | 379 | /** |
@@ -385,7 +385,7 @@ discard block |
||
| 385 | 385 | $this->logout(); |
| 386 | 386 | $this->_last_error = null; |
| 387 | 387 | $this->_token = null; |
| 388 | - $this->_cookies = []; |
|
| 388 | + $this->_cookies = [ ]; |
|
| 389 | 389 | $this->_last_request = null; |
| 390 | 390 | } |
| 391 | 391 | |
@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | * |
| 399 | 399 | * @return bool|object Return the response data of the new diaspora* post if successfully posted, else false. |
| 400 | 400 | */ |
| 401 | - public function post( $text, $aspects = 'public', array $extra_data = [] ) { |
|
| 401 | + public function post( $text, $aspects = 'public', array $extra_data = [ ] ) { |
|
| 402 | 402 | // Are we logged in? |
| 403 | 403 | if ( ! $this->_check_login() ) { |
| 404 | 404 | return false; |
@@ -594,11 +594,11 @@ discard block |
||
| 594 | 594 | /** @var array $raw_list */ |
| 595 | 595 | |
| 596 | 596 | // In case this fetch is forced, empty the list. |
| 597 | - $list = []; |
|
| 597 | + $list = [ ]; |
|
| 598 | 598 | |
| 599 | 599 | if ( 'aspects' === $type ) { |
| 600 | 600 | // Add the 'public' aspect, as it's global and not user specific. |
| 601 | - $list['public'] = __( 'Public', 'wp-to-diaspora' ); |
|
| 601 | + $list[ 'public' ] = __( 'Public', 'wp-to-diaspora' ); |
|
| 602 | 602 | |
| 603 | 603 | // Add all user specific aspects. |
| 604 | 604 | foreach ( $raw_list as $aspect ) { |
@@ -625,7 +625,7 @@ discard block |
||
| 625 | 625 | * |
| 626 | 626 | * @return object An object containing details about this request. |
| 627 | 627 | */ |
| 628 | - private function _request( $url, array $args = [] ) { |
|
| 628 | + private function _request( $url, array $args = [ ] ) { |
|
| 629 | 629 | // Prefix the full pod URL if necessary. |
| 630 | 630 | if ( 0 === strpos( $url, '/' ) ) { |
| 631 | 631 | $url = $this->get_pod_url( $url ); |
@@ -642,12 +642,12 @@ discard block |
||
| 642 | 642 | // If the certificate bundle has been downloaded manually, use that instead. |
| 643 | 643 | // NOTE: This should actually never be necessary, it's a fallback! |
| 644 | 644 | if ( file_exists( WP2D_DIR . '/cacert.pem' ) ) { |
| 645 | - $defaults['sslcertificates'] = WP2D_DIR . '/cacert.pem'; |
|
| 645 | + $defaults[ 'sslcertificates' ] = WP2D_DIR . '/cacert.pem'; |
|
| 646 | 646 | } |
| 647 | 647 | |
| 648 | 648 | // Set the correct cookie. |
| 649 | 649 | if ( ! empty( $this->_cookies ) ) { |
| 650 | - $defaults['cookies'] = $this->_cookies; |
|
| 650 | + $defaults[ 'cookies' ] = $this->_cookies; |
|
| 651 | 651 | } |
| 652 | 652 | |
| 653 | 653 | $args = wp_parse_args( $args, $defaults ); |
@@ -679,8 +679,8 @@ discard block |
||
| 679 | 679 | } |
| 680 | 680 | |
| 681 | 681 | // Save the latest cookies. |
| 682 | - if ( isset( $response['cookies'] ) ) { |
|
| 683 | - $this->_cookies = $response['cookies']; |
|
| 682 | + if ( isset( $response[ 'cookies' ] ) ) { |
|
| 683 | + $this->_cookies = $response[ 'cookies' ]; |
|
| 684 | 684 | } |
| 685 | 685 | |
| 686 | 686 | // Return the last request details. |
@@ -255,7 +255,7 @@ |
||
| 255 | 255 | public static function get_help_tab_quick_link( $error ) { |
| 256 | 256 | $help_tab = ''; |
| 257 | 257 | if ( is_wp_error( $error ) && ( $error_data = $error->get_error_data() ) && array_key_exists( 'help_tab', $error_data ) ) { |
| 258 | - $help_tab = $error_data['help_tab']; |
|
| 258 | + $help_tab = $error_data[ 'help_tab' ]; |
|
| 259 | 259 | } elseif ( is_string( $error ) ) { |
| 260 | 260 | $help_tab = $error; |
| 261 | 261 | } |
@@ -99,7 +99,7 @@ discard block |
||
| 99 | 99 | */ |
| 100 | 100 | private function _constants() { |
| 101 | 101 | // Are we in debugging mode? |
| 102 | - if ( isset( $_GET['debugging'] ) ) { |
|
| 102 | + if ( isset( $_GET[ 'debugging' ] ) ) { |
|
| 103 | 103 | define( 'WP2D_DEBUGGING', true ); |
| 104 | 104 | } |
| 105 | 105 | |
@@ -117,7 +117,7 @@ discard block |
||
| 117 | 117 | */ |
| 118 | 118 | private function _version_check() { |
| 119 | 119 | // Check for version requirements. |
| 120 | - if ( version_compare( PHP_VERSION, $this->_min_php, '<' ) || version_compare( $GLOBALS['wp_version'], $this->_min_wp, '<' ) ) { |
|
| 120 | + if ( version_compare( PHP_VERSION, $this->_min_php, '<' ) || version_compare( $GLOBALS[ 'wp_version' ], $this->_min_wp, '<' ) ) { |
|
| 121 | 121 | add_action( 'admin_notices', [ $this, 'deactivate' ] ); |
| 122 | 122 | |
| 123 | 123 | return false; |
@@ -136,12 +136,12 @@ discard block |
||
| 136 | 136 | deactivate_plugins( plugin_basename( __FILE__ ) ); |
| 137 | 137 | |
| 138 | 138 | // Get rid of the "Plugin activated" message. |
| 139 | - unset( $_GET['activate'] ); |
|
| 139 | + unset( $_GET[ 'activate' ] ); |
|
| 140 | 140 | |
| 141 | 141 | // Then display the admin notice. |
| 142 | 142 | ?> |
| 143 | 143 | <div class="error"> |
| 144 | - <p><?php echo esc_html( sprintf( 'WP to diaspora* requires at least WordPress %1$s (you have %2$s) and PHP %3$s (you have %4$s)!', $this->_min_wp, $GLOBALS['wp_version'], $this->_min_php, PHP_VERSION ) ); ?></p> |
|
| 144 | + <p><?php echo esc_html( sprintf( 'WP to diaspora* requires at least WordPress %1$s (you have %2$s) and PHP %3$s (you have %4$s)!', $this->_min_wp, $GLOBALS[ 'wp_version' ], $this->_min_php, PHP_VERSION ) ); ?></p> |
|
| 145 | 145 | </div> |
| 146 | 146 | <?php |
| 147 | 147 | } |
@@ -260,7 +260,7 @@ discard block |
||
| 260 | 260 | */ |
| 261 | 261 | public function admin_load_scripts() { |
| 262 | 262 | // Get the enabled post types to load the script for. |
| 263 | - $enabled_post_types = WP2D_Options::instance()->get_option( 'enabled_post_types', [] ); |
|
| 263 | + $enabled_post_types = WP2D_Options::instance()->get_option( 'enabled_post_types', [ ] ); |
|
| 264 | 264 | |
| 265 | 265 | // Get the screen to find out where we are. |
| 266 | 266 | $screen = get_current_screen(); |
@@ -292,7 +292,7 @@ discard block |
||
| 292 | 292 | * @return array Links to display for plugin on plugins page. |
| 293 | 293 | */ |
| 294 | 294 | public function settings_link( $links ) { |
| 295 | - $links[] = '<a href="' . admin_url( 'options-general.php?page=wp_to_diaspora' ) . '">' . __( 'Settings' ) . '</a>'; |
|
| 295 | + $links[ ] = '<a href="' . admin_url( 'options-general.php?page=wp_to_diaspora' ) . '">' . __( 'Settings' ) . '</a>'; |
|
| 296 | 296 | |
| 297 | 297 | return $links; |
| 298 | 298 | } |
@@ -384,7 +384,7 @@ discard block |
||
| 384 | 384 | * @todo esc_html |
| 385 | 385 | */ |
| 386 | 386 | public function check_pod_connection_status_callback() { |
| 387 | - if ( ! defined( 'WP2D_DEBUGGING' ) && isset( $_REQUEST['debugging'] ) ) { |
|
| 387 | + if ( ! defined( 'WP2D_DEBUGGING' ) && isset( $_REQUEST[ 'debugging' ] ) ) { |
|
| 388 | 388 | define( 'WP2D_DEBUGGING', true ); |
| 389 | 389 | } |
| 390 | 390 | |
@@ -398,7 +398,7 @@ discard block |
||
| 398 | 398 | if ( true === $status ) { |
| 399 | 399 | wp_send_json_success( $data ); |
| 400 | 400 | } elseif ( false === $status && $this->_load_api()->has_last_error() ) { |
| 401 | - $data['message'] = $this->_load_api()->get_last_error() . ' ' . WP2D_Contextual_Help::get_help_tab_quick_link( $this->_load_api()->get_last_error_object() ); |
|
| 401 | + $data[ 'message' ] = $this->_load_api()->get_last_error() . ' ' . WP2D_Contextual_Help::get_help_tab_quick_link( $this->_load_api()->get_last_error_object() ); |
|
| 402 | 402 | wp_send_json_error( $data ); |
| 403 | 403 | } |
| 404 | 404 | // If $status === null, do nothing. |
@@ -258,7 +258,7 @@ discard block |
||
| 258 | 258 | |
| 259 | 259 | // Unset post_to_diaspora meta field to prevent mistakenly republishing to diaspora*. |
| 260 | 260 | $meta = get_post_meta( $post_id, '_wp_to_diaspora', true ); |
| 261 | - $meta['post_to_diaspora'] = false; |
|
| 261 | + $meta[ 'post_to_diaspora' ] = false; |
|
| 262 | 262 | update_post_meta( $post_id, '_wp_to_diaspora', $meta ); |
| 263 | 263 | |
| 264 | 264 | return true; |
@@ -297,7 +297,7 @@ discard block |
||
| 297 | 297 | private function _get_full_content() { |
| 298 | 298 | // Only allow certain shortcodes. |
| 299 | 299 | global $shortcode_tags; |
| 300 | - $shortcode_tags_bkp = []; |
|
| 300 | + $shortcode_tags_bkp = [ ]; |
|
| 301 | 301 | |
| 302 | 302 | foreach ( $shortcode_tags as $shortcode_tag => $shortcode_function ) { |
| 303 | 303 | if ( ! in_array( $shortcode_tag, apply_filters( 'wp2d_shortcodes_filter', [ 'wp_caption', 'caption', 'gallery' ] ), true ) ) { |
@@ -385,12 +385,12 @@ discard block |
||
| 385 | 385 | $options = WP2D_Options::instance(); |
| 386 | 386 | $tags_to_post = $this->tags_to_post; |
| 387 | 387 | $tags_to_add = ''; |
| 388 | - $diaspora_tags = []; |
|
| 388 | + $diaspora_tags = [ ]; |
|
| 389 | 389 | |
| 390 | 390 | // Add any diaspora* tags? |
| 391 | 391 | if ( ! empty( $tags_to_post ) ) { |
| 392 | 392 | // The diaspora* tags to add to the post. |
| 393 | - $diaspora_tags_tmp = []; |
|
| 393 | + $diaspora_tags_tmp = [ ]; |
|
| 394 | 394 | |
| 395 | 395 | // Add global tags? |
| 396 | 396 | $global_tags = $options->get_option( 'global_tags' ); |
@@ -416,7 +416,7 @@ discard block |
||
| 416 | 416 | |
| 417 | 417 | // Get all the tags and list them all nicely in a row. |
| 418 | 418 | foreach ( $diaspora_tags_tmp as $tag ) { |
| 419 | - $diaspora_tags[] = '#' . $tag; |
|
| 419 | + $diaspora_tags[ ] = '#' . $tag; |
|
| 420 | 420 | } |
| 421 | 421 | |
| 422 | 422 | // Add all the found tags. |
@@ -476,11 +476,11 @@ discard block |
||
| 476 | 476 | private function _save_to_history( $response ) { |
| 477 | 477 | // Make sure the post history is an array. |
| 478 | 478 | if ( empty( $this->post_history ) ) { |
| 479 | - $this->post_history = []; |
|
| 479 | + $this->post_history = [ ]; |
|
| 480 | 480 | } |
| 481 | 481 | |
| 482 | 482 | // Add a new entry to the history. |
| 483 | - $this->post_history[] = [ |
|
| 483 | + $this->post_history[ ] = [ |
|
| 484 | 484 | 'id' => $response->id, |
| 485 | 485 | 'guid' => $response->guid, |
| 486 | 486 | 'created_at' => $this->post->post_modified, |
@@ -564,8 +564,8 @@ discard block |
||
| 564 | 564 | $content = do_shortcode( $content ); |
| 565 | 565 | |
| 566 | 566 | // If a caption attribute is defined, we'll add it after the image. |
| 567 | - if ( isset( $attr['caption'] ) && '' !== $attr['caption'] ) { |
|
| 568 | - $content .= "\n" . $this->get_img_caption( $attr['caption'] ); |
|
| 567 | + if ( isset( $attr[ 'caption' ] ) && '' !== $attr[ 'caption' ] ) { |
|
| 568 | + $content .= "\n" . $this->get_img_caption( $attr[ 'caption' ] ); |
|
| 569 | 569 | } |
| 570 | 570 | |
| 571 | 571 | return $content; |
@@ -585,8 +585,8 @@ discard block |
||
| 585 | 585 | $captiontag = current_theme_supports( 'html5', 'gallery' ) ? 'figcaption' : 'dd'; |
| 586 | 586 | |
| 587 | 587 | // User value. |
| 588 | - if ( isset( $attr['captiontag'] ) ) { |
|
| 589 | - $captiontag = $attr['captiontag']; |
|
| 588 | + if ( isset( $attr[ 'captiontag' ] ) ) { |
|
| 589 | + $captiontag = $attr[ 'captiontag' ]; |
|
| 590 | 590 | } |
| 591 | 591 | |
| 592 | 592 | // Let WordPress create the regular gallery. |
@@ -610,7 +610,7 @@ discard block |
||
| 610 | 610 | * @return string Prettified gallery image caption. |
| 611 | 611 | */ |
| 612 | 612 | public function custom_gallery_regex_callback( $m ) { |
| 613 | - return $this->get_img_caption( $m[2] ); |
|
| 613 | + return $this->get_img_caption( $m[ 2 ] ); |
|
| 614 | 614 | } |
| 615 | 615 | |
| 616 | 616 | /* |
@@ -653,18 +653,18 @@ discard block |
||
| 653 | 653 | $options = WP2D_Options::instance(); |
| 654 | 654 | |
| 655 | 655 | // Make sure we have some value for post meta fields. |
| 656 | - $this->custom_tags = $this->custom_tags ?: []; |
|
| 656 | + $this->custom_tags = $this->custom_tags ? : [ ]; |
|
| 657 | 657 | |
| 658 | 658 | // If this post is already published, don't post again to diaspora* by default. |
| 659 | 659 | $this->post_to_diaspora = ( $this->post_to_diaspora && 'publish' !== get_post_status( $this->ID ) ); |
| 660 | - $this->aspects = $this->aspects ?: []; |
|
| 661 | - $this->services = $this->services ?: []; |
|
| 660 | + $this->aspects = $this->aspects ? : [ ]; |
|
| 661 | + $this->services = $this->services ? : [ ]; |
|
| 662 | 662 | |
| 663 | 663 | // Have we already posted on diaspora*? |
| 664 | 664 | if ( is_array( $this->post_history ) ) { |
| 665 | 665 | $latest_post = end( $this->post_history ); |
| 666 | 666 | ?> |
| 667 | - <p><a href="<?php echo esc_attr( $latest_post['post_url'] ); ?>" target="_blank"><?php esc_html_e( 'Already posted to diaspora*.', 'wp-to-diaspora' ); ?></a></p> |
|
| 667 | + <p><a href="<?php echo esc_attr( $latest_post[ 'post_url' ] ); ?>" target="_blank"><?php esc_html_e( 'Already posted to diaspora*.', 'wp-to-diaspora' ); ?></a></p> |
|
| 668 | 668 | <?php |
| 669 | 669 | } |
| 670 | 670 | ?> |
@@ -699,7 +699,7 @@ discard block |
||
| 699 | 699 | /* OK, it's safe for us to save the data now. */ |
| 700 | 700 | |
| 701 | 701 | // Meta data to save. |
| 702 | - $meta_to_save = $_POST['wp_to_diaspora_settings']; |
|
| 702 | + $meta_to_save = $_POST[ 'wp_to_diaspora_settings' ]; |
|
| 703 | 703 | $options = WP2D_Options::instance(); |
| 704 | 704 | |
| 705 | 705 | // Checkboxes. |
@@ -712,13 +712,13 @@ discard block |
||
| 712 | 712 | $options->validate_multi_selects( 'tags_to_post', $meta_to_save ); |
| 713 | 713 | |
| 714 | 714 | // Save custom tags as array. |
| 715 | - $options->validate_tags( $meta_to_save['custom_tags'] ); |
|
| 715 | + $options->validate_tags( $meta_to_save[ 'custom_tags' ] ); |
|
| 716 | 716 | |
| 717 | 717 | // Clean up the list of aspects. If the list is empty, only use the 'Public' aspect. |
| 718 | - $options->validate_aspects_services( $meta_to_save['aspects'], [ 'public' ] ); |
|
| 718 | + $options->validate_aspects_services( $meta_to_save[ 'aspects' ], [ 'public' ] ); |
|
| 719 | 719 | |
| 720 | 720 | // Clean up the list of services. |
| 721 | - $options->validate_aspects_services( $meta_to_save['services'] ); |
|
| 721 | + $options->validate_aspects_services( $meta_to_save[ 'services' ] ); |
|
| 722 | 722 | |
| 723 | 723 | // Update the meta data for this post. |
| 724 | 724 | update_post_meta( $post_id, '_wp_to_diaspora', $meta_to_save ); |
@@ -733,7 +733,7 @@ discard block |
||
| 733 | 733 | */ |
| 734 | 734 | private function _is_safe_to_save() { |
| 735 | 735 | // Verify that our nonce is set and valid. |
| 736 | - if ( ! ( isset( $_POST['wp_to_diaspora_meta_box_nonce'] ) && wp_verify_nonce( $_POST['wp_to_diaspora_meta_box_nonce'], 'wp_to_diaspora_meta_box' ) ) ) { |
|
| 736 | + if ( ! ( isset( $_POST[ 'wp_to_diaspora_meta_box_nonce' ] ) && wp_verify_nonce( $_POST[ 'wp_to_diaspora_meta_box_nonce' ], 'wp_to_diaspora_meta_box' ) ) ) { |
|
| 737 | 737 | return false; |
| 738 | 738 | } |
| 739 | 739 | |
@@ -743,13 +743,13 @@ discard block |
||
| 743 | 743 | } |
| 744 | 744 | |
| 745 | 745 | // Check the user's permissions. |
| 746 | - $permission = ( isset( $_POST['post_type'] ) && 'page' === $_POST['post_type'] ) ? 'edit_pages' : 'edit_posts'; |
|
| 746 | + $permission = ( isset( $_POST[ 'post_type' ] ) && 'page' === $_POST[ 'post_type' ] ) ? 'edit_pages' : 'edit_posts'; |
|
| 747 | 747 | if ( ! current_user_can( $permission, $this->ID ) ) { |
| 748 | 748 | return false; |
| 749 | 749 | } |
| 750 | 750 | |
| 751 | 751 | // Make real sure that we have some meta data to save. |
| 752 | - if ( ! isset( $_POST['wp_to_diaspora_settings'] ) ) { |
|
| 752 | + if ( ! isset( $_POST[ 'wp_to_diaspora_settings' ] ) ) { |
|
| 753 | 753 | return false; |
| 754 | 754 | } |
| 755 | 755 | |
@@ -786,10 +786,10 @@ discard block |
||
| 786 | 786 | $latest_post = end( $diaspora_post_history ); |
| 787 | 787 | |
| 788 | 788 | // Only show if this post is showing a message and the post is a fresh share. |
| 789 | - if ( isset( $_GET['message'] ) && $post->post_modified === $latest_post['created_at'] ) { |
|
| 789 | + if ( isset( $_GET[ 'message' ] ) && $post->post_modified === $latest_post[ 'created_at' ] ) { |
|
| 790 | 790 | printf( '<div class="updated notice is-dismissible"><p>%1$s <a href="%2$s" target="_blank">%3$s</a></p></div>', |
| 791 | 791 | esc_html__( 'Successfully posted to diaspora*.', 'wp-to-diaspora' ), |
| 792 | - esc_url( $latest_post['post_url'] ), |
|
| 792 | + esc_url( $latest_post[ 'post_url' ] ), |
|
| 793 | 793 | esc_html__( 'View Post' ) |
| 794 | 794 | ); |
| 795 | 795 | } |
@@ -803,8 +803,8 @@ discard block |
||
| 803 | 803 | */ |
| 804 | 804 | public function ignore_post_error() { |
| 805 | 805 | // If "Ignore" link has been clicked, delete the post error meta data. |
| 806 | - if ( isset( $_GET['wp2d_ignore_post_error'], $_GET['post'] ) ) { |
|
| 807 | - delete_post_meta( $_GET['post'], '_wp_to_diaspora_post_error' ); |
|
| 806 | + if ( isset( $_GET[ 'wp2d_ignore_post_error' ], $_GET[ 'post' ] ) ) { |
|
| 807 | + delete_post_meta( $_GET[ 'post' ], '_wp_to_diaspora_post_error' ); |
|
| 808 | 808 | } |
| 809 | 809 | } |
| 810 | 810 | } |
@@ -27,8 +27,8 @@ discard block |
||
| 27 | 27 | * @var array |
| 28 | 28 | */ |
| 29 | 29 | private static $_default_options = [ |
| 30 | - 'aspects_list' => [], |
|
| 31 | - 'services_list' => [], |
|
| 30 | + 'aspects_list' => [ ], |
|
| 31 | + 'services_list' => [ ], |
|
| 32 | 32 | 'post_to_diaspora' => true, |
| 33 | 33 | 'enabled_post_types' => [ 'post' ], |
| 34 | 34 | 'fullentrylink' => true, |
@@ -36,7 +36,7 @@ discard block |
||
| 36 | 36 | 'tags_to_post' => [ 'global', 'custom', 'post' ], |
| 37 | 37 | 'global_tags' => '', |
| 38 | 38 | 'aspects' => [ 'public' ], |
| 39 | - 'services' => [], |
|
| 39 | + 'services' => [ ], |
|
| 40 | 40 | 'auth_key_hash' => '', |
| 41 | 41 | 'version' => WP2D_VERSION, |
| 42 | 42 | ]; |
@@ -106,7 +106,7 @@ discard block |
||
| 106 | 106 | * @return string Return the currently selected tab. |
| 107 | 107 | */ |
| 108 | 108 | private function _current_tab( $default = 'defaults' ) { |
| 109 | - $tab = ( isset ( $_GET['tab'] ) ? $_GET['tab'] : $default ); |
|
| 109 | + $tab = ( isset ( $_GET[ 'tab' ] ) ? $_GET[ 'tab' ] : $default ); |
|
| 110 | 110 | |
| 111 | 111 | // If the pod settings aren't configured yet, open the 'Setup' tab. |
| 112 | 112 | if ( ! $this->is_pod_set_up() ) { |
@@ -125,13 +125,13 @@ discard block |
||
| 125 | 125 | */ |
| 126 | 126 | private function _options_page_tabs( $return = false ) { |
| 127 | 127 | // The array defining all options sections to be shown as tabs. |
| 128 | - $tabs = []; |
|
| 128 | + $tabs = [ ]; |
|
| 129 | 129 | if ( $this->is_pod_set_up() ) { |
| 130 | - $tabs['defaults'] = __( 'Defaults', 'wp-to-diaspora' ); |
|
| 130 | + $tabs[ 'defaults' ] = __( 'Defaults', 'wp-to-diaspora' ); |
|
| 131 | 131 | } |
| 132 | 132 | |
| 133 | 133 | // Add the 'Setup' tab to the end of the list. |
| 134 | - $tabs['setup'] = __( 'Setup', 'wp-to-diaspora' ) . '<span id="pod-connection-status" class="dashicons-before hidden"></span><span class="spinner"></span>'; |
|
| 134 | + $tabs[ 'setup' ] = __( 'Setup', 'wp-to-diaspora' ) . '<span id="pod-connection-status" class="dashicons-before hidden"></span><span class="spinner"></span>'; |
|
| 135 | 135 | |
| 136 | 136 | // Container for all options tabs. |
| 137 | 137 | $out = '<h2 id="options-tabs" class="nav-tab-wrapper">'; |
@@ -149,7 +149,7 @@ discard block |
||
| 149 | 149 | return $tabs; |
| 150 | 150 | } |
| 151 | 151 | |
| 152 | - return []; |
|
| 152 | + return [ ]; |
|
| 153 | 153 | } |
| 154 | 154 | |
| 155 | 155 | |
@@ -225,7 +225,7 @@ discard block |
||
| 225 | 225 | do_settings_sections( 'wp_to_diaspora_settings' ); |
| 226 | 226 | |
| 227 | 227 | // Get the name of the current tab, if set, else take the first one from the list. |
| 228 | - $tab = $this->_current_tab( $page_tabs[0] ); |
|
| 228 | + $tab = $this->_current_tab( $page_tabs[ 0 ] ); |
|
| 229 | 229 | |
| 230 | 230 | // Add Save and Reset buttons. |
| 231 | 231 | echo '<input id="submit-' . esc_attr( $tab ) . '" name="wp_to_diaspora_settings[submit_' . esc_attr( $tab ) . ']" type="submit" class="button-primary" value="' . esc_attr__( 'Save Changes' ) . '" /> '; |
@@ -773,14 +773,14 @@ discard block |
||
| 773 | 773 | esc_url( 'https://' . $this->get_option( 'pod' ) . '/services' ), |
| 774 | 774 | esc_html__( 'Show available services on my pod.', 'wp-to-diaspora' ) |
| 775 | 775 | ); |
| 776 | - $empty_label = esc_html__( 'No services connected yet.', 'wp-to-diaspora' ); |
|
| 776 | + $empty_label = esc_html__( 'No services connected yet.', 'wp-to-diaspora' ); |
|
| 777 | 777 | break; |
| 778 | 778 | |
| 779 | 779 | default: |
| 780 | 780 | return; |
| 781 | 781 | } |
| 782 | 782 | |
| 783 | - $items = array_filter( (array) $items ) ?: []; |
|
| 783 | + $items = array_filter( (array) $items ) ? : [ ]; |
|
| 784 | 784 | |
| 785 | 785 | // Special case for this field if it's displayed on the settings page. |
| 786 | 786 | $on_settings_page = ( 'settings_page_wp_to_diaspora' === get_current_screen()->id ); |
@@ -930,19 +930,19 @@ discard block |
||
| 930 | 930 | /* Validate all settings before saving to the database. */ |
| 931 | 931 | |
| 932 | 932 | // Saving the pod setup details. |
| 933 | - if ( isset( $input['submit_setup'] ) ) { |
|
| 934 | - $input['pod'] = trim( sanitize_text_field( $input['pod'] ), ' /' ); |
|
| 935 | - $input['username'] = sanitize_text_field( $input['username'] ); |
|
| 936 | - $input['password'] = sanitize_text_field( $input['password'] ); |
|
| 933 | + if ( isset( $input[ 'submit_setup' ] ) ) { |
|
| 934 | + $input[ 'pod' ] = trim( sanitize_text_field( $input[ 'pod' ] ), ' /' ); |
|
| 935 | + $input[ 'username' ] = sanitize_text_field( $input[ 'username' ] ); |
|
| 936 | + $input[ 'password' ] = sanitize_text_field( $input[ 'password' ] ); |
|
| 937 | 937 | |
| 938 | 938 | // If password is blank, it hasn't been changed. |
| 939 | 939 | // If new password is equal to the encrypted password already saved, it was just passed again. It happens everytime update_option('wp_to_diaspora_settings') is called. |
| 940 | - if ( '' === $input['password'] || $this->get_option( 'password' ) === $input['password'] ) { |
|
| 940 | + if ( '' === $input[ 'password' ] || $this->get_option( 'password' ) === $input[ 'password' ] ) { |
|
| 941 | 941 | // Attempt a password upgrade if applicable. |
| 942 | 942 | $this->attempt_password_upgrade( true ); |
| 943 | - $input['password'] = $this->get_option( 'password' ); |
|
| 943 | + $input[ 'password' ] = $this->get_option( 'password' ); |
|
| 944 | 944 | } else { |
| 945 | - $input['password'] = WP2D_Helpers::encrypt( $input['password'] ); |
|
| 945 | + $input[ 'password' ] = WP2D_Helpers::encrypt( $input[ 'password' ] ); |
|
| 946 | 946 | } |
| 947 | 947 | |
| 948 | 948 | // Keep a note of the current AUTH_KEY. |
@@ -950,15 +950,15 @@ discard block |
||
| 950 | 950 | |
| 951 | 951 | // This is for when JS in not enabled, to make sure that the aspects and services |
| 952 | 952 | // are re-fetched when displaying the options page after saving. |
| 953 | - if ( isset( $input['no_js'] ) ) { |
|
| 953 | + if ( isset( $input[ 'no_js' ] ) ) { |
|
| 954 | 954 | set_transient( 'wp2d_no_js_force_refetch', true ); |
| 955 | 955 | } |
| 956 | 956 | } |
| 957 | 957 | |
| 958 | 958 | // Saving the default options. |
| 959 | - if ( isset( $input['submit_defaults'] ) ) { |
|
| 960 | - if ( ! isset( $input['enabled_post_types'] ) ) { |
|
| 961 | - $input['enabled_post_types'] = []; |
|
| 959 | + if ( isset( $input[ 'submit_defaults' ] ) ) { |
|
| 960 | + if ( ! isset( $input[ 'enabled_post_types' ] ) ) { |
|
| 961 | + $input[ 'enabled_post_types' ] = [ ]; |
|
| 962 | 962 | } |
| 963 | 963 | |
| 964 | 964 | // Checkboxes. |
@@ -971,26 +971,26 @@ discard block |
||
| 971 | 971 | $this->validate_multi_selects( 'tags_to_post', $input ); |
| 972 | 972 | |
| 973 | 973 | // Get unique, non-empty, trimmed tags and clean them up. |
| 974 | - $this->validate_tags( $input['global_tags'] ); |
|
| 974 | + $this->validate_tags( $input[ 'global_tags' ] ); |
|
| 975 | 975 | |
| 976 | 976 | // Clean up the list of aspects. If the list is empty, only use the 'Public' aspect. |
| 977 | - $this->validate_aspects_services( $input['aspects'], [ 'public' ] ); |
|
| 977 | + $this->validate_aspects_services( $input[ 'aspects' ], [ 'public' ] ); |
|
| 978 | 978 | |
| 979 | 979 | // Clean up the list of services. |
| 980 | - $this->validate_aspects_services( $input['services'] ); |
|
| 980 | + $this->validate_aspects_services( $input[ 'services' ] ); |
|
| 981 | 981 | } |
| 982 | 982 | |
| 983 | 983 | // Reset to defaults. |
| 984 | - if ( isset( $input['reset_defaults'] ) ) { |
|
| 984 | + if ( isset( $input[ 'reset_defaults' ] ) ) { |
|
| 985 | 985 | // Set the input to the default options. |
| 986 | 986 | $input = self::$_default_options; |
| 987 | 987 | |
| 988 | 988 | // Don't reset the fetched lists of aspects and services. |
| 989 | - unset( $input['pod_list'], $input['aspects_list'], $input['services_list'] ); |
|
| 989 | + unset( $input[ 'pod_list' ], $input[ 'aspects_list' ], $input[ 'services_list' ] ); |
|
| 990 | 990 | } |
| 991 | 991 | |
| 992 | 992 | // Unset all unused input fields. |
| 993 | - unset( $input['submit_defaults'], $input['reset_defaults'], $input['submit_setup'] ); |
|
| 993 | + unset( $input[ 'submit_defaults' ], $input[ 'reset_defaults' ], $input[ 'submit_setup' ] ); |
|
| 994 | 994 | |
| 995 | 995 | // Parse inputs with default options and return. |
| 996 | 996 | return wp_parse_args( $input, array_merge( self::$_default_options, self::$_options ) ); |
@@ -1048,7 +1048,7 @@ discard block |
||
| 1048 | 1048 | } |
| 1049 | 1049 | } |
| 1050 | 1050 | } else { |
| 1051 | - $options[ $select ] = []; |
|
| 1051 | + $options[ $select ] = [ ]; |
|
| 1052 | 1052 | } |
| 1053 | 1053 | } |
| 1054 | 1054 | |
@@ -1097,7 +1097,7 @@ discard block |
||
| 1097 | 1097 | * |
| 1098 | 1098 | * @return array The validated list of aspects or services. |
| 1099 | 1099 | */ |
| 1100 | - public function validate_aspects_services( &$aspects_services, array $default = [] ) { |
|
| 1100 | + public function validate_aspects_services( &$aspects_services, array $default = [ ] ) { |
|
| 1101 | 1101 | if ( empty( $aspects_services ) || ! is_array( $aspects_services ) ) { |
| 1102 | 1102 | $aspects_services = $default; |
| 1103 | 1103 | } else { |