Completed
Pull Request — master (#137)
by Sébastien
06:05
created
includes/admin/class-alnp-admin-notices.php 2 patches
Spacing   +36 added lines, -36 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly.
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined('ABSPATH')) {
15 15
 	exit;
16 16
 }
17 17
 
18
-if ( ! class_exists( 'Auto_Load_Next_Post_Admin_Notices' ) ) {
18
+if ( ! class_exists('Auto_Load_Next_Post_Admin_Notices')) {
19 19
 
20 20
 	class Auto_Load_Next_Post_Admin_Notices {
21 21
 
@@ -37,16 +37,16 @@  discard block
 block discarded – undo
37 37
 		 * @version 1.5.0
38 38
 		 */
39 39
 		public function __construct() {
40
-			self::$install_date = get_site_option( 'auto_load_next_post_install_date', time() );
40
+			self::$install_date = get_site_option('auto_load_next_post_install_date', time());
41 41
 
42 42
 			// Check WordPress enviroment.
43
-			add_action( 'admin_init', array( $this, 'check_wp' ), 12 );
43
+			add_action('admin_init', array($this, 'check_wp'), 12);
44 44
 
45 45
 			// Don't bug the user if they don't want to see any notices.
46
-			add_action( 'admin_init', array( $this, 'dont_bug_me' ), 15 );
46
+			add_action('admin_init', array($this, 'dont_bug_me'), 15);
47 47
 
48 48
 			// Display other admin notices when required. All are dismissable.
49
-			add_action( 'admin_notices', array( $this, 'add_notices' ), 0 );
49
+			add_action('admin_notices', array($this, 'add_notices'), 0);
50 50
 		} // END __construct()
51 51
 
52 52
 		/**
@@ -60,8 +60,8 @@  discard block
 block discarded – undo
60 60
 		public function check_wp() {
61 61
 			global $wp_version;
62 62
 
63
-			if ( ! version_compare( $wp_version, AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE, '>=' ) ) {
64
-				add_action( 'admin_notices', array( $this, 'requirement_wp_notice' ) );
63
+			if ( ! version_compare($wp_version, AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE, '>=')) {
64
+				add_action('admin_notices', array($this, 'requirement_wp_notice'));
65 65
 				return false;
66 66
 			}
67 67
 
@@ -81,25 +81,25 @@  discard block
 block discarded – undo
81 81
 			$user_hidden_notice = false;
82 82
 
83 83
 			// If the user is allowed to install plugins and requested to hide the review notice then hide it for that user.
84
-			if ( ! empty( $_GET['hide_auto_load_next_post_review_notice'] ) && current_user_can( 'install_plugins' ) ) {
85
-				add_user_meta( $current_user->ID, 'auto_load_next_post_hide_review_notice', '1', true );
84
+			if ( ! empty($_GET['hide_auto_load_next_post_review_notice']) && current_user_can('install_plugins')) {
85
+				add_user_meta($current_user->ID, 'auto_load_next_post_hide_review_notice', '1', true);
86 86
 				$user_hidden_notice = true;
87 87
 			}
88 88
 
89 89
 			// If the user is allowed to install plugins and requested to hide the welcome notice then hide it for that user.
90
-			if ( ! empty( $_GET['hide_auto_load_next_post_welcome_notice'] ) && current_user_can( 'install_plugins' ) ) {
91
-				add_user_meta( $current_user->ID, 'auto_load_next_post_hide_welcome_notice', '1', true );
90
+			if ( ! empty($_GET['hide_auto_load_next_post_welcome_notice']) && current_user_can('install_plugins')) {
91
+				add_user_meta($current_user->ID, 'auto_load_next_post_hide_welcome_notice', '1', true);
92 92
 				$user_hidden_notice = true;
93 93
 			}
94 94
 
95
-			if ( ! empty( $_GET['hide_auto_load_next_post_beta_notice'] ) && current_user_can( 'install_plugins' ) ) {
96
-				set_transient( 'alnp_beta_notice_hidden', 'hidden', WEEK_IN_SECONDS );
95
+			if ( ! empty($_GET['hide_auto_load_next_post_beta_notice']) && current_user_can('install_plugins')) {
96
+				set_transient('alnp_beta_notice_hidden', 'hidden', WEEK_IN_SECONDS);
97 97
 				$user_hidden_notice = true;
98 98
 			}
99 99
 
100
-			if ( $user_hidden_notice ) {
100
+			if ($user_hidden_notice) {
101 101
 				// Redirect to the plugins page.
102
-				wp_safe_redirect( admin_url( 'plugins.php' ) ); exit;
102
+				wp_safe_redirect(admin_url('plugins.php')); exit;
103 103
 			}
104 104
 		} // END dont_bug_me()
105 105
 
@@ -118,43 +118,43 @@  discard block
 block discarded – undo
118 118
 			$template = get_option('template');
119 119
 
120 120
 			// Checks if the theme supports Auto Load Next Post.
121
-			if ( is_alnp_supported() ) {
121
+			if (is_alnp_supported()) {
122 122
 				// If supported theme does not match active theme then show notice.
123
-				if ( get_option( 'auto_load_next_post_theme_supported' ) !== $template ) {
124
-					add_action( 'admin_notices', array( $this, 'theme_ready_notice' ) );
125
-					update_option( 'auto_load_next_post_theme_supported', $template );
123
+				if (get_option('auto_load_next_post_theme_supported') !== $template) {
124
+					add_action('admin_notices', array($this, 'theme_ready_notice'));
125
+					update_option('auto_load_next_post_theme_supported', $template);
126 126
 				}
127 127
 			}
128 128
 			else {
129 129
 				// If theme not supported then delete option.
130
-				delete_option( 'auto_load_next_post_theme_supported' );
130
+				delete_option('auto_load_next_post_theme_supported');
131 131
 			}
132 132
 
133 133
 			// Is admin review notice hidden?
134
-			$hide_review_notice = get_user_meta( $current_user->ID, 'auto_load_next_post_hide_review_notice', true );
134
+			$hide_review_notice = get_user_meta($current_user->ID, 'auto_load_next_post_hide_review_notice', true);
135 135
 
136 136
 			// Check if we need to display the review plugin notice.
137
-			if ( current_user_can( 'install_plugins' ) && empty( $hide_review_notice ) ) {
137
+			if (current_user_can('install_plugins') && empty($hide_review_notice)) {
138 138
 				// If it has been a week or more since activating the plugin then display the review notice.
139
-				if ( ( intval( time() - self::$install_date ) ) > WEEK_IN_SECONDS ) {
140
-					add_action( 'admin_notices', array( $this, 'plugin_review_notice' ) );
139
+				if ((intval(time() - self::$install_date)) > WEEK_IN_SECONDS) {
140
+					add_action('admin_notices', array($this, 'plugin_review_notice'));
141 141
 				}
142 142
 			}
143 143
 
144 144
 			// Is admin welcome notice hidden?
145
-			$hide_welcome_notice = get_user_meta( $current_user->ID, 'auto_load_next_post_hide_welcome_notice', true );
145
+			$hide_welcome_notice = get_user_meta($current_user->ID, 'auto_load_next_post_hide_welcome_notice', true);
146 146
 
147 147
 			// Check if we need to display the welcome notice.
148
-			if ( current_user_can( 'install_plugins' ) && empty( $hide_welcome_notice ) ) {
148
+			if (current_user_can('install_plugins') && empty($hide_welcome_notice)) {
149 149
 				// If the user has just installed the plugin for the first time then welcome the user.
150
-				if ( ( intval( time() - strtotime( self::$install_date ) ) / WEEK_IN_SECONDS ) % 52 <= 2 ) {
151
-					add_action( 'admin_notices', array( $this, 'welcome_notice' ) );
150
+				if ((intval(time() - strtotime(self::$install_date)) / WEEK_IN_SECONDS) % 52 <= 2) {
151
+					add_action('admin_notices', array($this, 'welcome_notice'));
152 152
 				}
153 153
 			}
154 154
 
155 155
 			// Is this version of Auto Load Next Post a beta release?
156
-			if ( is_alnp_beta() && empty( get_transient( 'alnp_beta_notice_hidden' ) ) ) {
157
-				add_action( 'admin_notices', array( $this, 'beta_notice' ) );
156
+			if (is_alnp_beta() && empty(get_transient('alnp_beta_notice_hidden'))) {
157
+				add_action('admin_notices', array($this, 'beta_notice'));
158 158
 			}
159 159
 		} // END add_notices()
160 160
 
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 		 * @since  1.4.3
166 166
 		 */
167 167
 		public function requirement_wp_notice() {
168
-			include( dirname( __FILE__ ) . '/views/html-notice-requirement-wp.php' );
168
+			include(dirname(__FILE__).'/views/html-notice-requirement-wp.php');
169 169
 		} // END requirement_wp_notice()
170 170
 
171 171
 		/**
@@ -175,7 +175,7 @@  discard block
 block discarded – undo
175 175
 		 * @since  1.5.0
176 176
 		 */
177 177
 		public function theme_ready_notice() {
178
-			include( dirname( __FILE__ ) . '/views/html-notice-theme-ready.php' );
178
+			include(dirname(__FILE__).'/views/html-notice-theme-ready.php');
179 179
 		} // END theme_ready_notice()
180 180
 
181 181
 		/**
@@ -185,7 +185,7 @@  discard block
 block discarded – undo
185 185
 		 * @since  1.5.0
186 186
 		 */
187 187
 		public function welcome_notice() {
188
-			include( dirname( __FILE__ ) . '/views/html-notice-welcome.php' );
188
+			include(dirname(__FILE__).'/views/html-notice-welcome.php');
189 189
 		} // END welcome_notice()
190 190
 
191 191
 		/**
@@ -195,7 +195,7 @@  discard block
 block discarded – undo
195 195
 		 * @since  1.5.0
196 196
 		 */
197 197
 		public function beta_notice() {
198
-			include( dirname( __FILE__ ) . '/views/html-notice-trying-beta.php' );
198
+			include(dirname(__FILE__).'/views/html-notice-trying-beta.php');
199 199
 		} // END beta_notice()
200 200
 
201 201
 		/**
@@ -208,7 +208,7 @@  discard block
 block discarded – undo
208 208
 		public function plugin_review_notice() {
209 209
 			$install_date = self::$install_date;
210 210
 
211
-			include( dirname( __FILE__ ) . '/views/html-notice-please-review.php' );
211
+			include(dirname(__FILE__).'/views/html-notice-please-review.php');
212 212
 		} // END plugin_review_notice()
213 213
 
214 214
 	} // END class.
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -124,8 +124,7 @@
 block discarded – undo
124 124
 					add_action( 'admin_notices', array( $this, 'theme_ready_notice' ) );
125 125
 					update_option( 'auto_load_next_post_theme_supported', $template );
126 126
 				}
127
-			}
128
-			else {
127
+			} else {
129 128
 				// If theme not supported then delete option.
130 129
 				delete_option( 'auto_load_next_post_theme_supported' );
131 130
 			}
Please login to merge, or discard this patch.
includes/admin/settings/class-alnp-settings-misc.php 1 patch
Spacing   +27 added lines, -27 removed lines patch added patch discarded remove patch
@@ -10,11 +10,11 @@  discard block
 block discarded – undo
10 10
  */
11 11
 
12 12
 // Exit if accessed directly.
13
-if ( ! defined( 'ABSPATH' ) ) {
13
+if ( ! defined('ABSPATH')) {
14 14
 	exit;
15 15
 }
16 16
 
17
-if ( ! class_exists( 'Auto_Load_Next_Post_Settings_Misc_Tab' ) ) {
17
+if ( ! class_exists('Auto_Load_Next_Post_Settings_Misc_Tab')) {
18 18
 
19 19
 	class Auto_Load_Next_Post_Settings_Misc_Tab extends Auto_Load_Next_Post_Settings_Page {
20 20
 
@@ -28,11 +28,11 @@  discard block
 block discarded – undo
28 28
 		 */
29 29
 		public function __construct() {
30 30
 			$this->id    = 'misc';
31
-			$this->label = __( 'Misc', 'auto-load-next-post' );
31
+			$this->label = __('Misc', 'auto-load-next-post');
32 32
 
33 33
 			parent::__construct();
34 34
 
35
-			add_action( 'auto_load_next_post_sections_misc', array( __CLASS__, 'no_comment_selector_set' ), 10 );
35
+			add_action('auto_load_next_post_sections_misc', array(__CLASS__, 'no_comment_selector_set'), 10);
36 36
 		} // END __construct()
37 37
 
38 38
 		/**
@@ -43,11 +43,11 @@  discard block
 block discarded – undo
43 43
 		 * @since  1.5.0
44 44
 		 */
45 45
 		public static function no_comment_selector_set() {
46
-			$comments_container = get_option( 'auto_load_next_post_comments_container' );
47
-			$remove_comments    = get_option( 'auto_load_next_post_remove_comments' );
46
+			$comments_container = get_option('auto_load_next_post_comments_container');
47
+			$remove_comments    = get_option('auto_load_next_post_remove_comments');
48 48
 
49
-			if ( empty( $comments_container ) && ! empty( $remove_comments ) ) {
50
-				include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-no-comment-selector.php' );
49
+			if (empty($comments_container) && ! empty($remove_comments)) {
50
+				include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-no-comment-selector.php');
51 51
 			}
52 52
 		} // END no_comment_selector_set()
53 53
 
@@ -63,47 +63,47 @@  discard block
 block discarded – undo
63 63
 				'auto_load_next_post_misc_settings', array(
64 64
 
65 65
 					array(
66
-						'title' => __( 'Misc', 'auto-load-next-post' ),
66
+						'title' => __('Misc', 'auto-load-next-post'),
67 67
 						'type'  => 'title',
68
-						'desc'  => sprintf( __( 'Here you set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ),
68
+						'desc'  => sprintf(__('Here you set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')),
69 69
 						'id'    => 'misc_options'
70 70
 					),
71 71
 
72 72
 					array(
73
-						'title'   => __( 'Remove Comments', 'auto-load-next-post' ),
74
-						'desc'    => __( 'Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post' ),
73
+						'title'   => __('Remove Comments', 'auto-load-next-post'),
74
+						'desc'    => __('Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post'),
75 75
 						'id'      => 'auto_load_next_post_remove_comments',
76 76
 						'default' => 'yes',
77 77
 						'type'    => 'checkbox'
78 78
 					),
79 79
 
80 80
 					array(
81
-						'title'   => __( 'Update Google Analytics', 'auto-load-next-post' ),
82
-						'desc'    => __( 'Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post' ),
81
+						'title'   => __('Update Google Analytics', 'auto-load-next-post'),
82
+						'desc'    => __('Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post'),
83 83
 						'id'      => 'auto_load_next_post_google_analytics',
84 84
 						'default' => 'no',
85 85
 						'type'    => 'checkbox'
86 86
 					),
87 87
 
88 88
 					array(
89
-						'title'   => __( 'JavaScript in Footer?', 'auto-load-next-post' ),
90
-						'desc'    => __( 'Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site.', 'auto-load-next-post' ),
89
+						'title'   => __('JavaScript in Footer?', 'auto-load-next-post'),
90
+						'desc'    => __('Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site.', 'auto-load-next-post'),
91 91
 						'id'      => 'auto_load_next_post_js_footer',
92 92
 						'default' => 'no',
93 93
 						'type'    => 'checkbox'
94 94
 					),
95 95
 
96 96
 					array(
97
-						'title'   => __( 'Reset all data?', 'auto-load-next-post' ),
98
-						'desc'    => __( 'Press the reset button to clear all settings for this plugin and re-install the default settings.', 'auto-load-next-post' ),
97
+						'title'   => __('Reset all data?', 'auto-load-next-post'),
98
+						'desc'    => __('Press the reset button to clear all settings for this plugin and re-install the default settings.', 'auto-load-next-post'),
99 99
 						'id'      => 'auto_load_next_post_reset_data',
100 100
 						'default' => 'no',
101 101
 						'type'    => 'reset_data'
102 102
 					),
103 103
 
104 104
 					array(
105
-						'title'   => __( 'Remove all data on uninstall?', 'auto-load-next-post' ),
106
-						'desc'    => __( 'If enabled, all settings for this plugin will all be deleted when uninstalling via Plugins > Delete.', 'auto-load-next-post' ),
105
+						'title'   => __('Remove all data on uninstall?', 'auto-load-next-post'),
106
+						'desc'    => __('If enabled, all settings for this plugin will all be deleted when uninstalling via Plugins > Delete.', 'auto-load-next-post'),
107 107
 						'id'      => 'auto_load_next_post_uninstall_data',
108 108
 						'default' => 'no',
109 109
 						'type'    => 'checkbox'
@@ -123,15 +123,15 @@  discard block
 block discarded – undo
123 123
 		 * @since 1.5.0
124 124
 		 * @param mixed $settings
125 125
 		 */
126
-		public function customize_button( $settings ) {
126
+		public function customize_button($settings) {
127 127
 			?>
128 128
 			<tr valign="top">
129
-				<th scope="row" class="titledesc"><?php echo $settings['title'];?></th>
130
-				<td class="forminp forminp-<?php echo sanitize_title( $settings['type'] ) ?>">
131
-					<a href="<?php echo $settings['link']; ?>" class="button-secondary <?php echo esc_attr( $settings['class'] ); ?>">
129
+				<th scope="row" class="titledesc"><?php echo $settings['title']; ?></th>
130
+				<td class="forminp forminp-<?php echo sanitize_title($settings['type']) ?>">
131
+					<a href="<?php echo $settings['link']; ?>" class="button-secondary <?php echo esc_attr($settings['class']); ?>">
132 132
 						<?php echo $settings['button_text']; ?>
133 133
 					</a>
134
-					<span class="description"><?php echo $settings['desc'];?></span>
134
+					<span class="description"><?php echo $settings['desc']; ?></span>
135 135
 				</td>
136 136
 			</tr>
137 137
 			<?php
@@ -148,7 +148,7 @@  discard block
 block discarded – undo
148 148
 		public function output() {
149 149
 			$settings = $this->get_settings();
150 150
 
151
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $settings );
151
+			Auto_Load_Next_Post_Admin_Settings::output_fields($settings);
152 152
 		} // END output()
153 153
 
154 154
 		/**
@@ -160,7 +160,7 @@  discard block
 block discarded – undo
160 160
 		public function save() {
161 161
 			$settings = $this->get_settings();
162 162
 
163
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $settings );
163
+			Auto_Load_Next_Post_Admin_Settings::save_fields($settings);
164 164
 		} // END save()
165 165
 
166 166
 	} // END class
Please login to merge, or discard this patch.
includes/admin/settings/class-alnp-settings-theme-selectors.php 1 patch
Spacing   +28 added lines, -28 removed lines patch added patch discarded remove patch
@@ -11,11 +11,11 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly.
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined('ABSPATH')) {
15 15
 	exit;
16 16
 }
17 17
 
18
-if ( ! class_exists( 'Auto_Load_Next_Post_Settings_Theme_Selectors_Tab' ) ) {
18
+if ( ! class_exists('Auto_Load_Next_Post_Settings_Theme_Selectors_Tab')) {
19 19
 
20 20
 	class Auto_Load_Next_Post_Settings_Theme_Selectors_Tab extends Auto_Load_Next_Post_Settings_Page {
21 21
 
@@ -28,12 +28,12 @@  discard block
 block discarded – undo
28 28
 		 */
29 29
 		public function __construct() {
30 30
 			$this->id    = 'theme-selectors';
31
-			$this->label = esc_html__( 'Theme Selectors', 'auto-load-next-post' );
31
+			$this->label = esc_html__('Theme Selectors', 'auto-load-next-post');
32 32
 
33 33
 			parent::__construct();
34 34
 
35
-			add_action( 'auto_load_next_post_sections_theme-selectors', array( __CLASS__, 'is_theme_supported' ), 10 );
36
-			add_action( 'auto_load_next_post_sections_theme-selectors', array( __CLASS__, 'no_theme_selectors_set' ), 10 );
35
+			add_action('auto_load_next_post_sections_theme-selectors', array(__CLASS__, 'is_theme_supported'), 10);
36
+			add_action('auto_load_next_post_sections_theme-selectors', array(__CLASS__, 'no_theme_selectors_set'), 10);
37 37
 		} // END __construct()
38 38
 
39 39
 		/**
@@ -44,8 +44,8 @@  discard block
 block discarded – undo
44 44
 		 * @since  1.5.0
45 45
 		 */
46 46
 		public static function is_theme_supported() {
47
-			if ( is_alnp_supported() ) {
48
-				include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-is-supported.php' );
47
+			if (is_alnp_supported()) {
48
+				include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-is-supported.php');
49 49
 			}
50 50
 		} // END is_theme_supported()
51 51
 
@@ -59,24 +59,24 @@  discard block
 block discarded – undo
59 59
 		public static function no_theme_selectors_set() {
60 60
 			$set_selectors = array();
61 61
 
62
-			$content_container    = get_option( 'auto_load_next_post_content_container' );
63
-			$title_selector       = get_option( 'auto_load_next_post_title_selector' );
64
-			$navigation_container = get_option( 'auto_load_next_post_navigation_container' );
62
+			$content_container    = get_option('auto_load_next_post_content_container');
63
+			$title_selector       = get_option('auto_load_next_post_title_selector');
64
+			$navigation_container = get_option('auto_load_next_post_navigation_container');
65 65
 
66
-			if ( ! empty( $content_container ) ) {
66
+			if ( ! empty($content_container)) {
67 67
 				$set_selectors[] = $content_container;
68 68
 			}
69 69
 
70
-			if ( ! empty( $title_selector ) ) {
70
+			if ( ! empty($title_selector)) {
71 71
 				$set_selectors[] = $title_selector;
72 72
 			}
73 73
 
74
-			if ( ! empty( $navigation_container ) ) {
74
+			if ( ! empty($navigation_container)) {
75 75
 				$set_selectors[] = $navigation_container;
76 76
 			}
77 77
 
78
-			if ( empty( $set_selectors ) || is_array( $set_selectors ) && count( $set_selectors ) < 3 ) {
79
-				include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-no-theme-selectors.php' );
78
+			if (empty($set_selectors) || is_array($set_selectors) && count($set_selectors) < 3) {
79
+				include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-no-theme-selectors.php');
80 80
 			}
81 81
 		} // END no_theme_selectors_set()
82 82
 
@@ -95,26 +95,26 @@  discard block
 block discarded – undo
95 95
 				'auto_load_next_post_theme_selectors_settings', array(
96 96
 
97 97
 					array(
98
-						'title' => esc_html__( 'Theme Selectors', 'auto-load-next-post' ),
98
+						'title' => esc_html__('Theme Selectors', 'auto-load-next-post'),
99 99
 						'type'  => 'title',
100
-						'desc'  => sprintf( esc_html__( 'Here you set the theme selectors below according to your active theme. All are required for %s to work.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ),
100
+						'desc'  => sprintf(esc_html__('Here you set the theme selectors below according to your active theme. All are required for %s to work.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')),
101 101
 						'id'    => 'theme_selectors_options'
102 102
 					),
103 103
 
104 104
 					array(
105
-						'title'    => esc_html__( 'Content Container', 'auto-load-next-post' ),
106
-						'desc'     => __( 'The primary container where the post content is loaded in. Default: <code>main.site-main</code>', 'auto-load-next-post' ),
105
+						'title'    => esc_html__('Content Container', 'auto-load-next-post'),
106
+						'desc'     => __('The primary container where the post content is loaded in. Default: <code>main.site-main</code>', 'auto-load-next-post'),
107 107
 						'id'       => 'auto_load_next_post_content_container',
108 108
 						'default'  => 'main.site-main',
109
-						'placeholder' => __( 'Required', 'auto-load-next-post' ),
109
+						'placeholder' => __('Required', 'auto-load-next-post'),
110 110
 						'type'     => 'text',
111 111
 						'css'      => 'min-width:300px;',
112 112
 						'autoload' => false
113 113
 					),
114 114
 
115 115
 					array(
116
-						'title'    => esc_html__( 'Post Title', 'auto-load-next-post' ),
117
-						'desc'     => __( 'Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: <code>h1.entry-title</code>', 'auto-load-next-post' ),
116
+						'title'    => esc_html__('Post Title', 'auto-load-next-post'),
117
+						'desc'     => __('Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: <code>h1.entry-title</code>', 'auto-load-next-post'),
118 118
 						'id'       => 'auto_load_next_post_title_selector',
119 119
 						'default'  => 'h1.entry-title',
120 120
 						'type'     => 'text',
@@ -123,8 +123,8 @@  discard block
 block discarded – undo
123 123
 					),
124 124
 
125 125
 					array(
126
-						'title'    => esc_html__( 'Post Navigation', 'auto-load-next-post' ),
127
-						'desc'     => __( 'Used to identify which post to load next if any. Default: <code>nav.post-navigation</code>', 'auto-load-next-post' ),
126
+						'title'    => esc_html__('Post Navigation', 'auto-load-next-post'),
127
+						'desc'     => __('Used to identify which post to load next if any. Default: <code>nav.post-navigation</code>', 'auto-load-next-post'),
128 128
 						'id'       => 'auto_load_next_post_navigation_container',
129 129
 						'default'  => 'nav.post-navigation',
130 130
 						'type'     => 'text',
@@ -133,8 +133,8 @@  discard block
 block discarded – undo
133 133
 					),
134 134
 
135 135
 					array(
136
-						'title'    => esc_html__( 'Comments Container', 'auto-load-next-post' ),
137
-						'desc'     => sprintf( __( 'Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: <code>div#comments</code>', 'auto-load-next-post' ), '<a href="' . get_admin_url( $blog_id, 'options-theme_selectors.php?page=auto-load-next-post-settings&tab=misc' ) . '">', '</a>' ),
136
+						'title'    => esc_html__('Comments Container', 'auto-load-next-post'),
137
+						'desc'     => sprintf(__('Used to remove comments if enabled under <strong>%1$sMisc%2$s</strong> settings. Default: <code>div#comments</code>', 'auto-load-next-post'), '<a href="'.get_admin_url($blog_id, 'options-theme_selectors.php?page=auto-load-next-post-settings&tab=misc').'">', '</a>'),
138 138
 						'id'       => 'auto_load_next_post_comments_container',
139 139
 						'default'  => 'div#comments',
140 140
 						'type'     => 'text',
@@ -158,7 +158,7 @@  discard block
 block discarded – undo
158 158
 		public function output() {
159 159
 			$settings = $this->get_settings();
160 160
 
161
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $settings );
161
+			Auto_Load_Next_Post_Admin_Settings::output_fields($settings);
162 162
 		} // END output()
163 163
 
164 164
 		/**
@@ -171,7 +171,7 @@  discard block
 block discarded – undo
171 171
 		public function save() {
172 172
 			$settings = $this->get_settings();
173 173
 
174
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $settings );
174
+			Auto_Load_Next_Post_Admin_Settings::save_fields($settings);
175 175
 		} // END save()
176 176
 
177 177
 	} // END class
Please login to merge, or discard this patch.
includes/admin/class-alnp-admin-help.php 1 patch
Spacing   +41 added lines, -41 removed lines patch added patch discarded remove patch
@@ -14,11 +14,11 @@  discard block
 block discarded – undo
14 14
  */
15 15
 
16 16
 // Exit if accessed directly.
17
-if ( ! defined( 'ABSPATH' ) ) {
17
+if ( ! defined('ABSPATH')) {
18 18
 	exit;
19 19
 }
20 20
 
21
-if ( ! class_exists( 'Auto_Load_Next_Post_Admin_Help' ) ) {
21
+if ( ! class_exists('Auto_Load_Next_Post_Admin_Help')) {
22 22
 
23 23
 	class Auto_Load_Next_Post_Admin_Help {
24 24
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 		 * @since  1.0.0
30 30
 		 */
31 31
 		public function __construct() {
32
-			add_action( 'current_screen', array( $this, 'add_help_tabs' ), 50 );
32
+			add_action('current_screen', array($this, 'add_help_tabs'), 50);
33 33
 		} // END __construct()
34 34
 
35 35
 		/**
@@ -42,62 +42,62 @@  discard block
 block discarded – undo
42 42
 		public function add_help_tabs() {
43 43
 			$screen = get_current_screen();
44 44
 
45
-			if (	$screen->id != 'settings_page_auto-load-next-post-settings') {
45
+			if ($screen->id != 'settings_page_auto-load-next-post-settings') {
46 46
 				return;
47 47
 			}
48 48
 
49
-			$screen->add_help_tab( array(
49
+			$screen->add_help_tab(array(
50 50
 				'id'      => 'auto_load_next_post_theme_selectors_tab',
51
-				'title'   => __( 'Theme Selectors', 'auto-load-next-post' ),
51
+				'title'   => __('Theme Selectors', 'auto-load-next-post'),
52 52
 				'content' =>
53
-					'<h2>' . __( 'Theme Selectors', 'auto-load-next-post' ) . '</h2>' .
54
-					'<p>' . sprintf( __( 'Theme Selectors allows %s look for where to load content in, the post being read, the next post to load and whether to show or hide comments per post.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) . '</p>' .
55
-					'<p>' . sprintf( __( 'When the plugin was activated, default theme selectors are set that match the majority of most WordPress themes. If the active theme supports %1$s then it will set its own theme selectors. If the theme has not declared support for %1$s and posts are not loading, dont worry. It is most likely that at least one of these selectors need to be changed. You may find it to be the <em>Content Container</em>. See more information on %2$show to find your theme selectors%3$s.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://autoloadnextpost.com/documentation/find-theme-selectors/">', '</a>' ) . '</p>' .
56
-					'<p>' . sprintf( esc_html__( 'These are the default theme selectors when %s is installed.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) . '</p>' .
57
-					'<h5>' . esc_html__( 'Default Theme Selectors', 'auto-load-next-post' ) . '</h5>' .
58
-					'<ul>' .
59
-					'<li><strong>' . esc_html__( 'Content Container', 'auto-load-next-post' ) . '</strong>' . '<br>main.site-main</li>' .
60
-					'<li><strong>' . esc_html__( 'Post Title', 'auto-load-next-post' ) . '</strong>' . '<br>h1.entry-title</li>' .
61
-					'<li><strong>' . esc_html__( 'Post Navigation', 'auto-load-next-post' ) . '</strong>' . '<br>nav.post-navigation</li>' .
62
-					'<li><strong>' . esc_html__( 'Comments Container', 'auto-load-next-post' ) . '</strong>' . '<br>div#comments</li>' .
53
+					'<h2>'.__('Theme Selectors', 'auto-load-next-post').'</h2>'.
54
+					'<p>'.sprintf(__('Theme Selectors allows %s look for where to load content in, the post being read, the next post to load and whether to show or hide comments per post.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')).'</p>'.
55
+					'<p>'.sprintf(__('When the plugin was activated, default theme selectors are set that match the majority of most WordPress themes. If the active theme supports %1$s then it will set its own theme selectors. If the theme has not declared support for %1$s and posts are not loading, dont worry. It is most likely that at least one of these selectors need to be changed. You may find it to be the <em>Content Container</em>. See more information on %2$show to find your theme selectors%3$s.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://autoloadnextpost.com/documentation/find-theme-selectors/">', '</a>').'</p>'.
56
+					'<p>'.sprintf(esc_html__('These are the default theme selectors when %s is installed.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')).'</p>'.
57
+					'<h5>'.esc_html__('Default Theme Selectors', 'auto-load-next-post').'</h5>'.
58
+					'<ul>'.
59
+					'<li><strong>'.esc_html__('Content Container', 'auto-load-next-post').'</strong>'.'<br>main.site-main</li>'.
60
+					'<li><strong>'.esc_html__('Post Title', 'auto-load-next-post').'</strong>'.'<br>h1.entry-title</li>'.
61
+					'<li><strong>'.esc_html__('Post Navigation', 'auto-load-next-post').'</strong>'.'<br>nav.post-navigation</li>'.
62
+					'<li><strong>'.esc_html__('Comments Container', 'auto-load-next-post').'</strong>'.'<br>div#comments</li>'.
63 63
 					'</ul>'
64
-			) );
64
+			));
65 65
 
66
-			$screen->add_help_tab( array(
66
+			$screen->add_help_tab(array(
67 67
 				'id'      => 'auto_load_next_post_support_tab',
68
-				'title'   => esc_html__( 'Help & Support', 'auto-load-next-post' ),
68
+				'title'   => esc_html__('Help & Support', 'auto-load-next-post'),
69 69
 				'content' =>
70
-					'<h2>' . esc_html__( 'Help & Support', 'auto-load-next-post' ) . '</h2>' .
71
-					'<p>' . sprintf( __( 'Should you need help understanding, using, or extending %1$s, please %2$sread the documentation%3$s. You will find snippets, tutorials and much more.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://autoloadnextpost.com/documentation/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" target="_blank">', '</a>' ) . '</p>' .
72
-					'<p>' . sprintf( __( 'For further assistance with %1$s you can use the %2$scommunity forum%3$s.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://wordpress.org/support/plugin/auto-load-next-post" target="_blank">', '</a>' ) . '</p> ' .
73
-					'<p>' . sprintf( __( '%1$s is in need of translations. Is the plugin not translated in your language or do you spot errors with the current translations? Helping out is easy! Head over to the project on WordPress.org and click %2$sTranslate %1$s%3$s.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://translate.wordpress.org/projects/wp-plugins/auto-load-next-post" target="_blank">', '</a>' ) . '</p>' .
74
-					'<p><a href="https://autoloadnextpost.com/documentation/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" class="button button-primary" target="_blank">' . esc_html__( 'Documentation', 'auto-load-next-post' ) . '</a> <a href="https://wordpress.org/support/plugin/auto-load-next-post" class="button button-secondary" target="_blank">' . esc_html__( 'Community Forum', 'auto-load-next-post' ) . '</a> <a href="https://autoloadnextpost.com/f-a-q/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" class="button button-secondary" target="_blank">' . esc_html__( 'Frequently Asked Questions', 'auto-load-next-post' ) . '</a> <a href="https://translate.wordpress.org/projects/wp-plugins/auto-load-next-post" class="button button-secondary" target="_blank">' . sprintf( esc_html__( 'Translate %s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) . '</a></p>'
75
-			) );
70
+					'<h2>'.esc_html__('Help & Support', 'auto-load-next-post').'</h2>'.
71
+					'<p>'.sprintf(__('Should you need help understanding, using, or extending %1$s, please %2$sread the documentation%3$s. You will find snippets, tutorials and much more.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://autoloadnextpost.com/documentation/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" target="_blank">', '</a>').'</p>'.
72
+					'<p>'.sprintf(__('For further assistance with %1$s you can use the %2$scommunity forum%3$s.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://wordpress.org/support/plugin/auto-load-next-post" target="_blank">', '</a>').'</p> '.
73
+					'<p>'.sprintf(__('%1$s is in need of translations. Is the plugin not translated in your language or do you spot errors with the current translations? Helping out is easy! Head over to the project on WordPress.org and click %2$sTranslate %1$s%3$s.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://translate.wordpress.org/projects/wp-plugins/auto-load-next-post" target="_blank">', '</a>').'</p>'.
74
+					'<p><a href="https://autoloadnextpost.com/documentation/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" class="button button-primary" target="_blank">'.esc_html__('Documentation', 'auto-load-next-post').'</a> <a href="https://wordpress.org/support/plugin/auto-load-next-post" class="button button-secondary" target="_blank">'.esc_html__('Community Forum', 'auto-load-next-post').'</a> <a href="https://autoloadnextpost.com/f-a-q/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" class="button button-secondary" target="_blank">'.esc_html__('Frequently Asked Questions', 'auto-load-next-post').'</a> <a href="https://translate.wordpress.org/projects/wp-plugins/auto-load-next-post" class="button button-secondary" target="_blank">'.sprintf(esc_html__('Translate %s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')).'</a></p>'
75
+			));
76 76
 
77
-			$screen->add_help_tab( array(
77
+			$screen->add_help_tab(array(
78 78
 				'id'      => 'auto_load_next_post_bugs_tab',
79
-				'title'   => esc_html__( 'Found a bug?', 'auto-load-next-post' ),
79
+				'title'   => esc_html__('Found a bug?', 'auto-load-next-post'),
80 80
 				'content' =>
81
-					'<h2>' . esc_html__( 'Found a bug?', 'auto-load-next-post' ) . '</h2>' .
82
-					'<p>' . sprintf( __( 'If you find a bug within %1$s, please %2$sreport the issue%4$s by creating a ticket on the GitHub repository where I can deal with it more appropriately. Please ensure that you have read the %3$sguidelines to contributing%4$s prior to submitting your report. To help me solve the issue, please be as descriptive as possible.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/issues?state=open" target="_blank">', '<a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/blob/master/CONTRIBUTING.md" target="_blank">', '</a>' ) . '</p>' .
83
-					'<p><a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/issues?state=open" class="button button-primary" target="_blank">' . esc_html__( 'Report an Issue', 'auto-load-next-post' ) . '</a></p>'
84
-			) );
81
+					'<h2>'.esc_html__('Found a bug?', 'auto-load-next-post').'</h2>'.
82
+					'<p>'.sprintf(__('If you find a bug within %1$s, please %2$sreport the issue%4$s by creating a ticket on the GitHub repository where I can deal with it more appropriately. Please ensure that you have read the %3$sguidelines to contributing%4$s prior to submitting your report. To help me solve the issue, please be as descriptive as possible.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/issues?state=open" target="_blank">', '<a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/blob/master/CONTRIBUTING.md" target="_blank">', '</a>').'</p>'.
83
+					'<p><a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/issues?state=open" class="button button-primary" target="_blank">'.esc_html__('Report an Issue', 'auto-load-next-post').'</a></p>'
84
+			));
85 85
 
86 86
 			$screen->add_help_tab(array(
87 87
 				'id'      => 'auto_load_next_post_feedback_tab',
88
-				'title'   => esc_html__( 'Feedback', 'auto-load-next-post' ),
88
+				'title'   => esc_html__('Feedback', 'auto-load-next-post'),
89 89
 				'content' =>
90
-					'<h2>' . esc_html__( 'Feedback', 'auto-load-next-post' ) . '</h2>' .
91
-					'<p>' . esc_html__( 'Your feedback is very important to me. Please consider leaving a review on WordPress.org or complete a simple survey.', 'auto-load-next-post' ) . '</p>' .
92
-					'<p>' . sprintf( __( 'If %1$s has worked out for you well and you like it, please consider %2$smaking a donation%3$s.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a href="https://www.buymeacoffee.com/sebastien" target="_blank">', '</a>' ) . '</p>'.
93
-					'<p><a href="https://wordpress.org/support/view/plugin-reviews/auto-load-next-post?filter=5#postform" class="button button-primary" target="_blank">' . esc_html__( 'Submit a Review', 'auto-load-next-post' ) . '</a> <a href="https://docs.google.com/forms/d/e/1FAIpQLSdzxlvnXRBIw8gqI7Z2O-HzYtncpGjDkLjlaeZLVsfrR61FNA/viewform?usp=sf_link" class="button button-secondary" target="_blank">' . esc_html__( 'Complete a Simple Survey', 'auto-load-next-post' ) . '</a> <a href="https://www.buymeacoffee.com/sebastien" class="button button-secondary" target="_blank">' . esc_html__( 'Make a Donation', 'auto-load-next-post' ) . '</a></p>'
94
-			) );
90
+					'<h2>'.esc_html__('Feedback', 'auto-load-next-post').'</h2>'.
91
+					'<p>'.esc_html__('Your feedback is very important to me. Please consider leaving a review on WordPress.org or complete a simple survey.', 'auto-load-next-post').'</p>'.
92
+					'<p>'.sprintf(__('If %1$s has worked out for you well and you like it, please consider %2$smaking a donation%3$s.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a href="https://www.buymeacoffee.com/sebastien" target="_blank">', '</a>').'</p>'.
93
+					'<p><a href="https://wordpress.org/support/view/plugin-reviews/auto-load-next-post?filter=5#postform" class="button button-primary" target="_blank">'.esc_html__('Submit a Review', 'auto-load-next-post').'</a> <a href="https://docs.google.com/forms/d/e/1FAIpQLSdzxlvnXRBIw8gqI7Z2O-HzYtncpGjDkLjlaeZLVsfrR61FNA/viewform?usp=sf_link" class="button button-secondary" target="_blank">'.esc_html__('Complete a Simple Survey', 'auto-load-next-post').'</a> <a href="https://www.buymeacoffee.com/sebastien" class="button button-secondary" target="_blank">'.esc_html__('Make a Donation', 'auto-load-next-post').'</a></p>'
94
+			));
95 95
 
96 96
 			$screen->set_help_sidebar(
97
-				'<p><strong>' . esc_html__( 'For more information:', 'auto-load-next-post' ) . '</strong></p>' .
98
-				'<p><a href="https://autoloadnextpost.com/about/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" target="_blank">' . sprintf( esc_html__( 'About %s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) . '</a></p>' .
99
-				'<p><a href="https://wordpress.org/plugins/auto-load-next-post/" target="_blank">' . esc_html__( 'WordPress.org Project', 'auto-load-next-post' ) . '</a></p>' .
100
-				'<p><a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/" target="_blank">' . esc_html__( 'GitHub Project', 'auto-load-next-post' ) . '</a></p>'
97
+				'<p><strong>'.esc_html__('For more information:', 'auto-load-next-post').'</strong></p>'.
98
+				'<p><a href="https://autoloadnextpost.com/about/?utm_source=wpadmin&utm_campaign=plugin-settings-help-tab" target="_blank">'.sprintf(esc_html__('About %s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')).'</a></p>'.
99
+				'<p><a href="https://wordpress.org/plugins/auto-load-next-post/" target="_blank">'.esc_html__('WordPress.org Project', 'auto-load-next-post').'</a></p>'.
100
+				'<p><a href="https://github.com/AutoLoadNextPost/Auto-Load-Next-Post/" target="_blank">'.esc_html__('GitHub Project', 'auto-load-next-post').'</a></p>'
101 101
 			);
102 102
 
103 103
 		} // END add_help_tabs()
Please login to merge, or discard this patch.
includes/admin/views/html-admin-sidebar.php 1 patch
Spacing   +21 added lines, -21 removed lines patch added patch discarded remove patch
@@ -3,61 +3,61 @@
 block discarded – undo
3 3
 	<a class="alnp-banner" href="https://autoloadnextpost.com/?utm_source=plugin&utm_medium=alnp-banner&utm_campaign=alnp-settings-page"></a>
4 4
 
5 5
 	<div class="alnp-upgrade-details">
6
-		<h1><?php esc_html_e( 'Pro Coming Soon', 'auto-load-next-post' ); ?></h1>
6
+		<h1><?php esc_html_e('Pro Coming Soon', 'auto-load-next-post'); ?></h1>
7 7
 
8 8
 		<ul>
9
-			<li><?php echo wptexturize( esc_html__( 'Load the Next Post or Next Post with same Category or New Posts or Related Posts or by Custom Query', 'auto-load-next-post' ) ); ?></li>
10
-			<li><?php echo wptexturize( esc_html__( 'Page and Media Attachment Support', 'auto-load-next-post' ) ); ?></li>
11
-			<li><?php echo wptexturize( esc_html__( 'Custom Post Type Support', 'auto-load-next-post' ) ); ?></li>
12
-			<li><?php echo wptexturize( esc_html__( 'Exclude Post Formats', 'auto-load-next-post' ) ); ?></li>
13
-			<li><?php echo wptexturize( esc_html__( 'Limit Posts per Session', 'auto-load-next-post' ) ); ?></li>
14
-			<li><?php echo wptexturize( esc_html__( 'Query Posts by Category and Tag', 'auto-load-next-post' ) ); ?></li>
15
-			<li><?php echo wptexturize( esc_html__( 'Exclude User Roles and Specific Users', 'auto-load-next-post' ) ); ?></li>
16
-			<li><?php echo wptexturize( esc_html__( 'Pre-Query Posts Ready to Load', 'auto-load-next-post' ) ); ?></li>
17
-			<li><?php echo wptexturize( esc_html__( 'Hide Comments and Show by Toggle Button', 'auto-load-next-post' ) ); ?></li>
18
-			<li><?php echo wptexturize( sprintf( esc_html__( 'Multilingual Support for %1$s and %2$s', 'auto-load-next-post' ), 'WPML', 'Polylang' ) ); ?></li>
19
-			<li><?php echo wptexturize( esc_html__( 'Email Support', 'auto-load-next-post' ) ); ?></li>
9
+			<li><?php echo wptexturize(esc_html__('Load the Next Post or Next Post with same Category or New Posts or Related Posts or by Custom Query', 'auto-load-next-post')); ?></li>
10
+			<li><?php echo wptexturize(esc_html__('Page and Media Attachment Support', 'auto-load-next-post')); ?></li>
11
+			<li><?php echo wptexturize(esc_html__('Custom Post Type Support', 'auto-load-next-post')); ?></li>
12
+			<li><?php echo wptexturize(esc_html__('Exclude Post Formats', 'auto-load-next-post')); ?></li>
13
+			<li><?php echo wptexturize(esc_html__('Limit Posts per Session', 'auto-load-next-post')); ?></li>
14
+			<li><?php echo wptexturize(esc_html__('Query Posts by Category and Tag', 'auto-load-next-post')); ?></li>
15
+			<li><?php echo wptexturize(esc_html__('Exclude User Roles and Specific Users', 'auto-load-next-post')); ?></li>
16
+			<li><?php echo wptexturize(esc_html__('Pre-Query Posts Ready to Load', 'auto-load-next-post')); ?></li>
17
+			<li><?php echo wptexturize(esc_html__('Hide Comments and Show by Toggle Button', 'auto-load-next-post')); ?></li>
18
+			<li><?php echo wptexturize(sprintf(esc_html__('Multilingual Support for %1$s and %2$s', 'auto-load-next-post'), 'WPML', 'Polylang')); ?></li>
19
+			<li><?php echo wptexturize(esc_html__('Email Support', 'auto-load-next-post')); ?></li>
20 20
 		</ul>
21 21
 
22 22
 		<p>
23
-			<a href="https://autoloadnextpost.com/pro/?utm_source=plugin&utm_medium=link&utm_campaign=alnp-settings-page"><?php esc_html_e( 'Visit autoloadnextpost.com &rarr;', 'auto-load-next-post' ); ?></a>
23
+			<a href="https://autoloadnextpost.com/pro/?utm_source=plugin&utm_medium=link&utm_campaign=alnp-settings-page"><?php esc_html_e('Visit autoloadnextpost.com &rarr;', 'auto-load-next-post'); ?></a>
24 24
 		</p>
25 25
 
26 26
 	</div>
27 27
 
28 28
 	<form method="post" action="https://sebastiendumont.us1.list-manage.com/subscribe/post?u=48ead612ad85b23fe2239c6e3&amp;id=79e97b5275" name="mc-embedded-subscribe-form" target="_blank" class="subscribe block">
29
-		<h2><?php esc_html_e( 'Sign up to pre-order first', 'auto-load-next-post' ); ?></h2>
29
+		<h2><?php esc_html_e('Sign up to pre-order first', 'auto-load-next-post'); ?></h2>
30 30
 
31 31
 		<p class="intro">
32
-			<?php echo wptexturize( esc_html__( 'Submit your name and email and be the first to know when you can pre-order Auto Load Next Post Pro and keep up to date with my developments plus a 10% discount.', 'auto-load-next-post' ) ); ?>
32
+			<?php echo wptexturize(esc_html__('Submit your name and email and be the first to know when you can pre-order Auto Load Next Post Pro and keep up to date with my developments plus a 10% discount.', 'auto-load-next-post')); ?>
33 33
 		</p>
34 34
 
35 35
 		<div class="field">
36
-			<input type="email" name="EMAIL" value="" placeholder="<?php esc_html_e( 'Your Email Address', 'auto-load-next-post' ); ?>"/>
36
+			<input type="email" name="EMAIL" value="" placeholder="<?php esc_html_e('Your Email Address', 'auto-load-next-post'); ?>"/>
37 37
 		</div>
38 38
 
39 39
 		<div class="field">
40
-			<input type="text" name="FNAME" value="" placeholder="<?php esc_html_e( 'First Name', 'auto-load-next-post' ); ?>"/>
40
+			<input type="text" name="FNAME" value="" placeholder="<?php esc_html_e('First Name', 'auto-load-next-post'); ?>"/>
41 41
 		</div>
42 42
 
43 43
 		<div class="field">
44
-			<input type="text" name="LNAME" value="" placeholder="<?php esc_html_e( 'Last Name', 'auto-load-next-post' ); ?>"/>
44
+			<input type="text" name="LNAME" value="" placeholder="<?php esc_html_e('Last Name', 'auto-load-next-post'); ?>"/>
45 45
 		</div>
46 46
 
47 47
 		<input type="hidden" name="group[35169][1]" value="1">
48 48
 
49 49
 		<div class="field submit-button">
50 50
 			<div style="position: absolute; left: -9999px;" aria-hidden="true"><input type="text" name="b_48ead612ad85b23fe2239c6e3_79e97b5275" tabindex="-1" value=""></div>
51
-			<input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="<?php esc_html_e( 'Sign me up', 'auto-load-next-post' ); ?>"/>
51
+			<input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="<?php esc_html_e('Sign me up', 'auto-load-next-post'); ?>"/>
52 52
 		</div>
53 53
 
54 54
 		<p class="promise">
55
-			<?php esc_html_e( 'I promise I will not use your email for anything else and you can unsubscribe with 1-click anytime.', 'auto-load-next-post' ); ?>
55
+			<?php esc_html_e('I promise I will not use your email for anything else and you can unsubscribe with 1-click anytime.', 'auto-load-next-post'); ?>
56 56
 		</p>
57 57
 	</form>
58 58
 
59 59
 	<div class="block credits">
60
-		<h4><?php esc_html_e( 'Created &amp; maintained by', 'auto-load-next-post' ); ?></h4>
60
+		<h4><?php esc_html_e('Created &amp; maintained by', 'auto-load-next-post'); ?></h4>
61 61
 		<ul>
62 62
 			<li>
63 63
 				<a href="https://profiles.wordpress.org/sebd86">
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twenty-seventeen.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.site-main',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'section#comments',
48
-		) );
48
+		));
49 49
 	} // END add_theme_support()
50 50
 
51 51
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-storefront.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.site-main',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'section#comments',
48
-		) );
48
+		));
49 49
 	} // END add_theme_support()
50 50
 
51 51
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twenty-sixteen.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,12 +40,12 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.site-main',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'section#comments',
48
-		) );
48
+		));
49 49
 	} // END add_theme_support()
50 50
 
51 51
 } // END class
Please login to merge, or discard this patch.
includes/auto-load-next-post-formatting-functions.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly.
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined('ABSPATH')) {
15 15
 	exit;
16 16
 }
17 17
 
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
  * @return string|array *
27 27
  */
28 28
 function auto_load_next_post_clean($var) {
29
-	if ( is_array( $var ) ) {
30
-		return array_map( 'auto_load_next_post_clean', $var );
29
+	if (is_array($var)) {
30
+		return array_map('auto_load_next_post_clean', $var);
31 31
 	} else {
32
-		return is_scalar( $var ) ? sanitize_text_field( $var ) : $var;
32
+		return is_scalar($var) ? sanitize_text_field($var) : $var;
33 33
 	}
34 34
 } // END auto_load_next_post_clean()
35 35
 
@@ -40,58 +40,58 @@  discard block
 block discarded – undo
40 40
  *
41 41
  * @param string $seconds Seconds in time.
42 42
  */
43
-function auto_load_next_post_seconds_to_words( $seconds ) {
43
+function auto_load_next_post_seconds_to_words($seconds) {
44 44
 	// Get the years.
45
-	$years = ( intval( $seconds ) / YEAR_IN_SECONDS ) % 100;
46
-	if ( $years > 1 ) {
45
+	$years = (intval($seconds) / YEAR_IN_SECONDS) % 100;
46
+	if ($years > 1) {
47 47
 		/* translators: Number of years */
48
-		return sprintf( __( '%s years', 'auto-load-next-post' ), $years );
49
-	} elseif ( $years > 0 ) {
50
-		return __( 'a year', 'auto-load-next-post' );
48
+		return sprintf(__('%s years', 'auto-load-next-post'), $years);
49
+	} elseif ($years > 0) {
50
+		return __('a year', 'auto-load-next-post');
51 51
 	}
52 52
 
53 53
 	// Get the weeks.
54
-	$weeks = ( intval( $seconds ) / WEEK_IN_SECONDS ) % 52;
55
-	if ( $weeks > 1 ) {
54
+	$weeks = (intval($seconds) / WEEK_IN_SECONDS) % 52;
55
+	if ($weeks > 1) {
56 56
 		/* translators: Number of weeks */
57
-		return sprintf( __( '%s weeks', 'auto-load-next-post' ), $weeks );
58
-	} elseif ( $weeks > 0 ) {
59
-		return __( 'a week', 'auto-load-next-post' );
57
+		return sprintf(__('%s weeks', 'auto-load-next-post'), $weeks);
58
+	} elseif ($weeks > 0) {
59
+		return __('a week', 'auto-load-next-post');
60 60
 	}
61 61
 
62 62
 	// Get the days.
63
-	$days = ( intval( $seconds ) / DAY_IN_SECONDS ) % 7;
64
-	if ( $days > 1 ) {
63
+	$days = (intval($seconds) / DAY_IN_SECONDS) % 7;
64
+	if ($days > 1) {
65 65
 		/* translators: Number of days */
66
-		return sprintf( __( '%s days', 'auto-load-next-post' ), $days );
67
-	} elseif ( $days > 0 ) {
68
-		return __( 'a day', 'auto-load-next-post' );
66
+		return sprintf(__('%s days', 'auto-load-next-post'), $days);
67
+	} elseif ($days > 0) {
68
+		return __('a day', 'auto-load-next-post');
69 69
 	}
70 70
 
71 71
 	// Get the hours.
72
-	$hours = ( intval( $seconds ) / HOUR_IN_SECONDS ) % 24;
73
-	if ( $hours > 1 ) {
72
+	$hours = (intval($seconds) / HOUR_IN_SECONDS) % 24;
73
+	if ($hours > 1) {
74 74
 		/* translators: Number of hours */
75
-		return sprintf( __( '%s hours', 'auto-load-next-post' ), $hours );
76
-	} elseif ( $hours > 0 ) {
77
-		return __( 'an hour', 'auto-load-next-post' );
75
+		return sprintf(__('%s hours', 'auto-load-next-post'), $hours);
76
+	} elseif ($hours > 0) {
77
+		return __('an hour', 'auto-load-next-post');
78 78
 	}
79 79
 
80 80
 	// Get the minutes.
81
-	$minutes = ( intval( $seconds ) / MINUTE_IN_SECONDS ) % 60;
82
-	if ( $minutes > 1 ) {
81
+	$minutes = (intval($seconds) / MINUTE_IN_SECONDS) % 60;
82
+	if ($minutes > 1) {
83 83
 		/* translators: Number of minutes */
84
-		return sprintf( __( '%s minutes', 'auto-load-next-post' ), $minutes );
85
-	} elseif ( $minutes > 0 ) {
86
-		return __( 'a minute', 'auto-load-next-post' );
84
+		return sprintf(__('%s minutes', 'auto-load-next-post'), $minutes);
85
+	} elseif ($minutes > 0) {
86
+		return __('a minute', 'auto-load-next-post');
87 87
 	}
88 88
 
89 89
 	// Get the seconds.
90
-	$seconds = intval( $seconds ) % 60;
91
-	if ( $seconds > 1 ) {
90
+	$seconds = intval($seconds) % 60;
91
+	if ($seconds > 1) {
92 92
 		/* translators: Number of seconds */
93
-		return sprintf( __( '%s seconds', 'auto-load-next-post' ), $seconds );
94
-	} elseif ( $seconds > 0 ) {
95
-		return __( 'a second', 'auto-load-next-post' );
93
+		return sprintf(__('%s seconds', 'auto-load-next-post'), $seconds);
94
+	} elseif ($seconds > 0) {
95
+		return __('a second', 'auto-load-next-post');
96 96
 	}
97 97
 }
Please login to merge, or discard this patch.