Passed
Pull Request — master (#40)
by
unknown
02:23
created
classes/subway-enqueue.php 1 patch
Indentation   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,50 +36,50 @@  discard block
 block discarded – undo
36 36
 final class Enqueue
37 37
 {
38 38
 
39
-    /**
40
-     * Registers our CSS and Javascript to WordPress Enqueue Handler.
41
-     *
42
-     * @return void
43
-     */
44
-    public static function registerJs() 
45
-    {
39
+	/**
40
+	 * Registers our CSS and Javascript to WordPress Enqueue Handler.
41
+	 *
42
+	 * @return void
43
+	 */
44
+	public static function registerJs() 
45
+	{
46 46
 
47
-        $post_id = absint(get_queried_object_id());
47
+		$post_id = absint(get_queried_object_id());
48 48
 
49
-        $signin_page = absint(get_option('subway_login_page'));
49
+		$signin_page = absint(get_option('subway_login_page'));
50 50
 
51
-        // Only load the stylesheet and javascript documents inside our sign-in page.
52
-        if ($post_id === $signin_page ) {
51
+		// Only load the stylesheet and javascript documents inside our sign-in page.
52
+		if ($post_id === $signin_page ) {
53 53
 
54
-            wp_enqueue_style(
55
-                'subway-style', 
56
-                SUBWAY_DIR_URL . 'assets/css/subway.css'
57
-            );
54
+			wp_enqueue_style(
55
+				'subway-style', 
56
+				SUBWAY_DIR_URL . 'assets/css/subway.css'
57
+			);
58 58
 
59
-            if (! is_user_logged_in() ) {
59
+			if (! is_user_logged_in() ) {
60 60
 
61
-                wp_enqueue_script(
62
-                    'subway-script', 
63
-                    SUBWAY_DIR_URL . 'assets/js/subway.js', 
64
-                    array( 'jquery' )
65
-                );
61
+				wp_enqueue_script(
62
+					'subway-script', 
63
+					SUBWAY_DIR_URL . 'assets/js/subway.js', 
64
+					array( 'jquery' )
65
+				);
66 66
 
67
-                wp_localize_script(
68
-                    'subway-script', 'subway_config', array(
69
-                    'ajax_url' => admin_url('admin-ajax.php'),
70
-                    'login_http_error' => esc_html__(
71
-                        'An error occured while 
67
+				wp_localize_script(
68
+					'subway-script', 'subway_config', array(
69
+					'ajax_url' => admin_url('admin-ajax.php'),
70
+					'login_http_error' => esc_html__(
71
+						'An error occured while 
72 72
                     	transmitting the data. Refresh the page and try again', 
73
-                        'subway'
74
-                    ),
75
-                    )
76
-                );
73
+						'subway'
74
+					),
75
+					)
76
+				);
77 77
 
78
-            }
79
-        }
78
+			}
79
+		}
80 80
 
81
-        return;
81
+		return;
82 82
 
83
-    }
83
+	}
84 84
 
85 85
 }
Please login to merge, or discard this patch.
classes/subway-helpers.php 1 patch
Indentation   +10 added lines, -10 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,13 +36,13 @@  discard block
 block discarded – undo
36 36
 final class Helpers
37 37
 {
38 38
 
39
-    /**
40
-     * Exit wrapper.
41
-     * 
42
-     * @return void
43
-     */
44
-    public static function close() 
45
-    {
46
-        exit;
47
-    }
39
+	/**
40
+	 * Exit wrapper.
41
+	 * 
42
+	 * @return void
43
+	 */
44
+	public static function close() 
45
+	{
46
+		exit;
47
+	}
48 48
 }
Please login to merge, or discard this patch.
classes/subway-options.php 1 patch
Indentation   +47 added lines, -47 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,73 +36,73 @@  discard block
 block discarded – undo
36 36
 final class Options
37 37
 {
38 38
 
39
-    /**
40
-     * Get the redirect page url.
41
-     *
42
-     * @return mixed The redirect url of our settings. Otherwise, false.
43
-     */
44
-    public static function getRedirectPageUrl() 
45
-    {
39
+	/**
40
+	 * Get the redirect page url.
41
+	 *
42
+	 * @return mixed The redirect url of our settings. Otherwise, false.
43
+	 */
44
+	public static function getRedirectPageUrl() 
45
+	{
46 46
 
47
-        $selected_login_post_id = intval(get_option('subway_login_page'));
47
+		$selected_login_post_id = intval(get_option('subway_login_page'));
48 48
 
49
-        if (0 === $selected_login_post_id ) {
49
+		if (0 === $selected_login_post_id ) {
50 50
 
51
-            return;
51
+			return;
52 52
 
53
-        }
53
+		}
54 54
 
55
-        $login_post = get_post($selected_login_post_id);
55
+		$login_post = get_post($selected_login_post_id);
56 56
 
57
-        if (! empty($login_post) ) {
57
+		if (! empty($login_post) ) {
58 58
 
59
-            return trailingslashit(get_permalink($login_post->ID));
59
+			return trailingslashit(get_permalink($login_post->ID));
60 60
 
61
-        }
61
+		}
62 62
 
63
-        return false;
63
+		return false;
64 64
 
65
-    }
65
+	}
66 66
 
67
-    /**
68
-     * Fetches the public post ids.
69
-     *
70
-     * @return array The collection of public 'post' IDs.
71
-     */
72
-    public static function getPublicPostsIdentifiers() 
73
-    {
67
+	/**
68
+	 * Fetches the public post ids.
69
+	 *
70
+	 * @return array The collection of public 'post' IDs.
71
+	 */
72
+	public static function getPublicPostsIdentifiers() 
73
+	{
74 74
 
75
-        $subway_public_post = get_option('subway_public_post');
75
+		$subway_public_post = get_option('subway_public_post');
76 76
 
77
-        $excluded_pages_collection = array();
77
+		$excluded_pages_collection = array();
78 78
 
79
-        if (! empty($subway_public_post) ) {
79
+		if (! empty($subway_public_post) ) {
80 80
 
81
-            $excluded_pages_collection = explode(',', $subway_public_post);
81
+			$excluded_pages_collection = explode(',', $subway_public_post);
82 82
 
83
-        }
83
+		}
84 84
 
85
-        // Should filter it by integer, spaces will be ignored, other strings.
86
-        // Will be converted to zero '0'.
87
-        return array_filter(array_map('intval', $excluded_pages_collection));
85
+		// Should filter it by integer, spaces will be ignored, other strings.
86
+		// Will be converted to zero '0'.
87
+		return array_filter(array_map('intval', $excluded_pages_collection));
88 88
 
89
-    }
89
+	}
90 90
 
91
-    /**
92
-     * Check if site is public or not.
93
-     *
94
-     * @return boolean True on success. Otherwise, false.
95
-     */
96
-    public static function isPublicSite() 
97
-    {
91
+	/**
92
+	 * Check if site is public or not.
93
+	 *
94
+	 * @return boolean True on success. Otherwise, false.
95
+	 */
96
+	public static function isPublicSite() 
97
+	{
98 98
 
99
-        $subway_public_post = get_option('subway_is_public');
99
+		$subway_public_post = get_option('subway_is_public');
100 100
 
101
-        if (! empty($subway_public_post) ) {
101
+		if (! empty($subway_public_post) ) {
102 102
 
103
-            return true;
103
+			return true;
104 104
 
105
-        }
106
-        return false;
107
-    }
105
+		}
106
+		return false;
107
+	}
108 108
 }
Please login to merge, or discard this patch.
shortcodes/subway-shortcodes.php 1 patch
Indentation   +137 added lines, -137 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,166 +36,166 @@  discard block
 block discarded – undo
36 36
 final class Shortcodes
37 37
 {
38 38
 
39
-    /**
40
-     * Class Constructor.
41
-     *
42
-     * @return void
43
-     */
44
-    private function __construct() 
45
-    {
39
+	/**
40
+	 * Class Constructor.
41
+	 *
42
+	 * @return void
43
+	 */
44
+	private function __construct() 
45
+	{
46 46
         
47
-        add_action('init', array( $this, 'register'));
47
+		add_action('init', array( $this, 'register'));
48 48
         
49
-        return $this;
49
+		return $this;
50 50
 
51
-    }
51
+	}
52 52
 
53
-    /**
54
-     * Instantiate our class.
55
-     * 
56
-     * @return mixed The instance of this class.
57
-     */
58
-    public static function instance() 
59
-    {
53
+	/**
54
+	 * Instantiate our class.
55
+	 * 
56
+	 * @return mixed The instance of this class.
57
+	 */
58
+	public static function instance() 
59
+	{
60 60
         
61
-        static $instance = null;
62
-
63
-        if (null === $instance ) {
64
-
65
-            $instance = new Shortcodes();
66
-
67
-        }
68
-
69
-        return $instance;
70
-
71
-    }
72
-
73
-    /**
74
-     * Instantiate our class.
75
-     * 
76
-     * @return void
77
-     */
78
-    public function register() 
79
-    {
80
-
81
-        add_shortcode('subway_login', array( $this, 'loginForm' ));
82
-
83
-        add_action('login_form_middle', array( $this, 'loginFormAction' ), 10, 2);
84
-
85
-        add_action('login_form_middle', array( $this, 'lostPasswordLink' ), 10, 2);
86
-
87
-        return;
88
-
89
-    }
90
-
91
-    /**
92
-     * Displays the login form
93
-     * 
94
-     * @return void
95
-     */
96
-    public function loginForm( $atts )
97
-    {
98
-        $atts = shortcode_atts( array(
99
-            'echo'           => true,
100
-            'form_id'        => 'loginform',
101
-            'label_username' => __( 'Username', 'subway' ),
102
-            'label_password' => __( 'Password', 'subway' ),
103
-            'label_remember' => __( 'Remember Me', 'subway' ),
104
-            'label_log_in'   => __( 'Log In', 'subway' ),
105
-            'id_username'    => 'user_login',
106
-            'id_password'    => 'user_pass',
107
-            'id_remember'    => 'rememberme',
108
-            'id_submit'      => 'wp-submit',
109
-            'remember'       => true,
110
-            'value_username' => '',
111
-            'value_remember' => false,
112
-            'redirect'       => home_url(),
113
-        ), $atts );
114
-
115
-        return $this->renderTemplate($atts, 'login-form.php');
116
-    }
117
-
118
-    /**
119
-     * Include the specific plugin file if there is no template file.
120
-     * 
121
-     * @param mixed  $atts The shortcode attribute.
122
-     * @param string $file The shortcode template file.
123
-     * 
124
-     * @return string The html template content.
125
-     */
126
-    protected function renderTemplate( $atts, $file = '' ) 
127
-    {
128
-
129
-        ob_start();
130
-
131
-        if (empty($file) ) {
61
+		static $instance = null;
62
+
63
+		if (null === $instance ) {
64
+
65
+			$instance = new Shortcodes();
66
+
67
+		}
68
+
69
+		return $instance;
70
+
71
+	}
72
+
73
+	/**
74
+	 * Instantiate our class.
75
+	 * 
76
+	 * @return void
77
+	 */
78
+	public function register() 
79
+	{
80
+
81
+		add_shortcode('subway_login', array( $this, 'loginForm' ));
82
+
83
+		add_action('login_form_middle', array( $this, 'loginFormAction' ), 10, 2);
84
+
85
+		add_action('login_form_middle', array( $this, 'lostPasswordLink' ), 10, 2);
86
+
87
+		return;
88
+
89
+	}
90
+
91
+	/**
92
+	 * Displays the login form
93
+	 * 
94
+	 * @return void
95
+	 */
96
+	public function loginForm( $atts )
97
+	{
98
+		$atts = shortcode_atts( array(
99
+			'echo'           => true,
100
+			'form_id'        => 'loginform',
101
+			'label_username' => __( 'Username', 'subway' ),
102
+			'label_password' => __( 'Password', 'subway' ),
103
+			'label_remember' => __( 'Remember Me', 'subway' ),
104
+			'label_log_in'   => __( 'Log In', 'subway' ),
105
+			'id_username'    => 'user_login',
106
+			'id_password'    => 'user_pass',
107
+			'id_remember'    => 'rememberme',
108
+			'id_submit'      => 'wp-submit',
109
+			'remember'       => true,
110
+			'value_username' => '',
111
+			'value_remember' => false,
112
+			'redirect'       => home_url(),
113
+		), $atts );
114
+
115
+		return $this->renderTemplate($atts, 'login-form.php');
116
+	}
117
+
118
+	/**
119
+	 * Include the specific plugin file if there is no template file.
120
+	 * 
121
+	 * @param mixed  $atts The shortcode attribute.
122
+	 * @param string $file The shortcode template file.
123
+	 * 
124
+	 * @return string The html template content.
125
+	 */
126
+	protected function renderTemplate( $atts, $file = '' ) 
127
+	{
128
+
129
+		ob_start();
130
+
131
+		if (empty($file) ) {
132 132
             
133
-            return;
133
+			return;
134 134
 
135
-        }
135
+		}
136 136
 
137
-        $template = SUBWAY_DIR_PATH . 'templates/'.$file;
137
+		$template = SUBWAY_DIR_PATH . 'templates/'.$file;
138 138
 
139
-        if (file_exists($template) ) {
139
+		if (file_exists($template) ) {
140 140
 
141
-            $theme_template = locate_template(array('gears/shortcodes/'.$file ));
141
+			$theme_template = locate_template(array('gears/shortcodes/'.$file ));
142 142
 
143
-            if ($theme_template) {
143
+			if ($theme_template) {
144 144
 
145
-                   $template = $theme_template;
145
+				   $template = $theme_template;
146 146
 
147
-            }
147
+			}
148 148
 
149
-            include $template;
149
+			include $template;
150 150
 
151
-        } else {
151
+		} else {
152 152
 
153
-            echo sprintf(
154
-                esc_html_e(
155
-                    'Subway Error: Unable to find template file in: %1s', 'subway'
156
-                ), 
157
-                $template
158
-            );
153
+			echo sprintf(
154
+				esc_html_e(
155
+					'Subway Error: Unable to find template file in: %1s', 'subway'
156
+				), 
157
+				$template
158
+			);
159 159
 
160
-        }
160
+		}
161 161
 
162
-        return ob_get_clean();
163
-    }
162
+		return ob_get_clean();
163
+	}
164 164
 
165
-    /**
166
-     * The action for our login form.
167
-     * 
168
-     * @param string $__content The current filtered contents.
169
-     * 
170
-     * @return string            The content of our login form action.
171
-     */
172
-    public function loginFormAction( $__content ) 
173
-    {
165
+	/**
166
+	 * The action for our login form.
167
+	 * 
168
+	 * @param string $__content The current filtered contents.
169
+	 * 
170
+	 * @return string            The content of our login form action.
171
+	 */
172
+	public function loginFormAction( $__content ) 
173
+	{
174 174
 
175
-        ob_start();
175
+		ob_start();
176 176
         
177
-        do_action('login_form');
177
+		do_action('login_form');
178 178
         
179
-        return $__content . ob_get_clean();
180
-
181
-    }
182
-
183
-     /**
184
-     * The action for our 'lost password' link.
185
-     * 
186
-     * @param string $content The current filtered contents.
187
-     * 
188
-     * @return string          The content of our lost password link.
189
-     */
190
-    public function lostPasswordLink( $content ) 
191
-    {
179
+		return $__content . ob_get_clean();
180
+
181
+	}
182
+
183
+	 /**
184
+	  * The action for our 'lost password' link.
185
+	  * 
186
+	  * @param string $content The current filtered contents.
187
+	  * 
188
+	  * @return string          The content of our lost password link.
189
+	  */
190
+	public function lostPasswordLink( $content ) 
191
+	{
192 192
         
193
-        return $content . $this->renderTemplate(
194
-            array(), 
195
-            'login-form-lost-password.php'
196
-        );
193
+		return $content . $this->renderTemplate(
194
+			array(), 
195
+			'login-form-lost-password.php'
196
+		);
197 197
 
198
-    }
198
+	}
199 199
 
200 200
 }
201 201
 
Please login to merge, or discard this patch.
i18.php 1 patch
Indentation   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,32 +36,32 @@  discard block
 block discarded – undo
36 36
 final class I18
37 37
 {
38 38
 
39
-    /**
40
-     * Class Constructor.
41
-     *
42
-     * @return void
43
-     */
44
-    public function __construct() 
45
-    {
39
+	/**
40
+	 * Class Constructor.
41
+	 *
42
+	 * @return void
43
+	 */
44
+	public function __construct() 
45
+	{
46 46
 
47
-        add_action('plugins_loaded', array( $this, 'subwayLocalizePlugin' ));
47
+		add_action('plugins_loaded', array( $this, 'subwayLocalizePlugin' ));
48 48
 
49
-        return;
50
-    }
49
+		return;
50
+	}
51 51
 
52
-    /**
53
-     * Subway l8n callback.
54
-     *
55
-     * @return void
56
-     */
57
-    public function subwayLocalizePlugin() 
58
-    {
52
+	/**
53
+	 * Subway l8n callback.
54
+	 *
55
+	 * @return void
56
+	 */
57
+	public function subwayLocalizePlugin() 
58
+	{
59 59
 
60
-        load_plugin_textdomain('subway', false, basename( dirname( __FILE__ ) ) . '/languages'  );
60
+		load_plugin_textdomain('subway', false, basename( dirname( __FILE__ ) ) . '/languages'  );
61 61
 
62
-        return;
62
+		return;
63 63
 
64
-    }
64
+	}
65 65
 
66 66
 }
67 67
 
Please login to merge, or discard this patch.
classes/subway-auth-redirect.php 1 patch
Indentation   +127 added lines, -127 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,183 +36,183 @@  discard block
 block discarded – undo
36 36
 final class AuthRedirect
37 37
 {
38 38
 
39
-    /**
40
-     * Handles our ajax authentication.
41
-     *
42
-     * @return void
43
-     */
44
-    public static function handleAuthentication()
45
-    {
39
+	/**
40
+	 * Handles our ajax authentication.
41
+	 *
42
+	 * @return void
43
+	 */
44
+	public static function handleAuthentication()
45
+	{
46 46
 
47
-        // Set the header type to json.
48
-        header('Content-Type: application/json');
47
+		// Set the header type to json.
48
+		header('Content-Type: application/json');
49 49
 
50
-        $log = filter_input(INPUT_POST, 'log', FILTER_SANITIZE_STRING);
50
+		$log = filter_input(INPUT_POST, 'log', FILTER_SANITIZE_STRING);
51 51
 
52
-        $pwd = filter_input(INPUT_POST, 'pwd', FILTER_SANITIZE_STRING);
52
+		$pwd = filter_input(INPUT_POST, 'pwd', FILTER_SANITIZE_STRING);
53 53
 
54
-        if (empty($log) && empty($pwd) ) {
54
+		if (empty($log) && empty($pwd) ) {
55 55
 
56
-            $response['type'] = 'error';
56
+			$response['type'] = 'error';
57 57
 
58
-            $response['message'] = esc_html__(
59
-                'Username and Password cannot be empty.',
60
-                'subway'
61
-            );
58
+			$response['message'] = esc_html__(
59
+				'Username and Password cannot be empty.',
60
+				'subway'
61
+			);
62 62
 
63
-        } else {
63
+		} else {
64 64
 
65
-            $is_signin = wp_signon();
65
+			$is_signin = wp_signon();
66 66
 
67
-            $response = array();
67
+			$response = array();
68 68
 
69
-            if (is_wp_error($is_signin) ) {
69
+			if (is_wp_error($is_signin) ) {
70 70
 
71
-                $response['type'] = 'error';
71
+				$response['type'] = 'error';
72 72
 
73
-                $response['message'] = $is_signin->get_error_message();
73
+				$response['message'] = $is_signin->get_error_message();
74 74
 
75
-            } else {
75
+			} else {
76 76
 
77
-                $response['type'] = 'success';
77
+				$response['type'] = 'success';
78 78
 
79
-                $response['message'] = esc_html__(
80
-                    'You have successfully logged-in. Redirecting you in few seconds...',
81
-                    'subway'
82
-                );
79
+				$response['message'] = esc_html__(
80
+					'You have successfully logged-in. Redirecting you in few seconds...',
81
+					'subway'
82
+				);
83 83
 
84
-            }
85
-        }
84
+			}
85
+		}
86 86
 
87
-        $subway_redirect_url = AuthRedirect::getLoginRedirectUrl('', $is_signin);
87
+		$subway_redirect_url = AuthRedirect::getLoginRedirectUrl('', $is_signin);
88 88
 
89
-        $response['redirect_url'] = apply_filters(
90
-            'subway_login_redirect',
91
-            $subway_redirect_url,
92
-            $is_signin
93
-        );
89
+		$response['redirect_url'] = apply_filters(
90
+			'subway_login_redirect',
91
+			$subway_redirect_url,
92
+			$is_signin
93
+		);
94 94
 
95
-        echo wp_json_encode($response);
95
+		echo wp_json_encode($response);
96 96
 
97
-        wp_die();
97
+		wp_die();
98 98
 
99
-    }
99
+	}
100 100
 
101
-    /**
102
-     * Returns the filtered redirect url for the current user.
103
-     *
104
-     * @param string $redirect_to The default redirect callback argument.
105
-     * @param mixed  $user        This holds the meta info of currently logged-in user.
106
-     *
107
-     * @return string             The final redirect url.
108
-     */
109
-    public static function getLoginRedirectUrl( $redirect_to, $user )
110
-    {
101
+	/**
102
+	 * Returns the filtered redirect url for the current user.
103
+	 *
104
+	 * @param string $redirect_to The default redirect callback argument.
105
+	 * @param mixed  $user        This holds the meta info of currently logged-in user.
106
+	 *
107
+	 * @return string             The final redirect url.
108
+	 */
109
+	public static function getLoginRedirectUrl( $redirect_to, $user )
110
+	{
111 111
 
112
-        $subway_redirect_type = get_option('subway_redirect_type');
112
+		$subway_redirect_type = get_option('subway_redirect_type');
113 113
 
114
-        // Redirect the user to default behaviour.
115
-        // If there are no redirect type option saved.
116
-        if (empty($subway_redirect_type) ) {
114
+		// Redirect the user to default behaviour.
115
+		// If there are no redirect type option saved.
116
+		if (empty($subway_redirect_type) ) {
117 117
 
118
-            return $redirect_to;
118
+			return $redirect_to;
119 119
 
120
-        }
120
+		}
121 121
 
122
-        if ('default' === $subway_redirect_type ) {
123
-            return $redirect_to;
124
-        }
122
+		if ('default' === $subway_redirect_type ) {
123
+			return $redirect_to;
124
+		}
125 125
 
126
-        if ('page' === $subway_redirect_type ) {
126
+		if ('page' === $subway_redirect_type ) {
127 127
 
128
-            // Get the page url of the selected page.
129
-            // If the admin selected 'Custom Page' in the redirect type settings.
130
-            $selected_redirect_page = intval(get_option('subway_redirect_page_id'));
128
+			// Get the page url of the selected page.
129
+			// If the admin selected 'Custom Page' in the redirect type settings.
130
+			$selected_redirect_page = intval(get_option('subway_redirect_page_id'));
131 131
 
132
-            // Redirect to default WordPress behaviour.
133
-            // If the user did not select page.
134
-            if (empty($selected_redirect_page) ) {
132
+			// Redirect to default WordPress behaviour.
133
+			// If the user did not select page.
134
+			if (empty($selected_redirect_page) ) {
135 135
 
136
-                return $redirect_to;
137
-            }
136
+				return $redirect_to;
137
+			}
138 138
 
139
-            // Otherwise, get the permalink of the saved page
140
-            // and let the user go into that page.
141
-            return get_permalink($selected_redirect_page);
139
+			// Otherwise, get the permalink of the saved page
140
+			// and let the user go into that page.
141
+			return get_permalink($selected_redirect_page);
142 142
 
143
-        } elseif ('custom_url' === $subway_redirect_type ) {
143
+		} elseif ('custom_url' === $subway_redirect_type ) {
144 144
 
145
-            // Get the custom url saved in the redirect type settings.
146
-            $entered_custom_url = get_option('subway_redirect_custom_url');
145
+			// Get the custom url saved in the redirect type settings.
146
+			$entered_custom_url = get_option('subway_redirect_custom_url');
147 147
 
148
-            // Redirect to default WordPress behaviour
149
-            // if the user did enter a custom url.
150
-            if (empty($entered_custom_url) ) {
148
+			// Redirect to default WordPress behaviour
149
+			// if the user did enter a custom url.
150
+			if (empty($entered_custom_url) ) {
151 151
 
152
-                return $redirect_to;
152
+				return $redirect_to;
153 153
 
154
-            }
154
+			}
155 155
 
156
-            // Otherwise, get the custom url saved
157
-            // and let the user go into that page.
158
-            if (! empty($user->ID) ) {
159
-                $entered_custom_url = str_replace(
160
-                    '%user_id%', $user->ID,
161
-                    $entered_custom_url
162
-                );
163
-            }
156
+			// Otherwise, get the custom url saved
157
+			// and let the user go into that page.
158
+			if (! empty($user->ID) ) {
159
+				$entered_custom_url = str_replace(
160
+					'%user_id%', $user->ID,
161
+					$entered_custom_url
162
+				);
163
+			}
164 164
 
165
-            if (! empty($user->user_login) ) {
166
-                $entered_custom_url = str_replace(
167
-                    '%user_name%', $user->user_login,
168
-                    $entered_custom_url
169
-                );
170
-            }
165
+			if (! empty($user->user_login) ) {
166
+				$entered_custom_url = str_replace(
167
+					'%user_name%', $user->user_login,
168
+					$entered_custom_url
169
+				);
170
+			}
171 171
 
172
-            return $entered_custom_url;
172
+			return $entered_custom_url;
173 173
 
174
-        }
174
+		}
175 175
 
176
-        // Otherwise, quit and redirect the user back to default WordPress behaviour.
177
-        return $redirect_to;
178
-    }
176
+		// Otherwise, quit and redirect the user back to default WordPress behaviour.
177
+		return $redirect_to;
178
+	}
179 179
 
180
-    /**
181
-     * Callback function for the 'login_url' filter defined in Subway.php
182
-     *
183
-     * @param string $login_url The login url.
184
-     *
185
-     * @return string            The final login url.
186
-     */
187
-    public static function loginUrl( $login_url  )
188
-    {
180
+	/**
181
+	 * Callback function for the 'login_url' filter defined in Subway.php
182
+	 *
183
+	 * @param string $login_url The login url.
184
+	 *
185
+	 * @return string            The final login url.
186
+	 */
187
+	public static function loginUrl( $login_url  )
188
+	{
189 189
 
190
-        $subway_login_page = Options::getRedirectPageUrl();
190
+		$subway_login_page = Options::getRedirectPageUrl();
191 191
 
192
-        // Return the default login url if there is no log-in page defined.
193
-        if (empty($subway_login_page) ) {
194
-            return $login_url;
195
-        }
192
+		// Return the default login url if there is no log-in page defined.
193
+		if (empty($subway_login_page) ) {
194
+			return $login_url;
195
+		}
196 196
 
197
-        // Otherwise, return the Subway login page.
198
-        return $subway_login_page;
197
+		// Otherwise, return the Subway login page.
198
+		return $subway_login_page;
199 199
 
200
-    }
200
+	}
201 201
 
202
-    /**
203
-     * The callback function for our logout filter.
204
-     *
205
-     * @return void
206
-     */
207
-    public static function logoutUrl()
208
-    {
202
+	/**
203
+	 * The callback function for our logout filter.
204
+	 *
205
+	 * @return void
206
+	 */
207
+	public static function logoutUrl()
208
+	{
209 209
 
210
-        $subway_login_page = Options::getRedirectPageUrl();
210
+		$subway_login_page = Options::getRedirectPageUrl();
211 211
 
212
-        wp_safe_redirect(esc_url($subway_login_page . '?loggedout=true'));
212
+		wp_safe_redirect(esc_url($subway_login_page . '?loggedout=true'));
213 213
 
214
-        Helpers::close();
214
+		Helpers::close();
215 215
 
216
-    }
216
+	}
217 217
 
218 218
 }
Please login to merge, or discard this patch.
classes/subway-page-redirect.php 1 patch
Indentation   +101 added lines, -101 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,116 +36,116 @@  discard block
 block discarded – undo
36 36
 final class PageRedirect
37 37
 {
38 38
 
39
-    /**
40
-     * Redirects pages into our login page.
41
-     *
42
-     * @return void.
43
-     */
44
-    public static function index()
45
-    {
39
+	/**
40
+	 * Redirects pages into our login page.
41
+	 *
42
+	 * @return void.
43
+	 */
44
+	public static function index()
45
+	{
46 46
 
47
-        // Additional filter for custom pages, taxonomy, links, parameterized urls, etc.
48
-        // Callback function/method must return true (boolean) to disable redirect.
49
-        $should_exit = apply_filters( 'subway/classes/subway-page-redirect/index/before-page-redirect', false );
47
+		// Additional filter for custom pages, taxonomy, links, parameterized urls, etc.
48
+		// Callback function/method must return true (boolean) to disable redirect.
49
+		$should_exit = apply_filters( 'subway/classes/subway-page-redirect/index/before-page-redirect', false );
50 50
 
51
-        if ( $should_exit ) {
52
-            return;
53
-        }
51
+		if ( $should_exit ) {
52
+			return;
53
+		}
54 54
 
55
-        // Only execute for non logged in users.
56
-        if (is_user_logged_in() ) {
57
-            return;
58
-        }
55
+		// Only execute for non logged in users.
56
+		if (is_user_logged_in() ) {
57
+			return;
58
+		}
59 59
 
60
-        $queried_id = get_queried_object_id();
60
+		$queried_id = get_queried_object_id();
61 61
 
62
-        $current_post = get_post(absint($queried_id));
62
+		$current_post = get_post(absint($queried_id));
63 63
 
64
-        $login_page_id = absint(get_option('subway_login_page'));
64
+		$login_page_id = absint(get_option('subway_login_page'));
65 65
 
66
-        $excluded_page = Options::getPublicPostsIdentifiers();
66
+		$excluded_page = Options::getPublicPostsIdentifiers();
67 67
 
68
-        // Already escaped inside 'subway_get_redirect_page_url'.
69
-        $redirect_page = Options::getRedirectPageUrl(); // WPCS XSS OK.
68
+		// Already escaped inside 'subway_get_redirect_page_url'.
69
+		$redirect_page = Options::getRedirectPageUrl(); // WPCS XSS OK.
70 70
 
71 71
 		$is_private = Metabox::isPostPrivate( $current_post->ID );
72 72
 
73
-        // do_action( 'subway/classes/subway-page-redirect/index/before_page_redirect' );
74
-
75
-        // Turn off if is in 'wc-ajax' (woocommerce)
76
-        if ( function_exists( 'is_ajax') ) {
77
-            if ( is_ajax() ) {
78
-               return;
79
-            }
80
-        }
81
-
82
-        // Same for normal ajax requests.
83
-        if ( is_admin() && defined( 'DOING_AJAX' ) && DOING_AJAX  ) {
84
-            return;
85
-        }
86
-
87
-        // Exit if site is public.
88
-        if ( Options::isPublicSite() ) {
89
-            return;
90
-        }
91
-
92
-        // Check if redirect page is empty or not.
93
-        if ( empty( $redirect_page ) ) {
94
-            return;
95
-        }
96
-
97
-        // Check if buddypress activate page.
98
-        if (function_exists('bp_is_activation_page') ) {
99
-            if (bp_is_activation_page() ) {
100
-                return;
101
-            }
102
-        }
103
-
104
-        // Check if buddypress registration page.
105
-        if (function_exists('bp_is_register_page') ) {
106
-            if (bp_is_register_page() ) {
107
-                return;
108
-            }
109
-        }
110
-
111
-        // Assign 0 value to empty $post->ID to prevent exception.
112
-        // This applies to custom WordPress pages such as BP Members Page and Groups.
113
-        if (empty($current_post) ) {
114
-            $current_post = new \stdclass;
115
-            $current_post->ID = 0;
116
-        }
117
-
118
-        $current_page_id = absint($current_post->ID);
119
-
120
-        // Check if $current_page_id && $selected_blog_id is equal to each other.
121
-        // Get the page ID instead of global $post->ID that the query returns.
122
-        // The ID of the first post object inside the loop is not correct.
123
-        $blog_id = absint(get_option('page_for_posts'));
124
-
125
-        if (is_home() ) {
126
-            if ($blog_id === $login_page_id ) {
127
-                $current_page_id = $blog_id;
128
-            }
129
-        }
130
-
131
-        // Only execute the script for non-loggedin visitors.
132
-        if ( ! is_user_logged_in() ) {
133
-
134
-            if ($current_page_id !== $login_page_id ) {
135
-
136
-                if ( ! in_array( $current_page_id, $excluded_page, true ) || in_array( $current_page_id, $excluded_page, true ) && true === $is_private ) {
137
-
138
-                    wp_safe_redirect(
139
-                        add_query_arg(
140
-                            array( '_redirected' => 'yes' ),
141
-                            $redirect_page
142
-                        )
143
-                    );
144
-
145
-                    Helpers::close();
146
-                }
147
-            }
148
-        }
149
-    }
73
+		// do_action( 'subway/classes/subway-page-redirect/index/before_page_redirect' );
74
+
75
+		// Turn off if is in 'wc-ajax' (woocommerce)
76
+		if ( function_exists( 'is_ajax') ) {
77
+			if ( is_ajax() ) {
78
+			   return;
79
+			}
80
+		}
81
+
82
+		// Same for normal ajax requests.
83
+		if ( is_admin() && defined( 'DOING_AJAX' ) && DOING_AJAX  ) {
84
+			return;
85
+		}
86
+
87
+		// Exit if site is public.
88
+		if ( Options::isPublicSite() ) {
89
+			return;
90
+		}
91
+
92
+		// Check if redirect page is empty or not.
93
+		if ( empty( $redirect_page ) ) {
94
+			return;
95
+		}
96
+
97
+		// Check if buddypress activate page.
98
+		if (function_exists('bp_is_activation_page') ) {
99
+			if (bp_is_activation_page() ) {
100
+				return;
101
+			}
102
+		}
103
+
104
+		// Check if buddypress registration page.
105
+		if (function_exists('bp_is_register_page') ) {
106
+			if (bp_is_register_page() ) {
107
+				return;
108
+			}
109
+		}
110
+
111
+		// Assign 0 value to empty $post->ID to prevent exception.
112
+		// This applies to custom WordPress pages such as BP Members Page and Groups.
113
+		if (empty($current_post) ) {
114
+			$current_post = new \stdclass;
115
+			$current_post->ID = 0;
116
+		}
117
+
118
+		$current_page_id = absint($current_post->ID);
119
+
120
+		// Check if $current_page_id && $selected_blog_id is equal to each other.
121
+		// Get the page ID instead of global $post->ID that the query returns.
122
+		// The ID of the first post object inside the loop is not correct.
123
+		$blog_id = absint(get_option('page_for_posts'));
124
+
125
+		if (is_home() ) {
126
+			if ($blog_id === $login_page_id ) {
127
+				$current_page_id = $blog_id;
128
+			}
129
+		}
130
+
131
+		// Only execute the script for non-loggedin visitors.
132
+		if ( ! is_user_logged_in() ) {
133
+
134
+			if ($current_page_id !== $login_page_id ) {
135
+
136
+				if ( ! in_array( $current_page_id, $excluded_page, true ) || in_array( $current_page_id, $excluded_page, true ) && true === $is_private ) {
137
+
138
+					wp_safe_redirect(
139
+						add_query_arg(
140
+							array( '_redirected' => 'yes' ),
141
+							$redirect_page
142
+						)
143
+					);
144
+
145
+					Helpers::close();
146
+				}
147
+			}
148
+		}
149
+	}
150 150
 
151 151
 }
Please login to merge, or discard this patch.
classes/subway-metabox.php 1 patch
Indentation   +296 added lines, -296 removed lines patch added patch discarded remove patch
@@ -21,7 +21,7 @@  discard block
 block discarded – undo
21 21
 namespace Subway;
22 22
 
23 23
 if (! defined('ABSPATH') ) {
24
-    return;
24
+	return;
25 25
 }
26 26
 
27 27
 /**
@@ -37,116 +37,116 @@  discard block
 block discarded – undo
37 37
 final class Metabox
38 38
 {
39 39
 
40
-    /**
41
-     * Subway visibility meta value,
42
-     *
43
-     * @since 2.0.9
44
-     * @const string VISIBILITY_METAKEY
45
-     */
46
-    const VISIBILITY_METAKEY = 'subway_visibility_meta_key';
47
-
48
-    /**
49
-     * Registers and update metabox with its intended method below.
50
-     *
51
-     * @since  2.0.9
52
-     * @return void
53
-     */
54
-    public function __construct()
55
-    {
56
-        add_action(
57
-            'add_meta_boxes',
58
-            array(
59
-            $this,
60
-            'addMetabox'
61
-            )
62
-        );
63
-        add_action(
64
-            'save_post',
65
-            array(
66
-            $this,
67
-            'saveMetaboxValues'
68
-            )
69
-        );
70
-    }
71
-
72
-    /**
73
-     * Initialize metabox
74
-     *
75
-     * @since  2.0.9
76
-     * @access public
77
-     * @return void
78
-     */
79
-    public static function initMetabox()
80
-    {
81
-        new Metabox();
82
-    }
83
-
84
-    /**
85
-     * Initialize metabox
86
-     *
87
-     * @since  2.0.9
88
-     * @access public
89
-     * @return void
90
-     */
91
-    public function addMetabox()
92
-    {
93
-        $post_types = $this->getPostTypes();
94
-
95
-        foreach ( $post_types as $post_type => $value ) {
96
-            add_meta_box(
97
-                'subway_visibility_metabox',
98
-                esc_html__('Subway: Visibility Option', 'subway'),
99
-                array( $this, 'visibilityMetabox' ),
100
-                $post_type,
101
-                'side',
102
-                'low'
103
-            );
104
-        }
105
-    }
106
-
107
-    /**
108
-     * This method displays the Subway Visibility checkbox.
109
-     *
110
-     * @param object $post Contains data from the current post.
111
-     *
112
-     * @since  2.0.9
113
-     * @access public
114
-     * @return void
115
-     */
116
-    public function visibilityMetabox( $post )
117
-    {
118
-        $howto = __(
119
-            'Select a radio button to make this post/page public or private',
120
-            'subway'
121
-        );
122
-        $public_label = '<strong>'. __('public', 'subway') .'</strong>';
123
-        $public_setting_label = __(
124
-            'Select to make this post ',
125
-            'subway'
126
-        ) . $public_label;
127
-        $private_label = '<strong>'. __('private', 'subway') .'</strong>';
128
-        $private_setting_label = __(
129
-            'Select to make this post ',
130
-            'subway'
131
-        ) . $private_label;
132
-        $is_post_public          = self::isPostPublic($post->ID);
133
-        $is_post_private         = self::isPostPrivate($post->ID);
134
-        $public_value            = '';
135
-        $private_value           = '';
136
-
137
-        if ($is_post_public ) {
138
-            $public_value = 'public';
139
-        }
140
-        if ($is_post_private ) {
141
-            $private_value = 'private';
142
-        }
143
-
144
-        // Make sure the form request comes from WordPress
145
-        wp_nonce_field(
146
-            basename(__FILE__),
147
-            'subway_post_visibility_nonce'
148
-        );
149
-        ?>
40
+	/**
41
+	 * Subway visibility meta value,
42
+	 *
43
+	 * @since 2.0.9
44
+	 * @const string VISIBILITY_METAKEY
45
+	 */
46
+	const VISIBILITY_METAKEY = 'subway_visibility_meta_key';
47
+
48
+	/**
49
+	 * Registers and update metabox with its intended method below.
50
+	 *
51
+	 * @since  2.0.9
52
+	 * @return void
53
+	 */
54
+	public function __construct()
55
+	{
56
+		add_action(
57
+			'add_meta_boxes',
58
+			array(
59
+			$this,
60
+			'addMetabox'
61
+			)
62
+		);
63
+		add_action(
64
+			'save_post',
65
+			array(
66
+			$this,
67
+			'saveMetaboxValues'
68
+			)
69
+		);
70
+	}
71
+
72
+	/**
73
+	 * Initialize metabox
74
+	 *
75
+	 * @since  2.0.9
76
+	 * @access public
77
+	 * @return void
78
+	 */
79
+	public static function initMetabox()
80
+	{
81
+		new Metabox();
82
+	}
83
+
84
+	/**
85
+	 * Initialize metabox
86
+	 *
87
+	 * @since  2.0.9
88
+	 * @access public
89
+	 * @return void
90
+	 */
91
+	public function addMetabox()
92
+	{
93
+		$post_types = $this->getPostTypes();
94
+
95
+		foreach ( $post_types as $post_type => $value ) {
96
+			add_meta_box(
97
+				'subway_visibility_metabox',
98
+				esc_html__('Subway: Visibility Option', 'subway'),
99
+				array( $this, 'visibilityMetabox' ),
100
+				$post_type,
101
+				'side',
102
+				'low'
103
+			);
104
+		}
105
+	}
106
+
107
+	/**
108
+	 * This method displays the Subway Visibility checkbox.
109
+	 *
110
+	 * @param object $post Contains data from the current post.
111
+	 *
112
+	 * @since  2.0.9
113
+	 * @access public
114
+	 * @return void
115
+	 */
116
+	public function visibilityMetabox( $post )
117
+	{
118
+		$howto = __(
119
+			'Select a radio button to make this post/page public or private',
120
+			'subway'
121
+		);
122
+		$public_label = '<strong>'. __('public', 'subway') .'</strong>';
123
+		$public_setting_label = __(
124
+			'Select to make this post ',
125
+			'subway'
126
+		) . $public_label;
127
+		$private_label = '<strong>'. __('private', 'subway') .'</strong>';
128
+		$private_setting_label = __(
129
+			'Select to make this post ',
130
+			'subway'
131
+		) . $private_label;
132
+		$is_post_public          = self::isPostPublic($post->ID);
133
+		$is_post_private         = self::isPostPrivate($post->ID);
134
+		$public_value            = '';
135
+		$private_value           = '';
136
+
137
+		if ($is_post_public ) {
138
+			$public_value = 'public';
139
+		}
140
+		if ($is_post_private ) {
141
+			$private_value = 'private';
142
+		}
143
+
144
+		// Make sure the form request comes from WordPress
145
+		wp_nonce_field(
146
+			basename(__FILE__),
147
+			'subway_post_visibility_nonce'
148
+		);
149
+		?>
150 150
 
151 151
         <label class="screen-reader-text" for="subway-visibility">
152 152
         <?php echo esc_html($setting_label); ?>
@@ -161,13 +161,13 @@  discard block
 block discarded – undo
161 161
             <?php echo checked('public', esc_attr($public_value), false); ?>>
162 162
 
163 163
             <?php
164
-                echo wp_kses(
165
-                    $public_setting_label,
166
-                    array(
167
-                    'strong' => array()
168
-                    )
169
-                );
170
-            ?>
164
+				echo wp_kses(
165
+					$public_setting_label,
166
+					array(
167
+					'strong' => array()
168
+					)
169
+				);
170
+			?>
171 171
         </label><br/>
172 172
 
173 173
         <label class="subway-visibility-settings-checkbox-label"
@@ -179,188 +179,188 @@  discard block
 block discarded – undo
179 179
         <?php echo checked('private', esc_attr($private_value), false); ?>>
180 180
 
181 181
             <?php
182
-            echo wp_kses(
183
-                $private_setting_label,
184
-                array( 'strong' => array() )
185
-            );
186
-            ?>
182
+			echo wp_kses(
183
+				$private_setting_label,
184
+				array( 'strong' => array() )
185
+			);
186
+			?>
187 187
         </label>
188 188
 
189 189
         <p class="howto"><?php echo esc_html($howto); ?></p>
190 190
 
191 191
         <?php
192
-    }
193
-
194
-    /**
195
-     * This method verify if nonce is valid then updates a post_meta.
196
-     *
197
-     * @param integer $post_id Contains ID of the current post.
198
-     *
199
-     * @since  2.0.9
200
-     * @access public
201
-     * @return boolean false Returns false if nonce is not valid.
202
-     */
203
-    public function saveVisibilityMetabox( $post_id = '' )
204
-    {
205
-
206
-        $public_posts     = Options::getPublicPostsIdentifiers();
207
-
208
-        $posts_implode    = '';
209
-
210
-        $visibility_field = 'subway-visibility-settings';
211
-
212
-        $visibility_nonce = filter_input(
213
-            INPUT_POST,
214
-            'subway_post_visibility_nonce',
215
-            FILTER_SANITIZE_STRING
216
-        );
217
-
218
-        $post_visibility = filter_input(
219
-            INPUT_POST,
220
-            $visibility_field,
221
-            FILTER_SANITIZE_STRING
222
-        );
223
-
224
-        $is_valid_visibility_nonce = self::isNonceValid(
225
-            $visibility_nonce
226
-        );
227
-
228
-        // verify taxonomies meta box nonce
229
-        if (false === $is_valid_visibility_nonce ) {
230
-            return;
231
-        }
232
-
233
-        if (! empty($post_visibility) ) {
234
-            if (! empty($post_id) ) {
235
-                if ('public' === $post_visibility ) {
236
-                    if (! in_array($post_id, $public_posts) ) {
237
-                        array_push($public_posts, $post_id);
238
-                    }
239
-                }
240
-                if ('private' === $post_visibility ) {
241
-                    unset($public_posts[ array_search($post_id, $public_posts) ]);
242
-                }
243
-            }
244
-        }
245
-
246
-        if (! empty($post_id) ) {
247
-            $posts_implode = implode(", ", $public_posts);
248
-
249
-            if ('inherit' !== get_post_status($post_id) ) {
250
-
251
-                if (true === $is_valid_visibility_nonce ) {
252
-                    update_option('subway_public_post', $posts_implode);
253
-                    update_post_meta(
254
-                        $post_id,
255
-                        self::VISIBILITY_METAKEY,
256
-                        $post_visibility
257
-                    );
258
-                }
259
-
260
-            }
261
-        }
262
-    }
263
-
264
-    /**
265
-     * This method runs the methods that handles the update for a post_meta.
266
-     *
267
-     * @param integer $post_id Contains ID of the current post.
268
-     *
269
-     * @since  2.0.9
270
-     * @access public
271
-     * @return boolean false Returns false if nonce is not valid.
272
-     */
273
-    public function saveMetaboxValues( $post_id )
274
-    {
275
-        $this->saveVisibilityMetabox($post_id);
276
-        return;
277
-    }
278
-
279
-    /**
280
-     * Initialize metabox arguments.
281
-     *
282
-     * @param array  $args   The arguments for the get_post_types().
283
-     * @param string $output Your desired output for the data.
284
-     *
285
-     * @since  2.0.9
286
-     * @access public
287
-     * @return void
288
-     */
289
-    public static function getPostTypes( $args = '', $output = '' )
290
-    {
291
-        if (empty($args) ) {
292
-            $args = array(
293
-            'public'   => true,
294
-            );
295
-            $output = 'names';
296
-        }
297
-
298
-        $post_types = get_post_types($args, $output);
299
-
300
-        return $post_types;
301
-    }
302
-
303
-    /**
304
-     * This method verify if nonce is valid.
305
-     *
306
-     * @param mixed $nonce the name of a metabox nonce.
307
-     *
308
-     * @since  2.0.9
309
-     * @access public
310
-     * @return boolean true Returns true if nonce is valid.
311
-     */
312
-    public function isNonceValid( $nonce )
313
-    {
314
-        if (!isset($nonce) || !wp_verify_nonce($nonce, basename(__FILE__)) ) {
315
-            return;
316
-        }
317
-
318
-        return true;
319
-    }
320
-
321
-    /**
322
-     * Checks if a post is set to private.
323
-     *
324
-     * @param integer $post_id Contains ID of the current post.
325
-     *
326
-     * @since  2.0.9
327
-     * @access public
328
-     * @return boolean true Returns true if post is private. Otherwise false.
329
-     */
330
-    public static function isPostPrivate( $post_id )
331
-    {
332
-        $meta_value = '';
333
-
334
-        if (! empty($post_id) ) {
335
-            $meta_value = get_post_meta($post_id, self::VISIBILITY_METAKEY, true);
336
-            if ('private' === $meta_value ) {
337
-                return true;
338
-            }
339
-        }
340
-
341
-        return false;
342
-    }
343
-
344
-    /**
345
-     * Checks if a post is set to public.
346
-     *
347
-     * @param integer $post_id Contains ID of the current post.
348
-     *
349
-     * @since  2.0.9
350
-     * @access public
351
-     * @return boolean true Returns true if post is public. Otherwise false.
352
-     */
353
-    public static function isPostPublic( $post_id )
354
-    {
355
-        $public_post = Options::getPublicPostsIdentifiers();
356
-
357
-        if (! empty($post_id) ) {
358
-            if (! in_array($post_id, $public_post, true) ) {
359
-                return true;
360
-            }
361
-        }
362
-
363
-        return false;
364
-    }
192
+	}
193
+
194
+	/**
195
+	 * This method verify if nonce is valid then updates a post_meta.
196
+	 *
197
+	 * @param integer $post_id Contains ID of the current post.
198
+	 *
199
+	 * @since  2.0.9
200
+	 * @access public
201
+	 * @return boolean false Returns false if nonce is not valid.
202
+	 */
203
+	public function saveVisibilityMetabox( $post_id = '' )
204
+	{
205
+
206
+		$public_posts     = Options::getPublicPostsIdentifiers();
207
+
208
+		$posts_implode    = '';
209
+
210
+		$visibility_field = 'subway-visibility-settings';
211
+
212
+		$visibility_nonce = filter_input(
213
+			INPUT_POST,
214
+			'subway_post_visibility_nonce',
215
+			FILTER_SANITIZE_STRING
216
+		);
217
+
218
+		$post_visibility = filter_input(
219
+			INPUT_POST,
220
+			$visibility_field,
221
+			FILTER_SANITIZE_STRING
222
+		);
223
+
224
+		$is_valid_visibility_nonce = self::isNonceValid(
225
+			$visibility_nonce
226
+		);
227
+
228
+		// verify taxonomies meta box nonce
229
+		if (false === $is_valid_visibility_nonce ) {
230
+			return;
231
+		}
232
+
233
+		if (! empty($post_visibility) ) {
234
+			if (! empty($post_id) ) {
235
+				if ('public' === $post_visibility ) {
236
+					if (! in_array($post_id, $public_posts) ) {
237
+						array_push($public_posts, $post_id);
238
+					}
239
+				}
240
+				if ('private' === $post_visibility ) {
241
+					unset($public_posts[ array_search($post_id, $public_posts) ]);
242
+				}
243
+			}
244
+		}
245
+
246
+		if (! empty($post_id) ) {
247
+			$posts_implode = implode(", ", $public_posts);
248
+
249
+			if ('inherit' !== get_post_status($post_id) ) {
250
+
251
+				if (true === $is_valid_visibility_nonce ) {
252
+					update_option('subway_public_post', $posts_implode);
253
+					update_post_meta(
254
+						$post_id,
255
+						self::VISIBILITY_METAKEY,
256
+						$post_visibility
257
+					);
258
+				}
259
+
260
+			}
261
+		}
262
+	}
263
+
264
+	/**
265
+	 * This method runs the methods that handles the update for a post_meta.
266
+	 *
267
+	 * @param integer $post_id Contains ID of the current post.
268
+	 *
269
+	 * @since  2.0.9
270
+	 * @access public
271
+	 * @return boolean false Returns false if nonce is not valid.
272
+	 */
273
+	public function saveMetaboxValues( $post_id )
274
+	{
275
+		$this->saveVisibilityMetabox($post_id);
276
+		return;
277
+	}
278
+
279
+	/**
280
+	 * Initialize metabox arguments.
281
+	 *
282
+	 * @param array  $args   The arguments for the get_post_types().
283
+	 * @param string $output Your desired output for the data.
284
+	 *
285
+	 * @since  2.0.9
286
+	 * @access public
287
+	 * @return void
288
+	 */
289
+	public static function getPostTypes( $args = '', $output = '' )
290
+	{
291
+		if (empty($args) ) {
292
+			$args = array(
293
+			'public'   => true,
294
+			);
295
+			$output = 'names';
296
+		}
297
+
298
+		$post_types = get_post_types($args, $output);
299
+
300
+		return $post_types;
301
+	}
302
+
303
+	/**
304
+	 * This method verify if nonce is valid.
305
+	 *
306
+	 * @param mixed $nonce the name of a metabox nonce.
307
+	 *
308
+	 * @since  2.0.9
309
+	 * @access public
310
+	 * @return boolean true Returns true if nonce is valid.
311
+	 */
312
+	public function isNonceValid( $nonce )
313
+	{
314
+		if (!isset($nonce) || !wp_verify_nonce($nonce, basename(__FILE__)) ) {
315
+			return;
316
+		}
317
+
318
+		return true;
319
+	}
320
+
321
+	/**
322
+	 * Checks if a post is set to private.
323
+	 *
324
+	 * @param integer $post_id Contains ID of the current post.
325
+	 *
326
+	 * @since  2.0.9
327
+	 * @access public
328
+	 * @return boolean true Returns true if post is private. Otherwise false.
329
+	 */
330
+	public static function isPostPrivate( $post_id )
331
+	{
332
+		$meta_value = '';
333
+
334
+		if (! empty($post_id) ) {
335
+			$meta_value = get_post_meta($post_id, self::VISIBILITY_METAKEY, true);
336
+			if ('private' === $meta_value ) {
337
+				return true;
338
+			}
339
+		}
340
+
341
+		return false;
342
+	}
343
+
344
+	/**
345
+	 * Checks if a post is set to public.
346
+	 *
347
+	 * @param integer $post_id Contains ID of the current post.
348
+	 *
349
+	 * @since  2.0.9
350
+	 * @access public
351
+	 * @return boolean true Returns true if post is public. Otherwise false.
352
+	 */
353
+	public static function isPostPublic( $post_id )
354
+	{
355
+		$public_post = Options::getPublicPostsIdentifiers();
356
+
357
+		if (! empty($post_id) ) {
358
+			if (! in_array($post_id, $public_post, true) ) {
359
+				return true;
360
+			}
361
+		}
362
+
363
+		return false;
364
+	}
365 365
 
366 366
 }
