@@ -50,7 +50,7 @@ discard block |
||
50 | 50 | * Constructor. |
51 | 51 | */ |
52 | 52 | public function __construct() { |
53 | - add_action('init', array( $this, 'set_options' ), 50); |
|
53 | + add_action('init', array($this, 'set_options'), 50); |
|
54 | 54 | $this->load_vendors(); |
55 | 55 | $this->load_includes(); |
56 | 56 | $this->load_classes(); |
@@ -65,7 +65,7 @@ discard block |
||
65 | 65 | */ |
66 | 66 | public static function get_instance() { |
67 | 67 | // If the single instance hasn't been set, set it now. |
68 | - if ( null === self::$instance ) { |
|
68 | + if (null === self::$instance) { |
|
69 | 69 | self::$instance = new self(); |
70 | 70 | } |
71 | 71 | return self::$instance; |
@@ -76,7 +76,7 @@ discard block |
||
76 | 76 | */ |
77 | 77 | private function load_vendors() { |
78 | 78 | // Configure custom fields. |
79 | - if ( ! class_exists('CMB2') ) { |
|
79 | + if ( ! class_exists('CMB2')) { |
|
80 | 80 | include_once LSX_SHARING_PATH . 'vendor/CMB2/init.php'; |
81 | 81 | } |
82 | 82 | } |
@@ -106,19 +106,19 @@ discard block |
||
106 | 106 | * Set options. |
107 | 107 | */ |
108 | 108 | public function set_options() { |
109 | - if ( function_exists('tour_operator') ) { |
|
109 | + if (function_exists('tour_operator')) { |
|
110 | 110 | $this->options = get_option('_lsx-to_settings', false); |
111 | 111 | } else { |
112 | 112 | $this->options = get_option('_lsx_settings', false); |
113 | 113 | |
114 | - if ( false === $this->options ) { |
|
114 | + if (false === $this->options) { |
|
115 | 115 | $this->options = get_option('_lsx_lsx-settings', false); |
116 | 116 | } |
117 | 117 | } |
118 | 118 | |
119 | 119 | $new_options = get_option('lsx-sharing-settings'); |
120 | - if ( ! empty($new_options) ) { |
|
121 | - if ( '' !== $new_options && false !== $new_options ) { |
|
120 | + if ( ! empty($new_options)) { |
|
121 | + if ('' !== $new_options && false !== $new_options) { |
|
122 | 122 | $this->is_new_options = true; |
123 | 123 | $this->options = $new_options; |
124 | 124 | } |
@@ -36,12 +36,12 @@ discard block |
||
36 | 36 | /** |
37 | 37 | * Constructor. |
38 | 38 | */ |
39 | - public function __construct( $service, $options, $prefix = 'sharing' ) { |
|
39 | + public function __construct($service, $options, $prefix = 'sharing') { |
|
40 | 40 | $this->options = $options; |
41 | - if ( ! in_array($service, $this->services, true) ) { |
|
41 | + if ( ! in_array($service, $this->services, true)) { |
|
42 | 42 | return; |
43 | 43 | } |
44 | - if ( \lsx\sharing\includes\functions\is_button_disabled('global', $service) || \lsx\sharing\includes\functions\is_button_disabled($prefix, $service) ) { |
|
44 | + if (\lsx\sharing\includes\functions\is_button_disabled('global', $service) || \lsx\sharing\includes\functions\is_button_disabled($prefix, $service)) { |
|
45 | 45 | return ''; |
46 | 46 | } |
47 | 47 | $this->service = $service; |
@@ -50,18 +50,18 @@ discard block |
||
50 | 50 | /** |
51 | 51 | * Get service link to share. |
52 | 52 | */ |
53 | - public function get_link( $post ) { |
|
54 | - if ( empty($post) ) { |
|
53 | + public function get_link($post) { |
|
54 | + if (empty($post)) { |
|
55 | 55 | return ''; |
56 | 56 | } |
57 | 57 | |
58 | - if ( 'email' === $this->service ) { |
|
58 | + if ('email' === $this->service) { |
|
59 | 59 | return $this->get_link_email($post); |
60 | - } elseif ( 'facebook' === $this->service ) { |
|
60 | + } elseif ('facebook' === $this->service) { |
|
61 | 61 | return $this->get_link_facebook($post); |
62 | - } elseif ( 'twitter' === $this->service ) { |
|
62 | + } elseif ('twitter' === $this->service) { |
|
63 | 63 | return $this->get_link_twitter($post); |
64 | - } elseif ( 'pinterest' === $this->service ) { |
|
64 | + } elseif ('pinterest' === $this->service) { |
|
65 | 65 | return $this->get_link_pinterest($post); |
66 | 66 | } |
67 | 67 | } |
@@ -69,7 +69,7 @@ discard block |
||
69 | 69 | /** |
70 | 70 | * Get Facebook link to share. |
71 | 71 | */ |
72 | - public function get_link_facebook( $post ) { |
|
72 | + public function get_link_facebook($post) { |
|
73 | 73 | $permalink = get_permalink($post->ID); |
74 | 74 | $permalink = apply_filters('lsx_sharing_facebook_url', $permalink, $post); |
75 | 75 | $title = apply_filters('the_title', $post->post_title); |
@@ -80,12 +80,12 @@ discard block |
||
80 | 80 | /** |
81 | 81 | * Get Twitter link to share. |
82 | 82 | */ |
83 | - public function get_link_twitter( $post ) { |
|
83 | + public function get_link_twitter($post) { |
|
84 | 84 | $permalink = get_permalink($post->ID); |
85 | 85 | $permalink = apply_filters('lsx_sharing_twitter_url', $permalink, $post); |
86 | 86 | $title = apply_filters('the_title', $post->post_title); |
87 | 87 | |
88 | - if ( function_exists('mb_stripos') ) { |
|
88 | + if (function_exists('mb_stripos')) { |
|
89 | 89 | $strlen = 'mb_strlen'; |
90 | 90 | $substr = 'mb_substr'; |
91 | 91 | } else { |
@@ -95,8 +95,8 @@ discard block |
||
95 | 95 | |
96 | 96 | $short_url_length = 24; |
97 | 97 | |
98 | - if ( ( $strlen($title) + $short_url_length ) > 140 ) { |
|
99 | - $text = $substr($title, 0, ( 140 - $short_url_length - 1 )) . "\xE2\x80\xA6"; |
|
98 | + if (($strlen($title) + $short_url_length) > 140) { |
|
99 | + $text = $substr($title, 0, (140 - $short_url_length - 1)) . "\xE2\x80\xA6"; |
|
100 | 100 | } else { |
101 | 101 | $text = $title; |
102 | 102 | } |
@@ -107,15 +107,15 @@ discard block |
||
107 | 107 | /** |
108 | 108 | * Get Pinterest link to share. |
109 | 109 | */ |
110 | - public function get_link_pinterest( $post ) { |
|
110 | + public function get_link_pinterest($post) { |
|
111 | 111 | $permalink = get_permalink($post->ID); |
112 | 112 | $permalink = apply_filters('lsx_sharing_pinterest_url', $permalink, $post); |
113 | 113 | $title = apply_filters('the_title', $post->post_title); |
114 | 114 | |
115 | - if ( ! has_post_thumbnail($post) ) { |
|
116 | - if ( class_exists('lsx\legacy\Placeholders') ) { |
|
115 | + if ( ! has_post_thumbnail($post)) { |
|
116 | + if (class_exists('lsx\legacy\Placeholders')) { |
|
117 | 117 | $image = \lsx\legacy\Placeholders::placeholder_url(null, $post->post_type); |
118 | - } elseif ( class_exists('LSX_Placeholders') ) { |
|
118 | + } elseif (class_exists('LSX_Placeholders')) { |
|
119 | 119 | $image = \LSX_Placeholders::placeholder_url(null, $post->post_type); |
120 | 120 | } |
121 | 121 | } else { |
@@ -22,22 +22,22 @@ discard block |
||
22 | 22 | * Contructor |
23 | 23 | */ |
24 | 24 | public function __construct() { |
25 | - add_action('wp_enqueue_scripts', array( $this, 'assets' ), 5); |
|
26 | - add_filter('wp_kses_allowed_html', array( $this, 'wp_kses_allowed_html' ), 10, 2); |
|
27 | - add_shortcode('lsx_sharing_buttons', array( $this, 'sharing_buttons_shortcode' )); |
|
25 | + add_action('wp_enqueue_scripts', array($this, 'assets'), 5); |
|
26 | + add_filter('wp_kses_allowed_html', array($this, 'wp_kses_allowed_html'), 10, 2); |
|
27 | + add_shortcode('lsx_sharing_buttons', array($this, 'sharing_buttons_shortcode')); |
|
28 | 28 | // Storefront (storefront_loop_post, storefront_single_post). |
29 | - add_action('storefront_post_content_before', array( $this, 'sharing_buttons_template' ), 20); |
|
29 | + add_action('storefront_post_content_before', array($this, 'sharing_buttons_template'), 20); |
|
30 | 30 | // WooCommerce. |
31 | - add_action('woocommerce_share', array( $this, 'sharing_buttons_template' )); |
|
31 | + add_action('woocommerce_share', array($this, 'sharing_buttons_template')); |
|
32 | 32 | |
33 | 33 | // General Post Types. |
34 | - add_action('lsx_entry_after', array( $this, 'output_sharing' )); |
|
34 | + add_action('lsx_entry_after', array($this, 'output_sharing')); |
|
35 | 35 | |
36 | 36 | // Tribe Events. |
37 | - add_filter('tribe_events_ical_single_event_links', array( $this, 'output_event_sharing' ), 10, 1); |
|
37 | + add_filter('tribe_events_ical_single_event_links', array($this, 'output_event_sharing'), 10, 1); |
|
38 | 38 | |
39 | 39 | // Sensei Integration. |
40 | - add_action('sensei_pagination', array( $this, 'output_sharing' ), 20); |
|
40 | + add_action('sensei_pagination', array($this, 'output_sharing'), 20); |
|
41 | 41 | } |
42 | 42 | |
43 | 43 | /** |
@@ -49,7 +49,7 @@ discard block |
||
49 | 49 | */ |
50 | 50 | public static function get_instance() { |
51 | 51 | // If the single instance hasn't been set, set it now. |
52 | - if ( null == self::$instance ) { |
|
52 | + if (null == self::$instance) { |
|
53 | 53 | self::$instance = new self(); |
54 | 54 | } |
55 | 55 | return self::$instance; |
@@ -59,14 +59,14 @@ discard block |
||
59 | 59 | * Enques the assets. |
60 | 60 | */ |
61 | 61 | public function assets() { |
62 | - if ( defined('WP_DEBUG') && true === WP_DEBUG ) { |
|
62 | + if (defined('WP_DEBUG') && true === WP_DEBUG) { |
|
63 | 63 | $min = ''; |
64 | 64 | } else { |
65 | 65 | $min = '.min'; |
66 | 66 | } |
67 | 67 | /* Remove assets completely if all sharing options are off */ |
68 | 68 | |
69 | - if ( \lsx\sharing\includes\functions\is_disabled() ) { |
|
69 | + if (\lsx\sharing\includes\functions\is_disabled()) { |
|
70 | 70 | return ''; |
71 | 71 | } |
72 | 72 | |
@@ -74,9 +74,9 @@ discard block |
||
74 | 74 | $post_type = get_post_type(); |
75 | 75 | |
76 | 76 | /* Only show the assets if the post type sharing option is on */ |
77 | - if ( ! \lsx\sharing\includes\functions\is_pt_disabled($post_type) ) { |
|
77 | + if ( ! \lsx\sharing\includes\functions\is_pt_disabled($post_type)) { |
|
78 | 78 | |
79 | - wp_enqueue_script('lsx-sharing', LSX_SHARING_URL . 'assets/js/lsx-sharing' . $min . '.js', array( 'jquery' ), LSX_SHARING_VER, true); |
|
79 | + wp_enqueue_script('lsx-sharing', LSX_SHARING_URL . 'assets/js/lsx-sharing' . $min . '.js', array('jquery'), LSX_SHARING_VER, true); |
|
80 | 80 | |
81 | 81 | $params = apply_filters( |
82 | 82 | 'lsx_sharing_js_params', array( |
@@ -94,48 +94,48 @@ discard block |
||
94 | 94 | /** |
95 | 95 | * Display/return sharing buttons. |
96 | 96 | */ |
97 | - public function sharing_buttons( $buttons = array( 'facebook', 'twitter', 'pinterest' ), $echo = false, $post_id = false ) { |
|
97 | + public function sharing_buttons($buttons = array('facebook', 'twitter', 'pinterest'), $echo = false, $post_id = false) { |
|
98 | 98 | $sharing_content = ''; |
99 | 99 | |
100 | - if ( ( is_preview() || is_admin() ) && ! ( defined('DOING_AJAX') && DOING_AJAX ) ) { |
|
100 | + if ((is_preview() || is_admin()) && ! (defined('DOING_AJAX') && DOING_AJAX)) { |
|
101 | 101 | return ''; |
102 | 102 | } |
103 | 103 | |
104 | - if ( empty($this->options) ) { |
|
104 | + if (empty($this->options)) { |
|
105 | 105 | $this->options = array(); |
106 | 106 | } |
107 | 107 | |
108 | 108 | //Set our variables |
109 | 109 | global $post; |
110 | 110 | $share_post = $post; |
111 | - if ( false !== $post_id ) { |
|
111 | + if (false !== $post_id) { |
|
112 | 112 | $share_post = get_post($post_id); |
113 | 113 | $post_type = get_post_type($post_id); |
114 | 114 | } else { |
115 | 115 | $post_type = get_post_type(); |
116 | 116 | } |
117 | 117 | |
118 | - if ( \lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled($post_type) ) { |
|
118 | + if (\lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled($post_type)) { |
|
119 | 119 | return ''; |
120 | 120 | } |
121 | 121 | |
122 | - if ( ( is_array($buttons) && count($buttons) > 0 ) ) { |
|
122 | + if ((is_array($buttons) && count($buttons) > 0)) { |
|
123 | 123 | $sharing_content .= '<div class="lsx-sharing-content"><p>'; |
124 | 124 | |
125 | 125 | $sharing_text = \lsx\sharing\includes\functions\get_sharing_text($post_type); |
126 | - if ( '' !== $sharing_text ) { |
|
126 | + if ('' !== $sharing_text) { |
|
127 | 127 | $sharing_content .= '<span class="lsx-sharing-label">' . $sharing_text . '</span>'; |
128 | 128 | } |
129 | 129 | |
130 | - foreach ( $buttons as $id => $button ) { |
|
130 | + foreach ($buttons as $id => $button) { |
|
131 | 131 | $button_obj = new \lsx\sharing\classes\frontend\Button($button, $this->options, $post_type); |
132 | 132 | |
133 | - if ( ! empty($button_obj) ) { |
|
133 | + if ( ! empty($button_obj)) { |
|
134 | 134 | $url = $button_obj->get_link($share_post); |
135 | 135 | |
136 | - if ( ! empty($url) ) { |
|
137 | - if ( 'email' === $button ) { |
|
138 | - if ( ! isset($this->options['display']) || empty($this->options['display']['sharing_email_form_id']) ) { |
|
136 | + if ( ! empty($url)) { |
|
137 | + if ('email' === $button) { |
|
138 | + if ( ! isset($this->options['display']) || empty($this->options['display']['sharing_email_form_id'])) { |
|
139 | 139 | continue; |
140 | 140 | } |
141 | 141 | $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>'; |
@@ -148,7 +148,7 @@ discard block |
||
148 | 148 | $sharing_content .= '</p></div>'; |
149 | 149 | } |
150 | 150 | |
151 | - if ( $echo ) { |
|
151 | + if ($echo) { |
|
152 | 152 | echo wp_kses_post($sharing_content); |
153 | 153 | } else { |
154 | 154 | return $sharing_content; |
@@ -158,21 +158,21 @@ discard block |
||
158 | 158 | /** |
159 | 159 | * Sharing buttons shortcode. |
160 | 160 | */ |
161 | - public function sharing_buttons_shortcode( $atts ) { |
|
161 | + public function sharing_buttons_shortcode($atts) { |
|
162 | 162 | $atts = shortcode_atts( |
163 | 163 | array( |
164 | 164 | 'buttons' => '', |
165 | 165 | ), $atts, 'lsx_sharing_buttons' |
166 | 166 | ); |
167 | 167 | |
168 | - if ( empty($atts['buttons']) ) { |
|
168 | + if (empty($atts['buttons'])) { |
|
169 | 169 | return ''; |
170 | 170 | } |
171 | 171 | |
172 | 172 | $no_whitespaces = preg_replace('/\s*,\s*/', ',', filter_var($atts['buttons'], FILTER_SANITIZE_STRING)); |
173 | 173 | $buttons = explode(',', $no_whitespaces); |
174 | 174 | |
175 | - if ( is_array($buttons) && count($buttons) > 0 ) { |
|
175 | + if (is_array($buttons) && count($buttons) > 0) { |
|
176 | 176 | return $this->sharing_buttons($buttons); |
177 | 177 | } |
178 | 178 | } |
@@ -187,9 +187,9 @@ discard block |
||
187 | 187 | /** |
188 | 188 | * Allow data params for Bootstrap modal. |
189 | 189 | */ |
190 | - public function wp_kses_allowed_html( $allowedtags, $context ) { |
|
190 | + public function wp_kses_allowed_html($allowedtags, $context) { |
|
191 | 191 | $allowedtags['a']['data-toggle'] = true; |
192 | - $allowedtags['a']['data-link'] = true; |
|
192 | + $allowedtags['a']['data-link'] = true; |
|
193 | 193 | return $allowedtags; |
194 | 194 | } |
195 | 195 | |
@@ -199,9 +199,9 @@ discard block |
||
199 | 199 | * @return void |
200 | 200 | */ |
201 | 201 | public function output_sharing() { |
202 | - if ( is_main_query() && is_single() && ! is_singular(array( 'post', 'page', 'product' )) ) { |
|
202 | + if (is_main_query() && is_single() && ! is_singular(array('post', 'page', 'product'))) { |
|
203 | 203 | |
204 | - if ( \lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled(get_post_type()) || in_array(get_post_type(), \lsx\sharing\includes\functions\get_restricted_post_types()) || in_array(get_post_type(), \lsx\sharing\includes\functions\get_to_post_types()) || in_array(get_post_type(), \lsx\sharing\includes\functions\get_hp_post_types()) ) { |
|
204 | + if (\lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled(get_post_type()) || in_array(get_post_type(), \lsx\sharing\includes\functions\get_restricted_post_types()) || in_array(get_post_type(), \lsx\sharing\includes\functions\get_to_post_types()) || in_array(get_post_type(), \lsx\sharing\includes\functions\get_hp_post_types())) { |
|
205 | 205 | return ''; |
206 | 206 | } |
207 | 207 | ?> |
@@ -220,8 +220,8 @@ discard block |
||
220 | 220 | * @param string $ical_links |
221 | 221 | * @return string |
222 | 222 | */ |
223 | - public function output_event_sharing( $ical_links = '' ) { |
|
224 | - if ( \lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled(get_post_type()) ) { |
|
223 | + public function output_event_sharing($ical_links = '') { |
|
224 | + if (\lsx\sharing\includes\functions\is_disabled() || \lsx\sharing\includes\functions\is_pt_disabled(get_post_type())) { |
|
225 | 225 | return ''; |
226 | 226 | } else { |
227 | 227 | $ical_links .= $this->sharing_buttons(); |
@@ -48,7 +48,7 @@ discard block |
||
48 | 48 | */ |
49 | 49 | public static function get_instance() { |
50 | 50 | // If the single instance hasn't been set, set it now. |
51 | - if ( null == self::$instance ) { |
|
51 | + if (null == self::$instance) { |
|
52 | 52 | self::$instance = new self(); |
53 | 53 | } |
54 | 54 | return self::$instance; |
@@ -66,7 +66,7 @@ discard block |
||
66 | 66 | /** |
67 | 67 | * Backwards compatabile function for the sharing buttons. |
68 | 68 | */ |
69 | - public function sharing_buttons( $buttons = array( 'facebook', 'twitter', 'pinterest' ), $echo = false, $post_id = false ) { |
|
69 | + public function sharing_buttons($buttons = array('facebook', 'twitter', 'pinterest'), $echo = false, $post_id = false) { |
|
70 | 70 | wc_deprecated_function('LSX_Sharing_Frontend::sharing_buttons()', '1.2.0', 'lsx_sharing()->frontend->output->sharing_buttons()'); |
71 | 71 | $this->output->sharing_buttons($buttons, $echo, $post_id); |
72 | 72 | } |
@@ -52,7 +52,7 @@ |
||
52 | 52 | */ |
53 | 53 | public static function get_instance() { |
54 | 54 | // If the single instance hasn't been set, set it now. |
55 | - if ( null === self::$instance ) { |
|
55 | + if (null === self::$instance) { |
|
56 | 56 | self::$instance = new self(); |
57 | 57 | } |
58 | 58 | return self::$instance; |
@@ -22,10 +22,10 @@ discard block |
||
22 | 22 | * Contructor |
23 | 23 | */ |
24 | 24 | public function __construct() { |
25 | - add_action('cmb2_admin_init', array( $this, 'register_settings_page' )); |
|
26 | - add_action('lsx_sharing_settings_page', array( $this, 'configure_general_fields' ), 15, 1); |
|
27 | - add_action('lsx_sharing_settings_page', array( $this, 'configure_archive_fields' ), 15, 1); |
|
28 | - add_action('admin_enqueue_scripts', array( $this, 'assets' )); |
|
25 | + add_action('cmb2_admin_init', array($this, 'register_settings_page')); |
|
26 | + add_action('lsx_sharing_settings_page', array($this, 'configure_general_fields'), 15, 1); |
|
27 | + add_action('lsx_sharing_settings_page', array($this, 'configure_archive_fields'), 15, 1); |
|
28 | + add_action('admin_enqueue_scripts', array($this, 'assets')); |
|
29 | 29 | } |
30 | 30 | |
31 | 31 | /** |
@@ -37,7 +37,7 @@ discard block |
||
37 | 37 | */ |
38 | 38 | public static function get_instance() { |
39 | 39 | // If the single instance hasn't been set, set it now. |
40 | - if ( null == self::$instance ) { |
|
40 | + if (null == self::$instance) { |
|
41 | 41 | self::$instance = new self(); |
42 | 42 | } |
43 | 43 | return self::$instance; |
@@ -53,19 +53,19 @@ discard block |
||
53 | 53 | 'id' => 'lsx_sharing_settings', |
54 | 54 | 'title' => '<h1>' . esc_html__('LSX Sharing Settings', 'lsx-search') . ' <span class="version">' . LSX_SHARING_VER . '</span></h1>', |
55 | 55 | 'menu_title' => esc_html__('LSX Sharing', 'search'), // Falls back to 'title' (above). |
56 | - 'object_types' => array( 'options-page' ), |
|
56 | + 'object_types' => array('options-page'), |
|
57 | 57 | 'option_key' => 'lsx-sharing-settings', // The option key and admin menu page slug. |
58 | 58 | 'parent_slug' => 'options-general.php', |
59 | 59 | 'capability' => 'manage_options', // Cap required to view options-page. |
60 | 60 | ); |
61 | - $cmb = new_cmb2_box($args); |
|
61 | + $cmb = new_cmb2_box($args); |
|
62 | 62 | do_action('lsx_sharing_settings_page', $cmb); |
63 | 63 | } |
64 | 64 | |
65 | 65 | /** |
66 | 66 | * Enqueue JS and CSS. |
67 | 67 | */ |
68 | - public function assets( $hook ) { |
|
68 | + public function assets($hook) { |
|
69 | 69 | wp_enqueue_style('lsx-sharing-admin', LSX_SHARING_URL . 'assets/css/lsx-sharing-admin.css', array(), LSX_SHARING_VER); |
70 | 70 | } |
71 | 71 | |
@@ -74,7 +74,7 @@ discard block |
||
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 | 79 | 'title' => __('Global', 'lsx-search'), |
80 | 80 | 'desc' => esc_html__('Control the sharing WordPress post types.', 'lsx-search'), |
@@ -89,22 +89,22 @@ discard block |
||
89 | 89 | * @param string $position either top of bottom. |
90 | 90 | * @return void |
91 | 91 | */ |
92 | - public function configure_archive_fields( $cmb ) { |
|
93 | - $archives = array(); |
|
92 | + public function configure_archive_fields($cmb) { |
|
93 | + $archives = array(); |
|
94 | 94 | $post_type_args = array( |
95 | 95 | 'public' => true, |
96 | 96 | ); |
97 | 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 ) { |
|
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 | 103 | $page_title = __('Home', 'lsx-search'); |
104 | 104 | $show_on_front = get_option('show_on_front'); |
105 | - if ( 'page' === $show_on_front ) { |
|
105 | + if ('page' === $show_on_front) { |
|
106 | 106 | $page_for_posts = get_option('page_for_posts'); |
107 | - if ( '' !== $page_for_posts ) { |
|
107 | + if ('' !== $page_for_posts) { |
|
108 | 108 | $page_title = get_the_title($page_for_posts); |
109 | 109 | $page_url = get_permalink($page_for_posts); |
110 | 110 | } |
@@ -115,7 +115,7 @@ discard block |
||
115 | 115 | $page_url, |
116 | 116 | $page_title |
117 | 117 | ); |
118 | - $archives[ $post_type_key ] = array( |
|
118 | + $archives[$post_type_key] = array( |
|
119 | 119 | 'title' => __('Blog', 'lsx-search'), |
120 | 120 | 'desc' => $description, |
121 | 121 | ); |
@@ -123,8 +123,8 @@ discard block |
||
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') ) { |
|
126 | + $page_title = __('Shop', 'lsx-search'); |
|
127 | + if (function_exists('wc_get_page_id')) { |
|
128 | 128 | $shop_page = wc_get_page_id('shop'); |
129 | 129 | $page_url = get_permalink($shop_page); |
130 | 130 | $page_title = get_the_title($shop_page); |
@@ -135,18 +135,18 @@ discard block |
||
135 | 135 | $page_url, |
136 | 136 | $page_title |
137 | 137 | ); |
138 | - $archives[ $post_type_key ] = array( |
|
138 | + $archives[$post_type_key] = array( |
|
139 | 139 | 'title' => __('Shop', 'lsx-search'), |
140 | 140 | 'desc' => $description, |
141 | 141 | ); |
142 | 142 | break; |
143 | 143 | |
144 | 144 | default: |
145 | - if ( in_array($post_type_key, \lsx\sharing\includes\functions\get_restricted_post_types()) ) { |
|
145 | + if (in_array($post_type_key, \lsx\sharing\includes\functions\get_restricted_post_types())) { |
|
146 | 146 | break; |
147 | 147 | } |
148 | 148 | $temp_post_type = get_post_type_object($post_type_key); |
149 | - if ( ! is_wp_error($temp_post_type) ) { |
|
149 | + if ( ! is_wp_error($temp_post_type)) { |
|
150 | 150 | $page_url = get_post_type_archive_link($temp_post_type->name); |
151 | 151 | $description = sprintf( |
152 | 152 | /* translators: %s: The subscription info */ |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | $temp_post_type->label |
156 | 156 | ); |
157 | 157 | |
158 | - $archives[ $post_type_key ] = array( |
|
158 | + $archives[$post_type_key] = array( |
|
159 | 159 | 'title' => $temp_post_type->label, |
160 | 160 | 'desc' => $description, |
161 | 161 | ); |
@@ -164,8 +164,8 @@ discard block |
||
164 | 164 | } |
165 | 165 | } |
166 | 166 | } |
167 | - if ( ! empty($archives) ) { |
|
168 | - foreach ( $archives as $archive_key => $archive_args ) { |
|
167 | + if ( ! empty($archives)) { |
|
168 | + foreach ($archives as $archive_key => $archive_args) { |
|
169 | 169 | $this->get_fields($cmb, $archive_key, $archive_args); |
170 | 170 | } |
171 | 171 | } |
@@ -178,7 +178,7 @@ discard block |
||
178 | 178 | * @param array $args |
179 | 179 | * @return void |
180 | 180 | */ |
181 | - public function get_fields( $cmb, $section, $args ) { |
|
181 | + public function get_fields($cmb, $section, $args) { |
|
182 | 182 | $cmb->add_field( |
183 | 183 | array( |
184 | 184 | 'id' => 'settings_' . $section . '_sharing', |
@@ -188,7 +188,7 @@ discard block |
||
188 | 188 | 'description' => $args['desc'], |
189 | 189 | ) |
190 | 190 | ); |
191 | - if ( 'global' === $section ) { |
|
191 | + if ('global' === $section) { |
|
192 | 192 | $cmb->add_field( |
193 | 193 | array( |
194 | 194 | 'name' => esc_html__('Disable all', 'lsx-sharing'), |
@@ -216,7 +216,7 @@ discard block |
||
216 | 216 | 'type' => 'text', |
217 | 217 | ) |
218 | 218 | ); |
219 | - if ( 'global' === $section || ( 'global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'facebook') ) ) { |
|
219 | + if ('global' === $section || ('global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'facebook'))) { |
|
220 | 220 | $cmb->add_field( |
221 | 221 | array( |
222 | 222 | 'name' => esc_html__('Disable Facebook', 'lsx-sharing'), |
@@ -226,7 +226,7 @@ discard block |
||
226 | 226 | ) |
227 | 227 | ); |
228 | 228 | } |
229 | - if ( 'global' === $section || ( 'global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'twitter') ) ) { |
|
229 | + if ('global' === $section || ('global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'twitter'))) { |
|
230 | 230 | $cmb->add_field( |
231 | 231 | array( |
232 | 232 | 'name' => esc_html__('Disable Twitter', 'lsx-sharing'), |
@@ -236,7 +236,7 @@ discard block |
||
236 | 236 | ) |
237 | 237 | ); |
238 | 238 | } |
239 | - if ( 'global' === $section || ( 'global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'pinterest') ) ) { |
|
239 | + if ('global' === $section || ('global' !== $section && ! \lsx\sharing\includes\functions\is_button_disabled('global', 'pinterest'))) { |
|
240 | 240 | $cmb->add_field( |
241 | 241 | array( |
242 | 242 | 'name' => esc_html__('Disable Pinterest', 'lsx-sharing'), |
@@ -1,36 +1,36 @@ discard block |
||
1 | 1 | <div class="uix-field-wrapper"> |
2 | 2 | <ul class="ui-tab-nav"> |
3 | - <?php if ( class_exists('LSX_Banners') ) { ?> |
|
3 | + <?php if (class_exists('LSX_Banners')) { ?> |
|
4 | 4 | <li><a href="#ui-placeholders" class="active"><?php esc_html_e('Placeholders', 'lsx-sharing'); ?></a></li> |
5 | 5 | <?php } ?> |
6 | 6 | |
7 | - <?php if ( class_exists('LSX_Currencies') ) { ?> |
|
7 | + <?php if (class_exists('LSX_Currencies')) { ?> |
|
8 | 8 | <?php $class_active = class_exists('LSX_Banners') ? '' : 'active'; ?> |
9 | 9 | <li><a href="#ui-currencies" class="<?php echo esc_attr($class_active); ?>"> |
10 | 10 | <?php esc_html_e('Currencies', 'lsx-sharing'); ?></a></li> |
11 | 11 | <?php } ?> |
12 | 12 | |
13 | - <?php if ( class_exists('LSX_Team') ) { ?> |
|
14 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') ) ? '' : 'active'; ?> |
|
13 | + <?php if (class_exists('LSX_Team')) { ?> |
|
14 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies')) ? '' : 'active'; ?> |
|
15 | 15 | <li><a href="#ui-team" class="<?php echo esc_attr($class_active); ?>"> |
16 | 16 | <?php esc_html_e('Team', 'lsx-sharing'); ?></a></li> |
17 | 17 | <?php } ?> |
18 | 18 | |
19 | - <?php if ( class_exists('LSX_Testimonials') ) { ?> |
|
20 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') ) ? '' : 'active'; ?> |
|
19 | + <?php if (class_exists('LSX_Testimonials')) { ?> |
|
20 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team')) ? '' : 'active'; ?> |
|
21 | 21 | <li><a href="#ui-testimonials" class="<?php echo esc_attr($class_active); ?>"> |
22 | 22 | <?php esc_html_e('Testimonials', 'lsx-sharing'); ?></a></li> |
23 | 23 | <?php } ?> |
24 | 24 | |
25 | - <?php if ( class_exists('LSX_Projects') ) { ?> |
|
26 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') ) ? '' : 'active'; ?> |
|
25 | + <?php if (class_exists('LSX_Projects')) { ?> |
|
26 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials')) ? '' : 'active'; ?> |
|
27 | 27 | <li><a href="#ui-projects" class="<?php echo esc_attr($class_active); ?>"> |
28 | 28 | <?php esc_html_e('Projects', 'lsx-sharing'); ?> |
29 | 29 | </a></li> |
30 | 30 | <?php } ?> |
31 | 31 | |
32 | - <?php if ( class_exists('LSX_Services') ) { ?> |
|
33 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') ) ? '' : 'active'; ?> |
|
32 | + <?php if (class_exists('LSX_Services')) { ?> |
|
33 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects')) ? '' : 'active'; ?> |
|
34 | 34 | <li><a href="#ui-services" class="<?php echo esc_attr($class); ?>"> |
35 | 35 | <?php esc_html_e('Services', 'lsx-sharing'); ?></a></li> |
36 | 36 | <?php |
@@ -38,26 +38,26 @@ discard block |
||
38 | 38 | } |
39 | 39 | ?> |
40 | 40 | |
41 | - <?php if ( class_exists('LSX_Blog_Customizer') ) { ?> |
|
42 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') ) ? '' : 'active'; ?> |
|
41 | + <?php if (class_exists('LSX_Blog_Customizer')) { ?> |
|
42 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services')) ? '' : 'active'; ?> |
|
43 | 43 | <li><a href="#ui-blog-customizer" class="<?php echo esc_attr($class_active); ?>"> |
44 | 44 | <?php esc_html_e('Blog Customizer (posts widget)', 'lsx-sharing'); ?></a></li> |
45 | 45 | <?php } ?> |
46 | 46 | |
47 | - <?php if ( class_exists('LSX_Sharing') ) { ?> |
|
48 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer') ) ? '' : 'active'; ?> |
|
47 | + <?php if (class_exists('LSX_Sharing')) { ?> |
|
48 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer')) ? '' : 'active'; ?> |
|
49 | 49 | <li><a href="#ui-sharing" class="<?php echo esc_attr($class_active); ?>"> |
50 | 50 | <?php esc_html_e('Sharing', 'lsx-sharing'); ?></a></li> |
51 | 51 | <?php } ?> |
52 | 52 | |
53 | - <?php if ( class_exists('LSX_Videos') ) { ?> |
|
54 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer') || class_exists('LSX_Sharing') ) ? '' : 'active'; ?> |
|
53 | + <?php if (class_exists('LSX_Videos')) { ?> |
|
54 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer') || class_exists('LSX_Sharing')) ? '' : 'active'; ?> |
|
55 | 55 | <li><a href="#ui-videos" class="<?php echo esc_attr($class_active); ?>"> |
56 | 56 | <?php esc_html_e('Videos', 'lsx-sharing'); ?></a></li> |
57 | 57 | <?php } ?> |
58 | 58 | </ul> |
59 | 59 | |
60 | - <?php if ( class_exists('LSX_Banners') ) { ?> |
|
60 | + <?php if (class_exists('LSX_Banners')) { ?> |
|
61 | 61 | <div id="ui-placeholders" class="ui-tab active"> |
62 | 62 | <table class="form-table"> |
63 | 63 | <tbody> |
@@ -67,7 +67,7 @@ discard block |
||
67 | 67 | </div> |
68 | 68 | <?php } ?> |
69 | 69 | |
70 | - <?php if ( class_exists('LSX_Currencies') ) { ?> |
|
70 | + <?php if (class_exists('LSX_Currencies')) { ?> |
|
71 | 71 | <?php $class_active = class_exists('LSX_Banners') ? '' : 'active'; ?> |
72 | 72 | <div id="ui-currencies" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
73 | 73 | <table class="form-table"> |
@@ -78,8 +78,8 @@ discard block |
||
78 | 78 | </div> |
79 | 79 | <?php } ?> |
80 | 80 | |
81 | - <?php if ( class_exists('LSX_Team') ) { ?> |
|
82 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') ) ? '' : 'active'; ?> |
|
81 | + <?php if (class_exists('LSX_Team')) { ?> |
|
82 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies')) ? '' : 'active'; ?> |
|
83 | 83 | <div id="ui-team" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
84 | 84 | <table class="form-table"> |
85 | 85 | <tbody> |
@@ -89,8 +89,8 @@ discard block |
||
89 | 89 | </div> |
90 | 90 | <?php } ?> |
91 | 91 | |
92 | - <?php if ( class_exists('LSX_Testimonials') ) { ?> |
|
93 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') ) ? '' : 'active'; ?> |
|
92 | + <?php if (class_exists('LSX_Testimonials')) { ?> |
|
93 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team')) ? '' : 'active'; ?> |
|
94 | 94 | <div id="ui-testimonials" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
95 | 95 | <table class="form-table"> |
96 | 96 | <tbody> |
@@ -100,8 +100,8 @@ discard block |
||
100 | 100 | </div> |
101 | 101 | <?php } ?> |
102 | 102 | |
103 | - <?php if ( class_exists('LSX_Projects') ) { ?> |
|
104 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') ) ? '' : 'active'; ?> |
|
103 | + <?php if (class_exists('LSX_Projects')) { ?> |
|
104 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials')) ? '' : 'active'; ?> |
|
105 | 105 | <div id="ui-projects" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
106 | 106 | <table class="form-table"> |
107 | 107 | <tbody> |
@@ -111,8 +111,8 @@ discard block |
||
111 | 111 | </div> |
112 | 112 | <?php } ?> |
113 | 113 | |
114 | - <?php if ( class_exists('LSX_Services') ) { ?> |
|
115 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') ) ? '' : 'active'; ?> |
|
114 | + <?php if (class_exists('LSX_Services')) { ?> |
|
115 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects')) ? '' : 'active'; ?> |
|
116 | 116 | <div id="ui-services" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
117 | 117 | <table class="form-table"> |
118 | 118 | <tbody> |
@@ -122,8 +122,8 @@ discard block |
||
122 | 122 | </div> |
123 | 123 | <?php } ?> |
124 | 124 | |
125 | - <?php if ( class_exists('LSX_Blog_Customizer') ) { ?> |
|
126 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') ) ? '' : 'active'; ?> |
|
125 | + <?php if (class_exists('LSX_Blog_Customizer')) { ?> |
|
126 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services')) ? '' : 'active'; ?> |
|
127 | 127 | <div id="ui-blog-customizer" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
128 | 128 | <table class="form-table"> |
129 | 129 | <tbody> |
@@ -133,8 +133,8 @@ discard block |
||
133 | 133 | </div> |
134 | 134 | <?php } ?> |
135 | 135 | |
136 | - <?php if ( class_exists('LSX_Sharing') ) { ?> |
|
137 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer') ) ? '' : 'active'; ?> |
|
136 | + <?php if (class_exists('LSX_Sharing')) { ?> |
|
137 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer')) ? '' : 'active'; ?> |
|
138 | 138 | <div id="ui-sharing" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
139 | 139 | <table class="form-table"> |
140 | 140 | <tbody> |
@@ -144,8 +144,8 @@ discard block |
||
144 | 144 | </div> |
145 | 145 | <?php } ?> |
146 | 146 | |
147 | - <?php if ( class_exists('LSX_Videos') ) { ?> |
|
148 | - <?php $class_active = ( class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer') || class_exists('LSX_Sharing') ) ? '' : 'active'; ?> |
|
147 | + <?php if (class_exists('LSX_Videos')) { ?> |
|
148 | + <?php $class_active = (class_exists('LSX_Banners') || class_exists('LSX_Currencies') || class_exists('LSX_Team') || class_exists('LSX_Testimonials') || class_exists('LSX_Projects') || class_exists('LSX_Services') || class_exists('LSX_Blog_Customizer') || class_exists('LSX_Sharing')) ? '' : 'active'; ?> |
|
149 | 149 | <div id="ui-videos" class="ui-tab <?php echo esc_attr($class_active); ?>"> |
150 | 150 | <table class="form-table"> |
151 | 151 | <tbody> |
@@ -72,12 +72,12 @@ discard block |
||
72 | 72 | * |
73 | 73 | * @return boolean |
74 | 74 | */ |
75 | -function is_button_disabled( $post_type = '', $service = '' ) { |
|
75 | +function is_button_disabled($post_type = '', $service = '') { |
|
76 | 76 | $sharing = lsx_sharing(); |
77 | - $option = false; |
|
78 | - if ( false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display'][ 'sharing_disable_' . $service ]) ) { |
|
77 | + $option = false; |
|
78 | + if (false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display']['sharing_disable_' . $service])) { |
|
79 | 79 | $option = true; |
80 | - } elseif ( true === $sharing->is_new_options && ! empty($sharing->options[ $post_type . '_disable_' . $service ]) ) { |
|
80 | + } elseif (true === $sharing->is_new_options && ! empty($sharing->options[$post_type . '_disable_' . $service])) { |
|
81 | 81 | $option = true; |
82 | 82 | } |
83 | 83 | return $option; |
@@ -88,12 +88,12 @@ discard block |
||
88 | 88 | * |
89 | 89 | * @return boolean |
90 | 90 | */ |
91 | -function is_pt_disabled( $post_type = '' ) { |
|
91 | +function is_pt_disabled($post_type = '') { |
|
92 | 92 | $sharing = lsx_sharing(); |
93 | - $option = false; |
|
94 | - if ( false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display'][ 'sharing_disable_pt_' . $post_type ]) ) { |
|
93 | + $option = false; |
|
94 | + if (false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display']['sharing_disable_pt_' . $post_type])) { |
|
95 | 95 | $option = true; |
96 | - } elseif ( true === $sharing->is_new_options && isset($sharing->options[ $post_type . '_disable_pt' ]) ) { |
|
96 | + } elseif (true === $sharing->is_new_options && isset($sharing->options[$post_type . '_disable_pt'])) { |
|
97 | 97 | $option = true; |
98 | 98 | } |
99 | 99 | return $option; |
@@ -106,10 +106,10 @@ discard block |
||
106 | 106 | */ |
107 | 107 | function is_disabled() { |
108 | 108 | $sharing = lsx_sharing(); |
109 | - $option = false; |
|
110 | - if ( false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display']['sharing_disable_all']) ) { |
|
109 | + $option = false; |
|
110 | + if (false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display']['sharing_disable_all'])) { |
|
111 | 111 | $option = true; |
112 | - } elseif ( true === $sharing->is_new_options && isset($sharing->options['global_disable_all']) ) { |
|
112 | + } elseif (true === $sharing->is_new_options && isset($sharing->options['global_disable_all'])) { |
|
113 | 113 | $option = true; |
114 | 114 | } |
115 | 115 | return $option; |
@@ -120,15 +120,15 @@ discard block |
||
120 | 120 | * |
121 | 121 | * @return string |
122 | 122 | */ |
123 | -function get_sharing_text( $post_type = '' ) { |
|
123 | +function get_sharing_text($post_type = '') { |
|
124 | 124 | $sharing = lsx_sharing(); |
125 | - $text = ''; |
|
126 | - if ( false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display']['sharing_label_text']) ) { |
|
125 | + $text = ''; |
|
126 | + if (false === $sharing->is_new_options && isset($sharing->options['display']) && ! empty($sharing->options['display']['sharing_label_text'])) { |
|
127 | 127 | $text = $sharing->options['display']['sharing_label_text']; |
128 | - } elseif ( true === $sharing->is_new_options ) { |
|
129 | - if ( isset($sharing->options[ $post_type . '_label_text' ]) ) { |
|
130 | - $text = $sharing->options[ $post_type . '_label_text' ]; |
|
131 | - } elseif ( isset($sharing->options['global_label_text']) ) { |
|
128 | + } elseif (true === $sharing->is_new_options) { |
|
129 | + if (isset($sharing->options[$post_type . '_label_text'])) { |
|
130 | + $text = $sharing->options[$post_type . '_label_text']; |
|
131 | + } elseif (isset($sharing->options['global_label_text'])) { |
|
132 | 132 | $text = $sharing->options['global_label_text']; |
133 | 133 | } |
134 | 134 | } |
@@ -13,7 +13,7 @@ |
||
13 | 13 | */ |
14 | 14 | |
15 | 15 | // If this file is called directly, abort. |
16 | -if ( ! defined('WPINC') ) { |
|
16 | +if ( ! defined('WPINC')) { |
|
17 | 17 | die; |
18 | 18 | } |
19 | 19 |