Completed
Branch master (1f12af)
by
unknown
09:17 queued 31s
created
includes/auto-load-next-post-themes-supported.php 1 patch
Spacing   +6 added lines, -6 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
 
@@ -43,13 +43,13 @@  discard block
 block discarded – undo
43 43
 function alnp_include_theme_support() {
44 44
 	$themes_supported = alnp_themes_supported();
45 45
 
46
-	if ( is_alnp_active_theme( $themes_supported ) ) {
47
-		foreach( $themes_supported as $theme ) {
48
-			if ( get_template() == $theme ) {
49
-				include_once( dirname( __FILE__ ) . '/theme-support/class-alnp-' . $theme . '.php' );
46
+	if (is_alnp_active_theme($themes_supported)) {
47
+		foreach ($themes_supported as $theme) {
48
+			if (get_template() == $theme) {
49
+				include_once(dirname(__FILE__).'/theme-support/class-alnp-'.$theme.'.php');
50 50
 			}
51 51
 		}
52 52
 	}
53 53
 
54
-	include_once( dirname( __FILE__ ) . '/theme-support/class-alnp-theme-support.php' );
54
+	include_once(dirname(__FILE__).'/theme-support/class-alnp-theme-support.php');
55 55
 } // END alnp_include_theme_support()
Please login to merge, or discard this patch.
includes/admin/settings/class-alnp-settings-events.php 1 patch
Spacing   +14 added lines, -14 removed lines patch added patch discarded remove patch
@@ -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
 
@@ -26,11 +26,11 @@  discard block
 block discarded – undo
26 26
 		 */
27 27
 		public function __construct() {
28 28
 			$this->id    = 'events';
29
-			$this->label = esc_html__( 'Events', 'auto-load-next-post' );
29
+			$this->label = esc_html__('Events', 'auto-load-next-post');
30 30
 
31 31
 			parent::__construct();
32 32
 
33
-			add_action( 'auto_load_next_post_settings_events', array( __CLASS__, 'is_jetpack_lazy_images_active' ), 10 );
33
+			add_action('auto_load_next_post_settings_events', array(__CLASS__, 'is_jetpack_lazy_images_active'), 10);
34 34
 		} // END __construct()
35 35
 
36 36
 		/**
@@ -41,9 +41,9 @@  discard block
 block discarded – undo
41 41
 		 * @static
42 42
 		 */
43 43
 		public static function is_jetpack_lazy_images_active() {
44
-			if ( alnp_check_jetpack() == 'yes' ) {
45
-				if ( Jetpack::is_module_active( 'lazy-images' ) ) {
46
-					include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-jetpack-lazy-images-module.php' );
44
+			if (alnp_check_jetpack() == 'yes') {
45
+				if (Jetpack::is_module_active('lazy-images')) {
46
+					include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-jetpack-lazy-images-module.php');
47 47
 				}
48 48
 			}
49 49
 		} // END is_jetpack_lazy_images_active()
@@ -61,13 +61,13 @@  discard block
 block discarded – undo
61 61
 					array(
62 62
 						'title' => $this->label,
63 63
 						'type'  => 'title',
64
-						'desc'  => sprintf( __( 'Below you can enter external JavaScript events to be triggered alongside %1$s native events. Separate each event like so: %2$s', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), '<code>event1, event2,</code>' ),
64
+						'desc'  => sprintf(__('Below you can enter external JavaScript events to be triggered alongside %1$s native events. Separate each event like so: %2$s', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post'), '<code>event1, event2,</code>'),
65 65
 						'id'    => 'events_options'
66 66
 					),
67 67
 
68 68
 					array(
69
-						'title'    => esc_html__( 'Post loaded', 'auto-load-next-post' ),
70
-						'desc'     => esc_html__( 'Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post' ),
69
+						'title'    => esc_html__('Post loaded', 'auto-load-next-post'),
70
+						'desc'     => esc_html__('Events listed here will be triggered after a new post has loaded.', 'auto-load-next-post'),
71 71
 						'id'       => 'auto_load_next_post_on_load_event',
72 72
 						'default'  => '',
73 73
 						'type'     => 'textarea',
@@ -76,8 +76,8 @@  discard block
 block discarded – undo
76 76
 					),
77 77
 
78 78
 					array(
79
-						'title'    => esc_html__( 'Entering a Post', 'auto-load-next-post' ),
80
-						'desc'     => esc_html__( 'Events listed here will be triggered when entering a post.', 'auto-load-next-post' ),
79
+						'title'    => esc_html__('Entering a Post', 'auto-load-next-post'),
80
+						'desc'     => esc_html__('Events listed here will be triggered when entering a post.', 'auto-load-next-post'),
81 81
 						'id'       => 'auto_load_next_post_on_entering_event',
82 82
 						'default'  => '',
83 83
 						'type'     => 'textarea',
@@ -100,7 +100,7 @@  discard block
 block discarded – undo
100 100
 		public function output() {
101 101
 			$settings = $this->get_settings();
102 102
 
103
-			Auto_Load_Next_Post_Admin_Settings::output_fields( $settings );
103
+			Auto_Load_Next_Post_Admin_Settings::output_fields($settings);
104 104
 		} // END output()
105 105
 
106 106
 		/**
@@ -111,7 +111,7 @@  discard block
 block discarded – undo
111 111
 		public function save() {
112 112
 			$settings = $this->get_settings();
113 113
 
114
-			Auto_Load_Next_Post_Admin_Settings::save_fields( $settings );
114
+			Auto_Load_Next_Post_Admin_Settings::save_fields($settings);
115 115
 		} // END save()
116 116
 
117 117
 	} // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentyfifteen.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.site-main',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'section#comments',
48 48
 			'load_js_in_footer'    => 'no',
49 49
 			'lock_js_in_footer'    => 'no',
50
-		) );
50
+		));
51 51
 	} // END add_theme_support()
52 52
 
53 53
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentysixteen.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.site-main',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'section#comments',
48 48
 			'load_js_in_footer'    => 'no',
49 49
 			'lock_js_in_footer'    => 'no',
50
-		) );
50
+		));
51 51
 	} // END add_theme_support()
52 52
 
53 53
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentyseventeen.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.site-main',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'section#comments',
48 48
 			'load_js_in_footer'    => 'no',
49 49
 			'lock_js_in_footer'    => 'no',
50
-		) );
50
+		));
51 51
 	} // END add_theme_support()
52 52
 
53 53
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentytwelve.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,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// This removes the default post navigation in the repeater template.
32
-		remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 );
32
+		remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10);
33 33
 
34 34
 		// Add a compaitable post navigation.
35
-		add_action( 'alnp_load_after_content', array( __CLASS__, 'alnp_twentytwelve_post_navigation' ), 1, 10 );
35
+		add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentytwelve_post_navigation'), 1, 10);
36 36
 
37 37
 		// Add theme support and preset the theme selectors.
38
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
38
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
39 39
 	} // END init()
40 40
 
41 41
 	/**
@@ -47,8 +47,8 @@  discard block
 block discarded – undo
47 47
 	public static function alnp_twentytwelve_post_navigation() {
48 48
 	?>
49 49
 	<nav class="nav-single">
50
-		<h3 class="assistive-text"><?php _e( 'Post navigation', 'auto-load-next-post' ); ?></h3>
51
-		<span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '&larr;', 'Previous post link', 'auto-load-next-post' ) . '</span> %title' ); ?></span>
50
+		<h3 class="assistive-text"><?php _e('Post navigation', 'auto-load-next-post'); ?></h3>
51
+		<span class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">'._x('&larr;', 'Previous post link', 'auto-load-next-post').'</span> %title'); ?></span>
52 52
 	</nav><!-- .nav-single -->
53 53
 	<?php
54 54
 	} // END alnp_twentytwelve_post_navigation()
@@ -61,14 +61,14 @@  discard block
 block discarded – undo
61 61
 	 * @static
62 62
 	 */
63 63
 	public static function add_theme_support() {
64
-		add_theme_support( 'auto-load-next-post', array(
64
+		add_theme_support('auto-load-next-post', array(
65 65
 			'content_container'    => '#content',
66 66
 			'title_selector'       => 'h1.entry-title',
67 67
 			'navigation_container' => '.nav-single',
68 68
 			'comments_container'   => 'div#comments',
69 69
 			'load_js_in_footer'    => 'no',
70 70
 			'lock_js_in_footer'    => 'no',
71
-		) );
71
+		));
72 72
 	} // END add_theme_support()
73 73
 
74 74
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentyfourteen.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => '.site-content',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'div#comments',
48 48
 			'load_js_in_footer'    => 'no',
49 49
 			'lock_js_in_footer'    => 'no',
50
-		) );
50
+		));
51 51
 	} // END add_theme_support()
52 52
 
53 53
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-twentythirteen.php 1 patch
Spacing   +6 added lines, -6 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,13 +29,13 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// This removes the default post navigation in the repeater template.
32
-		remove_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 );
32
+		remove_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10);
33 33
 
34 34
 		// Add a compaitable post navigation.
35
-		add_action( 'alnp_load_after_content', array( __CLASS__, 'alnp_twentythirteen_post_navigation' ), 1, 10 );
35
+		add_action('alnp_load_after_content', array(__CLASS__, 'alnp_twentythirteen_post_navigation'), 1, 10);
36 36
 
37 37
 		// Add theme support and preset the theme selectors.
38
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
38
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
39 39
 	} // END init()