Please login to merge, or discard this patch.
admin-settings.php 1 patch
Indentation   +144 added lines, -144 removed lines patch added patch discarded remove patch
@@ -20,7 +20,7 @@  discard block
 block discarded – undo
20 20
 namespace Subway;
21 21
 
22 22
 if (! defined('ABSPATH') ) {
23
-    return;
23
+	return;
24 24
 }
25 25
 
26 26
 /**
@@ -36,55 +36,55 @@  discard block
 block discarded – undo
36 36
 final class AdminSettings
37 37
 {
38 38
 
39
-    /**
40
-     * Our class constructor
41
-     */
42
-    public function __construct()
43
-    {
39
+	/**
40
+	 * Our class constructor
41
+	 */
42
+	public function __construct()
43
+	{
44 44
 
45
-        add_action('admin_menu', array( $this, 'adminMenu' ));
45
+		add_action('admin_menu', array( $this, 'adminMenu' ));
46 46
 
47
-        add_action('admin_init', array( $this, 'registerSettings' ));
47
+		add_action('admin_init', array( $this, 'registerSettings' ));
48 48
 
49
-    }
49
+	}
50 50
 
51
-    /**
52
-     * Display 'Subway' link under 'Settings'
53
-     *
54
-     * @return void
55
-     */
56
-    public function adminMenu()
57
-    {
51
+	/**
52
+	 * Display 'Subway' link under 'Settings'
53
+	 *
54
+	 * @return void
55
+	 */
56
+	public function adminMenu()
57
+	{
58 58
 
59
-        add_options_page(
60
-            'Subway Settings', 'Subway', 'manage_options',
61
-            'subway', array( $this, 'optionsPage' )
62
-        );
59
+		add_options_page(
60
+			'Subway Settings', 'Subway', 'manage_options',
61
+			'subway', array( $this, 'optionsPage' )
62
+		);
63 63
 
64 64
 		add_action( 'admin_enqueue_scripts', array( $this, 'enqueueSettingsScripts' ) );
65 65
 
66
-        return;
67
-    }
68
-
69
-    /**
70
-     * Registers all settings related to Subway.
71
-     *
72
-     * @return void
73
-     */
74
-    public function registerSettings()
75
-    {
76
-
77
-        // Register our settings section.
78
-        add_settings_section(
79
-            'subway-page-visibility-section', __('Pages Visibility', 'subway'),
80
-            array( $this, 'sectionCallback' ), 'subway-settings-section'
81
-        );
82
-
83
-        // Register Redirect Options pages.
84
-        add_settings_section(
85
-            'subway-redirect-section', __('Redirect Options', 'subway'),
86
-            array( $this, 'redirectCallback' ), 'subway-settings-section'
87
-        );
66
+		return;
67
+	}
68
+
69
+	/**
70
+	 * Registers all settings related to Subway.
71
+	 *
72
+	 * @return void
73
+	 */
74
+	public function registerSettings()
75
+	{
76
+
77
+		// Register our settings section.
78
+		add_settings_section(
79
+			'subway-page-visibility-section', __('Pages Visibility', 'subway'),
80
+			array( $this, 'sectionCallback' ), 'subway-settings-section'
81
+		);
82
+
83
+		// Register Redirect Options pages.
84
+		add_settings_section(
85
+			'subway-redirect-section', __('Redirect Options', 'subway'),
86
+			array( $this, 'redirectCallback' ), 'subway-settings-section'
87
+		);
88 88
 
89 89
 		$is_public_site = Options::isPublicSite();
90 90
 		$hidden_class = '';
@@ -93,127 +93,127 @@  discard block
 block discarded – undo
93 93
 			$hidden_class = 'hidden';
94 94
 		}
95 95
 
96
-        // Register the fields.
97
-        $fields = array(
98
-            array(
99
-                'id' => 'subway_is_public',
100
-                'label' => __('Public Website', 'subway'),
101
-                'callback' => 'subway_is_public_form',
102
-                'section' => 'subway-settings-section',
103
-                'group' => 'subway-page-visibility-section',
96
+		// Register the fields.
97
+		$fields = array(
98
+			array(
99
+				'id' => 'subway_is_public',
100
+				'label' => __('Public Website', 'subway'),
101
+				'callback' => 'subway_is_public_form',
102
+				'section' => 'subway-settings-section',
103
+				'group' => 'subway-page-visibility-section',
104 104
 				'args'  => array(
105 105
 					'label_for' => 'subway_is_public',
106 106
 					'class'     => 'subway_is_public-option',
107 107
 				),
108
-            ),
109
-
110
-            array(
111
-                'id' => 'subway_login_page',
112
-                'label' => __('Private Login Page', 'subway'),
113
-                'callback' => 'subway_login_page_form',
114
-                'section' => 'subway-settings-section',
115
-                'group' => 'subway-page-visibility-section',
108
+			),
109
+
110
+			array(
111
+				'id' => 'subway_login_page',
112
+				'label' => __('Private Login Page', 'subway'),
113
+				'callback' => 'subway_login_page_form',
114
+				'section' => 'subway-settings-section',
115
+				'group' => 'subway-page-visibility-section',
116 116
 				'args'  => array(
117 117
 					'label_for' => 'subway_login_page',
118 118
 					'class'     => 'subway_login_page-option',
119 119
 				),
120
-            ),
121
-            array(
122
-                'id' => 'subway_public_post_deprecated',
123
-                'label' => __('Public Posts IDs', 'subway'),
124
-                'callback' => 'subway_public_post',
125
-                'section' => 'subway-settings-section',
126
-                'group' => 'subway-page-visibility-section',
120
+			),
121
+			array(
122
+				'id' => 'subway_public_post_deprecated',
123
+				'label' => __('Public Posts IDs', 'subway'),
124
+				'callback' => 'subway_public_post',
125
+				'section' => 'subway-settings-section',
126
+				'group' => 'subway-page-visibility-section',
127 127
 				'args'  => array(
128 128
 					'label_for' => 'subway_public_post_deprecated',
129 129
 					'class'     => 'subway_public_post_deprecated-option ' . $hidden_class,
130 130
 				),
131
-            ),
132
-
133
-            array(
134
-                'id' => 'subway_redirect_type',
135
-                'label' => __('Redirect Type', 'subway'),
136
-                'callback' => 'subway_redirect_option_form',
137
-                'section' => 'subway-settings-section',
138
-                'group' => 'subway-redirect-section',
131
+			),
132
+
133
+			array(
134
+				'id' => 'subway_redirect_type',
135
+				'label' => __('Redirect Type', 'subway'),
136
+				'callback' => 'subway_redirect_option_form',
137
+				'section' => 'subway-settings-section',
138
+				'group' => 'subway-redirect-section',
139 139
 				'args'  => array(
140 140
 					'label_for' => 'subway_redirect_type',
141 141
 					'class'     => 'subway_redirect_type-option ' . $hidden_class,
142 142
 				),
143
-            ),
144
-            array(
145
-                'id' => 'subway_redirect_wp_admin',
146
-                'label' => __('Bypassing <em>wp-login.php</em>', 'subway'),
147
-                'callback' => 'subway_lock_wp_admin',
148
-                'section' => 'subway-settings-section',
149
-                'group' => 'subway-redirect-section',
143
+			),
144
+			array(
145
+				'id' => 'subway_redirect_wp_admin',
146
+				'label' => __('Bypassing <em>wp-login.php</em>', 'subway'),
147
+				'callback' => 'subway_lock_wp_admin',
148
+				'section' => 'subway-settings-section',
149
+				'group' => 'subway-redirect-section',
150 150
 				'args'  => array(
151 151
 					'label_for' => 'subway_redirect_wp_admin',
152 152
 					'class'     => 'subway_redirect_wp_admin-option ' . $hidden_class,
153 153
 				),
154
-            ),
155
-        );
154
+			),
155
+		);
156 156
 
157
-        foreach ( $fields as $field ) {
157
+		foreach ( $fields as $field ) {
158 158
 
159
-            add_settings_field(
160
-                $field['id'], $field['label'],
161
-                $field['callback'], $field['section'],
162
-                $field['group'], $field['args']
163
-            );
159
+			add_settings_field(
160
+				$field['id'], $field['label'],
161
+				$field['callback'], $field['section'],
162
+				$field['group'], $field['args']
163
+			);
164 164
 
165
-            register_setting('subway-settings-group', $field['id']);
165
+			register_setting('subway-settings-group', $field['id']);
166 166
 
167
-            $file = str_replace('_', '-', $field['callback']);
167
+			$file = str_replace('_', '-', $field['callback']);
168 168
 
169
-            include_once trailingslashit(SUBWAY_DIR_PATH) .
170
-            'settings-fields/field-' . sanitize_title($file) . '.php';
169
+			include_once trailingslashit(SUBWAY_DIR_PATH) .
170
+			'settings-fields/field-' . sanitize_title($file) . '.php';
171 171
 
172
-        }
172
+		}
173 173
 
174
-        // Register Redirect Page ID Settings.
175
-        register_setting('subway-settings-group', 'subway_redirect_page_id');
174
+		// Register Redirect Page ID Settings.
175
+		register_setting('subway-settings-group', 'subway_redirect_page_id');
176 176
 
177
-        // Register Redirect Custom URL Settings.
178
-        register_setting('subway-settings-group', 'subway_redirect_custom_url');
177
+		// Register Redirect Custom URL Settings.
178
+		register_setting('subway-settings-group', 'subway_redirect_custom_url');
179 179
 
180 180
 		$this->registerSettingsScripts();
181 181
 
182
-        return;
183
-    }
184
-
185
-    /**
186
-     * Callback function for the first Section.
187
-     *
188
-     * @return void
189
-     */
190
-    public function sectionCallback()
191
-    {
192
-        echo esc_html_e(
193
-            'All settings related to the
182
+		return;
183
+	}
184
+
185
+	/**
186
+	 * Callback function for the first Section.
187
+	 *
188
+	 * @return void
189
+	 */
190
+	public function sectionCallback()
191
+	{
192
+		echo esc_html_e(
193
+			'All settings related to the
194 194
         	visibility of your site and pages.', 'subway'
195
-        );
196
-        return;
197
-    }
198
-
199
-    /**
200
-     * Callback function for the second Section.
201
-     *
202
-     * @return void
203
-     */
204
-    public function redirectCallback()
205
-    {
206
-        return;
207
-    }
208
-
209
-    /**
210
-     * Renders the 'wrapper' for our options pages.
211
-     *
212
-     * @return void
213
-     */
214
-    public function optionsPage()
215
-    {
216
-        ?>
195
+		);
196
+		return;
197
+	}
198
+
199
+	/**
200
+	 * Callback function for the second Section.
201
+	 *
202
+	 * @return void
203
+	 */
204
+	public function redirectCallback()
205
+	{
206
+		return;
207
+	}
208
+
209
+	/**
210
+	 * Renders the 'wrapper' for our options pages.
211
+	 *
212
+	 * @return void
213
+	 */
214
+	public function optionsPage()
215
+	{
216
+		?>
217 217
 
218 218
         <div class="wrap">
219 219
             <h2>
@@ -227,30 +227,30 @@  discard block
 block discarded – undo
227 227
         </div>
228 228
 
229 229
         <?php
230
-    }
230
+	}
231 231
 
