Completed
Branch codeclean (07bbe5)
by Sébastien
01:40
created
includes/theme-support/class-alnp-oceanwp.php 1 patch
Spacing   +8 added lines, -8 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,16 +29,16 @@  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
 
34 34
 		// Filters the location of the repeater template.
35
-		add_filter( 'alnp_template_redirect', array( __CLASS__, 'template_redirect' ) );
35
+		add_filter('alnp_template_redirect', array(__CLASS__, 'template_redirect'));
36 36
 
37 37
 		// Filters the repeater template location.
38
-		add_filter( 'alnp_template_location', array( __CLASS__, 'alnp_oceanwp_template_location' ) );
38
+		add_filter('alnp_template_location', array(__CLASS__, 'alnp_oceanwp_template_location'));
39 39
 
40 40
 		// Remove Auto Load Next Post compatible post navigation.
41
-		remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 );
41
+		remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10);
42 42
 	} // END init()
43 43
 
44 44
 	/**
@@ -48,7 +48,7 @@  discard block
 block discarded – undo
48 48
 	 * @return string
49 49
 	 */
50 50
 	public static function template_redirect() {
51
-		return AUTO_LOAD_NEXT_POST_FILE_PATH . '/template/theme-support/oceanwp/content-alnp.php';
51
+		return AUTO_LOAD_NEXT_POST_FILE_PATH.'/template/theme-support/oceanwp/content-alnp.php';
52 52
 	} // END template_redirect()
53 53
 
54 54
 	/**
@@ -69,14 +69,14 @@  discard block
 block discarded – undo
69 69
 	 * @static
70 70
 	 */
71 71
 	public static function add_theme_support() {
72
-		add_theme_support( 'auto-load-next-post', array(
72
+		add_theme_support('auto-load-next-post', array(
73 73
 			'content_container'    => 'div.site-content',
74 74
 			'title_selector'       => '.entry-title',
75 75
 			'navigation_container' => 'nav.post-navigation',
76 76
 			'comments_container'   => 'section#comments',
77 77
 			'load_js_in_footer'    => 'no',
78 78
 			'lock_js_in_footer'    => 'no',
79
-		) );
79
+		));
80 80
 	} // END add_theme_support()
81 81
 
82 82
 } // END class
Please login to merge, or discard this patch.
uninstall.php 2 patches
Spacing   +8 added lines, -8 removed lines patch added patch discarded remove patch
@@ -9,18 +9,18 @@  discard block
 block discarded – undo
9 9
  * @package  Auto Load Next Post
10 10
  * @license  GPL-2.0+
11 11
  */
