Passed
Push — master ( 8bad98...f72747 )
by Warwick
02:21 queued 12s
created
classes/frontend/class-button.php 1 patch
Spacing   +38 added lines, -38 removed lines patch added patch discarded remove patch
@@ -35,12 +35,12 @@  discard block
 block discarded – undo
35 35
 	/**
36 36
 	 * Constructor.
37 37
 	 */
38
-	public function __construct( $service, $options, $prefix = 'sharing' ) {
38
+	public function __construct($service, $options, $prefix = 'sharing') {
39 39
 		$this->options = $options;
40
-		if ( ! in_array( $service, $this->services, true ) ) {
40
+		if ( ! in_array($service, $this->services, true)) {
41 41
 			return;
42 42
 		}
43
-		if ( \lsx\sharing\includes\functions\is_button_disabled( 'global', $service ) || \lsx\sharing\includes\functions\is_button_disabled( $prefix, $service ) ) {
43
+		if (\lsx\sharing\includes\functions\is_button_disabled('global', $service) || \lsx\sharing\includes\functions\is_button_disabled($prefix, $service)) {
44 44
 			return '';
45 45
 		}
46 46
 		$this->service = $service;
@@ -49,42 +49,42 @@  discard block
 block discarded – undo
49 49
 	/**
50 50
 	 * Get service link to share.
51 51
 	 */
52
-	public function get_link( $post ) {
53
-		if ( empty( $post ) ) {
52
+	public function get_link($post) {
53
+		if (empty($post)) {
54 54
 			return '';
55 55
 		}
56 56
 
57
-		if ( 'email' === $this->service ) {
58
-			return $this->get_link_email( $post );
59
-		} elseif ( 'facebook' === $this->service ) {
60
-			return $this->get_link_facebook( $post );
61
-		} elseif ( 'twitter' === $this->service ) {
62
-			return $this->get_link_twitter( $post );
63
-		} elseif ( 'pinterest' === $this->service ) {
64
-			return $this->get_link_pinterest( $post );
57
+		if ('email' === $this->service) {
58
+			return $this->get_link_email($post);
59
+		} elseif ('facebook' === $this->service) {
60
+			return $this->get_link_facebook($post);
61
+		} elseif ('twitter' === $this->service) {
62
+			return $this->get_link_twitter($post);
63
+		} elseif ('pinterest' === $this->service) {
64
+			return $this->get_link_pinterest($post);
65 65
 		}
66 66
 	}
67 67
 
68 68
 	/**
69 69
 	 * Get Facebook link to share.
70 70
 	 */
71
-	public function get_link_facebook( $post ) {
72
-		$permalink = get_permalink( $post->ID );
73
-		$permalink = apply_filters( 'lsx_sharing_facebook_url', $permalink, $post );
74
-		$title     = apply_filters( 'the_title', $post->post_title );
71
+	public function get_link_facebook($post) {
72
+		$permalink = get_permalink($post->ID);
73
+		$permalink = apply_filters('lsx_sharing_facebook_url', $permalink, $post);
74
+		$title     = apply_filters('the_title', $post->post_title);
75 75
 
76
-		return 'https://www.facebook.com/sharer.php?display=page&u=' . rawurlencode( $permalink ) . '&t=' . rawurlencode( $title );
76
+		return 'https://www.facebook.com/sharer.php?display=page&u=' . rawurlencode($permalink) . '&t=' . rawurlencode($title);
77 77
 	}
78 78
 
79 79
 	/**
80 80
 	 * Get Twitter link to share.
81 81
 	 */
82
-	public function get_link_twitter( $post ) {
83
-		$permalink = get_permalink( $post->ID );
84
-		$permalink = apply_filters( 'lsx_sharing_twitter_url', $permalink, $post );
85
-		$title     = apply_filters( 'the_title', $post->post_title );
82
+	public function get_link_twitter($post) {
83
+		$permalink = get_permalink($post->ID);
84
+		$permalink = apply_filters('lsx_sharing_twitter_url', $permalink, $post);
85
+		$title     = apply_filters('the_title', $post->post_title);
86 86
 
87
-		if ( function_exists( 'mb_stripos' ) ) {
87
+		if (function_exists('mb_stripos')) {
88 88
 			$strlen = 'mb_strlen';
89 89
 			$substr = 'mb_substr';
90 90
 		} else {
@@ -94,34 +94,34 @@  discard block
 block discarded – undo
94 94
 
95 95
 		$short_url_length = 24;
96 96
 
97
-		if ( ( $strlen( $title ) + $short_url_length ) > 140 ) {
98
-			$text = $substr( $title, 0, ( 140 - $short_url_length - 1 ) ) . "\xE2\x80\xA6";
97
+		if (($strlen($title) + $short_url_length) > 140) {
98
+			$text = $substr($title, 0, (140 - $short_url_length - 1)) . "\xE2\x80\xA6";
99 99
 		} else {
100 100
 			$text = $title;
101 101
 		}
102 102
 
103
-		return 'https://twitter.com/intent/tweet?text=' . rawurlencode( $text ) . '&url=' . rawurlencode( $permalink );
103
+		return 'https://twitter.com/intent/tweet?text=' . rawurlencode($text) . '&url=' . rawurlencode($permalink);
104 104
 	}
105 105
 
106 106
 	/**
107 107
 	 * Get Pinterest link to share.
108 108
 	 */
109
-	public function get_link_pinterest( $post ) {
110
-		$permalink = get_permalink( $post->ID );
111
-		$permalink = apply_filters( 'lsx_sharing_pinterest_url', $permalink, $post );
112
-		$title     = apply_filters( 'the_title', $post->post_title );
113
-
114
-		if ( ! has_post_thumbnail( $post ) ) {
115
-			if ( class_exists( 'lsx\legacy\Placeholders' ) ) {
116
-				$image = \lsx\legacy\Placeholders::placeholder_url( null, $post->post_type );
117
-			} elseif ( class_exists( 'LSX_Placeholders' ) ) {
118
-				$image = \LSX_Placeholders::placeholder_url( null, $post->post_type );
109
+	public function get_link_pinterest($post) {
110
+		$permalink = get_permalink($post->ID);
111
+		$permalink = apply_filters('lsx_sharing_pinterest_url', $permalink, $post);
112
+		$title     = apply_filters('the_title', $post->post_title);
113
+
114
+		if ( ! has_post_thumbnail($post)) {
115
+			if (class_exists('lsx\legacy\Placeholders')) {
116
+				$image = \lsx\legacy\Placeholders::placeholder_url(null, $post->post_type);
117
+			} elseif (class_exists('LSX_Placeholders')) {
118
+				$image = \LSX_Placeholders::placeholder_url(null, $post->post_type);
119 119
 			}
120 120
 		} else {
121
-			$image = get_the_post_thumbnail_url( $post->ID, 'large' );
121
+			$image = get_the_post_thumbnail_url($post->ID, 'large');
122 122
 		}
123 123
 
124
-		return 'https://www.pinterest.com/pin/create/button/?url=' . rawurlencode( $permalink ) . '&media=' . rawurlencode( $image ) . '&description=' . rawurlencode( $title );
124
+		return 'https://www.pinterest.com/pin/create/button/?url=' . rawurlencode($permalink) . '&media=' . rawurlencode($image) . '&description=' . rawurlencode($title);
125 125
 	}
126 126
 
127 127
 	/**
Please login to merge, or discard this patch.
classes/frontend/class-output.php 1 patch
Spacing   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -21,15 +21,15 @@  discard block
 block discarded – undo
21 21
 	 * Contructor
22 22
 	 */
23 23
 	public function __construct() {
24
-		add_action( 'wp_enqueue_scripts', array( $this, 'assets' ), 5 );
25
-		add_filter( 'wp_kses_allowed_html', array( $this, 'wp_kses_allowed_html' ), 10, 2 );
26
-		add_shortcode( 'lsx_sharing_buttons', array( $this, 'sharing_buttons_shortcode' ) );
24
+		add_action('wp_enqueue_scripts', array($this, 'assets'), 5);
25
+		add_filter('wp_kses_allowed_html', array($this, 'wp_kses_allowed_html'), 10, 2);
26
+		add_shortcode('lsx_sharing_buttons', array($this, 'sharing_buttons_shortcode'));
27 27
 		// Storefront (storefront_loop_post, storefront_single_post).
28
-		add_action( 'storefront_post_content_before', array( $this, 'sharing_buttons_template' ), 20 );
28
+		add_action('storefront_post_content_before', array($this, 'sharing_buttons_template'), 20);
29 29
 		// WooCommerce.
30
-		add_action( 'woocommerce_share', array( $this, 'sharing_buttons_template' ) );
30
+		add_action('woocommerce_share', array($this, 'sharing_buttons_template'));
31 31
 
32
-		add_action( 'lsx_entry_after', array( $this, 'output_sharing' ) );
32
+		add_action('lsx_entry_after', array($this, 'output_sharing'));
33 33
 	}
34 34
 
35 35
 	/**
@@ -41,7 +41,7 @@  discard block
 block discarded – undo
41 41
 	 */
42 42
 	public static function get_instance() {
43 43
 		// If the single instance hasn't been set, set it now.
44
-		if ( null == self::$instance ) {
44
+		if (null == self::$instance) {
45 45
 			self::$instance = new self();
46 46
 		}
47 47
 		return self::$instance;
@@ -51,14 +51,14 @@  discard block
 block discarded – undo
51 51
 	 * Enques the assets.
52 52
 	 */
53 53
 	public function assets() {
54
-		if ( defined( 'WP_DEBUG' ) && true === WP_DEBUG ) {
54
+		if (defined('WP_DEBUG') && true === WP_DEBUG) {
55 55
 			$min = '';
56 56
 		} else {
57 57
 			$min = '.min';
58 58
 		}
59 59
 		/* Remove assets completely if all sharing options are off */
60 60
 
61
-		if ( \lsx\sharing\includes\functions\is_disabled() ) {
61
+		if (\lsx\sharing\includes\functions\is_disabled()) {
62 62
 			return '';
63 63
 		}
64 64
 
@@ -66,67 +66,67 @@  discard block
 block discarded – undo
66 66
 		$post_type = get_post_type();
67 67
 
68 68
 		/* Only show the assets if the post type sharing option is on */
69
-		if ( ! \lsx\sharing\includes\functions\is_pt_disabled( $post_type ) ) {
69
+		if ( ! \lsx\sharing\includes\functions\is_pt_disabled($post_type)) {
70 70
 
71
-			wp_enqueue_script( 'lsx-sharing', LSX_SHARING_URL . 'assets/js/lsx-sharing' . $min . '.js', array( 'jquery' ), LSX_SHARING_VER, true );
71
+			wp_enqueue_script('lsx-sharing', LSX_SHARING_URL . 'assets/js/lsx-sharing' . $min . '.js', array('jquery'), LSX_SHARING_VER, true);
72 72
 
73
-			$params = apply_filters( 'lsx_sharing_js_params', array(
74
-				'ajax_url' => admin_url( 'admin-ajax.php' ),
73
+			$params = apply_filters('lsx_sharing_js_params', array(
74
+				'ajax_url' => admin_url('admin-ajax.php'),
75 75
 			));
76 76
 
77
-			wp_localize_script( 'lsx-sharing', 'lsx_sharing_params', $params );
77
+			wp_localize_script('lsx-sharing', 'lsx_sharing_params', $params);
78 78
 
79
-			wp_enqueue_style( 'lsx-sharing', LSX_SHARING_URL . 'assets/css/lsx-sharing.css', array(), LSX_SHARING_VER );
80
-			wp_style_add_data( 'lsx-sharing', 'rtl', 'replace' );
79
+			wp_enqueue_style('lsx-sharing', LSX_SHARING_URL . 'assets/css/lsx-sharing.css', array(), LSX_SHARING_VER);
80
+			wp_style_add_data('lsx-sharing', 'rtl', 'replace');
81 81
 		}
82 82
 	}
83 83
 
84 84
 	/**
85 85
 	 * Display/return sharing buttons.
86 86
 	 */
87
-	public function sharing_buttons( $buttons = array( 'facebook', 'twitter', 'pinterest' ), $echo = false, $post_id = false ) {
87
+	public function sharing_buttons($buttons = array('facebook', 'twitter', 'pinterest'), $echo = false, $post_id = false) {
88 88
 		$sharing_content = '';
89 89
 
90
-		if ( ( is_preview() || is_admin() ) && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) {
90
+		if ((is_preview() || is_admin()) && ! (defined('DOING_AJAX') && DOING_AJAX)) {
91 91
 			return '';
92 92
 		}
93 93
 
94 94
 		//Set our variables
95 95
 		global $post;
96 96
 		$share_post = $post;
97
-		if ( false !== $post_id ) {
98
-			$share_post = get_post( $post_id );
99
-			$post_type = get_post_type( $post_id );
97
+		if (false !== $post_id) {
98
+			$share_post = get_post($post_id);
99
+			$post_type = get_post_type($post_id);
100 100
 		} else {
101 101
 			$post_type = get_post_type();
102 102
 		}
103 103
 
104
-		if ( \lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled( $post_type ) ) {
104
+		if (\lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled($post_type)) {
105 105
 			return '';
106 106
 		}
107 107
 
108
-		if ( ( is_array( $buttons ) && count( $buttons ) > 0 ) ) {
108
+		if ((is_array($buttons) && count($buttons) > 0)) {
109 109
 			$sharing_content .= '<div class="lsx-sharing-content"><p>';
110 110
 
111
-			$sharing_text = \lsx\sharing\includes\functions\get_sharing_text( $post_type );
112
-			if ( '' !== $sharing_text ) {
111
+			$sharing_text = \lsx\sharing\includes\functions\get_sharing_text($post_type);
112
+			if ('' !== $sharing_text) {
113 113
 				$sharing_content .= '<span class="lsx-sharing-label">' . $sharing_text . '</span>';
114 114
 			}
115 115
 
116
-			foreach ( $buttons as $id => $button ) {
117
-				$button_obj = new \lsx\sharing\classes\frontend\Button( $button, $this->options, $post_type );
116
+			foreach ($buttons as $id => $button) {
117
+				$button_obj = new \lsx\sharing\classes\frontend\Button($button, $this->options, $post_type);
118 118
 
119
-				if ( ! empty( $button_obj ) ) {
120
-					$url = $button_obj->get_link( $share_post );
119
+				if ( ! empty($button_obj)) {
120
+					$url = $button_obj->get_link($share_post);
121 121
 
122
-					if ( ! empty( $url ) ) {
123
-						if ( 'email' === $button ) {
124
-							if ( ! isset( $this->options['display'] ) || empty( $this->options['display']['sharing_email_form_id'] ) ) {
122
+					if ( ! empty($url)) {
123
+						if ('email' === $button) {
124
+							if ( ! isset($this->options['display']) || empty($this->options['display']['sharing_email_form_id'])) {
125 125
 								continue;
126 126
 							}
127
-							$sharing_content .= '<span class="lsx-sharing-button lsx-sharing-button-' . esc_attr( $button ) . '"><a href="#lsx-sharing-email" data-toggle="modal" data-link="' . esc_url( $url ) . '"><span class="fa" aria-hidden="true"></span></a></span>';
127
+							$sharing_content .= '<span class="lsx-sharing-button lsx-sharing-button-' . esc_attr($button) . '"><a href="#lsx-sharing-email" data-toggle="modal" data-link="' . esc_url($url) . '"><span class="fa" aria-hidden="true"></span></a></span>';
128 128
 						} else {
129
-							$sharing_content .= '<span class="lsx-sharing-button lsx-sharing-button-' . esc_attr( $button ) . '"><a href="' . esc_url( $url ) . '" target="_blank" rel="noopener noreferrer"><span class="fa" aria-hidden="true"></span></a></span>';
129
+							$sharing_content .= '<span class="lsx-sharing-button lsx-sharing-button-' . esc_attr($button) . '"><a href="' . esc_url($url) . '" target="_blank" rel="noopener noreferrer"><span class="fa" aria-hidden="true"></span></a></span>';
130 130
 						}
131 131
 					}
132 132
 				}
@@ -134,8 +134,8 @@  discard block
 block discarded – undo
134 134
 			$sharing_content .= '</p></div>';
135 135
 		}
136 136
 
137
-		if ( $echo ) {
138
-			echo wp_kses_post( $sharing_content );
137
+		if ($echo) {
138
+			echo wp_kses_post($sharing_content);
139 139
 		} else {
140 140
 			return $sharing_content;
141 141
 		}
@@ -144,20 +144,20 @@  discard block
 block discarded – undo
144 144
 	/**
145 145
 	 * Sharing buttons shortcode.
146 146
 	 */
147
-	public function sharing_buttons_shortcode( $atts ) {
148
-		$atts = shortcode_atts( array(
147
+	public function sharing_buttons_shortcode($atts) {
148
+		$atts = shortcode_atts(array(
149 149
 			'buttons' => '',
150
-		), $atts, 'lsx_sharing_buttons' );
150
+		), $atts, 'lsx_sharing_buttons');
151 151
 
152
-		if ( empty( $atts['buttons'] ) ) {
152
+		if (empty($atts['buttons'])) {
153 153
 			return '';
154 154
 		}
155 155
 
156
-		$no_whitespaces = preg_replace( '/\s*,\s*/', ',', filter_var( $atts['buttons'], FILTER_SANITIZE_STRING ) );
157
-		$buttons        = explode( ',', $no_whitespaces );
156
+		$no_whitespaces = preg_replace('/\s*,\s*/', ',', filter_var($atts['buttons'], FILTER_SANITIZE_STRING));
157
+		$buttons        = explode(',', $no_whitespaces);
158 158
 
159
-		if ( is_array( $buttons ) && count( $buttons ) > 0 ) {
160
-			return $this->sharing_buttons( $buttons );
159
+		if (is_array($buttons) && count($buttons) > 0) {
160
+			return $this->sharing_buttons($buttons);
161 161
 		}
162 162
 	}
163 163
 
@@ -165,13 +165,13 @@  discard block
 block discarded – undo
165 165
 	 * Display buttons (template hook).
166 166
 	 */
167 167
 	public function sharing_buttons_template() {
168
-		echo wp_kses_post( $this->sharing_buttons() );
168
+		echo wp_kses_post($this->sharing_buttons());
169 169
 	}
170 170
 
171 171
 	/**
172 172
 	 * Allow data params for Bootstrap modal.
173 173
 	 */
174
-	public function wp_kses_allowed_html( $allowedtags, $context ) {
174
+	public function wp_kses_allowed_html($allowedtags, $context) {
175 175
 		$allowedtags['a']['data-toggle'] = true;
176 176
 		$allowedtags['a']['data-link']   = true;
177 177
 		return $allowedtags;
@@ -183,7 +183,7 @@  discard block
 block discarded – undo
183 183
 	 * @return void
184 184
 	 */
185 185
 	public function output_sharing() {
186
-		if ( is_main_query() && is_single() && ! is_singular( array( 'post', 'page', 'product' ) ) ) {
186
+		if (is_main_query() && is_single() && ! is_singular(array('post', 'page', 'product'))) {
187 187
 			?>
188 188
 			<footer class="footer-meta clearfix">
189 189
 				<div class="post-tags-wrapper">
Please login to merge, or discard this patch.
classes/admin/class-settings.php 1 patch
Spacing   +66 added lines, -66 removed lines patch added patch discarded remove patch
@@ -21,10 +21,10 @@  discard block
 block discarded – undo
21 21
 	 * Contructor
22 22
 	 */
23 23
 	public function __construct() {
24
-		add_action( 'cmb2_admin_init', array( $this, 'register_settings_page' ) );
25
-		add_action( 'lsx_sharing_settings_page', array( $this, 'configure_general_fields' ), 15, 1 );
26
-		add_action( 'lsx_sharing_settings_page', array( $this, 'configure_archive_fields' ), 15, 1 );
27
-		add_action( 'admin_enqueue_scripts', array( $this, 'assets' ) );
24
+		add_action('cmb2_admin_init', array($this, 'register_settings_page'));
25
+		add_action('lsx_sharing_settings_page', array($this, 'configure_general_fields'), 15, 1);
26
+		add_action('lsx_sharing_settings_page', array($this, 'configure_archive_fields'), 15, 1);
27
+		add_action('admin_enqueue_scripts', array($this, 'assets'));
28 28
 	}
29 29
 
30 30
 	/**
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 	 */
37 37
 	public static function get_instance() {
38 38
 		// If the single instance hasn't been set, set it now.
39
-		if ( null == self::$instance ) {
39
+		if (null == self::$instance) {
40 40
 			self::$instance = new self();
41 41
 		}
42 42
 		return self::$instance;
@@ -50,23 +50,23 @@  discard block
 block discarded – undo
50 50
 	public function register_settings_page() {
51 51
 		$args = array(
52 52
 			'id'           => 'lsx_sharing_settings',
53
-			'title'        => '<h1>' . esc_html__( 'LSX Sharing Settings', 'lsx-search' ) . ' <span class="version">' . LSX_SHARING_VER . '</span></h1>',
54
-			'menu_title'   => esc_html__( 'LSX Sharing', 'search' ), // Falls back to 'title' (above).
55
-			'object_types' => array( 'options-page' ),
53
+			'title'        => '<h1>' . esc_html__('LSX Sharing Settings', 'lsx-search') . ' <span class="version">' . LSX_SHARING_VER . '</span></h1>',
54
+			'menu_title'   => esc_html__('LSX Sharing', 'search'), // Falls back to 'title' (above).
55
+			'object_types' => array('options-page'),
56 56
 			'option_key'   => 'lsx-sharing-settings', // The option key and admin menu page slug.
57 57
 			'parent_slug'  => 'options-general.php',
58 58
 			'capability'   => 'manage_options', // Cap required to view options-page.
59 59
 		);
60
-		$cmb  = new_cmb2_box( $args );
61
-		do_action( 'lsx_sharing_settings_page', $cmb );
60
+		$cmb = new_cmb2_box($args);
61
+		do_action('lsx_sharing_settings_page', $cmb);
62 62
 	}
63 63
 
64 64
 	/**
65 65
 	 * Enqueue JS and CSS.
66 66
 	 */
67
-	public function assets( $hook ) {
68
-		wp_enqueue_script( 'lsx-sharing-admin', LSX_SHARING_URL . 'assets/js/src/lsx-sharing-admin.js', array( 'jquery' ), LSX_SHARING_VER, true );
69
-		wp_enqueue_style( 'lsx-sharing-admin', LSX_SHARING_URL . 'assets/css/lsx-sharing-admin.css', array(), LSX_SHARING_VER );
67
+	public function assets($hook) {
68
+		wp_enqueue_script('lsx-sharing-admin', LSX_SHARING_URL . 'assets/js/src/lsx-sharing-admin.js', array('jquery'), LSX_SHARING_VER, true);
69
+		wp_enqueue_style('lsx-sharing-admin', LSX_SHARING_URL . 'assets/css/lsx-sharing-admin.css', array(), LSX_SHARING_VER);
70 70
 	}
71 71
 
72 72
 	/**
@@ -74,12 +74,12 @@  discard block
 block discarded – undo
74 74
 	 *
75 75
 	 * @return  void
76 76
 	 */
77
-	public function configure_general_fields( $cmb ) {
77
+	public function configure_general_fields($cmb) {
78 78
 		$global_args = array(
79
-			'title' => __( 'Global', 'lsx-search' ),
80
-			'desc'  => esc_html__( 'Control the sharing WordPress post types.', 'lsx-search' ),
79
+			'title' => __('Global', 'lsx-search'),
80
+			'desc'  => esc_html__('Control the sharing WordPress post types.', 'lsx-search'),
81 81
 		);
82
-		$this->get_fields( $cmb, 'global', $global_args );
82
+		$this->get_fields($cmb, 'global', $global_args);
83 83
 	}
84 84
 
85 85
 	/**
@@ -89,54 +89,54 @@  discard block
 block discarded – undo
89 89
 	 * @param string $position either top of bottom.
90 90
 	 * @return void
91 91
 	 */
92
-	public function configure_archive_fields( $cmb ) {
92
+	public function configure_archive_fields($cmb) {
93 93
 		$archives       = array();
94 94
 		$post_type_args = array(
95 95
 			'public' => true,
96 96
 		);
97
-		$post_types     = get_post_types( $post_type_args );
98
-		if ( ! empty( $post_types ) ) {
99
-			foreach ( $post_types as $post_type_key => $post_type_value ) {
100
-				switch ( $post_type_key ) {
97
+		$post_types     = get_post_types($post_type_args);
98
+		if ( ! empty($post_types)) {
99
+			foreach ($post_types as $post_type_key => $post_type_value) {
100
+				switch ($post_type_key) {
101 101
 					case 'post':
102 102
 						$page_url      = home_url();
103
-						$page_title    = __( 'Home', 'lsx-search' );
104
-						$show_on_front = get_option( 'show_on_front' );
105
-						if ( 'page' === $show_on_front ) {
106
-							$page_for_posts = get_option( 'page_for_posts' );
107
-							if ( '' !== $page_for_posts ) {
108
-								$page_title   = get_the_title( $page_for_posts );
109
-								$page_url     = get_permalink( $page_for_posts );
103
+						$page_title    = __('Home', 'lsx-search');
104
+						$show_on_front = get_option('show_on_front');
105
+						if ('page' === $show_on_front) {
106
+							$page_for_posts = get_option('page_for_posts');
107
+							if ('' !== $page_for_posts) {
108
+								$page_title   = get_the_title($page_for_posts);
109
+								$page_url     = get_permalink($page_for_posts);
110 110
 							}
111 111
 						}
112 112
 						$description = sprintf(
113 113
 							/* translators: %s: The subscription info */
114
-							__( 'Control the filters which show on your <a target="_blank" href="%1$s">%2$s</a> posts.', 'lsx-search' ),
114
+							__('Control the filters which show on your <a target="_blank" href="%1$s">%2$s</a> posts.', 'lsx-search'),
115 115
 							$page_url,
116 116
 							$page_title
117 117
 						);
118
-						$archives[ $post_type_key ] = array(
119
-							'title' => __( 'Blog', 'lsx-search' ),
118
+						$archives[$post_type_key] = array(
119
+							'title' => __('Blog', 'lsx-search'),
120 120
 							'desc'  => $description,
121 121
 						);
122 122
 						break;
123 123
 
124 124
 					case 'product':
125 125
 						$page_url = home_url();
126
-						$page_title    = __( 'Shop', 'lsx-search' );
127
-						if ( function_exists( 'wc_get_page_id' ) ) {
128
-							$shop_page  = wc_get_page_id( 'shop' );
129
-							$page_url   = get_permalink( $shop_page );
130
-							$page_title = get_the_title( $shop_page );
126
+						$page_title = __('Shop', 'lsx-search');
127
+						if (function_exists('wc_get_page_id')) {
128
+							$shop_page  = wc_get_page_id('shop');
129
+							$page_url   = get_permalink($shop_page);
130
+							$page_title = get_the_title($shop_page);
131 131
 						}
132 132
 						$description = sprintf(
133 133
 							/* translators: %s: The subscription info */
134
-							__( 'Control the filters which show on your <a target="_blank" href="%1$s">%2$s</a> product pages.', 'lsx-search' ),
134
+							__('Control the filters which show on your <a target="_blank" href="%1$s">%2$s</a> product pages.', 'lsx-search'),
135 135
 							$page_url,
136 136
 							$page_title
137 137
 						);
138
-						$archives[ $post_type_key ] = array(
139
-							'title' => __( 'Shop', 'lsx-search' ),
138
+						$archives[$post_type_key] = array(
139
+							'title' => __('Shop', 'lsx-search'),
140 140
 							'desc'  => $description,
141 141
 						);
142 142
 						break;
@@ -146,17 +146,17 @@  discard block
 block discarded – undo
146 146
 						break;
147 147
 
148 148
 					default:
149
-						$temp_post_type = get_post_type_object( $post_type_key );
150
-						if ( ! is_wp_error( $temp_post_type ) ) {
151
-							$page_url    = get_post_type_archive_link( $temp_post_type->name );
149
+						$temp_post_type = get_post_type_object($post_type_key);
150
+						if ( ! is_wp_error($temp_post_type)) {
151
+							$page_url    = get_post_type_archive_link($temp_post_type->name);
152 152
 							$description = sprintf(
153 153
 								/* translators: %s: The subscription info */
154
-								__( 'Control the filters which show on your <a target="_blank" href="%1$s">%2$s</a> singles.', 'lsx-search' ),
154
+								__('Control the filters which show on your <a target="_blank" href="%1$s">%2$s</a> singles.', 'lsx-search'),
155 155
 								$page_url,
156 156
 								$temp_post_type->label
157 157
 							);
158 158
 
159
-							$archives[ $post_type_key ] = array(
159
+							$archives[$post_type_key] = array(
160 160
 								'title' => $temp_post_type->label,
161 161
 								'desc'  => $description,
162 162
 							);
@@ -165,9 +165,9 @@  discard block
 block discarded – undo
165 165
 				}
166 166
 			}
167 167
 		}
168
-		if ( ! empty( $archives ) ) {
169
-			foreach ( $archives as $archive_key => $archive_args ) {
170
-				$this->get_fields( $cmb, $archive_key, $archive_args );
168
+		if ( ! empty($archives)) {
169
+			foreach ($archives as $archive_key => $archive_args) {
170
+				$this->get_fields($cmb, $archive_key, $archive_args);
171 171
 			}
172 172
 		}
173 173
 	}
@@ -180,7 +180,7 @@  discard block
 block discarded – undo
180 180
 	 * @param array $args
181 181
 	 * @return void
182 182
 	 */
183
-	public function get_fields( $cmb, $section, $args ) {
183
+	public function get_fields($cmb, $section, $args) {
184 184
 		$cmb->add_field(
185 185
 			array(
186 186
 				'id'          => 'settings_' . $section . '_sharing',
@@ -190,21 +190,21 @@  discard block
 block discarded – undo
190 190
 				'description' => $args['desc'],
191 191
 			)
192 192
 		);
193
-		if ( 'global' === $section ) {
193
+		if ('global' === $section) {
194 194
 			$cmb->add_field(
195 195
 				array(
196
-					'name'        => esc_html__( 'Disable all', 'lsx-sharing' ),
196
+					'name'        => esc_html__('Disable all', 'lsx-sharing'),
197 197
 					'id'          => $section . '_disable_all',
198
-					'description' => esc_html__( 'Disable all share buttons on the site', 'lsx-sharing' ),
198
+					'description' => esc_html__('Disable all share buttons on the site', 'lsx-sharing'),
199 199
 					'type'        => 'checkbox',
200 200
 				)
201 201
 			);
202 202
 		} else {
203 203
 			$cmb->add_field(
204 204
 				array(
205
-					'name'        => esc_html__( 'Disable', 'lsx-sharing' ),
205
+					'name'        => esc_html__('Disable', 'lsx-sharing'),
206 206
 					'id'          => $section . '_disable_pt',
207
-					'description' => esc_html__( 'Disable the share buttons on this post type', 'lsx-sharing' ),
207
+					'description' => esc_html__('Disable the share buttons on this post type', 'lsx-sharing'),
208 208
 					'type'        => 'checkbox',
209 209
 				)
210 210
 			);
@@ -212,44 +212,44 @@  discard block
 block discarded – undo
212 212
 
213 213
 		$cmb->add_field(
214 214
 			array(
215
-				'name'        => esc_html__( 'Label text', 'lsx-sharing' ),
215
+				'name'        => esc_html__('Label text', 'lsx-sharing'),
216 216
 				'id'          => $section . '_label_text',
217
-				'description' => esc_html__( 'A default label for the sharing.', 'lsx-sharing' ),
217
+				'description' => esc_html__('A default label for the sharing.', 'lsx-sharing'),
218 218
 				'type'        => 'text',
219 219
 			)
220 220
 		);
221
-		if ( 'global' === $section || ( 'global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled( 'global', 'facebook' ) ) ) {
221
+		if ('global' === $section || ('global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'facebook'))) {
222 222
 			$cmb->add_field(
223 223
 				array(
224
-					'name'        => esc_html__( 'Disable Facebook', 'lsx-sharing' ),
224
+					'name'        => esc_html__('Disable Facebook', 'lsx-sharing'),
225 225
 					'id'          => $section . '_disable_facebook',
226
-					'description' => esc_html__( 'Disable Facebook share button.', 'lsx-sharing' ),
226
+					'description' => esc_html__('Disable Facebook share button.', 'lsx-sharing'),
227 227
 					'type'        => 'checkbox',
228 228
 				)
229 229
 			);
230 230
 		}
231
-		if ( 'global' === $section || ( 'global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled( 'global', 'twitter' ) ) ) {
231
+		if ('global' === $section || ('global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'twitter'))) {
232 232
 			$cmb->add_field(
233 233
 				array(
234
-					'name'        => esc_html__( 'Disable Twitter', 'lsx-sharing' ),
234
+					'name'        => esc_html__('Disable Twitter', 'lsx-sharing'),
235 235
 					'id'          => $section . '_disable_twitter',
236
-					'description' => esc_html__( 'Disable Twitter share button.', 'lsx-sharing' ),
236
+					'description' => esc_html__('Disable Twitter share button.', 'lsx-sharing'),
237 237
 					'type'        => 'checkbox',
238 238
 				)
239 239
 			);
240 240
 		}
241
-		if ( 'global' === $section || ( 'global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled( 'global', 'pinterest' ) ) ) {
241
+		if ('global' === $section || ('global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'pinterest'))) {
242 242
 			$cmb->add_field(
243 243
 				array(
244
-					'name'        => esc_html__( 'Disable Pinterest', 'lsx-sharing' ),
244
+					'name'        => esc_html__('Disable Pinterest', 'lsx-sharing'),
245 245
 					'id'          => $section . '_disable_pinterest',
246
-					'description' => esc_html__( 'Disable Pinterest button.', 'lsx-sharing' ),
246
+					'description' => esc_html__('Disable Pinterest button.', 'lsx-sharing'),
247 247
 					'type'        => 'checkbox',
248 248
 				)
249 249
 			);
250 250
 		}
251 251
 
252
-		do_action( 'lsx_sharing_settings_section', $cmb, $section );
252
+		do_action('lsx_sharing_settings_section', $cmb, $section);
253 253
 		$cmb->add_field(
254 254
 			array(
255 255
 				'id'   => $section . '_title_closing',
Please login to merge, or discard this patch.