40 40
 
41 41
 	/**
@@ -56,14 +56,14 @@  discard block
 block discarded – undo
56 56
 	 * @static
57 57
 	 */
58 58
 	public static function add_theme_support() {
59
-		add_theme_support( 'auto-load-next-post', array(
59
+		add_theme_support('auto-load-next-post', array(
60 60
 			'content_container'    => '#content',
61 61
 			'title_selector'       => 'h1.entry-title',
62 62
 			'navigation_container' => 'nav.post-navigation',
63 63
 			'comments_container'   => 'div#comments',
64 64
 			'load_js_in_footer'    => 'no',
65 65
 			'lock_js_in_footer'    => 'no',
66
-		) );
66
+		));
67 67
 	} // END add_theme_support()
68 68
 
69 69
 } // END class
Please login to merge, or discard this patch.
includes/theme-support/class-alnp-sydney.php 1 patch
Spacing   +4 added lines, -4 removed lines patch added patch discarded remove patch
@@ -12,7 +12,7 @@  discard block
 block discarded – undo
12 12
  */
13 13
 
14 14
 // Exit if accessed directly.
15
-if ( ! defined( 'ABSPATH' ) ) {
15
+if ( ! defined('ABSPATH')) {
16 16
 	exit;
17 17
 }
18 18
 
@@ -29,7 +29,7 @@  discard block
 block discarded – undo
29 29
 	 */
30 30
 	public static function init() {
31 31
 		// Add theme support and preset the theme selectors.
32
-		add_action( 'after_setup_theme', array( __CLASS__, 'add_theme_support' ) );
32
+		add_action('after_setup_theme', array(__CLASS__, 'add_theme_support'));
33 33
 	} // END init()
34 34
 
35 35
 	/**
@@ -40,14 +40,14 @@  discard block
 block discarded – undo
40 40
 	 * @static
41 41
 	 */
42 42
 	public static function add_theme_support() {
43
-		add_theme_support( 'auto-load-next-post', array(
43
+		add_theme_support('auto-load-next-post', array(
44 44
 			'content_container'    => 'main.post-wrap',
45 45
 			'title_selector'       => 'h1.entry-title',
46 46
 			'navigation_container' => 'nav.post-navigation',
47 47
 			'comments_container'   => 'div#comments',
48 48
 			'load_js_in_footer'    => 'no',
49 49
 			'lock_js_in_footer'    => 'no',
50
-		) );
50
+		));
51 51
 	} // END add_theme_support()
52 52
 
53 53
 } // END class
Please login to merge, or discard this patch.