12
-if ( ! defined( 'ABSPATH' ) || ! defined( 'WP_UNINSTALL_PLUGIN' ) ) {
12
+if ( ! defined('ABSPATH') || ! defined('WP_UNINSTALL_PLUGIN')) {
13 13
 	exit(); // Exit if accessed directly.
14 14
 }
15 15
 
16 16
 global $wpdb;
17 17
 
18
-$uninstall = get_option( 'auto_load_next_post_uninstall_data' );
18
+$uninstall = get_option('auto_load_next_post_uninstall_data');
19 19
 
20
-if ( ! empty( $uninstall ) ) {
20
+if ( ! empty($uninstall)) {
21 21
 
22 22
 	// Make sure it is only a single site we are uninstalling from.
23
-	if ( ! is_multisite() ) {
23
+	if ( ! is_multisite()) {
24 24
 		// Delete options
25 25
 		$wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'auto_load_next_post_%'");
26 26
 
@@ -28,17 +28,17 @@  discard block
 block discarded – undo
28 28
 		$wpdb->query("DELETE FROM $wpdb->usermeta WHERE meta_key LIKE 'auto_load_next_post_%'");
29 29
 
30 30
 		// Delete Uninstall Data - Just to double check it has been removed.
31
-		delete_option( 'auto_load_next_post_uninstall_data' );
31
+		delete_option('auto_load_next_post_uninstall_data');
32 32
 
33 33
 		// Delete Install Date
34
-		delete_option( 'auto_load_next_post_install_date' );
34
+		delete_option('auto_load_next_post_install_date');
35 35
 	}
36 36
 	else {
37 37
 		// Delete Uninstall Data
38
-		delete_site_option( 'auto_load_next_post_uninstall_data' );
38
+		delete_site_option('auto_load_next_post_uninstall_data');
39 39
 
40 40
 		// Delete Install Date
41
-		delete_site_option( 'auto_load_next_post_install_date' );
41
+		delete_site_option('auto_load_next_post_install_date');
42 42
 	}
43 43
 }
44 44
 
Please login to merge, or discard this patch.
Braces   +1 added lines, -2 removed lines patch added patch discarded remove patch
@@ -32,8 +32,7 @@
 block discarded – undo
32 32
 
33 33
 		// Delete Install Date
34 34
 		delete_option( 'auto_load_next_post_install_date' );
35
-	}
36
-	else {
35
+	} else {
37 36
 		// Delete Uninstall Data
38 37
 		delete_site_option( 'auto_load_next_post_uninstall_data' );
39 38
 
Please login to merge, or discard this patch.
includes/admin/settings/class-alnp-settings-theme-selectors.php 1 patch
Spacing   +31 added lines, -31 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,14 +44,14 @@  discard block
 block discarded – undo
44 44
 		 * @since  1.5.10
45 45
 		 */
46 46
 		public static function is_theme_supported() {
47
-			if ( is_alnp_supported() ) {
48
-				$plugin_supported = alnp_get_theme_support( 'plugin_support' );
47
+			if (is_alnp_supported()) {
48
+				$plugin_supported = alnp_get_theme_support('plugin_support');
49 49
 
50 50
 				// Is the theme supported by theme or plugin?
51
-				if ( ! empty( $plugin_supported ) && $plugin_supported == 'yes' ) {
52
-					include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-plugin-supported.php' );
51
+				if ( ! empty($plugin_supported) && $plugin_supported == 'yes') {
52
+					include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-plugin-supported.php');
53 53
 				} else {
54
-					include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-is-supported.php' );
54
+					include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-is-supported.php');
55 55
 				}
56 56
 			}
57 57
 		} // END is_theme_supported()
@@ -66,24 +66,24 @@  discard block
 block discarded – undo
66 66
 		public static function no_theme_selectors_set() {
67 67
 			$set_selectors = array();
68 68
 
69
-			$content_container    = get_option( 'auto_load_next_post_content_container' );
70
-			$title_selector       = get_option( 'auto_load_next_post_title_selector' );
71
-			$navigation_container = get_option( 'auto_load_next_post_navigation_container' );
69
+			$content_container    = get_option('auto_load_next_post_content_container');
70
+			$title_selector       = get_option('auto_load_next_post_title_selector');
71
+			$navigation_container = get_option('auto_load_next_post_navigation_container');
72 72
 
73
-			if ( ! empty( $content_container ) ) {
73
+			if ( ! empty($content_container)) {
74 74
 				$set_selectors[] = $content_container;
75 75
 			}
76 76
 
77
-			if ( ! empty( $title_selector ) ) {
77
+			if ( ! empty($title_selector)) {
78 78
 				$set_selectors[] = $title_selector;
79 79
 			}
80 80
 
81
-			if ( ! empty( $navigation_container ) ) {
81
+			if ( ! empty($navigation_container)) {
82 82
 				$set_selectors[] = $navigation_container;
83 83
 			}
84 84
 
85
-			if ( empty( $set_selectors ) || is_array( $set_selectors ) && count( $set_selectors ) < 3 ) {
86
-				include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-no-theme-selectors.php' );
85
+			if (empty($set_selectors) || is_array($set_selectors) && count($set_selectors) < 3) {
86
+				include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-no-theme-selectors.php');
87 87
 			}
88 88
 		} // END no_theme_selectors_set()
89 89
 
@@ -102,26 +102,26 @@  discard block
 block discarded – undo
102 102
 				'auto_load_next_post_theme_selectors_settings', array(
103 103
 
104 104
 					array(
105
-						'title' => esc_html__( 'Theme Selectors', 'auto-load-next-post' ),
105
+						'title' => esc_html__('Theme Selectors', 'auto-load-next-post'),
106 106
 						'type'  => 'title',
107
-						'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' ) ),
107
+						'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')),
108 108
 						'id'    => 'theme_selectors_options'
109 109
 					),
110 110
 
111 111
 					array(
112
-						'title'       => esc_html__( 'Content Container', 'auto-load-next-post' ),
113
-						'desc'        => sprintf( __( 'The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post' ), '<code>main.site-main</code>' ),
112
+						'title'       => esc_html__('Content Container', 'auto-load-next-post'),
113
+						'desc'        => sprintf(__('The primary container where the post content is loaded in. Default: %s', 'auto-load-next-post'), '<code>main.site-main</code>'),
114 114
 						'id'          => 'auto_load_next_post_content_container',
115 115
 						'default'     => 'main.site-main',
116
-						'placeholder' => esc_html__( 'Required', 'auto-load-next-post' ),
116
+						'placeholder' => esc_html__('Required', 'auto-load-next-post'),
117 117
 						'type'        => 'text',
118 118
 						'css'         => 'min-width:300px;',
119 119
 						'autoload'    => false
120 120
 					),
121 121
 
122 122
 					array(
123
-						'title'    => esc_html__( 'Post Title', 'auto-load-next-post' ),
124
-						'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>' ),
123
+						'title'    => esc_html__('Post Title', 'auto-load-next-post'),
124
+						'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>'),
125 125
 						'id'       => 'auto_load_next_post_title_selector',
126 126
 						'default'  => 'h1.entry-title',
127 127
 						'type'     => 'text',
@@ -130,8 +130,8 @@  discard block
 block discarded – undo
130 130
 					),
131 131
 
132 132
 					array(
133
-						'title'    => esc_html__( 'Post Navigation', 'auto-load-next-post' ),
134
-						'desc'     => sprintf( __( 'Used to identify which post to load next if any. Default: %s', 'auto-load-next-post' ), '<code>nav.post-navigation</code>' ),
133
+						'title'    => esc_html__('Post Navigation', 'auto-load-next-post'),
134
+						'desc'     => sprintf(__('Used to identify which post to load next if any. Default: %s', 'auto-load-next-post'), '<code>nav.post-navigation</code>'),
135 135
 						'id'       => 'auto_load_next_post_navigation_container',
136 136
 						'default'  => 'nav.post-navigation',
137 137
 						'type'     => 'text',
@@ -140,8 +140,8 @@  discard block
 block discarded – undo
140 140
 					),
141 141
 
142 142
 					array(
143
-						'title'    => esc_html__( 'Comments Container', 'auto-load-next-post' ),
144
-						'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>' ),
143
+						'title'    => esc_html__('Comments Container', 'auto-load-next-post'),
144
+						'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>'),
145 145
 						'id'       => 'auto_load_next_post_comments_container',
146 146
 						'default'  => 'div#comments',
147 147
 						'type'     => 'text',
@@ -165,7 +165,7 @@  discard block
 block discarded – undo
165 165
 		public function output() {
166 166
 			$settings = $this->get_settings();
167 167
 
168
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $settings );
168
+			Auto_Load_Next_Post_Admin_Settings::output_fields($settings);
169 169
 		} // END output()
170 170
 
171 171
 		/**
@@ -178,7 +178,7 @@  discard block
 block discarded – undo
178 178
 		public function save() {
179 179
 			$settings = $this->get_settings();
180 180
 
181
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $settings );
181
+			Auto_Load_Next_Post_Admin_Settings::save_fields($settings);
182 182
 		} // END save()
183 183
 
184 184
 	} // END class
Please login to merge, or discard this patch.
includes/admin/views/html-notice-plugin-supported.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@
 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
 $active_theme = wp_get_theme();
18 18
 ?>
19 19
 <div class="notice notice-info">
20
-	<p><?php echo sprintf( __( '%s theme is supported via a plugin. Do <strong>NOT</strong> change the theme selectors.', 'auto-load-next-post' ), $active_theme->name ); ?></p>
20
+	<p><?php echo sprintf(__('%s theme is supported via a plugin. Do <strong>NOT</strong> change the theme selectors.', 'auto-load-next-post'), $active_theme->name); ?></p>
21 21
 </div>
Please login to merge, or discard this patch.
includes/3rd-party/3rd-party.php 1 patch
Spacing   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -1,4 +1,4 @@
 block discarded – undo
1 1
 <?php
2
-defined( 'ABSPATH' ) || die( 'Cheatin&#8217; uh?' );
2
+defined('ABSPATH') || die('Cheatin&#8217; uh?');
3 3
 
4
-require AUTO_LOAD_NEXT_POST_3RD_PARTY . 'plugins/wp-rocket.php';
5 4
\ No newline at end of file
5
+require AUTO_LOAD_NEXT_POST_3RD_PARTY.'plugins/wp-rocket.php';
6 6
\ No newline at end of file
Please login to merge, or discard this patch.
includes/3rd-party/plugins/wp-rocket.php 1 patch
Spacing   +9 added lines, -9 removed lines patch added patch discarded remove patch
@@ -1,7 +1,7 @@  discard block
 block discarded – undo
1 1
 <?php
2
-defined( 'ABSPATH' ) || die( 'Cheatin&#8217; uh?' );
2
+defined('ABSPATH') || die('Cheatin&#8217; uh?');
3 3
 
4
-if ( defined( 'WP_ROCKET_VERSION' ) ) :
4
+if (defined('WP_ROCKET_VERSION')) :
5 5
 	/**
6 6
 	 * Excludes Auto Load Next Post scripts from JS minification.
7 7
 	 *
@@ -9,14 +9,14 @@  discard block
 block discarded – undo
9 9
 	 * @param  Array $excluded_js An array of JS handles enqueued in WordPress.
10 10
 	 * @return Array the updated array of handles.
11 11
 	 */
12
-	function rocket_exclude_js_alnp( $excluded_js ) {
13
-		$excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/frontend/auto-load-next-post.js' ) );
14
-		$excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/frontend/auto-load-next-post.min.js' ) );
15
-		$excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/frontend/auto-load-next-post.dev.js' ) );
16
-		$excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/libs/jquery.history.js' ) );
17
-		$excluded_js[] = str_replace( home_url(), '', plugins_url( '/auto-load-next-post/assets/js/libs/scrollspy.min.js' ) );
12
+	function rocket_exclude_js_alnp($excluded_js) {
13
+		$excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/frontend/auto-load-next-post.js'));
14
+		$excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/frontend/auto-load-next-post.min.js'));
15
+		$excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/frontend/auto-load-next-post.dev.js'));
16
+		$excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/libs/jquery.history.js'));
17
+		$excluded_js[] = str_replace(home_url(), '', plugins_url('/auto-load-next-post/assets/js/libs/scrollspy.min.js'));
18 18
 
19 19
 		return $excluded_js;
20 20
 	}
21
-	add_filter( 'rocket_exclude_js', 'rocket_exclude_js_disqus' );
21
+	add_filter('rocket_exclude_js', 'rocket_exclude_js_disqus');
22 22
 endif;
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-poseidon.php 1 patch
Spacing   +7 added lines, -7 removed lines patch added patch discarded remove patch
@@ -13,7 +13,7 @@  discard block
 block discarded – undo
13 13
  */
14 14
 
15 15
 // Exit if accessed directly.
16
-if ( ! defined( 'ABSPATH' ) ) {
16
+if ( ! defined('ABSPATH')) {
17 17
 	exit;
18 18
 }
19 19
 
@@ -30,13 +30,13 @@  discard block
 block discarded – undo
30 30
 	 */
31 31
 	public static function init() {
32 32
 		// Add theme support and preset the theme selectors.
33
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
33
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
34 34
 
35 35
 		// Display the post thumbnail before the content.
36
-		add_action( 'alnp_load_before_content', array( __CLASS__, 'the_post_thumbnail' ), 10 );
36
+		add_action('alnp_load_before_content', array(__CLASS__, 'the_post_thumbnail'), 10);
37 37
 
38 38
 		// Filters the repeater template location.
39
-		add_filter( 'alnp_template_location', array( __CLASS__, 'alnp_poseidon_template_location' ) );
39
+		add_filter('alnp_template_location', array(__CLASS__, 'alnp_poseidon_template_location'));
40 40
 	} // END init()
41 41
 
42 42
 	/**
@@ -52,7 +52,7 @@  discard block
 block discarded – undo
52 52
 		// Get theme options from database.
53 53
 		$theme_options = poseidon_theme_options();
54 54
 
55
-		if ( is_single() && has_post_thumbnail() && 'header' == $theme_options['post_layout_single'] ) {
55
+		if (is_single() && has_post_thumbnail() && 'header' == $theme_options['post_layout_single']) {
56 56
 			the_post_thumbnail();
57 57
 		}
58 58
 	} // END the_post_thumbnail()
@@ -75,14 +75,14 @@  discard block
 block discarded – undo
75 75
 	 * @static
76 76
 	 */
77 77
 	public static function add_theme_support() {
78
-		add_theme_support( 'auto-load-next-post', array(
78
+		add_theme_support('auto-load-next-post', array(
79 79
 			'content_container'    => 'main.site-main',
80 80
 			'title_selector'       => 'h1.entry-title',
81 81
 			'navigation_container' => 'nav.post-navigation',
82 82
 			'comments_container'   => 'div#comments',
83 83
 			'load_js_in_footer'    => 'no',
84 84
 			'lock_js_in_footer'    => 'no',
85
-		) );
85
+		));
86 86
 	} // END add_theme_support()
87 87
 
88 88
 } // END class
Please login to merge, or discard this patch.
auto-load-next-post.php 2 patches
Doc Comments   +2 added lines, -2 removed lines patch added patch discarded remove patch
@@ -259,7 +259,7 @@  discard block
 block discarded – undo
259 259
 		 * @access public
260 260
 		 * @since  1.5.0
261 261
 		 * @static
262
-		 * @return string|boolean
262
+		 * @return string|false
263 263
 		 */
264 264
 		public static function is_alnp_using_customizer() {
265 265
 			if ( is_customize_preview() ) {
@@ -279,7 +279,7 @@  discard block
 block discarded – undo
279 279
 		 * @param   string  $name      The ID to register with WordPress.
280 280
 		 * @param   string  $file_path The path to the actual file.
281 281
 		 * @param   bool    $is_script Optional, argument for if the incoming file_path is a JavaScript source file.
282
-		 * @param   array   $support   Optional, for requiring other javascripts for the source file you are calling.
282
+		 * @param   string[]   $support   Optional, for requiring other javascripts for the source file you are calling.
283 283
 		 * @param   string  $version   Optional, can match the version of the plugin or version of the source file.
284 284
 		 * @param   bool    $footer Optional, can set the JavaScript to load in the footer instead.
285 285
 		 */
Please login to merge, or discard this patch.
Spacing   +52 added lines, -52 removed lines patch added patch discarded remove patch
@@ -25,7 +25,7 @@  discard block
 block discarded – undo
25 25
  *
26 26
  * The main instance of the plugin.
27 27
  */
28
-if ( ! class_exists( 'Auto_Load_Next_Post' ) ) {
28
+if ( ! class_exists('Auto_Load_Next_Post')) {
29 29
 
30 30
 	class Auto_Load_Next_Post {
31 31
 
@@ -59,7 +59,7 @@  discard block
 block discarded – undo
59 59
 		 * @return Auto_Load_Next_Post Single instance.
60 60
 		 */
61 61
 		public static function instance() {
62
-			if ( is_null( self::$_instance ) ) {
62
+			if (is_null(self::$_instance)) {
63 63
 				self::$_instance = new self();
64 64
 			}
65 65
 			return self::$_instance;
@@ -74,7 +74,7 @@  discard block
 block discarded – undo
74 74
 		 */
75 75
 		public function __clone() {
76 76
 			// Cloning instances of the class is forbidden
77
-			_doing_it_wrong( __FUNCTION__, __( 'Cloning this object is forbidden.', 'auto-load-next-post' ), self::$version );
77
+			_doing_it_wrong(__FUNCTION__, __('Cloning this object is forbidden.', 'auto-load-next-post'), self::$version);
78 78
 		} // END __clone()
79 79
 
80 80
 		/**
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 		 * @return void
86 86
 		 */
87 87
 		public function __wakeup() {
88
-			_doing_it_wrong( __FUNCTION__, __( 'Unserializing instances of this class is forbidden.', 'auto-load-next-post' ), self::$version );
88
+			_doing_it_wrong(__FUNCTION__, __('Unserializing instances of this class is forbidden.', 'auto-load-next-post'), self::$version);
89 89
 		} // END __wakeup()
90 90
 
91 91
 		/**
@@ -104,7 +104,7 @@  discard block
 block discarded – undo
104 104
 			/**
105 105
 			 * Auto Load Next Post is fully loaded.
106 106
 			 */
107
-			do_action( 'auto_load_next_post_loaded' );
107
+			do_action('auto_load_next_post_loaded');
108 108
 		} // END __construct()
109 109
 
110 110
 		/**
@@ -115,10 +115,10 @@  discard block
 block discarded – undo
115 115
 		 */
116 116
 		public function init_hooks() {
117 117
 			// Load translation files.
118
-			add_action( 'init', array( $this, 'load_plugin_textdomain' ) );
118
+			add_action('init', array($this, 'load_plugin_textdomain'));
119 119
 
120 120
 			// Load Auto Load Next Post scripts on the frontend.
121
-			add_action( 'wp_enqueue_scripts', array( $this, 'alnp_enqueue_scripts' ) );
121
+			add_action('wp_enqueue_scripts', array($this, 'alnp_enqueue_scripts'));
122 122
 		} // END init_hooks()
123 123
 
124 124
 		/**
@@ -133,10 +133,10 @@  discard block
 block discarded – undo
133 133
 			$this->define('AUTO_LOAD_NEXT_POST_FILE', __FILE__);
134 134
 			$this->define('AUTO_LOAD_NEXT_POST_SLUG', 'auto-load-next-post');
135 135
 
136
-			$this->define('AUTO_LOAD_NEXT_POST_URL_PATH', untrailingslashit( plugins_url( '/', __FILE__ ) ) );
137
-			$this->define('AUTO_LOAD_NEXT_POST_FILE_PATH', untrailingslashit( plugin_dir_path( __FILE__ ) ) );
136
+			$this->define('AUTO_LOAD_NEXT_POST_URL_PATH', untrailingslashit(plugins_url('/', __FILE__)));
137
+			$this->define('AUTO_LOAD_NEXT_POST_FILE_PATH', untrailingslashit(plugin_dir_path(__FILE__)));
138 138
 			$this->define('AUTO_LOAD_NEXT_POST_TEMPLATE_PATH', 'auto-load-next-post/');
139
-			$this->define('AUTO_LOAD_NEXT_POST_3RD_PARTY', AUTO_LOAD_NEXT_POST_FILE_PATH . '/includes/3rd-party/');
139
+			$this->define('AUTO_LOAD_NEXT_POST_3RD_PARTY', AUTO_LOAD_NEXT_POST_FILE_PATH.'/includes/3rd-party/');
140 140
 
141 141
 			$this->define('AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE', '4.4');
142 142
 
@@ -159,9 +159,9 @@  discard block
 block discarded – undo
159 159
 		 * @access private
160 160
 		 * @since  1.4.3
161 161
 		 */
162
-		private function define( $name, $value ) {
163
-			if ( ! defined( $name ) ) {
164
-				define( $name, $value );
162
+		private function define($name, $value) {
163
+			if ( ! defined($name)) {
164
+				define($name, $value);
165 165
 			}
166 166
 		} // END define()
167 167
 
@@ -174,29 +174,29 @@  discard block
 block discarded – undo
174 174
 		 * @return  void
175 175
 		 */
176 176
 		public function includes() {
177
-			include_once( dirname( __FILE__ ) . '/includes/class-alnp-autoloader.php' ); // Autoloader.
178
-			include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-conditional-functions.php' ); // Conditional functions.
179
-			include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-formatting-functions.php' ); // Formatting functions.
180
-			include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-themes-supported.php' ); // Handles all supported themes out of the box.
181
-			include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-core-functions.php' ); // Contains core functions for the front/back end.
177
+			include_once(dirname(__FILE__).'/includes/class-alnp-autoloader.php'); // Autoloader.
178
+			include_once(dirname(__FILE__).'/includes/auto-load-next-post-conditional-functions.php'); // Conditional functions.
179
+			include_once(dirname(__FILE__).'/includes/auto-load-next-post-formatting-functions.php'); // Formatting functions.
180
+			include_once(dirname(__FILE__).'/includes/auto-load-next-post-themes-supported.php'); // Handles all supported themes out of the box.
181
+			include_once(dirname(__FILE__).'/includes/auto-load-next-post-core-functions.php'); // Contains core functions for the front/back end.
182 182
 
183 183
 			// Include theme support.
184 184
 			alnp_include_theme_support();
185 185
 
186 186
 			// 3rd Party support.
187
-			include_once( dirname( __FILE__ ) . '/includes/3rd-party/3rd-party.php' );
187
+			include_once(dirname(__FILE__).'/includes/3rd-party/3rd-party.php');
188 188
 
189 189
 			// Customizer.
190
-			include_once( dirname( __FILE__ ) . '/includes/customizer/class-alnp-customizer.php' );
191
-			include_once( dirname( __FILE__ ) . '/includes/customizer/class-alnp-customizer-scripts.php' );
190
+			include_once(dirname(__FILE__).'/includes/customizer/class-alnp-customizer.php');
191
+			include_once(dirname(__FILE__).'/includes/customizer/class-alnp-customizer-scripts.php');
192 192
 
193 193
 			// Include admin class to handle all back-end functions.
194
-			if ( is_admin() ) {
195
-				include_once( dirname( __FILE__ ) . '/includes/admin/class-alnp-admin.php' ); // Admin section.
194
+			if (is_admin()) {
195
+				include_once(dirname(__FILE__).'/includes/admin/class-alnp-admin.php'); // Admin section.
196 196
 			}
197 197
 
198 198
 			// Install.
199
-			require_once( dirname( __FILE__ ) . '/includes/class-alnp-install.php' );
199
+			require_once(dirname(__FILE__).'/includes/class-alnp-install.php');
200 200
 		} // END includes()
201 201
 
202 202
 		/**
@@ -211,7 +211,7 @@  discard block
 block discarded – undo
211 211
 		 * @return  void
212 212
 		 */
213 213
 		public function load_plugin_textdomain() {
214
-			load_plugin_textdomain( 'auto-load-next-post', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' );
214
+			load_plugin_textdomain('auto-load-next-post', false, dirname(plugin_basename(__FILE__)).'/languages/');
215 215
 		} // END load_plugin_textdomain()
216 216
 
217 217
 		/**
@@ -223,33 +223,33 @@  discard block
 block discarded – undo
223 223
 		 */
224 224
 		public function alnp_enqueue_scripts() {
225 225
 			// Load the Javascript if found as a singluar post and the user is not a bot.
226
-			if ( !alnp_is_bot() && is_singular() && get_post_type() == 'post' ) {
226
+			if ( ! alnp_is_bot() && is_singular() && get_post_type() == 'post') {
227 227
 				// This checks to see if the JavaScript should load in the footer or not.
228 228
 				$load_in_footer = alnp_load_js_in_footer();
229 229
 
230
-				$this->load_file( 'auto-load-next-post-scrollspy', '/assets/js/libs/scrollspy.min.js', true, array('jquery'), AUTO_LOAD_NEXT_POST_VERSION, $load_in_footer );
230
+				$this->load_file('auto-load-next-post-scrollspy', '/assets/js/libs/scrollspy.min.js', true, array('jquery'), AUTO_LOAD_NEXT_POST_VERSION, $load_in_footer);
231 231
 
232 232
 				// Only load History.js when not in the customizer.
233
-				if ( ! is_customize_preview() ) {
234
-					$this->load_file( 'auto-load-next-post-history', '/assets/js/libs/jquery.history.js', true, array('jquery'), AUTO_LOAD_NEXT_POST_VERSION, $load_in_footer );
233
+				if ( ! is_customize_preview()) {
234
+					$this->load_file('auto-load-next-post-history', '/assets/js/libs/jquery.history.js', true, array('jquery'), AUTO_LOAD_NEXT_POST_VERSION, $load_in_footer);
235 235
 				}
236 236
 
237
-				$this->load_file( 'auto-load-next-post-script', '/assets/js/frontend/auto-load-next-post' . AUTO_LOAD_NEXT_POST_DEBUG_MODE.AUTO_LOAD_NEXT_POST_SCRIPT_MODE . '.js', true, array('auto-load-next-post-scrollspy'), AUTO_LOAD_NEXT_POST_VERSION, $load_in_footer );
237
+				$this->load_file('auto-load-next-post-script', '/assets/js/frontend/auto-load-next-post'.AUTO_LOAD_NEXT_POST_DEBUG_MODE.AUTO_LOAD_NEXT_POST_SCRIPT_MODE.'.js', true, array('auto-load-next-post-scrollspy'), AUTO_LOAD_NEXT_POST_VERSION, $load_in_footer);
238 238
 
239 239
 				// Variables for the JavaScript
240
-				wp_localize_script( 'auto-load-next-post-script', 'auto_load_next_post_params', array(
240
+				wp_localize_script('auto-load-next-post-script', 'auto_load_next_post_params', array(
241 241
 					'alnp_version'              => AUTO_LOAD_NEXT_POST_VERSION,
242
-					'alnp_content_container'    => get_option( 'auto_load_next_post_content_container' ),
243
-					'alnp_title_selector'       => get_option( 'auto_load_next_post_title_selector' ),
244
-					'alnp_navigation_container' => get_option( 'auto_load_next_post_navigation_container' ),
245
-					'alnp_comments_container'   => get_option( 'auto_load_next_post_comments_container' ),
246
-					'alnp_remove_comments'      => get_option( 'auto_load_next_post_remove_comments' ),
247
-					'alnp_google_analytics'     => get_option( 'auto_load_next_post_google_analytics' ),
248
-					'alnp_event_on_load'        => get_option( 'auto_load_next_post_on_load_event' ),
249
-					'alnp_event_on_entering'    => get_option( 'auto_load_next_post_on_entering_event' ),
242
+					'alnp_content_container'    => get_option('auto_load_next_post_content_container'),
243
+					'alnp_title_selector'       => get_option('auto_load_next_post_title_selector'),
244
+					'alnp_navigation_container' => get_option('auto_load_next_post_navigation_container'),
245
+					'alnp_comments_container'   => get_option('auto_load_next_post_comments_container'),
246
+					'alnp_remove_comments'      => get_option('auto_load_next_post_remove_comments'),
247
+					'alnp_google_analytics'     => get_option('auto_load_next_post_google_analytics'),
248
+					'alnp_event_on_load'        => get_option('auto_load_next_post_on_load_event'),
249
+					'alnp_event_on_entering'    => get_option('auto_load_next_post_on_entering_event'),
250 250
 					'alnp_is_customizer'        => $this->is_alnp_using_customizer(),
251 251
 					'alnp_load_in_footer'       => $load_in_footer
252
-				) );
252
+				));
253 253
 			} // END if is_singular() && get_post_type()
254 254
 		} // END alnp_enqueue_scripts()
255 255
 
@@ -262,7 +262,7 @@  discard block
 block discarded – undo
262 262
 		 * @return string|boolean
263 263
 		 */
264 264
 		public static function is_alnp_using_customizer() {
265
-			if ( is_customize_preview() ) {
265
+			if (is_customize_preview()) {
266 266
 				return "yes";
267 267
 			}
268 268
 
@@ -283,19 +283,19 @@  discard block
 block discarded – undo
283 283
 		 * @param   string  $version   Optional, can match the version of the plugin or version of the source file.
284 284
 		 * @param   bool    $footer Optional, can set the JavaScript to load in the footer instead.
285 285
 		 */
286
-		public static function load_file( $name, $file_path, $is_script = false, $support = array(), $version = '', $footer = false ) {
287
-			$url = AUTO_LOAD_NEXT_POST_URL_PATH . $file_path; // URL to the file.
288
-
289
-			if ( file_exists( AUTO_LOAD_NEXT_POST_FILE_PATH . $file_path ) ) {
290
-				if ( $is_script ) {
291
-					if ( !wp_script_is( $name, 'registered' ) ) {
292
-						wp_register_script( $name, $url, $support, $version, $footer );
293
-						wp_enqueue_script( $name );
286
+		public static function load_file($name, $file_path, $is_script = false, $support = array(), $version = '', $footer = false) {
287
+			$url = AUTO_LOAD_NEXT_POST_URL_PATH.$file_path; // URL to the file.
288
+
289
+			if (file_exists(AUTO_LOAD_NEXT_POST_FILE_PATH.$file_path)) {
290
+				if ($is_script) {
291
+					if ( ! wp_script_is($name, 'registered')) {
292
+						wp_register_script($name, $url, $support, $version, $footer);
293
+						wp_enqueue_script($name);
294 294
 					}
295 295
 				} else {
296
-					if ( !wp_style_is( $name, 'registered' ) ) {
297
-						wp_register_style( $name, $url );
298
-						wp_enqueue_style( $name );
296
+					if ( ! wp_style_is($name, 'registered')) {
297
+						wp_register_style($name, $url);
298
+						wp_enqueue_style($name);
299 299
 					}
300 300
 				} // end if
301 301
 			} // end if
Please login to merge, or discard this patch.
includes/admin/class-alnp-admin-settings.php 1 patch
Spacing   +176 added lines, -176 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_Settings' ) ) {
18
+if ( ! class_exists('Auto_Load_Next_Post_Admin_Settings')) {
19 19
 
20 20
 	class Auto_Load_Next_Post_Admin_Settings {
21 21
 
@@ -56,16 +56,16 @@  discard block
 block discarded – undo
56 56
 		 * @return  $settings
57 57
 		 */
58 58
 		public static function get_settings_pages() {
59
-			if ( empty( self::$settings ) ) {
59
+			if (empty(self::$settings)) {
60 60
 				$settings = array();
61 61
 
62
-				include_once( dirname( __FILE__ ) . '/settings/class-alnp-settings-page.php' );
62
+				include_once(dirname(__FILE__).'/settings/class-alnp-settings-page.php');
63 63
 
64
-				$settings[] = include( dirname( __FILE__ ) . '/settings/class-alnp-settings-theme-selectors.php');
65
-				$settings[] = include( dirname( __FILE__ ) . '/settings/class-alnp-settings-misc.php');
66
-				$settings[] = include( dirname( __FILE__ ) . '/settings/class-alnp-settings-events.php');
64
+				$settings[] = include(dirname(__FILE__).'/settings/class-alnp-settings-theme-selectors.php');
65
+				$settings[] = include(dirname(__FILE__).'/settings/class-alnp-settings-misc.php');
66
+				$settings[] = include(dirname(__FILE__).'/settings/class-alnp-settings-events.php');
67 67
 
68
-				self::$settings = apply_filters( 'auto_load_next_post_get_settings_pages', $settings );
68
+				self::$settings = apply_filters('auto_load_next_post_get_settings_pages', $settings);
69 69
 			}
70 70
 
71 71
 			return self::$settings;
@@ -83,16 +83,16 @@  discard block
 block discarded – undo
83 83
 		public static function save() {
84 84
 			global $current_tab;
85 85
 
86
-			check_admin_referer( 'auto-load-next-post-settings' );
86
+			check_admin_referer('auto-load-next-post-settings');
87 87
 
88 88
 			// Trigger actions
89
-			do_action( 'auto_load_next_post_settings_save_' . $current_tab );
90
-			do_action( 'auto_load_next_post_update_options_' . $current_tab );
91
-			do_action( 'auto_load_next_post_update_options' );
89
+			do_action('auto_load_next_post_settings_save_'.$current_tab);
90
+			do_action('auto_load_next_post_update_options_'.$current_tab);
91
+			do_action('auto_load_next_post_update_options');
92 92
 
93
-			self::add_message( __( 'Your settings have been saved.', 'auto-load-next-post' ) );
93
+			self::add_message(__('Your settings have been saved.', 'auto-load-next-post'));
94 94
 
95
-			do_action( 'auto_load_next_post_settings_saved' );
95
+			do_action('auto_load_next_post_settings_saved');
96 96
 		} // END save()
97 97
 
98 98
 		/**
@@ -103,7 +103,7 @@  discard block
 block discarded – undo
103 103
 		 * @since  1.0.0
104 104
 		 * @param  string $text Message
105 105
 		 */
106
-		public static function add_message( $text ) {
106
+		public static function add_message($text) {
107 107
 			self::$messages[] = $text;
108 108
 		} // END add_message()
109 109
 
@@ -115,7 +115,7 @@  discard block
 block discarded – undo
115 115
 		 * @since  1.0.0
116 116
 		 * @param  string $text Error
117 117
 		 */
118
-		public static function add_error( $text ) {
118
+		public static function add_error($text) {
119 119
 			self::$errors[] = $text;
120 120
 		} // END add_error()
121 121
 
@@ -128,13 +128,13 @@  discard block
 block discarded – undo
128 128
 		 * @return string
129 129
 		 */
130 130
 		public static function show_messages() {
131
-			if ( count( self::$errors ) > 0 ) {
132
-				foreach ( self::$errors as $error ) {
133
-					echo '<div id="message" class="error inline"><p><strong>' . esc_html( $error ) . '</strong></p></div>';
131
+			if (count(self::$errors) > 0) {
132
+				foreach (self::$errors as $error) {
133
+					echo '<div id="message" class="error inline"><p><strong>'.esc_html($error).'</strong></p></div>';
134 134
 				}
135
-			} elseif ( count( self::$messages ) > 0 ) {
136
-				foreach ( self::$messages as $message ) {
137
-					echo '<div id="message" class="updated inline"><p><strong>' . esc_html( $message ) . '</strong></p></div>';
135
+			} elseif (count(self::$messages) > 0) {
136
+				foreach (self::$messages as $message) {
137
+					echo '<div id="message" class="updated inline"><p><strong>'.esc_html($message).'</strong></p></div>';
138 138
 				}
139 139
 			}
140 140
 		} // END show_messages()
@@ -152,9 +152,9 @@  discard block
 block discarded – undo
152 152
 		 * @return  void
153 153
 		 */
154 154
 		public static function output() {
155
-			do_action( 'auto_load_next_post_settings_start' );
155
+			do_action('auto_load_next_post_settings_start');
156 156
 
157
-			include( dirname( __FILE__ ) . '/views/html-admin-settings.php' );
157
+			include(dirname(__FILE__).'/views/html-admin-settings.php');
158 158
 		} // END output()
159 159
 
160 160
 		/**
@@ -166,33 +166,33 @@  discard block
 block discarded – undo
166 166
 		 * @param  mixed $option_name
167 167
 		 * @return string
168 168
 		 */
169
-		public static function get_option( $option_name, $default = '' ) {
169
+		public static function get_option($option_name, $default = '') {
170 170
 			// Array value
171
-			if ( strstr( $option_name, '[' ) ) {
172
-				parse_str( $option_name, $option_array );
171
+			if (strstr($option_name, '[')) {
172
+				parse_str($option_name, $option_array);
173 173
 
174 174
 				// Option name is first key
175
-				$option_name = current( array_keys( $option_array ) );
175
+				$option_name = current(array_keys($option_array));
176 176
 
177 177
 				// Get value
178
-				$option_values = get_option( $option_name, '' );
178
+				$option_values = get_option($option_name, '');
179 179
 
180
-				$key = key( $option_array[$option_name] );
180
+				$key = key($option_array[$option_name]);
181 181
 
182
-				if ( isset( $option_values[$key] ) ) {
182
+				if (isset($option_values[$key])) {
183 183
 					$option_value = $option_values[$key];
184 184
 				} else {
185 185
 					$option_value = null;
186 186
 				}
187 187
 			} else {
188 188
 				// Single value
189
-				$option_value = get_option( $option_name, null );
189
+				$option_value = get_option($option_name, null);
190 190
 			}
191 191
 
192
-			if ( is_array( $option_value ) ) {
193
-				$option_value = array_map( 'stripslashes', $option_value );
194
-			} elseif ( ! is_null( $option_value ) ) {
195
-				$option_value = stripslashes( $option_value );
192
+			if (is_array($option_value)) {
193
+				$option_value = array_map('stripslashes', $option_value);
194
+			} elseif ( ! is_null($option_value)) {
195
+				$option_value = stripslashes($option_value);
196 196
 			}
197 197
 
198 198
 			return $option_value === null ? $default : $option_value;
@@ -209,84 +209,84 @@  discard block
 block discarded – undo
209 209
 		 * @version 1.5.0
210 210
 		 * @param   array $options Opens array to output
211 211
 		 */
212
-		public static function output_fields( $options ) {
213
-			foreach ( $options as $key => $value ) {
212
+		public static function output_fields($options) {
213
+			foreach ($options as $key => $value) {
214 214
 
215
-			if ( ! isset( $value['type'] ) ) {
215
+			if ( ! isset($value['type'])) {
216 216
 					continue;
217 217
 				}
218
-				if ( ! isset( $value['id'] ) ) {
218
+				if ( ! isset($value['id'])) {
219 219
 					$value['id'] = '';
220 220
 				}
221
-				if ( ! isset( $value['title'] ) ) {
222
-					$value['title'] = isset( $value['name'] ) ? $value['name'] : '';
221
+				if ( ! isset($value['title'])) {
222
+					$value['title'] = isset($value['name']) ? $value['name'] : '';
223 223
 				}
224
-				if ( ! isset( $value['class'] ) ) {
224
+				if ( ! isset($value['class'])) {
225 225
 					$value['class'] = '';
226 226
 				}
227
-				if ( ! isset( $value['css'] ) ) {
227
+				if ( ! isset($value['css'])) {
228 228
 					$value['css'] = '';
229 229
 				}
230
-				if ( ! isset( $value['default'] ) ) {
230
+				if ( ! isset($value['default'])) {
231 231
 					$value['default'] = '';
232 232
 				}
233
-				if ( ! isset( $value['desc'] ) ) {
233
+				if ( ! isset($value['desc'])) {
234 234
 					$value['desc'] = '';
235 235
 				}
236
-				if ( ! isset( $value['placeholder'] ) ) {
236
+				if ( ! isset($value['placeholder'])) {
237 237
 					$value['placeholder'] = '';
238 238
 				}
239 239
 
240 240
 				// Custom attribute handling
241 241
 				$custom_attributes = array();
242 242
 
243
-				if ( ! empty( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) {
244
-					foreach ( $value['custom_attributes'] as $attribute => $attribute_value ) {
245
-						$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
243
+				if ( ! empty($value['custom_attributes']) && is_array($value['custom_attributes'])) {
244
+					foreach ($value['custom_attributes'] as $attribute => $attribute_value) {
245
+						$custom_attributes[] = esc_attr($attribute).'="'.esc_attr($attribute_value).'"';
246 246
 					}
247 247
 				}
248 248
 
249 249
 				// Description handling
250
-				if ( ! empty( $value['desc'] ) ) {
250
+				if ( ! empty($value['desc'])) {
251 251
 					$description = $value['desc'];
252 252
 				}
253 253
 
254
-				if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ), true ) ) {
255
-					$description = '<p style="margin-top:0">' . wp_kses_post( $description ) . '</p>';
256
-				} elseif ( $description && in_array( $value['type'], array( 'checkbox' ), true ) ) {
257
-					$description = wp_kses_post( $description );
258
-				} elseif ( $description ) {
259
-					$description = '<p class="description">' . wp_kses_post( $description ) . '</p>';
254
+				if ($description && in_array($value['type'], array('textarea', 'radio'), true)) {
255
+					$description = '<p style="margin-top:0">'.wp_kses_post($description).'</p>';
256
+				} elseif ($description && in_array($value['type'], array('checkbox'), true)) {
257
+					$description = wp_kses_post($description);
258
+				} elseif ($description) {
259
+					$description = '<p class="description">'.wp_kses_post($description).'</p>';
260 260
 				}
261 261
 
262 262
 				// Switch based on type
263
-				switch( $value['type'] ) {
263
+				switch ($value['type']) {
264 264
 
265 265
 					// Section Titles
266 266
 					case 'title':
267
-						if ( ! empty( $value['title'] ) ) {
268
-							echo '<h2>' . esc_html( $value['title'] ) . '</h2>';
267
+						if ( ! empty($value['title'])) {
268
+							echo '<h2>'.esc_html($value['title']).'</h2>';
269 269
 						}
270
-						if ( ! empty( $value['desc'] ) ) {
271
-							echo '<div id="' . esc_attr( sanitize_title( $value['id'] ) ) . '-description">';
272
-							echo wp_kses_post( wpautop( wptexturize( $value['desc'] ) ) );
270
+						if ( ! empty($value['desc'])) {
271
+							echo '<div id="'.esc_attr(sanitize_title($value['id'])).'-description">';
272
+							echo wp_kses_post(wpautop(wptexturize($value['desc'])));
273 273
 							echo '</div>';
274 274
 						}
275 275
 						echo '<table class="form-table">'."\n\n";
276
-						if ( ! empty( $value['id'] ) ) {
277
-							do_action( 'auto_load_next_post_settings_' . sanitize_title( $value['id'] ) );
276
+						if ( ! empty($value['id'])) {
277
+							do_action('auto_load_next_post_settings_'.sanitize_title($value['id']));
278 278
 						}
279 279
 
280 280
 						break;
281 281
 
282 282
 					// Section Ends
283 283
 					case 'sectionend':
284
-						if ( ! empty( $value['id'] ) ) {
285
-							do_action( 'auto_load_next_post_settings_' . sanitize_title( $value['id'] ) . '_end' );
284
+						if ( ! empty($value['id'])) {
285
+							do_action('auto_load_next_post_settings_'.sanitize_title($value['id']).'_end');
286 286
 						}
287 287
 						echo '</table>';
288
-						if ( ! empty( $value['id'] ) ) {
289
-							do_action( 'auto_load_next_post_settings_' . sanitize_title( $value['id'] ) . '_after' );
288
+						if ( ! empty($value['id'])) {
289
+							do_action('auto_load_next_post_settings_'.sanitize_title($value['id']).'_after');
290 290
 						}
291 291
 						break;
292 292
 
@@ -299,22 +299,22 @@  discard block
 block discarded – undo
299 299
 					case 'time':
300 300
 					case 'week':
301 301
 					case 'email':
302
-						$option_value = self::get_option( $value['id'], $value['default'] );
302
+						$option_value = self::get_option($value['id'], $value['default']);
303 303
 
304 304
 						?><tr valign="top">
305 305
 							<th scope="row" class="titledesc">
306
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
306
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
307 307
 							</th>
308
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
308
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
309 309
 								<input
310
-									name="<?php echo esc_attr( $value['id'] ); ?>"
311
-									id="<?php echo esc_attr( $value['id'] ); ?>"
312
-									type="<?php echo esc_attr( $value['type'] ); ?>"
313
-									style="<?php echo esc_attr( $value['css'] ); ?>"
314
-									value="<?php echo esc_attr( $option_value ); ?>"
315
-									class="<?php echo esc_attr( $value['class'] ); ?>"
316
-									placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
317
-									<?php echo implode(' ', $custom_attributes ); ?>
310
+									name="<?php echo esc_attr($value['id']); ?>"
311
+									id="<?php echo esc_attr($value['id']); ?>"
312
+									type="<?php echo esc_attr($value['type']); ?>"
313
+									style="<?php echo esc_attr($value['css']); ?>"
314
+									value="<?php echo esc_attr($option_value); ?>"
315
+									class="<?php echo esc_attr($value['class']); ?>"
316
+									placeholder="<?php echo esc_attr($value['placeholder']); ?>"
317
+									<?php echo implode(' ', $custom_attributes); ?>
318 318
 								/><?php echo $description; ?>
319 319
 							</td>
320 320
 						</tr><?php
@@ -322,23 +322,23 @@  discard block
 block discarded – undo
322 322
 
323 323
 					// Textarea.
324 324
 					case 'textarea':
325
-						$option_value = self::get_option( $value['id'], $value['default'] );
325
+						$option_value = self::get_option($value['id'], $value['default']);
326 326
 						?>
327 327
 						<tr valign="top">
328 328
 							<th scope="row" class="titledesc">
329
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
329
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
330 330
 							</th>
331
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
331
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
332 332
 								<?php echo $description; ?>
333 333
 
334 334
 								<textarea
335
-									name="<?php echo esc_attr( $value['id'] ); ?>"
336
-									id="<?php echo esc_attr( $value['id'] ); ?>"
337
-									style="<?php echo esc_attr( $value['css'] ); ?>"
338
-									class="<?php echo esc_attr( $value['class'] ); ?>"
339
-									placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
340
-									<?php echo implode( ' ', $custom_attributes ); ?>
341
-									><?php echo esc_textarea( $option_value ); ?></textarea>
335
+									name="<?php echo esc_attr($value['id']); ?>"
336
+									id="<?php echo esc_attr($value['id']); ?>"
337
+									style="<?php echo esc_attr($value['css']); ?>"
338
+									class="<?php echo esc_attr($value['class']); ?>"
339
+									placeholder="<?php echo esc_attr($value['placeholder']); ?>"
340
+									<?php echo implode(' ', $custom_attributes); ?>
341
+									><?php echo esc_textarea($option_value); ?></textarea>
342 342
 							</td>
343 343
 						</tr>
344 344
 						<?php
@@ -347,35 +347,35 @@  discard block
 block discarded – undo
347 347
 					// Select boxes.
348 348
 					case 'select':
349 349
 					case 'multiselect':
350
-						$option_value = self::get_option( $value['id'], $value['default'] );
350
+						$option_value = self::get_option($value['id'], $value['default']);
351 351
 						?>
352 352
 						<tr valign="top">
353 353
 							<th scope="row" class="titledesc">
354
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
354
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
355 355
 							</th>
356
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
356
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
357 357
 								<select
358
-									name="<?php echo esc_attr( $value['id'] ); ?><?php echo ( 'multiselect' === $value['type'] ) ? '[]' : ''; ?>"
359
-									id="<?php echo esc_attr( $value['id'] ); ?>"
360
-									style="<?php echo esc_attr( $value['css'] ); ?>"
361
-									class="<?php echo esc_attr( $value['class'] ); ?>"
362
-									data-placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
363
-									<?php echo implode( ' ', $custom_attributes ); ?>
358
+									name="<?php echo esc_attr($value['id']); ?><?php echo ('multiselect' === $value['type']) ? '[]' : ''; ?>"
359
+									id="<?php echo esc_attr($value['id']); ?>"
360
+									style="<?php echo esc_attr($value['css']); ?>"
361
+									class="<?php echo esc_attr($value['class']); ?>"
362
+									data-placeholder="<?php echo esc_attr($value['placeholder']); ?>"
363
+									<?php echo implode(' ', $custom_attributes); ?>
364 364
 									<?php echo 'multiselect' === $value['type'] ? 'multiple="multiple"' : ''; ?>
365 365
 									>
366 366
 									<?php
367
-									foreach ( $value['options'] as $key => $val ) {
367
+									foreach ($value['options'] as $key => $val) {
368 368
 										?>
369
-										<option value="<?php echo esc_attr( $key ); ?>"
369
+										<option value="<?php echo esc_attr($key); ?>"
370 370
 											<?php
371
-											if ( is_array( $option_value ) ) {
372
-												selected( in_array( (string) $key, $option_value, true ), true );
371
+											if (is_array($option_value)) {
372
+												selected(in_array((string) $key, $option_value, true), true);
373 373
 											} else {
374
-												selected( $option_value, (string) $key );
374
+												selected($option_value, (string) $key);
375 375
 											}
376 376
 											?>
377 377
 											>
378
-											<?php echo esc_html( $val ); ?></option>
378
+											<?php echo esc_html($val); ?></option>
379 379
 											<?php
380 380
 									}
381 381
 									?>
@@ -387,29 +387,29 @@  discard block
 block discarded – undo
387 387
 
388 388
 					// Radio inputs.
389 389
 					case 'radio':
390
-						$option_value = self::get_option( $value['id'], $value['default'] );
390
+						$option_value = self::get_option($value['id'], $value['default']);
391 391
 						?>
392 392
 						<tr valign="top">
393 393
 							<th scope="row" class="titledesc">
394
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
394
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
395 395
 							</th>
396
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
396
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
397 397
 								<fieldset>
398 398
 									<?php echo $description; ?>
399 399
 									<ul>
400 400
 									<?php
401
-									foreach ( $value['options'] as $key => $val ) {
401
+									foreach ($value['options'] as $key => $val) {
402 402
 										?>
403 403
 										<li>
404 404
 											<label><input
405
-													name="<?php echo esc_attr( $value['id'] ); ?>"
406
-													value="<?php echo esc_attr( $key ); ?>"
405
+													name="<?php echo esc_attr($value['id']); ?>"
406
+													value="<?php echo esc_attr($key); ?>"
407 407
 													type="radio"
408
-													style="<?php echo esc_attr( $value['css'] ); ?>"
409
-													class="<?php echo esc_attr( $value['class'] ); ?>"
410
-													<?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
411
-													<?php checked( $key, $option_value ); ?>
412
-													/> <?php echo esc_html( $val ); ?></label>
408
+													style="<?php echo esc_attr($value['css']); ?>"
409
+													class="<?php echo esc_attr($value['class']); ?>"
410
+													<?php echo implode(' ', $custom_attributes); // WPCS: XSS ok. ?>
411
+													<?php checked($key, $option_value); ?>
412
+													/> <?php echo esc_html($val); ?></label>
413 413
 										</li>
414 414
 										<?php
415 415
 									}
@@ -423,58 +423,58 @@  discard block
 block discarded – undo
423 423
 
424 424
 					// Checkbox input.
425 425
 					case 'checkbox':
426
-						$option_value     = self::get_option( $value['id'], $value['default'] );
426
+						$option_value     = self::get_option($value['id'], $value['default']);
427 427
 						$visibility_class = array();
428 428
 
429
-						if ( ! isset( $value['hide_if_checked'] ) ) {
429
+						if ( ! isset($value['hide_if_checked'])) {
430 430
 							$value['hide_if_checked'] = false;
431 431
 						}
432
-						if ( ! isset( $value['show_if_checked'] ) ) {
432
+						if ( ! isset($value['show_if_checked'])) {
433 433
 							$value['show_if_checked'] = false;
434 434
 						}
435
-						if ( 'yes' === $value['hide_if_checked'] || 'yes' === $value['show_if_checked'] ) {
435
+						if ('yes' === $value['hide_if_checked'] || 'yes' === $value['show_if_checked']) {
436 436
 							$visibility_class[] = 'hidden_option';
437 437
 						}
438
-						if ( 'option' === $value['hide_if_checked'] ) {
438
+						if ('option' === $value['hide_if_checked']) {
439 439
 							$visibility_class[] = 'hide_options_if_checked';
440 440
 						}
441
-						if ( 'option' === $value['show_if_checked'] ) {
441
+						if ('option' === $value['show_if_checked']) {
442 442
 							$visibility_class[] = 'show_options_if_checked';
443 443
 						}
444 444
 
445
-						if ( ! isset( $value['checkboxgroup'] ) || 'start' === $value['checkboxgroup'] ) {
445
+						if ( ! isset($value['checkboxgroup']) || 'start' === $value['checkboxgroup']) {
446 446
 							?>
447
-								<tr valign="top" class="<?php echo esc_attr( implode( ' ', $visibility_class ) ); ?>">
448
-									<th scope="row" class="titledesc"><?php echo esc_html( $value['title'] ); ?></th>
447
+								<tr valign="top" class="<?php echo esc_attr(implode(' ', $visibility_class)); ?>">
448
+									<th scope="row" class="titledesc"><?php echo esc_html($value['title']); ?></th>
449 449
 									<td class="forminp forminp-checkbox">
450 450
 										<fieldset>
451 451
 							<?php
452 452
 						} else {
453 453
 							?>
454
-								<fieldset class="<?php echo esc_attr( implode( ' ', $visibility_class ) ); ?>">
454
+								<fieldset class="<?php echo esc_attr(implode(' ', $visibility_class)); ?>">
455 455
 							<?php
456 456
 						}
457 457
 
458
-						if ( ! empty( $value['title'] ) ) {
458
+						if ( ! empty($value['title'])) {
459 459
 							?>
460
-								<legend class="screen-reader-text"><span><?php echo esc_html( $value['title'] ); ?></span></legend>
460
+								<legend class="screen-reader-text"><span><?php echo esc_html($value['title']); ?></span></legend>
461 461
 							<?php
462 462
 						}
463 463
 						?>
464
-								<label for="<?php echo esc_attr( $value['id'] ); ?>">
464
+								<label for="<?php echo esc_attr($value['id']); ?>">
465 465
 									<input
466
-										name="<?php echo esc_attr( $value['id'] ); ?>"
467
-										id="<?php echo esc_attr( $value['id'] ); ?>"
466
+										name="<?php echo esc_attr($value['id']); ?>"
467
+										id="<?php echo esc_attr($value['id']); ?>"
468 468
 										type="checkbox"
469
-										class="<?php echo esc_attr( isset( $value['class'] ) ? $value['class'] : '' ); ?>"
469
+										class="<?php echo esc_attr(isset($value['class']) ? $value['class'] : ''); ?>"
470 470
 										value="1"
471
-										<?php checked( $option_value, 'yes' ); ?>
472
-										<?php echo implode( ' ', $custom_attributes ); ?>
471
+										<?php checked($option_value, 'yes'); ?>
472
+										<?php echo implode(' ', $custom_attributes); ?>
473 473
 									/> <?php echo $description; ?>
474 474
 								</label>
475 475
 								<?php
476 476
 
477
-								if ( ! isset( $value['checkboxgroup'] ) || 'end' === $value['checkboxgroup'] ) {
477
+								if ( ! isset($value['checkboxgroup']) || 'end' === $value['checkboxgroup']) {
478 478
 									?>
479 479
 										</fieldset>
480 480
 									</td>
@@ -489,7 +489,7 @@  discard block
 block discarded – undo
489 489
 
490 490
 					// Default: run an action
491 491
 					default:
492
-						do_action( 'auto_load_next_post_admin_field_' . $value['type'], $value );
492
+						do_action('auto_load_next_post_admin_field_'.$value['type'], $value);
493 493
 
494 494
 						break;
495 495
 				} // end switch()
@@ -508,8 +508,8 @@  discard block
 block discarded – undo
508 508
 		 * @param   array $options Opens array to output
509 509
 		 * @return  bool
510 510
 		 */
511
-		public static function save_fields( $options ) {
512
-			if ( empty( $_POST ) ) {
511
+		public static function save_fields($options) {
512
+			if (empty($_POST)) {
513 513
 				return false;
514 514
 			}
515 515
 
@@ -518,48 +518,48 @@  discard block
 block discarded – undo
518 518
 			$autoload_options = array();
519 519
 
520 520
 			// Loop options and get values to save
521
-			foreach ( $options as $option ) {
522
-				if ( ! isset( $option['id'] ) || ! isset( $option['type'] ) ) {
521
+			foreach ($options as $option) {
522
+				if ( ! isset($option['id']) || ! isset($option['type'])) {
523 523
 					continue;
524 524
 				}
525 525
 
526 526
 				// Get posted value.
527
-				if ( strstr( $option['id'], '[' ) ) {
528
-					parse_str( $option['id'], $option_name_array );
529
-					$option_name  = current( array_keys( $option_name_array ) );
530
-					$setting_name = key( $option_name_array[ $option_name ] );
531
-					$raw_value    = isset( $_POST[ $option_name ][ $setting_name ] ) ? wp_unslash( $_POST[ $option_name ][ $setting_name ] ) : null;
527
+				if (strstr($option['id'], '[')) {
528
+					parse_str($option['id'], $option_name_array);
529
+					$option_name  = current(array_keys($option_name_array));
530
+					$setting_name = key($option_name_array[$option_name]);
531
+					$raw_value    = isset($_POST[$option_name][$setting_name]) ? wp_unslash($_POST[$option_name][$setting_name]) : null;
532 532
 				} else {
533 533
 					$option_name  = $option['id'];
534 534
 					$setting_name = '';
535
-					$raw_value    = isset( $_POST[ $option['id'] ] ) ? wp_unslash( $_POST[ $option['id'] ] ) : null;
535
+					$raw_value    = isset($_POST[$option['id']]) ? wp_unslash($_POST[$option['id']]) : null;
536 536
 				}
537 537
 
538
-				switch ( $option['type'] ) {
538
+				switch ($option['type']) {
539 539
 					case "checkbox" :
540 540
 						$value = '1' === $raw_value || 'yes' === $raw_value ? 'yes' : 'no';
541 541
 						break;
542 542
 
543 543
 					case "textarea" :
544
-						$value = wp_kses_post( trim( stripslashes( $_POST[$option['id']] ) ) );
544
+						$value = wp_kses_post(trim(stripslashes($_POST[$option['id']])));
545 545
 						break;
546 546
 
547 547
 					case "multiselect" :
548
-						$value = array_filter( array_map( 'auto_load_next_post_clean', (array) $raw_value ) );
548
+						$value = array_filter(array_map('auto_load_next_post_clean', (array) $raw_value));
549 549
 						break;
550 550
 
551 551
 					case 'select' :
552
-						$allowed_values = empty( $option['options'] ) ? array() : array_map( 'strval', array_keys( $option['options'] ) );
553
-						if ( empty( $option['default'] ) && empty( $allowed_values ) ) {
552
+						$allowed_values = empty($option['options']) ? array() : array_map('strval', array_keys($option['options']));
553
+						if (empty($option['default']) && empty($allowed_values)) {
554 554
 							$value = null;
555 555
 							break;
556 556
 						}
557
-						$default = ( empty( $option['default'] ) ? $allowed_values[0] : $option['default'] );
558
-						$value   = in_array( $raw_value, $allowed_values, true ) ? $raw_value : $default;
557
+						$default = (empty($option['default']) ? $allowed_values[0] : $option['default']);
558
+						$value   = in_array($raw_value, $allowed_values, true) ? $raw_value : $default;
559 559
 						break;
560 560
 
561 561
 					default :
562
-						$value = auto_load_next_post_clean( $raw_value );
562
+						$value = auto_load_next_post_clean($raw_value);
563 563
 						break;
564 564
 				} // END switch()
565 565
 
@@ -568,59 +568,59 @@  discard block
 block discarded – undo
568 568
 				 *
569 569
 				 * @deprecated 1.5.0 - doesn't allow manipulation of values!
570 570
 				 */
571
-				if ( has_action( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ) ) ) {
572
-					if ( is_ajax() ) {
573
-						error_log( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ) . ' is deprecated since version 1.5.0' );
571
+				if (has_action('auto_load_next_post_update_option_'.sanitize_title($option['type']))) {
572
+					if (is_ajax()) {
573
+						error_log('auto_load_next_post_update_option_'.sanitize_title($option['type']).' is deprecated since version 1.5.0');
574 574
 					} else {
575
-						_deprecated_hook( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ), '1.5.0' );
575
+						_deprecated_hook('auto_load_next_post_update_option_'.sanitize_title($option['type']), '1.5.0');
576 576
 					}
577 577
 
578
-					do_action( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ), $option );
578
+					do_action('auto_load_next_post_update_option_'.sanitize_title($option['type']), $option);
579 579
 					continue;
580 580
 				}
581 581
 
582
-				if ( is_null( $value ) ) {
582
+				if (is_null($value)) {
583 583
 					continue;
584 584
 				}
585 585
 
586 586
 				// Check if option is an array and handle that differently to single values.
587
-				if ( $option_name && $setting_name ) {
588
-					if ( ! isset( $update_options[ $option_name ] ) ) {
589
-						$update_options[ $option_name ] = get_option( $option_name, array() );
587
+				if ($option_name && $setting_name) {
588
+					if ( ! isset($update_options[$option_name])) {
589
+						$update_options[$option_name] = get_option($option_name, array());
590 590
 					}
591
-					if ( ! is_array( $update_options[ $option_name ] ) ) {
592
-						$update_options[ $option_name ] = array();
591
+					if ( ! is_array($update_options[$option_name])) {
592
+						$update_options[$option_name] = array();
593 593
 					}
594
-					$update_options[ $option_name ][ $setting_name ] = $value;
594
+					$update_options[$option_name][$setting_name] = $value;
595 595
 				} else {
596
-					$update_options[ $option_name ] = $value;
596
+					$update_options[$option_name] = $value;
597 597
 				}
598 598
 
599
-				$autoload_options[ $option_name ] = isset( $option['autoload'] ) ? (bool) $option['autoload'] : true;
599
+				$autoload_options[$option_name] = isset($option['autoload']) ? (bool) $option['autoload'] : true;
600 600
 
601 601
 				/**
602 602
 				 * Fire an action before saved.
603 603
 				 *
604 604
 				 * @deprecated 1.5.0 - doesn't allow manipulation of values!
605 605
 				 */
606
-				if ( has_action( 'auto_load_next_post_update_option' ) ) {
607
-					if ( is_ajax() ) {
608
-						error_log( 'auto_load_next_post_update_option is deprecated since version 1.5.0' );
606
+				if (has_action('auto_load_next_post_update_option')) {
607
+					if (is_ajax()) {
608
+						error_log('auto_load_next_post_update_option is deprecated since version 1.5.0');
609 609
 					} else {
610
-						_deprecated_hook( 'auto_load_next_post_update_option', '1.5.0' );
610
+						_deprecated_hook('auto_load_next_post_update_option', '1.5.0');
611 611
 					}
612 612
 
613
-					do_action( 'auto_load_next_post_update_option', $option );
613
+					do_action('auto_load_next_post_update_option', $option);
614 614
 				}
615 615
 			}
616 616
 
617 617
 			// Now save the options
618
-			foreach ( $update_options as $name => $value ) {
619
-				update_option( $name, $value, $autoload_options[ $name ] ? 'yes' : 'no' );
618
+			foreach ($update_options as $name => $value) {
619
+				update_option($name, $value, $autoload_options[$name] ? 'yes' : 'no');
620 620
 			}
621 621
 
622 622
 			// Save all options as an array. Ready for export.
623
-			update_option( 'auto_load_next_post_options', $update_options );
623
+			update_option('auto_load_next_post_options', $update_options);
624 624
 
625 625
 			return true;
626 626
 		} // END save_fields()
Please login to merge, or discard this patch.