Completed
Branch master (4aca59)
by
unknown
01:37
created
includes/class-alnp-install.php 1 patch
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_Install' ) ) {
18
+if ( ! class_exists('Auto_Load_Next_Post_Install')) {
19 19
 
20 20
 	class Auto_Load_Next_Post_Install {
21 21
 
@@ -36,11 +36,11 @@  discard block
 block discarded – undo
36 36
 		 * @access public
37 37
 		 */
38 38
 		public function __construct() {
39
-			add_action( 'init', array( __CLASS__, 'add_rewrite_endpoint' ), 0 );
40
-			add_action( 'init', array( __CLASS__, 'check_version' ), 5 );
39
+			add_action('init', array(__CLASS__, 'add_rewrite_endpoint'), 0);
40
+			add_action('init', array(__CLASS__, 'check_version'), 5);
41 41
 
42 42
 			// Get plugin version.
43
-			self::$current_version = get_option( 'auto_load_next_post_version', null );
43
+			self::$current_version = get_option('auto_load_next_post_version', null);
44 44
 		} // END __construct()
45 45
 
46 46
 		/**
@@ -53,9 +53,9 @@  discard block
 block discarded – undo
53 53
 		 * @since  1.4.10
54 54
 		 */
55 55
 		public static function check_version() {
56
-			if ( ! defined( 'IFRAME_REQUEST' ) && version_compare( self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<' ) ) {
56
+			if ( ! defined('IFRAME_REQUEST') && version_compare(self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<')) {
57 57
 				self::install();
58
-				do_action( 'auto_load_next_post_updated' );
58
+				do_action('auto_load_next_post_updated');
59 59
 			}
60 60
 		} // END check_version()
61 61
 
@@ -68,19 +68,19 @@  discard block
 block discarded – undo
68 68
 		 * @version 1.5.0
69 69
 		 */
70 70
 		public static function install() {
71
-			if ( ! is_blog_installed() ) {
71
+			if ( ! is_blog_installed()) {
72 72
 				return;
73 73
 			}
74 74
 
75 75
 			// Check if we are not already running this routine.
76
-			if ( 'yes' === get_transient( 'alnp_installing' ) ) {
76
+			if ('yes' === get_transient('alnp_installing')) {
77 77
 				return;
78 78
 			}
79 79
 
80 80
 			// If we made it till here nothing is running yet, lets set the transient now for five minutes.
81
-			set_transient( 'alnp_installing', 'yes', MINUTE_IN_SECONDS * 5 );
82
-			if ( ! defined( 'AUTO_LOAD_NEXT_POST_INSTALLING' ) ) {
83
-				define( 'AUTO_LOAD_NEXT_POST_INSTALLING', true );
81
+			set_transient('alnp_installing', 'yes', MINUTE_IN_SECONDS * 5);
82
+			if ( ! defined('AUTO_LOAD_NEXT_POST_INSTALLING')) {
83
+				define('AUTO_LOAD_NEXT_POST_INSTALLING', true);
84 84
 			}
85 85
 
86 86
 			// Add default options.
@@ -98,9 +98,9 @@  discard block
 block discarded – undo
98 98
 			// Refresh rewrite rules.
99 99
 			self::flush_rewrite_rules();
100 100
 
101
-			delete_transient( 'alnp_installing' );
101
+			delete_transient('alnp_installing');
102 102
 
103
-			do_action( 'alnp_installed' );
103
+			do_action('alnp_installed');
104 104
 		} // END install()
105 105
 
106 106
 		/**
@@ -112,16 +112,16 @@  discard block
 block discarded – undo
112 112
 		 * @since  1.5.0
113 113
 		 */
114 114
 		private static function set_theme_selectors() {
115
-			if ( is_alnp_supported() ) {
116
-				$content_container    = alnp_get_theme_support( 'content_container' );
117
-				$title_selector       = alnp_get_theme_support( 'title_selector' );
118
-				$navigation_container = alnp_get_theme_support( 'navigation_container' );
119
-				$comments_container   = alnp_get_theme_support( 'comments_container' );
120
-
121
-				if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container );
122
-				if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector );
123
-				if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container );
124
-				if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container );
115
+			if (is_alnp_supported()) {
116
+				$content_container    = alnp_get_theme_support('content_container');
117
+				$title_selector       = alnp_get_theme_support('title_selector');
118
+				$navigation_container = alnp_get_theme_support('navigation_container');
119
+				$comments_container   = alnp_get_theme_support('comments_container');
120
+
121
+				if ( ! empty($content_container)) update_option('auto_load_next_post_content_container', $content_container);
122
+				if ( ! empty($title_selector)) update_option('auto_load_next_post_title_selector', $title_selector);
123
+				if ( ! empty($navigation_container)) update_option('auto_load_next_post_navigation_container', $navigation_container);
124
+				if ( ! empty($comments_container)) update_option('auto_load_next_post_comments_container', $comments_container);
125 125
 			}
126 126
 		} // END set_theme_selectors()
127 127
 
@@ -132,7 +132,7 @@  discard block
 block discarded – undo
132 132
 		 * @static
133 133
 		 */
134 134
 		private static function update_version() {
135
-			update_option( 'auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION );
135
+			update_option('auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION);
136 136
 		} // END update_version()
137 137
 
138 138
 		/**
@@ -144,13 +144,13 @@  discard block
 block discarded – undo
144 144
 		 * @version 1.5.0
145 145
 		 */
146 146
 		public static function set_install_date() {
147
-			$install_date = get_site_option( 'auto_load_next_post_install_date' );
147
+			$install_date = get_site_option('auto_load_next_post_install_date');
148 148
 
149 149
 			// If ALNP was installed before but the install date was not converted to time then convert it.
150
-			if ( ! empty( $install_date ) && !intval( $install_date ) ) {
151
-				update_site_option( 'auto_load_next_post_install_date', strtotime( $install_date ) );
150
+			if ( ! empty($install_date) && ! intval($install_date)) {
151
+				update_site_option('auto_load_next_post_install_date', strtotime($install_date));
152 152
 			} else {
153
-				add_site_option( 'auto_load_next_post_install_date', time() );
153
+				add_site_option('auto_load_next_post_install_date', time());
154 154
 			}
155 155
 		} // END set_install_date()
156 156
 
@@ -165,15 +165,15 @@  discard block
 block discarded – undo
165 165
 		 */
166 166
 		public static function create_options() {
167 167
 			// Include settings so that we can run through defaults
168
-			include_once( dirname( __FILE__ ) . '/admin/class-auto-load-next-post-admin-settings.php' );
168
+			include_once(dirname(__FILE__).'/admin/class-auto-load-next-post-admin-settings.php');
169 169
 
170 170
 			$settings = Auto_Load_Next_Post_Admin_Settings::get_settings_pages();
171 171
 
172
-			foreach ( $settings as $section ) {
173
-				foreach ( $section->get_settings() as $value ) {
174
-					if ( isset( $value['default'] ) && isset( $value['id'] ) ) {
175
-						$autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true;
176
-						add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) );
172
+			foreach ($settings as $section) {
173
+				foreach ($section->get_settings() as $value) {
174
+					if (isset($value['default']) && isset($value['id'])) {
175
+						$autoload = isset($value['autoload']) ? (bool) $value['autoload'] : true;
176
+						add_option($value['id'], $value['default'], '', ($autoload ? 'yes' : 'no'));
177 177
 					}
178 178
 				}
179 179
 			}
@@ -188,7 +188,7 @@  discard block
 block discarded – undo
188 188
 		 * @version 1.5.0
189 189
 		 */
190 190
 		public static function add_rewrite_endpoint() {
191
-			add_rewrite_endpoint( 'alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT );
191
+			add_rewrite_endpoint('alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT);
192 192
 		} // END add_rewrite_endpoint()
193 193
 
194 194
 		/**
Please login to merge, or discard this patch.
includes/admin/views/html-notice-no-theme-selectors.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 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 17
 <div class="notice notice-error">
18
-	<p><?php echo sprintf( __( 'It seems that not all of the required theme selectors have been set. These theme selectors are required in order for %1$s to work. %2$sHow to find my 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/?utm_source=wpadmin&utm_campaign=plugin-settings-theme-selectors" target="_blank">', '</a>' ); ?></p>
18
+	<p><?php echo sprintf(__('It seems that not all of the required theme selectors have been set. These theme selectors are required in order for %1$s to work. %2$sHow to find my 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/?utm_source=wpadmin&utm_campaign=plugin-settings-theme-selectors" target="_blank">', '</a>'); ?></p>
19 19
 </div>
Please login to merge, or discard this patch.
includes/admin/views/html-notice-no-comment-selector.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 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 17
 <div class="notice notice-error">
18
-	<p><?php echo sprintf( __( 'In order to remove comments we need to know what the comments container is. Please identify the comments container under <strong>Theme Selectors</strong>. %1$sHow to find my theme selectors?%2$s', 'auto-load-next-post' ), '<a href="https://autoloadnextpost.com/documentation/find-theme-selectors/?utm_source=wpadmin&utm_campaign=plugin-settings-misc" target="_blank">', '</a>' ); ?></p>
18
+	<p><?php echo sprintf(__('In order to remove comments we need to know what the comments container is. Please identify the comments container under <strong>Theme Selectors</strong>. %1$sHow to find my theme selectors?%2$s', 'auto-load-next-post'), '<a href="https://autoloadnextpost.com/documentation/find-theme-selectors/?utm_source=wpadmin&utm_campaign=plugin-settings-misc" target="_blank">', '</a>'); ?></p>
19 19
 </div>
Please login to merge, or discard this patch.
includes/admin/views/html-notice-is-supported.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 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 17
 <div class="notice notice-info">
18
-	<p><?php echo sprintf( __( 'This theme supports %s. No need to change the theme selectors as they have already been set by the theme.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ); ?></p>
18
+	<p><?php echo sprintf(__('This theme supports %s. No need to change the theme selectors as they have already been set by the theme.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')); ?></p>
19 19
 </div>
Please login to merge, or discard this patch.
includes/admin/views/html-notice-jetpack-lazy-images-module.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,10 +10,10 @@
 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 17
 <div class="notice jetpack-info">
18
-	<p><?php echo sprintf( __( 'You have enabled the Lazy-loading for Images module in JetPack. To trigger the lazy loading event apply %s to "Entering a Post".', 'auto-load-next-post' ), '<code>jetpack-lazy-images-load</code>' ); ?></p>
18
+	<p><?php echo sprintf(__('You have enabled the Lazy-loading for Images module in JetPack. To trigger the lazy loading event apply %s to "Entering a Post".', 'auto-load-next-post'), '<code>jetpack-lazy-images-load</code>'); ?></p>
19 19
 </div>
Please login to merge, or discard this patch.
includes/admin/views/html-admin-sidebar.php 1 patch
Spacing   +22 added lines, -22 removed lines patch added patch discarded remove patch
@@ -3,62 +3,62 @@
 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__( 'Paginated Posts Supported', 'auto-load-next-post' ) ); ?></li>
13
-			<li><?php echo wptexturize( esc_html__( 'Exclude Post Formats', 'auto-load-next-post' ) ); ?></li>
14
-			<li><?php echo wptexturize( esc_html__( 'Limit Posts per Session', 'auto-load-next-post' ) ); ?></li>
15
-			<li><?php echo wptexturize( esc_html__( 'Query Posts by Category and Tag', 'auto-load-next-post' ) ); ?></li>
16
-			<li><?php echo wptexturize( esc_html__( 'Exclude User Roles and Specific Users', 'auto-load-next-post' ) ); ?></li>
17
-			<li><?php echo wptexturize( esc_html__( 'Pre-Query Posts Ready to Load', 'auto-load-next-post' ) ); ?></li>
18
-			<li><?php echo wptexturize( esc_html__( 'Hide Comments and Show by Toggle Button', 'auto-load-next-post' ) ); ?></li>
19
-			<li><?php echo wptexturize( sprintf( esc_html__( 'Multilingual Support for %1$s and %2$s', 'auto-load-next-post' ), 'WPML', 'Polylang' ) ); ?></li>
20
-			<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__('Paginated Posts Supported', 'auto-load-next-post')); ?></li>
13
+			<li><?php echo wptexturize(esc_html__('Exclude Post Formats', 'auto-load-next-post')); ?></li>
14
+			<li><?php echo wptexturize(esc_html__('Limit Posts per Session', 'auto-load-next-post')); ?></li>
15
+			<li><?php echo wptexturize(esc_html__('Query Posts by Category and Tag', 'auto-load-next-post')); ?></li>
16
+			<li><?php echo wptexturize(esc_html__('Exclude User Roles and Specific Users', 'auto-load-next-post')); ?></li>
17
+			<li><?php echo wptexturize(esc_html__('Pre-Query Posts Ready to Load', 'auto-load-next-post')); ?></li>
18
+			<li><?php echo wptexturize(esc_html__('Hide Comments and Show by Toggle Button', 'auto-load-next-post')); ?></li>
19
+			<li><?php echo wptexturize(sprintf(esc_html__('Multilingual Support for %1$s and %2$s', 'auto-load-next-post'), 'WPML', 'Polylang')); ?></li>
20
+			<li><?php echo wptexturize(esc_html__('Email Support', 'auto-load-next-post')); ?></li>
21 21
 		</ul>
22 22
 
23 23
 		<p>
24
-			<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
+			<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>
25 25
 		</p>
26 26
 
27 27
 	</div>
28 28
 
29 29
 	<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">
30
-		<h2><?php esc_html_e( 'Sign up to pre-order first', 'auto-load-next-post' ); ?></h2>
30
+		<h2><?php esc_html_e('Sign up to pre-order first', 'auto-load-next-post'); ?></h2>
31 31
 
32 32
 		<p class="intro">
33
-			<?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
+			<?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')); ?>
34 34
 		</p>
35 35
 
36 36
 		<div class="field">
37
-			<input type="email" name="EMAIL" value="" placeholder="<?php esc_html_e( 'Your Email Address', 'auto-load-next-post' ); ?>"/>
37
+			<input type="email" name="EMAIL" value="" placeholder="<?php esc_html_e('Your Email Address', 'auto-load-next-post'); ?>"/>
38 38
 		</div>
39 39
 
40 40
 		<div class="field">
41
-			<input type="text" name="FNAME" value="" placeholder="<?php esc_html_e( 'First Name', 'auto-load-next-post' ); ?>"/>
41
+			<input type="text" name="FNAME" value="" placeholder="<?php esc_html_e('First Name', 'auto-load-next-post'); ?>"/>
42 42
 		</div>
43 43
 
44 44
 		<div class="field">
45
-			<input type="text" name="LNAME" value="" placeholder="<?php esc_html_e( 'Last Name', 'auto-load-next-post' ); ?>"/>
45
+			<input type="text" name="LNAME" value="" placeholder="<?php esc_html_e('Last Name', 'auto-load-next-post'); ?>"/>
46 46
 		</div>
47 47
 
48 48
 		<input type="hidden" name="group[35169][1]" value="1">
49 49
 
50 50
 		<div class="field submit-button">
51 51
 			<div style="position: absolute; left: -9999px;" aria-hidden="true"><input type="text" name="b_48ead612ad85b23fe2239c6e3_79e97b5275" tabindex="-1" value=""></div>
52
-			<input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="<?php esc_html_e( 'Sign me up', 'auto-load-next-post' ); ?>"/>
52
+			<input type="submit" name="subscribe" id="mc-embedded-subscribe" class="button" value="<?php esc_html_e('Sign me up', 'auto-load-next-post'); ?>"/>
53 53
 		</div>
54 54
 
55 55
 		<p class="promise">
56
-			<?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
+			<?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'); ?>
57 57
 		</p>
58 58
 	</form>
59 59
 
60 60
 	<div class="block credits">
61
-		<h4><?php esc_html_e( 'Created &amp; maintained by', 'auto-load-next-post' ); ?></h4>
61
+		<h4><?php esc_html_e('Created &amp; maintained by', 'auto-load-next-post'); ?></h4>
62 62
 		<ul>
63 63
 			<li>
64 64
 				<a href="https://profiles.wordpress.org/sebd86">
Please login to merge, or discard this patch.
includes/admin/views/html-notice-requirement-wp.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -11,10 +11,10 @@
 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 18
 <div class="notice notice-error">
19
-	<p><?php echo sprintf( __( 'Sorry, <strong>%s</strong> requires WordPress %s or higher. Please upgrade your WordPress setup.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE ); ?></p>
19
+	<p><?php echo sprintf(__('Sorry, <strong>%s</strong> requires WordPress %s or higher. Please upgrade your WordPress setup.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE); ?></p>
20 20
 </div>
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'        => sprintf( __( 'The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post' ), '<code>main.site-main</code>' ),
105
+						'title'       => esc_html__('Content Container', 'auto-load-next-post'),
106
+						'desc'        => sprintf(__('The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post'), '<code>main.site-main</code>'),
107 107
 						'id'          => 'auto_load_next_post_content_container',
108 108
 						'default'     => 'main.site-main',
109
-						'placeholder' => esc_html__( 'Required', 'auto-load-next-post' ),
109
+						'placeholder' => esc_html__('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'     => sprintf( __( 'Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: %s', 'auto-load-next-post' ), '<code>h1.entry-title</code>' ),
116
+						'title'    => esc_html__('Post Title', 'auto-load-next-post'),
117
+						'desc'     => sprintf(__('Used to identify which article the user is reading and track should Google Analytics or other analytics be enabled. Default: %s', 'auto-load-next-post'), '<code>h1.entry-title</code>'),
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'     => sprintf( __( 'Used to identify which post to load next if any. Default: %s', 'auto-load-next-post' ), '<code>nav.post-navigation</code>' ),
126
+						'title'    => esc_html__('Post Navigation', 'auto-load-next-post'),
127
+						'desc'     => sprintf(__('Used to identify which post to load next if any. Default: %s', 'auto-load-next-post'), '<code>nav.post-navigation</code>'),
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 %1$sMisc%2$s settings. Default: %3$s', 'auto-load-next-post' ), '<strong><a href="' . get_admin_url( $blog_id, 'options-general.php?page=auto-load-next-post-settings&tab=misc' ) . '">', '</a></strong>', '<code>div#comments</code>' ),
136
+						'title'    => esc_html__('Comments Container', 'auto-load-next-post'),
137
+						'desc'     => sprintf(__('Used to remove comments if enabled under %1$sMisc%2$s settings. Default: %3$s', 'auto-load-next-post'), '<strong><a href="'.get_admin_url($blog_id, 'options-general.php?page=auto-load-next-post-settings&tab=misc').'">', '</a></strong>', '<code>div#comments</code>'),
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/settings/class-alnp-settings-events.php 1 patch
Spacing   +14 added lines, -14 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_Events_Tab' ) ) {
17
+if ( ! class_exists('Auto_Load_Next_Post_Settings_Events_Tab')) {
18 18
 
19 19
 	class Auto_Load_Next_Post_Settings_Events_Tab extends Auto_Load_Next_Post_Settings_Page {
20 20
 
@@ -25,11 +25,11 @@  discard block
 block discarded – undo
25 25
 		 */
26 26
 		public function __construct() {
27 27
 			$this->id    = 'events';
28
-			$this->label = esc_html__( 'Events', 'auto-load-next-post' );
28
+			$this->label = esc_html__('Events', 'auto-load-next-post');
29 29
 
30 30
 			parent::__construct();
31 31
 
32
-			add_action( 'auto_load_next_post_settings_' . $this->id, array( __CLASS__, 'is_jetpack_lazy_images_active' ), 10 );
32
+			add_action('auto_load_next_post_settings_'.$this->id, array(__CLASS__, 'is_jetpack_lazy_images_active'), 10);
33 33
 		} // END __construct()
34 34
 
35 35
 		/**
@@ -40,9 +40,9 @@  discard block
 block discarded – undo
40 40
 		 * @static
41 41
 		 */
42 42
 		public static function is_jetpack_lazy_images_active() {
43
-			if ( alnp_check_jetpack() == 'yes' ) {
44
-				if ( Jetpack::is_module_active( 'lazy-images' ) ) {
45
-					include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-jetpack-lazy-images-module.php' );
43
+			if (alnp_check_jetpack() == 'yes') {
44
+				if (Jetpack::is_module_active('lazy-images')) {
45
+					include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-jetpack-lazy-images-module.php');
46 46
 				}
47 47
 			}
48 48
 		} // END is_jetpack_lazy_images_active()
@@ -60,13 +60,13 @@  discard block
 block discarded – undo
60 60
 					array(
61 61
 						'title' => $this->label,
62 62
 						'type'  => 'title',
63
-						'desc'  => sprintf( __( 'Below you can enter external JavaScript events to be triggered alongside %1$s native events. Separate each event like so: %2$s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<code>event1, event2,</code>' ),
63
+						'desc'  => sprintf(__('Below you can enter external JavaScript events to be triggered alongside %1$s native events. Separate each event like so: %2$s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<code>event1, event2,</code>'),
64 64
 						'id'    => 'events_options'
65 65
 					),
66 66
 
67 67
 					array(
68
-						'title'    => esc_html__( 'Post loaded', 'auto-load-next-post' ),
69
-						'desc'     => __( 'Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post' ),
68
+						'title'    => esc_html__('Post loaded', 'auto-load-next-post'),
69
+						'desc'     => __('Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post'),
70 70
 						'id'       => 'auto_load_next_post_on_load_event',
71 71
 						'default'  => '',
72 72
 						'type'     => 'textarea',
@@ -75,8 +75,8 @@  discard block
 block discarded – undo
75 75
 					),
76 76
 
77 77
 					array(
78
-						'title'    => esc_html__( 'Entering a Post', 'auto-load-next-post' ),
79
-						'desc'     => esc_html__( 'Events listed here will be triggered when entering a post.', 'auto-load-next-post' ),
78
+						'title'    => esc_html__('Entering a Post', 'auto-load-next-post'),
79
+						'desc'     => esc_html__('Events listed here will be triggered when entering a post.', 'auto-load-next-post'),
80 80
 						'id'       => 'auto_load_next_post_on_entering_event',
81 81
 						'default'  => '',
82 82
 						'type'     => 'textarea',
@@ -99,7 +99,7 @@  discard block
 block discarded – undo
99 99
 		public function output() {
100 100
 			$settings = $this->get_settings();
101 101
 
102
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $settings );
102
+			Auto_Load_Next_Post_Admin_Settings::output_fields($settings);
103 103
 		} // END output()
104 104
 
105 105
 		/**
@@ -110,7 +110,7 @@  discard block
 block discarded – undo
110 110
 		public function save() {
111 111
 			$settings = $this->get_settings();
112 112
 
113
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $settings );
113
+			Auto_Load_Next_Post_Admin_Settings::save_fields($settings);
114 114
 		} // END save()
115 115
 
116 116
 	} // END class
Please login to merge, or discard this patch.