232 232
 	/**
233
-     * Registers the scipts for the Subway settings page.
234
-     *
233
+	 * Registers the scipts for the Subway settings page.
234
+	 *
235 235
 	 * @since  2.0.9
236
-     * @access public
237
-     * @return void
238
-     */
236
+	 * @access public
237
+	 * @return void
238
+	 */
239 239
 	public function registerSettingsScripts() {
240 240
 
241 241
 		// Registers the Subway settings Javascript.
242
-	    wp_register_script( 'subway-settings-script', plugins_url('/assets/js/settings.js', __FILE__) );
243
-	    wp_register_style( 'subway-settings-style', plugins_url('/assets/css/settings.css', __FILE__) );
242
+		wp_register_script( 'subway-settings-script', plugins_url('/assets/js/settings.js', __FILE__) );
243
+		wp_register_style( 'subway-settings-style', plugins_url('/assets/css/settings.css', __FILE__) );
244 244
 	 }
245 245
 
246 246
 	/**
247
-     * Loads the scipts for the Subway settings page.
247
+	 * Loads the scipts for the Subway settings page.
248 248
 	 *
249 249
 	 * @since  2.0.9
250
-     * @access public
251
-     * @return void
252
-     * @return void
253
-     */
250
+	 * @access public
251
+	 * @return void
252
+	 * @return void
253
+	 */
254 254
 	public function enqueueSettingsScripts( $hook ) {
255 255
 		// Checks if page hook is Subway settings page.
256 256
 		if ( 'settings_page_subway' === $hook ) {
Please login to merge, or discard this patch.