Passed
Pull Request — master (#7)
by Joseph
02:29
created
classes/subway-auth-redirect.php 1 patch
Spacing   +29 added lines, -29 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
 
13 13
 namespace Subway;
14 14
 
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	return;
17 17
 }
18 18
 
@@ -31,17 +31,17 @@  discard block
 block discarded – undo
31 31
 	public static function handle_authentication() {
32 32
 
33 33
 		// Set the header type to json.
34
-		header( 'Content-Type: application/json' );
34
+		header('Content-Type: application/json');
35 35
 
36
-		$log = filter_input( INPUT_POST, 'log', FILTER_SANITIZE_STRING );
36
+		$log = filter_input(INPUT_POST, 'log', FILTER_SANITIZE_STRING);
37 37
 
38
-		$pwd = filter_input( INPUT_POST, 'pwd', FILTER_SANITIZE_STRING );
38
+		$pwd = filter_input(INPUT_POST, 'pwd', FILTER_SANITIZE_STRING);
39 39
 
40
-		if ( empty( $log ) && empty( $pwd ) ) {
40
+		if (empty($log) && empty($pwd)) {
41 41
 
42 42
 			$response['type'] = 'error';
43 43
 
44
-			$response['message'] = esc_html__( 'Username and Password cannot be empty.', 'subway' );
44
+			$response['message'] = esc_html__('Username and Password cannot be empty.', 'subway');
45 45
 
46 46
 		} else {
47 47
 
@@ -49,7 +49,7 @@  discard block
 block discarded – undo
49 49
 
50 50
 			$response = array();
51 51
 
52
-			if ( is_wp_error( $is_signin ) ) {
52
+			if (is_wp_error($is_signin)) {
53 53
 
54 54
 				$response['type'] = 'error';
55 55
 
@@ -59,16 +59,16 @@  discard block
 block discarded – undo
59 59
 
60 60
 				$response['type'] = 'success';
61 61
 
62
-				$response['message'] = esc_html__( 'You have successfully logged-in. Redirecting you in few seconds...' );
62
+				$response['message'] = esc_html__('You have successfully logged-in. Redirecting you in few seconds...');
63 63
 
64 64
 			}
65 65
 		}
66 66
 		
67
-		$subway_redirect_url = Auth_Redirect::get_login_redirect_url( '', '' );
67
+		$subway_redirect_url = Auth_Redirect::get_login_redirect_url('', '');
68 68
 
69
-		$response['redirect_url'] = apply_filters( 'subway_login_redirect', $subway_redirect_url );
69
+		$response['redirect_url'] = apply_filters('subway_login_redirect', $subway_redirect_url);
70 70
 
71
-		echo wp_json_encode( $response );
71
+		echo wp_json_encode($response);
72 72
 
73 73
 		wp_die();
74 74
 
@@ -82,42 +82,42 @@  discard block
 block discarded – undo
82 82
 	 * @param  integer $user        The current user logging in.
83 83
 	 * @return string               The final redirect url.
84 84
 	 */
85
-	public static function get_login_redirect_url( $redirect_to ) {
85
+	public static function get_login_redirect_url($redirect_to) {
86 86
 
87
-		$subway_redirect_type = get_option( 'subway_redirect_type' );
87
+		$subway_redirect_type = get_option('subway_redirect_type');
88 88
 
89 89
 		// Redirect the user to default behaviour if there are no redirect type option saved.
90
-		if ( empty( $subway_redirect_type ) ) {
90
+		if (empty($subway_redirect_type)) {
91 91
 
92 92
 			return $redirect_to;
93 93
 
94 94
 		}
95 95
 
96
-		if ( 'default' === $subway_redirect_type ) {
96
+		if ('default' === $subway_redirect_type) {
97 97
 			return $redirect_to;
98 98
 		}
99 99
 
100
-		if ( 'page' === $subway_redirect_type ) {
100
+		if ('page' === $subway_redirect_type) {
101 101
 
102 102
 			// Get the page url of the selected page if the admin selected 'Custom Page' in the redirect type settings.
103
-			$selected_redirect_page = intval( get_option( 'subway_redirect_page_id' ) );
103
+			$selected_redirect_page = intval(get_option('subway_redirect_page_id'));
104 104
 
105 105
 			// Redirect to default WordPress behaviour if the user did not select page.
106
-			if ( empty( $selected_redirect_page ) ) {
106
+			if (empty($selected_redirect_page)) {
107 107
 
108 108
 				return $redirect_to;
109 109
 			}
110 110
 
111 111
 			// Otherwise, get the permalink of the saved page and let the user go into that page.
112
-			return get_permalink( $selected_redirect_page );
112
+			return get_permalink($selected_redirect_page);
113 113
 
114
-		} elseif ( 'custom_url' === $subway_redirect_type ) {
114
+		} elseif ('custom_url' === $subway_redirect_type) {
115 115
 
116 116
 			// Get the custom url saved in the redirect type settings.
117
-			$entered_custom_url = get_option( 'subway_redirect_custom_url' );
117
+			$entered_custom_url = get_option('subway_redirect_custom_url');
118 118
 
119 119
 			// Redirect to default WordPress behaviour if the user did enter a custom url.
120
-			if ( empty( $entered_custom_url ) ) {
120
+			if (empty($entered_custom_url)) {
121 121
 
122 122
 				return $redirect_to;
123 123
 
@@ -126,12 +126,12 @@  discard block
 block discarded – undo
126 126
 			// Otherwise, get the custom url saved and let the user go into that page.
127 127
 			$current_user = wp_get_current_user();
128 128
 
129
-			if ( ! empty( $current_user->ID ) ) {
130
-				$entered_custom_url = str_replace( '%user_id%', $current_user->ID, $entered_custom_url );
129
+			if ( ! empty($current_user->ID)) {
130
+				$entered_custom_url = str_replace('%user_id%', $current_user->ID, $entered_custom_url);
131 131
 			}
132 132
 
133
-			if ( ! empty( $current_user->user_login ) ) {
134
-				$entered_custom_url = str_replace( '%user_name%', $current_user->user_login, $entered_custom_url );
133
+			if ( ! empty($current_user->user_login)) {
134
+				$entered_custom_url = str_replace('%user_name%', $current_user->user_login, $entered_custom_url);
135 135
 			}
136 136
 
137 137
 			return $entered_custom_url;
@@ -148,12 +148,12 @@  discard block
 block discarded – undo
148 148
 	 * @param  string $login_url    The login url.
149 149
 	 * @return string               The final login url.
150 150
 	 */
151
-	public static function login_url( $login_url  ) {
151
+	public static function login_url($login_url) {
152 152
 
153 153
 		$subway_login_page = Options::get_redirect_page_url();
154 154
 
155 155
 		// Return the default login url if there is no log-in page defined.
156
-		if ( empty( $subway_login_page ) ) {
156
+		if (empty($subway_login_page)) {
157 157
 			return $login_url;
158 158
 		}
159 159
 
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 
172 172
 		$subway_login_page = Options::get_redirect_page_url();
173 173
 
174
-		wp_safe_redirect( esc_url( $subway_login_page . '?loggedout=true' ) );
174
+		wp_safe_redirect(esc_url($subway_login_page . '?loggedout=true'));
175 175
 
176 176
 		Helpers::close();
177 177
 
Please login to merge, or discard this patch.
shortcodes/subway-shortcodes.php 1 patch
Spacing   +13 added lines, -13 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
 namespace Subway;
21 21
 
22
-if (! defined('ABSPATH') ) {
22
+if ( ! defined('ABSPATH')) {
23 23
     return;
24 24
 }
25 25
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     private function __construct() 
45 45
     {
46 46
         
47
-        add_action('init', array( $this, 'register'));
47
+        add_action('init', array($this, 'register'));
48 48
         
49 49
         return $this;
50 50
 
@@ -60,7 +60,7 @@  discard block
 block discarded – undo
60 60
         
61 61
         static $instance = null;
62 62
 
63
-        if (null === $instance ) {
63
+        if (null === $instance) {
64 64
 
65 65
             $instance = new Shortcodes();
66 66
 
@@ -78,11 +78,11 @@  discard block
 block discarded – undo
78 78
     public function register() 
79 79
     {
80 80
 
81
-        add_shortcode('subway_login', array( $this, 'loginForm' ));
81
+        add_shortcode('subway_login', array($this, 'loginForm'));
82 82
 
83
-        add_action('login_form_middle', array( $this, 'loginFormAction' ), 10, 2);
83
+        add_action('login_form_middle', array($this, 'loginFormAction'), 10, 2);
84 84
 
85
-        add_action('login_form_middle', array( $this, 'lostPasswordLink' ), 10, 2);
85
+        add_action('login_form_middle', array($this, 'lostPasswordLink'), 10, 2);
86 86
 
87 87
         return;
88 88
 
@@ -111,22 +111,22 @@  discard block
 block discarded – undo
111 111
      * 
112 112
      * @return string The html template content.
113 113
      */
114
-    protected function renderTemplate( $atts, $file = '' ) 
114
+    protected function renderTemplate($atts, $file = '') 
115 115
     {
116 116
 
117 117
         ob_start();
118 118
 
119
-        if (empty($file) ) {
119
+        if (empty($file)) {
120 120
             
121 121
             return;
122 122
 
123 123
         }
124 124
 
125
-        $template = SUBWAY_DIR_PATH . 'templates/'.$file;
125
+        $template = SUBWAY_DIR_PATH . 'templates/' . $file;
126 126
 
127
-        if (file_exists($template) ) {
127
+        if (file_exists($template)) {
128 128
 
129
-            $theme_template = locate_template(array('gears/shortcodes/'.$file ));
129
+            $theme_template = locate_template(array('gears/shortcodes/' . $file));
130 130
 
131 131
             if ($theme_template) {
132 132
 
@@ -157,7 +157,7 @@  discard block
 block discarded – undo
157 157
      * 
158 158
      * @return string            The content of our login form action.
159 159
      */
160
-    public function loginFormAction( $__content ) 
160
+    public function loginFormAction($__content) 
161 161
     {
162 162
 
163 163
         ob_start();
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
      * 
176 176
      * @return string          The content of our lost password link.
177 177
      */
178
-    public function lostPasswordLink( $content ) 
178
+    public function lostPasswordLink($content) 
179 179
     {
180 180
         
181 181
         return $content . $this->renderTemplate(
Please login to merge, or discard this patch.
i18.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
 namespace Subway;
21 21
 
22
-if (! defined('ABSPATH') ) {
22
+if ( ! defined('ABSPATH')) {
23 23
     return;
24 24
 }
25 25
 
@@ -44,7 +44,7 @@  discard block
 block discarded – undo
44 44
     public function __construct() 
45 45
     {
46 46
 
47
-        add_action('plugins_loaded', array( $this, 'subwayLocalizePlugin' ));
47
+        add_action('plugins_loaded', array($this, 'subwayLocalizePlugin'));
48 48
 
49 49
         return;
50 50
     }
Please login to merge, or discard this patch.
templates/login-form-lost-password.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -17,12 +17,12 @@
 block discarded – undo
17 17
  * @link     github.com/codehaiku/subway The Plugin Repository
18 18
  */
19 19
 
20
-if ( ! defined( 'ABSPATH' ) ) {
20
+if ( ! defined('ABSPATH')) {
21 21
 	return;
22 22
 }
23 23
 ?>
24 24
 <p class="subway-login-lost-password">
25
-	<a href="<?php echo esc_url( wp_lostpassword_url( $redirect = '' ) ); ?>">
26
-	 	<?php esc_html_e( 'Forgot Password', 'subway' ); ?>
25
+	<a href="<?php echo esc_url(wp_lostpassword_url($redirect = '')); ?>">
26
+	 	<?php esc_html_e('Forgot Password', 'subway'); ?>
27 27
 	</a>
28 28
 </p>
Please login to merge, or discard this patch.
templates/login-form.php 1 patch
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -17,17 +17,17 @@  discard block
 block discarded – undo
17 17
  * @link     github.com/codehaiku/subway The Plugin Repository
18 18
  */
19 19
 
20
-if ( ! defined( 'ABSPATH' ) ) {
20
+if ( ! defined('ABSPATH')) {
21 21
 	return;
22 22
 }
23 23
 
24 24
 $args = array(
25 25
 	'echo'           => true,
26 26
 	'form_id'        => 'loginform',
27
-	'label_username' => __( 'Username', 'subway' ),
28
-	'label_password' => __( 'Password', 'subway' ),
29
-	'label_remember' => __( 'Remember Me', 'subway' ),
30
-	'label_log_in'   => __( 'Log In', 'subway' ),
27
+	'label_username' => __('Username', 'subway'),
28
+	'label_password' => __('Password', 'subway'),
29
+	'label_remember' => __('Remember Me', 'subway'),
30
+	'label_log_in'   => __('Log In', 'subway'),
31 31
 	'id_username'    => 'user_login',
32 32
 	'id_password'    => 'user_pass',
33 33
 	'id_remember'    => 'rememberme',
@@ -42,100 +42,100 @@  discard block
 block discarded – undo
42 42
 
43 43
 $message_types = array();
44 44
 
45
-$http_request_login = filter_input( INPUT_GET, 'login', FILTER_SANITIZE_SPECIAL_CHARS );
45
+$http_request_login = filter_input(INPUT_GET, 'login', FILTER_SANITIZE_SPECIAL_CHARS);
46 46
 
47
-$http_request_type = filter_input( INPUT_GET, 'type', FILTER_SANITIZE_SPECIAL_CHARS );
47
+$http_request_type = filter_input(INPUT_GET, 'type', FILTER_SANITIZE_SPECIAL_CHARS);
48 48
 
49
-$http_request_logout = filter_input( INPUT_GET, 'loggedout', FILTER_SANITIZE_SPECIAL_CHARS );
49
+$http_request_logout = filter_input(INPUT_GET, 'loggedout', FILTER_SANITIZE_SPECIAL_CHARS);
50 50
 
51
-if ( isset( $http_request_login ) ) {
51
+if (isset($http_request_login)) {
52 52
 
53
-	if ( 'failed' === $http_request_login ) {
53
+	if ('failed' === $http_request_login) {
54 54
 
55
-		if ( isset( $http_request_type ) ) {
55
+		if (isset($http_request_type)) {
56 56
 
57 57
 			$message_types = array(
58 58
 
59 59
 				'default' => array(
60
-						'message' => __( 'There was an error trying to sign-in to your account. Make sure the credentials below are correct.', 'subway' ),
60
+						'message' => __('There was an error trying to sign-in to your account. Make sure the credentials below are correct.', 'subway'),
61 61
 					),
62 62
 				'__blank' => array(
63
-						'message' => __( 'Required: Username and Password cannot be empty.', 'subway' ),
63
+						'message' => __('Required: Username and Password cannot be empty.', 'subway'),
64 64
 					),
65 65
 				'__userempty' => array(
66
-						'message' => __( 'Required: Username cannot be empty.', 'subway' ),
66
+						'message' => __('Required: Username cannot be empty.', 'subway'),
67 67
 					),
68 68
 				'__passempty' => array(
69
-						'message' => __( 'Required: Password cannot be empty.', 'subway' ),
69
+						'message' => __('Required: Password cannot be empty.', 'subway'),
70 70
 					),
71 71
 				'fb_invalid_email' => array(
72
-						'message' => __( 'Facebook email address is invalid or is not yet verified.', 'subway' ),
72
+						'message' => __('Facebook email address is invalid or is not yet verified.', 'subway'),
73 73
 					),
74 74
 				'fb_error' => array(
75
-						'message' => __( 'Facebook Application Error. Misconfigured or App is rejected.', 'subway' ),
75
+						'message' => __('Facebook Application Error. Misconfigured or App is rejected.', 'subway'),
76 76
 					),
77 77
 				'app_not_live' => array(
78
-						'message' => __( 'Unable to fetch your Facebook Profile.', 'subway' ),
78
+						'message' => __('Unable to fetch your Facebook Profile.', 'subway'),
79 79
 					),
80 80
 				'gears_username_or_email_exists' => array(
81
-						'message' => __( 'Username or email address already exists', 'subway' ),
81
+						'message' => __('Username or email address already exists', 'subway'),
82 82
 					),
83 83
 				'gp_error_authentication' => array(
84
-						'message' => __( 'Google Plus Authentication Error. Invalid Client ID or Secret.', 'subway' ),
84
+						'message' => __('Google Plus Authentication Error. Invalid Client ID or Secret.', 'subway'),
85 85
 					),
86 86
 			);
87 87
 
88 88
 			$message = $message_types['default']['message'];
89 89
 
90
-			if ( array_key_exists( $http_request_type, $message_types ) ) {
90
+			if (array_key_exists($http_request_type, $message_types)) {
91 91
 
92
-				$message = $message_types[ $http_request_type ]['message'];
92
+				$message = $message_types[$http_request_type]['message'];
93 93
 
94 94
 			}
95 95
 
96
-			$error_login_message = '<div id="message" class="error">' . esc_html( $message ) . '</div>';
96
+			$error_login_message = '<div id="message" class="error">' . esc_html($message) . '</div>';
97 97
 
98 98
 		} else {
99 99
 
100
-			$error_login_message = '<div id="message" class="error">' . esc_html__( 'Error: Invalid username and password combination.', 'subway' ) . '</div>';
100
+			$error_login_message = '<div id="message" class="error">' . esc_html__('Error: Invalid username and password combination.', 'subway') . '</div>';
101 101
 
102 102
 		}
103 103
 	}
104 104
 }
105 105
 
106
-if ( isset( $http_request_logout ) ) {
107
-	$error_login_message = '<div id="message" class="success">' . esc_html__( 'You have logged out successfully.', 'subway' ) . '</div>';
106
+if (isset($http_request_logout)) {
107
+	$error_login_message = '<div id="message" class="success">' . esc_html__('You have logged out successfully.', 'subway') . '</div>';
108 108
 }
109 109
 
110
-$http_request_redirected = filter_input( INPUT_GET, '_redirected', FILTER_SANITIZE_SPECIAL_CHARS );
110
+$http_request_redirected = filter_input(INPUT_GET, '_redirected', FILTER_SANITIZE_SPECIAL_CHARS);
111 111
 
112
-if ( isset( $http_request_redirected ) ) {
113
-	$error_login_message = '<div id="message" class="success">' . esc_html__( 'Members only page. Please use the login form below to access the page.', 'subway' ) . '</div>';
112
+if (isset($http_request_redirected)) {
113
+	$error_login_message = '<div id="message" class="success">' . esc_html__('Members only page. Please use the login form below to access the page.', 'subway') . '</div>';
114 114
 }
115 115
 
116 116
 ?>
117
-<?php if ( ! is_user_logged_in() ) { ?>
117
+<?php if ( ! is_user_logged_in()) { ?>
118 118
 	<div class="mg-top-35 mg-bottom-35 subway-login-form">
119 119
 		<div class="subway-login-form-form">
120 120
 			<div class="subway-login-form__actions">
121 121
 				<h3>
122
-					<?php esc_html_e( 'Account Sign-in', 'subway' ); ?>
122
+					<?php esc_html_e('Account Sign-in', 'subway'); ?>
123 123
 				</h3>
124
-				<?php do_action( 'gears_login_form' ); ?>
124
+				<?php do_action('gears_login_form'); ?>
125 125
 			</div>
126 126
 			<div class="subway-login-form-message">
127
-				<?php echo wp_kses_post( $error_login_message ); ?>
127
+				<?php echo wp_kses_post($error_login_message); ?>
128 128
 			</div>
129 129
 			<div class="subway-login-form__form">
130
-				<?php echo wp_login_form( $args ); ?>
130
+				<?php echo wp_login_form($args); ?>
131 131
 			</div>
132 132
 		</div>
133 133
 	</div>
134 134
 <?php } else { ?>
135 135
 	<div class="mg-top-35 mg-bottom-35 subway-login-sucessfull" style="background: #CDDC39; padding: 15px 15px 15px 15px;border-radius: 4px;color: #616161;">
136 136
 		<p style="margin-bottom: 0px;">
137
-			<?php $success_message = apply_filters( 'subway_login_message_success', esc_html__( 'Great! You have succesfully login.', 'subway' ) ); ?>
138
-			<?php echo esc_html( $success_message ); ?>
137
+			<?php $success_message = apply_filters('subway_login_message_success', esc_html__('Great! You have succesfully login.', 'subway')); ?>
138
+			<?php echo esc_html($success_message); ?>
139 139
 		</p>
140 140
 	</div>
141 141
 <?php } ?>
Please login to merge, or discard this patch.
admin-settings.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -19,7 +19,7 @@  discard block
 block discarded – undo
19 19
 
20 20
 namespace Subway;
21 21
 
22
-if (! defined('ABSPATH') ) {
22
+if ( ! defined('ABSPATH')) {
23 23
     return;
24 24
 }
25 25
 
@@ -42,9 +42,9 @@  discard block
 block discarded – undo
42 42
     public function __construct() 
43 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
 
@@ -58,7 +58,7 @@  discard block
 block discarded – undo
58 58
 
59 59
         add_options_page(
60 60
             'Subway Settings', 'Subway', 'manage_options', 
61
-            'subway', array( $this, 'optionsPage' )
61
+            'subway', array($this, 'optionsPage')
62 62
         );
63 63
 
64 64
         return;
@@ -75,13 +75,13 @@  discard block
 block discarded – undo
75 75
         // Register our settings section.
76 76
         add_settings_section(
77 77
             'subway-page-visibility-section', __('Pages Visibility', 'subway'), 
78
-            array( $this, 'sectionCallback' ), 'subway-settings-section' 
78
+            array($this, 'sectionCallback'), 'subway-settings-section' 
79 79
         );
80 80
 
81 81
         // Register Redirect Options pages.
82 82
         add_settings_section(
83 83
             'subway-redirect-section', __('Redirect Options', 'subway'), 
84
-            array( $this, 'redirectCallback' ), 'subway-settings-section' 
84
+            array($this, 'redirectCallback'), 'subway-settings-section' 
85 85
         );
86 86
 
87 87
         // Register the fields.
@@ -125,7 +125,7 @@  discard block
 block discarded – undo
125 125
             ),
126 126
         );
127 127
 
128
-        foreach ( $fields as $field ) {
128
+        foreach ($fields as $field) {
129 129
 
130 130
             add_settings_field(
131 131
                 $field['id'], $field['label'], 
Please login to merge, or discard this patch.