Completed
Pull Request — master (#131)
by
unknown
02:09 queued 18s
created
includes/auto-load-next-post-formatting-functions.php 1 patch
Spacing   +35 added lines, -35 removed lines patch added patch discarded remove patch
@@ -11,7 +11,7 @@  discard block
 block discarded – undo
11 11
  */
12 12
 
13 13
 // Exit if accessed directly.
14
-if ( ! defined( 'ABSPATH' ) ) {
14
+if ( ! defined('ABSPATH')) {
15 15
 	exit;
16 16
 }
17 17
 
@@ -26,10 +26,10 @@  discard block
 block discarded – undo
26 26
  * @return string|array *
27 27
  */
28 28
 function auto_load_next_post_clean($var) {
29
-	if ( is_array( $var ) ) {
30
-		return array_map( 'auto_load_next_post_clean', $var );
29
+	if (is_array($var)) {
30
+		return array_map('auto_load_next_post_clean', $var);
31 31
 	} else {
32
-		return is_scalar( $var ) ? sanitize_text_field( $var ) : $var;
32
+		return is_scalar($var) ? sanitize_text_field($var) : $var;
33 33
 	}
34 34
 } // END auto_load_next_post_clean()
35 35
 
@@ -40,58 +40,58 @@  discard block
 block discarded – undo
40 40
  *
41 41
  * @param string $seconds Seconds in time.
42 42
  */
43
-function auto_load_next_post_seconds_to_words( $seconds ) {
43
+function auto_load_next_post_seconds_to_words($seconds) {
44 44
 	// Get the years.
45
-	$years = ( intval( $seconds ) / YEAR_IN_SECONDS ) % 100;
46
-	if ( $years > 1 ) {
45
+	$years = (intval($seconds) / YEAR_IN_SECONDS) % 100;
46
+	if ($years > 1) {
47 47
 		/* translators: Number of years */
48
-		return sprintf( __( '%s years', 'auto-load-next-post' ), $years );
49
-	} elseif ( $years > 0 ) {
50
-		return __( 'a year', 'auto-load-next-post' );
48
+		return sprintf(__('%s years', 'auto-load-next-post'), $years);
49
+	} elseif ($years > 0) {
50
+		return __('a year', 'auto-load-next-post');
51 51
 	}
52 52
 
53 53
 	// Get the weeks.
54
-	$weeks = ( intval( $seconds ) / WEEK_IN_SECONDS ) % 52;
55
-	if ( $weeks > 1 ) {
54
+	$weeks = (intval($seconds) / WEEK_IN_SECONDS) % 52;
55
+	if ($weeks > 1) {
56 56
 		/* translators: Number of weeks */
57
-		return sprintf( __( '%s weeks', 'auto-load-next-post' ), $weeks );
58
-	} elseif ( $weeks > 0 ) {
59
-		return __( 'a week', 'auto-load-next-post' );
57
+		return sprintf(__('%s weeks', 'auto-load-next-post'), $weeks);
58
+	} elseif ($weeks > 0) {
59
+		return __('a week', 'auto-load-next-post');
60 60
 	}
61 61
 
62 62
 	// Get the days.
63
-	$days = ( intval( $seconds ) / DAY_IN_SECONDS ) % 7;
64
-	if ( $days > 1 ) {
63
+	$days = (intval($seconds) / DAY_IN_SECONDS) % 7;
64
+	if ($days > 1) {
65 65
 		/* translators: Number of days */
66
-		return sprintf( __( '%s days', 'auto-load-next-post' ), $days );
67
-	} elseif ( $days > 0 ) {
68
-		return __( 'a day', 'auto-load-next-post' );
66
+		return sprintf(__('%s days', 'auto-load-next-post'), $days);
67
+	} elseif ($days > 0) {
68
+		return __('a day', 'auto-load-next-post');
69 69
 	}
70 70
 
71 71
 	// Get the hours.
72
-	$hours = ( intval( $seconds ) / HOUR_IN_SECONDS ) % 24;
73
-	if ( $hours > 1 ) {
72
+	$hours = (intval($seconds) / HOUR_IN_SECONDS) % 24;
73
+	if ($hours > 1) {
74 74
 		/* translators: Number of hours */
75
-		return sprintf( __( '%s hours', 'auto-load-next-post' ), $hours );
76
-	} elseif ( $hours > 0 ) {
77
-		return __( 'an hour', 'auto-load-next-post' );
75
+		return sprintf(__('%s hours', 'auto-load-next-post'), $hours);
76
+	} elseif ($hours > 0) {
77
+		return __('an hour', 'auto-load-next-post');
78 78
 	}
79 79
 
80 80
 	// Get the minutes.
81
-	$minutes = ( intval( $seconds ) / MINUTE_IN_SECONDS ) % 60;
82
-	if ( $minutes > 1 ) {
81
+	$minutes = (intval($seconds) / MINUTE_IN_SECONDS) % 60;
82
+	if ($minutes > 1) {
83 83
 		/* translators: Number of minutes */
84
-		return sprintf( __( '%s minutes', 'auto-load-next-post' ), $minutes );
85
-	} elseif ( $minutes > 0 ) {
86
-		return __( 'a minute', 'auto-load-next-post' );
84
+		return sprintf(__('%s minutes', 'auto-load-next-post'), $minutes);
85
+	} elseif ($minutes > 0) {
86
+		return __('a minute', 'auto-load-next-post');
87 87
 	}
88 88
 
89 89
 	// Get the seconds.
90
-	$seconds = intval( $seconds ) % 60;
91
-	if ( $seconds > 1 ) {
90
+	$seconds = intval($seconds) % 60;
91
+	if ($seconds > 1) {
92 92
 		/* translators: Number of seconds */
93
-		return sprintf( __( '%s seconds', 'auto-load-next-post' ), $seconds );
94
-	} elseif ( $seconds > 0 ) {
95
-		return __( 'a second', 'auto-load-next-post' );
93
+		return sprintf(__('%s seconds', 'auto-load-next-post'), $seconds);
94
+	} elseif ($seconds > 0) {
95
+		return __('a second', 'auto-load-next-post');
96 96
 	}
97 97
 }
Please login to merge, or discard this patch.
includes/customizer/class-alnp-pro-preview-controller.php 1 patch
Spacing   +20 added lines, -20 removed lines patch added patch discarded remove patch
@@ -12,16 +12,16 @@  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
 
19 19
 // Exit if WP_Customize_Control does not exsist.
20
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
20
+if ( ! class_exists('WP_Customize_Control')) {
21 21
 	return null;
22 22
 }
23 23
 
24
-if ( !class_exists( 'Auto_Load_Next_Post_Pro_Preview_Controller' ) ) {
24
+if ( ! class_exists('Auto_Load_Next_Post_Pro_Preview_Controller')) {
25 25
 
26 26
 	/**
27 27
 	 * The 'alnp_pro_preview' for Auto Load Next Post Pro control class.
@@ -45,38 +45,38 @@  discard block
 block discarded – undo
45 45
 			<span class="customize-control-title"><?php echo $this->label; ?></span>
46 46
 
47 47
 			<p>
48
-				<?php printf( esc_html__( '%1$s is coming soon and will come with more powerful features. Here are just a few of them you can look forward to.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post Pro', 'auto-load-next-post' ) ); ?>
48
+				<?php printf(esc_html__('%1$s is coming soon and will come with more powerful features. Here are just a few of them you can look forward to.', 'auto-load-next-post'), esc_html__('Auto Load Next Post Pro', 'auto-load-next-post')); ?>
49 49
 			</p>
50 50
 
51 51
 			<ul style="list-style: disc; margin-left: 1em;">
52
-				<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>
53
-				<li><?php echo wptexturize( esc_html__( 'Page and Media Attachment Support', 'auto-load-next-post' ) ); ?></li>
54
-				<li><?php echo wptexturize( esc_html__( 'Custom Post Type Support', 'auto-load-next-post' ) ); ?></li>
55
-				<li><?php echo wptexturize( esc_html__( 'Exclude Post Formats', 'auto-load-next-post' ) ); ?></li>
56
-				<li><?php echo wptexturize( esc_html__( 'Limit Posts per Session', 'auto-load-next-post' ) ); ?></li>
57
-				<li><?php echo wptexturize( esc_html__( 'Query Posts by Category and Tag', 'auto-load-next-post' ) ); ?></li>
58
-				<li><?php echo wptexturize( esc_html__( 'Exclude User Roles and Specific Users', 'auto-load-next-post' ) ); ?></li>
59
-				<li><?php echo wptexturize( esc_html__( 'Pre-Query Posts Ready to Load', 'auto-load-next-post' ) ); ?></li>
60
-				<li><?php echo wptexturize( esc_html__( 'Hide Comments and Show by Toggle Button', 'auto-load-next-post' ) ); ?></li>
61
-				<li><?php echo wptexturize( sprintf( esc_html__( 'Multilingual Support for %1$s and %2$s', 'auto-load-next-post' ), 'WPML', 'Polylang' ) ); ?></li>
62
-				<li><?php echo wptexturize( esc_html__( 'Email Support', 'auto-load-next-post' ) ); ?></li>
52
+				<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>
53
+				<li><?php echo wptexturize(esc_html__('Page and Media Attachment Support', 'auto-load-next-post')); ?></li>
54
+				<li><?php echo wptexturize(esc_html__('Custom Post Type Support', 'auto-load-next-post')); ?></li>
55
+				<li><?php echo wptexturize(esc_html__('Exclude Post Formats', 'auto-load-next-post')); ?></li>
56
+				<li><?php echo wptexturize(esc_html__('Limit Posts per Session', 'auto-load-next-post')); ?></li>
57
+				<li><?php echo wptexturize(esc_html__('Query Posts by Category and Tag', 'auto-load-next-post')); ?></li>
58
+				<li><?php echo wptexturize(esc_html__('Exclude User Roles and Specific Users', 'auto-load-next-post')); ?></li>
59
+				<li><?php echo wptexturize(esc_html__('Pre-Query Posts Ready to Load', 'auto-load-next-post')); ?></li>
60
+				<li><?php echo wptexturize(esc_html__('Hide Comments and Show by Toggle Button', 'auto-load-next-post')); ?></li>
61
+				<li><?php echo wptexturize(sprintf(esc_html__('Multilingual Support for %1$s and %2$s', 'auto-load-next-post'), 'WPML', 'Polylang')); ?></li>
62
+				<li><?php echo wptexturize(esc_html__('Email Support', 'auto-load-next-post')); ?></li>
63 63
 			</ul>
64 64
 
65 65
 			<p>
66
-				<?php printf( esc_html__( 'Find out more about %1$s%2$s%3$s.', 'auto-load-next-post'), '<a target="_blank" href="' . esc_url( 'https://autoloadnextpost.com/pro/?utm_source=wpcustomizer&utm_campaign=plugin-settings-pro-preview' ) . '">', esc_html__( 'Auto Load Next Post Pro', 'auto-load-next-post' ), '</a>' ); ?>
66
+				<?php printf(esc_html__('Find out more about %1$s%2$s%3$s.', 'auto-load-next-post'), '<a target="_blank" href="'.esc_url('https://autoloadnextpost.com/pro/?utm_source=wpcustomizer&utm_campaign=plugin-settings-pro-preview').'">', esc_html__('Auto Load Next Post Pro', 'auto-load-next-post'), '</a>'); ?>
67 67
 			</p>
68 68
 
69
-			<span class="customize-control-title"><?php printf( esc_html__( 'Add-ons for %s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ); ?></span>
69
+			<span class="customize-control-title"><?php printf(esc_html__('Add-ons for %s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')); ?></span>
70 70
 
71 71
 			<p>
72
-				<?php printf( esc_html__( 'Add-ons available provide additional support or options for %1$s. %2$sCheck out the add-ons%3$s to see what is available.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<a target="_blank" href="' . esc_url( 'https://autoloadnextpost.com/add-ons/?utm_source=wpcustomizer&utm_campaign=plugin-settings-pro-preview' ) . '">', '</a>' ); ?>
72
+				<?php printf(esc_html__('Add-ons available provide additional support or options for %1$s. %2$sCheck out the add-ons%3$s to see what is available.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<a target="_blank" href="'.esc_url('https://autoloadnextpost.com/add-ons/?utm_source=wpcustomizer&utm_campaign=plugin-settings-pro-preview').'">', '</a>'); ?>
73 73
 			</p>
74 74
 
75
-			<span class="customize-control-title"><?php printf( esc_html__( 'Enjoying %s?', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ); ?></span>
75
+			<span class="customize-control-title"><?php printf(esc_html__('Enjoying %s?', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')); ?></span>
76 76
 
77 77
 			<div class="notice inline notice-info">
78 78
 				<p>
79
-					<?php printf( esc_html__( 'Why not leave me a review on %1$sWordPress.org%2$s?  I\'d really appreciate it!', 'auto-load-next-post' ), '<a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/auto-load-next-post?filter=5#postform">', '</a>' ); ?>
79
+					<?php printf(esc_html__('Why not leave me a review on %1$sWordPress.org%2$s?  I\'d really appreciate it!', 'auto-load-next-post'), '<a target="_blank" href="https://wordpress.org/support/view/plugin-reviews/auto-load-next-post?filter=5#postform">', '</a>'); ?>
80 80
 				</p>
81 81
 			</div>
82 82
 			<?php
Please login to merge, or discard this patch.
includes/customizer/class-alnp-display-video-controller.php 1 patch
Spacing   +3 added lines, -3 removed lines patch added patch discarded remove patch
@@ -12,16 +12,16 @@
 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
 
19 19
 // Exit if WP_Customize_Control does not exsist.
20
-if ( ! class_exists( 'WP_Customize_Control' ) ) {
20
+if ( ! class_exists('WP_Customize_Control')) {
21 21
 	return null;
22 22
 }
23 23
 
24
-if ( !class_exists( 'Auto_Load_Next_Post_Display_Video_Controller' ) ) {
24
+if ( ! class_exists('Auto_Load_Next_Post_Display_Video_Controller')) {
25 25
 
26 26
 	/**
27 27
 	 * This class is for the display video control in the Customizer.
Please login to merge, or discard this patch.
includes/customizer/class-alnp-customizer-scripts.php 1 patch
Spacing   +6 added lines, -6 removed lines patch added patch discarded remove patch
@@ -10,12 +10,12 @@  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 17
 // Exit if Auto_Load_Next_Post_Customizer_Scripts class already exists.
18
-if ( !class_exists( 'Auto_Load_Next_Post_Customizer_Scripts' ) ) {
18
+if ( ! class_exists('Auto_Load_Next_Post_Customizer_Scripts')) {
19 19
 
20 20
 	class Auto_Load_Next_Post_Customizer_Scripts {
21 21
 
@@ -26,8 +26,8 @@  discard block
 block discarded – undo
26 26
 		 * @access public
27 27
 		 */
28 28
 		public function __construct() {
29
-			add_action( 'customize_preview_init', array( $this, 'alnp_add_customizer_preview_scripts' ) );
30
-			add_action( 'customize_controls_print_scripts', array( $this, 'alnp_add_scripts' ), 30 );
29
+			add_action('customize_preview_init', array($this, 'alnp_add_customizer_preview_scripts'));
30
+			add_action('customize_controls_print_scripts', array($this, 'alnp_add_scripts'), 30);
31 31
 		}
32 32
 
33 33
 		/**
@@ -36,7 +36,7 @@  discard block
 block discarded – undo
36 36
 		 * @since 1.5.0
37 37
 		 */
38 38
 		public function alnp_add_customizer_preview_scripts() {
39
-			Auto_Load_Next_Post::load_file( 'alnp-theme-customizer', '/assets/js/customizer/theme-customizer.js', true, array( 'customize-preview' ), '', true );
39
+			Auto_Load_Next_Post::load_file('alnp-theme-customizer', '/assets/js/customizer/theme-customizer.js', true, array('customize-preview'), '', true);
40 40
 		} // END alnp_add_customizer_preview_scripts()
41 41
 
42 42
 		/**
@@ -67,7 +67,7 @@  discard block
 block discarded – undo
67 67
 						 * but we are not viewing a single post.
68 68
 						 */
69 69
 						if ( isExpanded && !is_page_single ) {
70
-							wp.customize.previewer.previewUrl.set( '<?php echo esc_js( Auto_Load_Next_Post_Customizer::alnp_get_random_page_permalink() ); ?>' );
70
+							wp.customize.previewer.previewUrl.set( '<?php echo esc_js(Auto_Load_Next_Post_Customizer::alnp_get_random_page_permalink()); ?>' );
71 71
 						}
72 72
 
73 73
 					} );
Please login to merge, or discard this patch.
includes/admin/class-alnp-admin-settings.php 1 patch
Spacing   +177 added lines, -177 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()
@@ -156,12 +156,12 @@  discard block
 block discarded – undo
156 156
 		public static function output() {
157 157
 			global $current_section, $current_tab;
158 158
 
159
-			do_action( 'auto_load_next_post_settings_start' );
159
+			do_action('auto_load_next_post_settings_start');
160 160
 
161 161
 			// Get tabs for the settings page
162
-			$tabs = apply_filters( 'auto_load_next_post_settings_tabs_array', array() );
162
+			$tabs = apply_filters('auto_load_next_post_settings_tabs_array', array());
163 163
 
164
-			include( dirname( __FILE__ ) . '/views/html-admin-settings.php' );
164
+			include(dirname(__FILE__).'/views/html-admin-settings.php');
165 165
 		} // END output()
166 166
 
167 167
 		/**
@@ -173,33 +173,33 @@  discard block
 block discarded – undo
173 173
 		 * @param  mixed $option_name
174 174
 		 * @return string
175 175
 		 */
176
-		public static function get_option( $option_name, $default = '' ) {
176
+		public static function get_option($option_name, $default = '') {
177 177
 			// Array value
178
-			if ( strstr( $option_name, '[' ) ) {
179
-				parse_str( $option_name, $option_array );
178
+			if (strstr($option_name, '[')) {
179
+				parse_str($option_name, $option_array);
180 180
 
181 181
 				// Option name is first key
182
-				$option_name = current( array_keys( $option_array ) );
182
+				$option_name = current(array_keys($option_array));
183 183
 
184 184
 				// Get value
185
-				$option_values = get_option( $option_name, '' );
185
+				$option_values = get_option($option_name, '');
186 186
 
187
-				$key = key( $option_array[$option_name] );
187
+				$key = key($option_array[$option_name]);
188 188
 
189
-				if ( isset( $option_values[$key] ) ) {
189
+				if (isset($option_values[$key])) {
190 190
 					$option_value = $option_values[$key];
191 191
 				} else {
192 192
 					$option_value = null;
193 193
 				}
194 194
 			} else {
195 195
 				// Single value
196
-				$option_value = get_option( $option_name, null );
196
+				$option_value = get_option($option_name, null);
197 197
 			}
198 198
 
199
-			if ( is_array( $option_value ) ) {
200
-				$option_value = array_map( 'stripslashes', $option_value );
201
-			} elseif ( ! is_null( $option_value ) ) {
202
-				$option_value = stripslashes( $option_value );
199
+			if (is_array($option_value)) {
200
+				$option_value = array_map('stripslashes', $option_value);
201
+			} elseif ( ! is_null($option_value)) {
202
+				$option_value = stripslashes($option_value);
203 203
 			}
204 204
 
205 205
 			return $option_value === null ? $default : $option_value;
@@ -216,83 +216,83 @@  discard block
 block discarded – undo
216 216
 		 * @version 1.5.0
217 217
 		 * @param   array $options Opens array to output
218 218
 		 */
219
-		public static function output_fields( $options ) {
220
-			foreach ( $options as $value ) {
221
-				if ( ! isset( $value['type'] ) ) {
219
+		public static function output_fields($options) {
220
+			foreach ($options as $value) {
221
+				if ( ! isset($value['type'])) {
222 222
 					continue;
223 223
 				}
224
-				if ( ! isset( $value['id'] ) ) {
224
+				if ( ! isset($value['id'])) {
225 225
 					$value['id'] = '';
226 226
 				}
227
-				if ( ! isset( $value['title'] ) ) {
228
-					$value['title'] = isset( $value['name'] ) ? $value['name'] : '';
227
+				if ( ! isset($value['title'])) {
228
+					$value['title'] = isset($value['name']) ? $value['name'] : '';
229 229
 				}
230
-				if ( ! isset( $value['class'] ) ) {
230
+				if ( ! isset($value['class'])) {
231 231
 					$value['class'] = '';
232 232
 				}
233
-				if ( ! isset( $value['css'] ) ) {
233
+				if ( ! isset($value['css'])) {
234 234
 					$value['css'] = '';
235 235
 				}
236
-				if ( ! isset( $value['default'] ) ) {
236
+				if ( ! isset($value['default'])) {
237 237
 					$value['default'] = '';
238 238
 				}
239
-				if ( ! isset( $value['desc'] ) ) {
239
+				if ( ! isset($value['desc'])) {
240 240
 					$value['desc'] = '';
241 241
 				}
242
-				if ( ! isset( $value['placeholder'] ) ) {
242
+				if ( ! isset($value['placeholder'])) {
243 243
 					$value['placeholder'] = '';
244 244
 				}
245 245
 
246 246
 				// Custom attribute handling
247 247
 				$custom_attributes = array();
248 248
 
249
-				if ( ! empty( $value['custom_attributes'] ) && is_array( $value['custom_attributes'] ) ) {
250
-					foreach ( $value['custom_attributes'] as $attribute => $attribute_value ) {
251
-						$custom_attributes[] = esc_attr( $attribute ) . '="' . esc_attr( $attribute_value ) . '"';
249
+				if ( ! empty($value['custom_attributes']) && is_array($value['custom_attributes'])) {
250
+					foreach ($value['custom_attributes'] as $attribute => $attribute_value) {
251
+						$custom_attributes[] = esc_attr($attribute).'="'.esc_attr($attribute_value).'"';
252 252
 					}
253 253
 				}
254 254
 
255 255
 				// Description handling
256
-				if ( ! empty( $value['desc'] ) ) {
256
+				if ( ! empty($value['desc'])) {
257 257
 					$description = $value['desc'];
258 258
 				}
259 259
 
260
-				if ( $description && in_array( $value['type'], array( 'textarea', 'radio' ), true ) ) {
261
-					$description = '<p style="margin-top:0">' . wp_kses_post( $description ) . '</p>';
262
-				} elseif ( $description && in_array( $value['type'], array( 'checkbox' ), true ) ) {
263
-					$description = wp_kses_post( $description );
264
-				} elseif ( $description ) {
265
-					$description = '<p class="description">' . wp_kses_post( $description ) . '</p>';
260
+				if ($description && in_array($value['type'], array('textarea', 'radio'), true)) {
261
+					$description = '<p style="margin-top:0">'.wp_kses_post($description).'</p>';
262
+				} elseif ($description && in_array($value['type'], array('checkbox'), true)) {
263
+					$description = wp_kses_post($description);
264
+				} elseif ($description) {
265
+					$description = '<p class="description">'.wp_kses_post($description).'</p>';
266 266
 				}
267 267
 
268 268
 				// Switch based on type
269
-				switch( $value['type'] ) {
269
+				switch ($value['type']) {
270 270
 
271 271
 					// Section Titles
272 272
 					case 'title':
273
-						if ( ! empty( $value['title'] ) ) {
274
-							echo '<h2>' . esc_html( $value['title'] ) . '</h2>';
273
+						if ( ! empty($value['title'])) {
274
+							echo '<h2>'.esc_html($value['title']).'</h2>';
275 275
 						}
276
-						if ( ! empty( $value['desc'] ) ) {
277
-							echo '<div id="' . esc_attr( sanitize_title( $value['id'] ) ) . '-description">';
278
-							echo wp_kses_post( wpautop( wptexturize( $value['desc'] ) ) );
276
+						if ( ! empty($value['desc'])) {
277
+							echo '<div id="'.esc_attr(sanitize_title($value['id'])).'-description">';
278
+							echo wp_kses_post(wpautop(wptexturize($value['desc'])));
279 279
 							echo '</div>';
280 280
 						}
281 281
 						echo '<table class="form-table">'."\n\n";
282
-						if ( ! empty( $value['id'] ) ) {
283
-							do_action( 'auto_load_next_post_settings_' . sanitize_title( $value['id'] ) );
282
+						if ( ! empty($value['id'])) {
283
+							do_action('auto_load_next_post_settings_'.sanitize_title($value['id']));
284 284
 						}
285 285
 
286 286
 						break;
287 287
 
288 288
 					// Section Ends
289 289
 					case 'sectionend':
290
-						if ( ! empty( $value['id'] ) ) {
291
-							do_action( 'auto_load_next_post_settings_' . sanitize_title( $value['id'] ) . '_end' );
290
+						if ( ! empty($value['id'])) {
291
+							do_action('auto_load_next_post_settings_'.sanitize_title($value['id']).'_end');
292 292
 						}
293 293
 						echo '</table>';
294
-						if ( ! empty( $value['id'] ) ) {
295
-							do_action( 'auto_load_next_post_settings_' . sanitize_title( $value['id'] ) . '_after' );
294
+						if ( ! empty($value['id'])) {
295
+							do_action('auto_load_next_post_settings_'.sanitize_title($value['id']).'_after');
296 296
 						}
297 297
 						break;
298 298
 
@@ -305,22 +305,22 @@  discard block
 block discarded – undo
305 305
 					case 'time':
306 306
 					case 'week':
307 307
 					case 'email':
308
-						$option_value = self::get_option( $value['id'], $value['default'] );
308
+						$option_value = self::get_option($value['id'], $value['default']);
309 309
 
310 310
 						?><tr valign="top">
311 311
 							<th scope="row" class="titledesc">
312
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
312
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
313 313
 							</th>
314
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
314
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
315 315
 								<input
316
-									name="<?php echo esc_attr( $value['id'] ); ?>"
317
-									id="<?php echo esc_attr( $value['id'] ); ?>"
318
-									type="<?php echo esc_attr( $value['type'] ); ?>"
319
-									style="<?php echo esc_attr( $value['css'] ); ?>"
320
-									value="<?php echo esc_attr( $option_value ); ?>"
321
-									class="<?php echo esc_attr( $value['class'] ); ?>"
322
-									placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
323
-									<?php echo implode(' ', $custom_attributes ); ?>
316
+									name="<?php echo esc_attr($value['id']); ?>"
317
+									id="<?php echo esc_attr($value['id']); ?>"
318
+									type="<?php echo esc_attr($value['type']); ?>"
319
+									style="<?php echo esc_attr($value['css']); ?>"
320
+									value="<?php echo esc_attr($option_value); ?>"
321
+									class="<?php echo esc_attr($value['class']); ?>"
322
+									placeholder="<?php echo esc_attr($value['placeholder']); ?>"
323
+									<?php echo implode(' ', $custom_attributes); ?>
324 324
 								/><?php echo $description; ?>
325 325
 							</td>
326 326
 						</tr><?php
@@ -328,23 +328,23 @@  discard block
 block discarded – undo
328 328
 
329 329
 					// Textarea.
330 330
 					case 'textarea':
331
-						$option_value = self::get_option( $value['id'], $value['default'] );
331
+						$option_value = self::get_option($value['id'], $value['default']);
332 332
 						?>
333 333
 						<tr valign="top">
334 334
 							<th scope="row" class="titledesc">
335
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
335
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
336 336
 							</th>
337
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
337
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
338 338
 								<?php echo $description; ?>
339 339
 
340 340
 								<textarea
341
-									name="<?php echo esc_attr( $value['id'] ); ?>"
342
-									id="<?php echo esc_attr( $value['id'] ); ?>"
343
-									style="<?php echo esc_attr( $value['css'] ); ?>"
344
-									class="<?php echo esc_attr( $value['class'] ); ?>"
345
-									placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
346
-									<?php echo implode( ' ', $custom_attributes ); ?>
347
-									><?php echo esc_textarea( $option_value ); ?></textarea>
341
+									name="<?php echo esc_attr($value['id']); ?>"
342
+									id="<?php echo esc_attr($value['id']); ?>"
343
+									style="<?php echo esc_attr($value['css']); ?>"
344
+									class="<?php echo esc_attr($value['class']); ?>"
345
+									placeholder="<?php echo esc_attr($value['placeholder']); ?>"
346
+									<?php echo implode(' ', $custom_attributes); ?>
347
+									><?php echo esc_textarea($option_value); ?></textarea>
348 348
 							</td>
349 349
 						</tr>
350 350
 						<?php
@@ -353,35 +353,35 @@  discard block
 block discarded – undo
353 353
 					// Select boxes.
354 354
 					case 'select':
355 355
 					case 'multiselect':
356
-						$option_value = self::get_option( $value['id'], $value['default'] );
356
+						$option_value = self::get_option($value['id'], $value['default']);
357 357
 						?>
358 358
 						<tr valign="top">
359 359
 							<th scope="row" class="titledesc">
360
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
360
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
361 361
 							</th>
362
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
362
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
363 363
 								<select
364
-									name="<?php echo esc_attr( $value['id'] ); ?><?php echo ( 'multiselect' === $value['type'] ) ? '[]' : ''; ?>"
365
-									id="<?php echo esc_attr( $value['id'] ); ?>"
366
-									style="<?php echo esc_attr( $value['css'] ); ?>"
367
-									class="<?php echo esc_attr( $value['class'] ); ?>"
368
-									data-placeholder="<?php echo esc_attr( $value['placeholder'] ); ?>"
369
-									<?php echo implode( ' ', $custom_attributes ); ?>
364
+									name="<?php echo esc_attr($value['id']); ?><?php echo ('multiselect' === $value['type']) ? '[]' : ''; ?>"
365
+									id="<?php echo esc_attr($value['id']); ?>"
366
+									style="<?php echo esc_attr($value['css']); ?>"
367
+									class="<?php echo esc_attr($value['class']); ?>"
368
+									data-placeholder="<?php echo esc_attr($value['placeholder']); ?>"
369
+									<?php echo implode(' ', $custom_attributes); ?>
370 370
 									<?php echo 'multiselect' === $value['type'] ? 'multiple="multiple"' : ''; ?>
371 371
 									>
372 372
 									<?php
373
-									foreach ( $value['options'] as $key => $val ) {
373
+									foreach ($value['options'] as $key => $val) {
374 374
 										?>
375
-										<option value="<?php echo esc_attr( $key ); ?>"
375
+										<option value="<?php echo esc_attr($key); ?>"
376 376
 											<?php
377
-											if ( is_array( $option_value ) ) {
378
-												selected( in_array( (string) $key, $option_value, true ), true );
377
+											if (is_array($option_value)) {
378
+												selected(in_array((string) $key, $option_value, true), true);
379 379
 											} else {
380
-												selected( $option_value, (string) $key );
380
+												selected($option_value, (string) $key);
381 381
 											}
382 382
 											?>
383 383
 											>
384
-											<?php echo esc_html( $val ); ?></option>
384
+											<?php echo esc_html($val); ?></option>
385 385
 											<?php
386 386
 									}
387 387
 									?>
@@ -393,29 +393,29 @@  discard block
 block discarded – undo
393 393
 
394 394
 					// Radio inputs.
395 395
 					case 'radio':
396
-						$option_value = self::get_option( $value['id'], $value['default'] );
396
+						$option_value = self::get_option($value['id'], $value['default']);
397 397
 						?>
398 398
 						<tr valign="top">
399 399
 							<th scope="row" class="titledesc">
400
-								<label for="<?php echo esc_attr( $value['id'] ); ?>"><?php echo esc_html( $value['title'] ); ?></label>
400
+								<label for="<?php echo esc_attr($value['id']); ?>"><?php echo esc_html($value['title']); ?></label>
401 401
 							</th>
402
-							<td class="forminp forminp-<?php echo esc_attr( sanitize_title( $value['type'] ) ); ?>">
402
+							<td class="forminp forminp-<?php echo esc_attr(sanitize_title($value['type'])); ?>">
403 403
 								<fieldset>
404 404
 									<?php echo $description; ?>
405 405
 									<ul>
406 406
 									<?php
407
-									foreach ( $value['options'] as $key => $val ) {
407
+									foreach ($value['options'] as $key => $val) {
408 408
 										?>
409 409
 										<li>
410 410
 											<label><input
411
-													name="<?php echo esc_attr( $value['id'] ); ?>"
412
-													value="<?php echo esc_attr( $key ); ?>"
411
+													name="<?php echo esc_attr($value['id']); ?>"
412
+													value="<?php echo esc_attr($key); ?>"
413 413
 													type="radio"
414
-													style="<?php echo esc_attr( $value['css'] ); ?>"
415
-													class="<?php echo esc_attr( $value['class'] ); ?>"
416
-													<?php echo implode( ' ', $custom_attributes ); // WPCS: XSS ok. ?>
417
-													<?php checked( $key, $option_value ); ?>
418
-													/> <?php echo esc_html( $val ); ?></label>
414
+													style="<?php echo esc_attr($value['css']); ?>"
415
+													class="<?php echo esc_attr($value['class']); ?>"
416
+													<?php echo implode(' ', $custom_attributes); // WPCS: XSS ok. ?>
417
+													<?php checked($key, $option_value); ?>
418
+													/> <?php echo esc_html($val); ?></label>
419 419
 										</li>
420 420
 										<?php
421 421
 									}
@@ -429,58 +429,58 @@  discard block
 block discarded – undo
429 429
 
430 430
 					// Checkbox input.
431 431
 					case 'checkbox':
432
-						$option_value     = self::get_option( $value['id'], $value['default'] );
432
+						$option_value     = self::get_option($value['id'], $value['default']);
433 433
 						$visibility_class = array();
434 434
 
435
-						if ( ! isset( $value['hide_if_checked'] ) ) {
435
+						if ( ! isset($value['hide_if_checked'])) {
436 436
 							$value['hide_if_checked'] = false;
437 437
 						}
438
-						if ( ! isset( $value['show_if_checked'] ) ) {
438
+						if ( ! isset($value['show_if_checked'])) {
439 439
 							$value['show_if_checked'] = false;
440 440
 						}
441
-						if ( 'yes' === $value['hide_if_checked'] || 'yes' === $value['show_if_checked'] ) {
441
+						if ('yes' === $value['hide_if_checked'] || 'yes' === $value['show_if_checked']) {
442 442
 							$visibility_class[] = 'hidden_option';
443 443
 						}
444
-						if ( 'option' === $value['hide_if_checked'] ) {
444
+						if ('option' === $value['hide_if_checked']) {
445 445
 							$visibility_class[] = 'hide_options_if_checked';
446 446
 						}
447
-						if ( 'option' === $value['show_if_checked'] ) {
447
+						if ('option' === $value['show_if_checked']) {
448 448
 							$visibility_class[] = 'show_options_if_checked';
449 449
 						}
450 450
 
451
-						if ( ! isset( $value['checkboxgroup'] ) || 'start' === $value['checkboxgroup'] ) {
451
+						if ( ! isset($value['checkboxgroup']) || 'start' === $value['checkboxgroup']) {
452 452
 							?>
453
-								<tr valign="top" class="<?php echo esc_attr( implode( ' ', $visibility_class ) ); ?>">
454
-									<th scope="row" class="titledesc"><?php echo esc_html( $value['title'] ); ?></th>
453
+								<tr valign="top" class="<?php echo esc_attr(implode(' ', $visibility_class)); ?>">
454
+									<th scope="row" class="titledesc"><?php echo esc_html($value['title']); ?></th>
455 455
 									<td class="forminp forminp-checkbox">
456 456
 										<fieldset>
457 457
 							<?php
458 458
 						} else {
459 459
 							?>
460
-								<fieldset class="<?php echo esc_attr( implode( ' ', $visibility_class ) ); ?>">
460
+								<fieldset class="<?php echo esc_attr(implode(' ', $visibility_class)); ?>">
461 461
 							<?php
462 462
 						}
463 463
 
464
-						if ( ! empty( $value['title'] ) ) {
464
+						if ( ! empty($value['title'])) {
465 465
 							?>
466
-								<legend class="screen-reader-text"><span><?php echo esc_html( $value['title'] ); ?></span></legend>
466
+								<legend class="screen-reader-text"><span><?php echo esc_html($value['title']); ?></span></legend>
467 467
 							<?php
468 468
 						}
469 469
 						?>
470
-								<label for="<?php echo esc_attr( $value['id'] ); ?>">
470
+								<label for="<?php echo esc_attr($value['id']); ?>">
471 471
 									<input
472
-										name="<?php echo esc_attr( $value['id'] ); ?>"
473
-										id="<?php echo esc_attr( $value['id'] ); ?>"
472
+										name="<?php echo esc_attr($value['id']); ?>"
473
+										id="<?php echo esc_attr($value['id']); ?>"
474 474
 										type="checkbox"
475
-										class="<?php echo esc_attr( isset( $value['class'] ) ? $value['class'] : '' ); ?>"
475
+										class="<?php echo esc_attr(isset($value['class']) ? $value['class'] : ''); ?>"
476 476
 										value="1"
477
-										<?php checked( $option_value, 'yes' ); ?>
478
-										<?php echo implode( ' ', $custom_attributes ); ?>
477
+										<?php checked($option_value, 'yes'); ?>
478
+										<?php echo implode(' ', $custom_attributes); ?>
479 479
 									/> <?php echo $description; ?>
480 480
 								</label>
481 481
 								<?php
482 482
 
483
-								if ( ! isset( $value['checkboxgroup'] ) || 'end' === $value['checkboxgroup'] ) {
483
+								if ( ! isset($value['checkboxgroup']) || 'end' === $value['checkboxgroup']) {
484 484
 									?>
485 485
 										</fieldset>
486 486
 									</td>
@@ -495,7 +495,7 @@  discard block
 block discarded – undo
495 495
 
496 496
 					// Default: run an action
497 497
 					default:
498
-						do_action( 'auto_load_next_post_admin_field_' . $value['type'], $value );
498
+						do_action('auto_load_next_post_admin_field_'.$value['type'], $value);
499 499
 
500 500
 						break;
501 501
 				} // end switch()
@@ -514,8 +514,8 @@  discard block
 block discarded – undo
514 514
 		 * @param   array $options Opens array to output
515 515
 		 * @return  bool
516 516
 		 */
517
-		public static function save_fields( $options ) {
518
-			if ( empty( $_POST ) ) {
517
+		public static function save_fields($options) {
518
+			if (empty($_POST)) {
519 519
 				return false;
520 520
 			}
521 521
 
@@ -524,48 +524,48 @@  discard block
 block discarded – undo
524 524
 			$autoload_options = array();
525 525
 
526 526
 			// Loop options and get values to save
527
-			foreach ( $options as $option ) {
528
-				if ( ! isset( $option['id'] ) || ! isset( $option['type'] ) ) {
527
+			foreach ($options as $option) {
528
+				if ( ! isset($option['id']) || ! isset($option['type'])) {
529 529
 					continue;
530 530
 				}
531 531
 
532 532
 				// Get posted value.
533
-				if ( strstr( $option['id'], '[' ) ) {
534
-					parse_str( $option['id'], $option_name_array );
535
-					$option_name  = current( array_keys( $option_name_array ) );
536
-					$setting_name = key( $option_name_array[ $option_name ] );
537
-					$raw_value    = isset( $_POST[ $option_name ][ $setting_name ] ) ? wp_unslash( $_POST[ $option_name ][ $setting_name ] ) : null;
533
+				if (strstr($option['id'], '[')) {
534
+					parse_str($option['id'], $option_name_array);
535
+					$option_name  = current(array_keys($option_name_array));
536
+					$setting_name = key($option_name_array[$option_name]);
537
+					$raw_value    = isset($_POST[$option_name][$setting_name]) ? wp_unslash($_POST[$option_name][$setting_name]) : null;
538 538
 				} else {
539 539
 					$option_name  = $option['id'];
540 540
 					$setting_name = '';
541
-					$raw_value    = isset( $_POST[ $option['id'] ] ) ? wp_unslash( $_POST[ $option['id'] ] ) : null;
541
+					$raw_value    = isset($_POST[$option['id']]) ? wp_unslash($_POST[$option['id']]) : null;
542 542
 				}
543 543
 
544
-				switch ( $option['type'] ) {
544
+				switch ($option['type']) {
545 545
 					case "checkbox" :
546 546
 						$value = '1' === $raw_value || 'yes' === $raw_value ? 'yes' : 'no';
547 547
 						break;
548 548
 
549 549
 					case "textarea" :
550
-						$value = wp_kses_post( trim( stripslashes( $_POST[$option['id']] ) ) );
550
+						$value = wp_kses_post(trim(stripslashes($_POST[$option['id']])));
551 551
 						break;
552 552
 
553 553
 					case "multiselect" :
554
-						$value = array_filter( array_map( 'auto_load_next_post_clean', (array) $raw_value ) );
554
+						$value = array_filter(array_map('auto_load_next_post_clean', (array) $raw_value));
555 555
 						break;
556 556
 
557 557
 					case 'select' :
558
-						$allowed_values = empty( $option['options'] ) ? array() : array_map( 'strval', array_keys( $option['options'] ) );
559
-						if ( empty( $option['default'] ) && empty( $allowed_values ) ) {
558
+						$allowed_values = empty($option['options']) ? array() : array_map('strval', array_keys($option['options']));
559
+						if (empty($option['default']) && empty($allowed_values)) {
560 560
 							$value = null;
561 561
 							break;
562 562
 						}
563
-						$default = ( empty( $option['default'] ) ? $allowed_values[0] : $option['default'] );
564
-						$value   = in_array( $raw_value, $allowed_values, true ) ? $raw_value : $default;
563
+						$default = (empty($option['default']) ? $allowed_values[0] : $option['default']);
564
+						$value   = in_array($raw_value, $allowed_values, true) ? $raw_value : $default;
565 565
 						break;
566 566
 
567 567
 					default :
568
-						$value = auto_load_next_post_clean( $raw_value );
568
+						$value = auto_load_next_post_clean($raw_value);
569 569
 						break;
570 570
 				} // END switch()
571 571
 
@@ -574,59 +574,59 @@  discard block
 block discarded – undo
574 574
 				 *
575 575
 				 * @deprecated 1.5.0 - doesn't allow manipulation of values!
576 576
 				 */
577
-				if ( has_action( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ) ) ) {
578
-					if ( is_ajax() ) {
579
-						error_log( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ) . ' is deprecated since version 1.5.0' );
577
+				if (has_action('auto_load_next_post_update_option_'.sanitize_title($option['type']))) {
578
+					if (is_ajax()) {
579
+						error_log('auto_load_next_post_update_option_'.sanitize_title($option['type']).' is deprecated since version 1.5.0');
580 580
 					} else {
581
-						_deprecated_hook( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ), '1.5.0' );
581
+						_deprecated_hook('auto_load_next_post_update_option_'.sanitize_title($option['type']), '1.5.0');
582 582
 					}
583 583
 
584
-					do_action( 'auto_load_next_post_update_option_' . sanitize_title( $option['type'] ), $option );
584
+					do_action('auto_load_next_post_update_option_'.sanitize_title($option['type']), $option);
585 585
 					continue;
586 586
 				}
587 587
 
588
-				if ( is_null( $value ) ) {
588
+				if (is_null($value)) {
589 589
 					continue;
590 590
 				}
591 591
 
592 592
 				// Check if option is an array and handle that differently to single values.
593
-				if ( $option_name && $setting_name ) {
594
-					if ( ! isset( $update_options[ $option_name ] ) ) {
595
-						$update_options[ $option_name ] = get_option( $option_name, array() );
593
+				if ($option_name && $setting_name) {
594
+					if ( ! isset($update_options[$option_name])) {
595
+						$update_options[$option_name] = get_option($option_name, array());
596 596
 					}
597
-					if ( ! is_array( $update_options[ $option_name ] ) ) {
598
-						$update_options[ $option_name ] = array();
597
+					if ( ! is_array($update_options[$option_name])) {
598
+						$update_options[$option_name] = array();
599 599
 					}
600
-					$update_options[ $option_name ][ $setting_name ] = $value;
600
+					$update_options[$option_name][$setting_name] = $value;
601 601
 				} else {
602
-					$update_options[ $option_name ] = $value;
602
+					$update_options[$option_name] = $value;
603 603
 				}
604 604
 
605
-				$autoload_options[ $option_name ] = isset( $option['autoload'] ) ? (bool) $option['autoload'] : true;
605
+				$autoload_options[$option_name] = isset($option['autoload']) ? (bool) $option['autoload'] : true;
606 606
 
607 607
 				/**
608 608
 				 * Fire an action before saved.
609 609
 				 *
610 610
 				 * @deprecated 1.5.0 - doesn't allow manipulation of values!
611 611
 				 */
612
-				if ( has_action( 'auto_load_next_post_update_option' ) ) {
613
-					if ( is_ajax() ) {
614
-						error_log( 'auto_load_next_post_update_option is deprecated since version 1.5.0' );
612
+				if (has_action('auto_load_next_post_update_option')) {
613
+					if (is_ajax()) {
614
+						error_log('auto_load_next_post_update_option is deprecated since version 1.5.0');
615 615
 					} else {
616
-						_deprecated_hook( 'auto_load_next_post_update_option', '1.5.0' );
616
+						_deprecated_hook('auto_load_next_post_update_option', '1.5.0');
617 617
 					}
618 618
 
619
-					do_action( 'auto_load_next_post_update_option', $option );
619
+					do_action('auto_load_next_post_update_option', $option);
620 620
 				}
621 621
 			}
622 622
 
623 623
 			// Now save the options
624
-			foreach ( $update_options as $name => $value ) {
625
-				update_option( $name, $value, $autoload_options[ $name ] ? 'yes' : 'no' );
624
+			foreach ($update_options as $name => $value) {
625
+				update_option($name, $value, $autoload_options[$name] ? 'yes' : 'no');
626 626
 			}
627 627
 
628 628
 			// Save all options as an array. Ready for export.
629
-			update_option( 'auto_load_next_post_options', $update_options );
629
+			update_option('auto_load_next_post_options', $update_options);
630 630
 
631 631
 			return true;
632 632
 		} // END save_fields()
Please login to merge, or discard this patch.
includes/admin/settings/class-alnp-settings-events.php 1 patch
Spacing   +11 added lines, -11 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_Events_Tab' ) ) {
18
+if ( ! class_exists('Auto_Load_Next_Post_Settings_Events_Tab')) {
19 19
 
20 20
 	class Auto_Load_Next_Post_Settings_Events_Tab extends Auto_Load_Next_Post_Settings_Page {
21 21
 
@@ -28,7 +28,7 @@  discard block
 block discarded – undo
28 28
 		 */
29 29
 		public function __construct() {
30 30
 			$this->id    = 'events';
31
-			$this->label = __( 'Events', 'auto-load-next-post' );
31
+			$this->label = __('Events', 'auto-load-next-post');
32 32
 
33 33
 			parent::__construct();
34 34
 		} // END __construct()
@@ -45,15 +45,15 @@  discard block
 block discarded – undo
45 45
 				'auto_load_next_post_general_settings', array(
46 46
 
47 47
 					array(
48
-						'title' => __( 'Events', 'auto-load-next-post' ),
48
+						'title' => __('Events', 'auto-load-next-post'),
49 49
 						'type'  => 'title',
50
-						'desc'  => sprintf( __( 'User defined events, below you can choose external JavaScript events to be triggered alongside Auto Load Next Post native events', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ),
50
+						'desc'  => sprintf(__('User defined events, below you can choose external JavaScript events to be triggered alongside Auto Load Next Post native events', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')),
51 51
 						'id'    => 'events_options'
52 52
 					),
53 53
 
54 54
 					array(
55
-						'title'    => __( 'Post loaded', 'auto-load-next-post' ),
56
-						'desc'     => __( 'After the new post has loaded, comma separated events list: <code>event1,event2, ...</code>', 'auto-load-next-post' ),
55
+						'title'    => __('Post loaded', 'auto-load-next-post'),
56
+						'desc'     => __('After the new post has loaded, comma separated events list: <code>event1,event2, ...</code>', 'auto-load-next-post'),
57 57
 						'id'       => 'auto_load_next_post_on_load_event',
58 58
 						'placeholder' => 'event1,event2, ...',
59 59
 						'type'     => 'textarea',
@@ -62,8 +62,8 @@  discard block
 block discarded – undo
62 62
 					),
63 63
 
64 64
 					array(
65
-						'title'    => __( 'Entering a post', 'auto-load-next-post' ),
66
-						'desc'     => __( 'Entering a post, comma separated events list: <code>event1,event2, ...</code>', 'auto-load-next-post' ),
65
+						'title'    => __('Entering a post', 'auto-load-next-post'),
66
+						'desc'     => __('Entering a post, comma separated events list: <code>event1,event2, ...</code>', 'auto-load-next-post'),
67 67
 						'id'       => 'auto_load_next_post_on_entering_event',
68 68
 						'placeholder' => 'event1,event2, ...',
69 69
 						'type'     => 'textarea',
@@ -85,7 +85,7 @@  discard block
 block discarded – undo
85 85
 		 * @since  1.5.0
86 86
 		 */
87 87
 		public function output() {
88
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $this->get_settings() );
88
+			Auto_Load_Next_Post_Admin_Settings::output_fields($this->get_settings());
89 89
 		} // END output()
90 90
 
91 91
 		/**
@@ -96,7 +96,7 @@  discard block
 block discarded – undo
96 96
 		 * @global $current_tab
97 97
 		 */
98 98
 		public function save() {
99
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $this->get_settings() );
99
+			Auto_Load_Next_Post_Admin_Settings::save_fields($this->get_settings());
100 100
 		} // END save()
101 101
 
102 102
 	} // END class
Please login to merge, or discard this patch.