@@ -12,7 +12,7 @@ discard block |
||
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 |
||
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 |
||
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 |
@@ -11,11 +11,11 @@ discard block |
||
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_Misc_Tab' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Settings_Misc_Tab')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Settings_Misc_Tab extends Auto_Load_Next_Post_Settings_Page { |
21 | 21 | |
@@ -29,12 +29,12 @@ discard block |
||
29 | 29 | */ |
30 | 30 | public function __construct() { |
31 | 31 | $this->id = 'misc'; |
32 | - $this->label = esc_html__( 'Misc', 'auto-load-next-post' ); |
|
32 | + $this->label = esc_html__('Misc', 'auto-load-next-post'); |
|
33 | 33 | |
34 | 34 | parent::__construct(); |
35 | 35 | |
36 | - add_filter( 'auto_load_next_post_' . $this->id . '_settings', array( __CLASS__, 'lock_js_in_footer' ), 0, 1 ); |
|
37 | - add_action( 'auto_load_next_post_sections_' . $this->id, array( __CLASS__, 'no_comment_selector_set' ), 10 ); |
|
36 | + add_filter('auto_load_next_post_'.$this->id.'_settings', array(__CLASS__, 'lock_js_in_footer'), 0, 1); |
|
37 | + add_action('auto_load_next_post_sections_'.$this->id, array(__CLASS__, 'no_comment_selector_set'), 10); |
|
38 | 38 | } // END __construct() |
39 | 39 | |
40 | 40 | /** |
@@ -45,11 +45,11 @@ discard block |
||
45 | 45 | * @since 1.5.0 |
46 | 46 | */ |
47 | 47 | public static function no_comment_selector_set() { |
48 | - $comments_container = get_option( 'auto_load_next_post_comments_container' ); |
|
49 | - $remove_comments = get_option( 'auto_load_next_post_remove_comments' ); |
|
48 | + $comments_container = get_option('auto_load_next_post_comments_container'); |
|
49 | + $remove_comments = get_option('auto_load_next_post_remove_comments'); |
|
50 | 50 | |
51 | - if ( empty( $comments_container ) && ! empty( $remove_comments ) ) { |
|
52 | - include( dirname( AUTO_LOAD_NEXT_POST_FILE ) . '/includes/admin/views/html-notice-no-comment-selector.php' ); |
|
51 | + if (empty($comments_container) && ! empty($remove_comments)) { |
|
52 | + include(dirname(AUTO_LOAD_NEXT_POST_FILE).'/includes/admin/views/html-notice-no-comment-selector.php'); |
|
53 | 53 | } |
54 | 54 | } // END no_comment_selector_set() |
55 | 55 | |
@@ -65,19 +65,19 @@ discard block |
||
65 | 65 | * @param array $settings |
66 | 66 | * @return array $settings |
67 | 67 | */ |
68 | - public static function lock_js_in_footer( $settings ) { |
|
69 | - $js_locked_in_footer = get_option( 'auto_load_next_post_lock_js_in_footer' ); |
|
68 | + public static function lock_js_in_footer($settings) { |
|
69 | + $js_locked_in_footer = get_option('auto_load_next_post_lock_js_in_footer'); |
|
70 | 70 | |
71 | - if ( !empty( $js_locked_in_footer ) && $js_locked_in_footer == 'yes' ) { |
|
71 | + if ( ! empty($js_locked_in_footer) && $js_locked_in_footer == 'yes') { |
|
72 | 72 | // Setting key to look for. |
73 | 73 | $key = 'load_js_in_footer'; |
74 | 74 | |
75 | 75 | // Find the setting. |
76 | - $find_setting = array_search( $key, $settings ); |
|
76 | + $find_setting = array_search($key, $settings); |
|
77 | 77 | |
78 | 78 | // Does the setting exist? |
79 | - if ( is_bool( $find_setting ) === true ) { |
|
80 | - unset( $settings[$key] ); |
|
79 | + if (is_bool($find_setting) === true) { |
|
80 | + unset($settings[$key]); |
|
81 | 81 | } |
82 | 82 | } |
83 | 83 | |
@@ -98,45 +98,45 @@ discard block |
||
98 | 98 | 'title' => array( |
99 | 99 | 'title' => $this->label, |
100 | 100 | 'type' => 'title', |
101 | - 'desc' => sprintf( esc_html__( 'Here you set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ), |
|
101 | + 'desc' => sprintf(esc_html__('Here you set if you want to track pageviews, remove comments and load %s javascript in the footer.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')), |
|
102 | 102 | 'id' => 'misc_options' |
103 | 103 | ), |
104 | 104 | |
105 | 105 | 'remove_comments' => array( |
106 | - 'title' => esc_html__( 'Remove Comments', 'auto-load-next-post' ), |
|
107 | - 'desc' => esc_html__( 'Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post' ), |
|
106 | + 'title' => esc_html__('Remove Comments', 'auto-load-next-post'), |
|
107 | + 'desc' => esc_html__('Enable to remove comments when each post loads including the initial post.', 'auto-load-next-post'), |
|
108 | 108 | 'id' => 'auto_load_next_post_remove_comments', |
109 | 109 | 'default' => 'yes', |
110 | 110 | 'type' => 'checkbox' |
111 | 111 | ), |
112 | 112 | |
113 | 113 | 'google_analytics' => array( |
114 | - 'title' => esc_html__( 'Update Google Analytics', 'auto-load-next-post' ), |
|
115 | - 'desc' => esc_html__( 'Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post' ), |
|
114 | + 'title' => esc_html__('Update Google Analytics', 'auto-load-next-post'), |
|
115 | + 'desc' => esc_html__('Enable to track each post the visitor is reading. This will count as a pageview. You must already have Google Analytics setup.', 'auto-load-next-post'), |
|
116 | 116 | 'id' => 'auto_load_next_post_google_analytics', |
117 | 117 | 'default' => 'no', |
118 | 118 | 'type' => 'checkbox' |
119 | 119 | ), |
120 | 120 | |
121 | 121 | 'load_js_in_footer' => array( |
122 | - 'title' => esc_html__( 'JavaScript in Footer?', 'auto-load-next-post' ), |
|
123 | - 'desc' => esc_html__( 'Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site or if the current theme requires it.', 'auto-load-next-post' ), |
|
122 | + 'title' => esc_html__('JavaScript in Footer?', 'auto-load-next-post'), |
|
123 | + 'desc' => esc_html__('Enable to load Auto Load Next Post in the footer instead of the header. Can be useful to optimize your site or if the current theme requires it.', 'auto-load-next-post'), |
|
124 | 124 | 'id' => 'auto_load_next_post_load_js_in_footer', |
125 | 125 | 'default' => 'no', |
126 | 126 | 'type' => 'checkbox' |
127 | 127 | ), |
128 | 128 | |
129 | 129 | 'reset_data' => array( |
130 | - 'title' => esc_html__( 'Reset all data?', 'auto-load-next-post' ), |
|
131 | - 'desc' => esc_html__( 'Press the reset button to clear all settings for this plugin and re-install the default settings.', 'auto-load-next-post' ), |
|
130 | + 'title' => esc_html__('Reset all data?', 'auto-load-next-post'), |
|
131 | + 'desc' => esc_html__('Press the reset button to clear all settings for this plugin and re-install the default settings.', 'auto-load-next-post'), |
|
132 | 132 | 'id' => 'auto_load_next_post_reset_data', |
133 | 133 | 'default' => 'no', |
134 | 134 | 'type' => 'reset_data' |
135 | 135 | ), |
136 | 136 | |
137 | 137 | 'uninstall' => array( |
138 | - 'title' => esc_html__( 'Remove all data on uninstall?', 'auto-load-next-post' ), |
|
139 | - 'desc' => esc_html__( 'If enabled, all settings for this plugin will all be deleted when uninstalling via Plugins > Delete.', 'auto-load-next-post' ), |
|
138 | + 'title' => esc_html__('Remove all data on uninstall?', 'auto-load-next-post'), |
|
139 | + 'desc' => esc_html__('If enabled, all settings for this plugin will all be deleted when uninstalling via Plugins > Delete.', 'auto-load-next-post'), |
|
140 | 140 | 'id' => 'auto_load_next_post_uninstall_data', |
141 | 141 | 'default' => 'no', |
142 | 142 | 'type' => 'checkbox' |
@@ -156,15 +156,15 @@ discard block |
||
156 | 156 | * @since 1.5.0 |
157 | 157 | * @param mixed $settings |
158 | 158 | */ |
159 | - public function customize_button( $settings ) { |
|
159 | + public function customize_button($settings) { |
|
160 | 160 | ?> |
161 | 161 | <tr valign="top"> |
162 | - <th scope="row" class="titledesc"><?php echo $settings['title'];?></th> |
|
163 | - <td class="forminp forminp-<?php echo sanitize_title( $settings['type'] ) ?>"> |
|
164 | - <a href="<?php echo $settings['link']; ?>" class="button-secondary <?php echo esc_attr( $settings['class'] ); ?>"> |
|
162 | + <th scope="row" class="titledesc"><?php echo $settings['title']; ?></th> |
|
163 | + <td class="forminp forminp-<?php echo sanitize_title($settings['type']) ?>"> |
|
164 | + <a href="<?php echo $settings['link']; ?>" class="button-secondary <?php echo esc_attr($settings['class']); ?>"> |
|
165 | 165 | <?php echo $settings['button_text']; ?> |
166 | 166 | </a> |
167 | - <span class="description"><?php echo $settings['desc'];?></span> |
|
167 | + <span class="description"><?php echo $settings['desc']; ?></span> |
|
168 | 168 | </td> |
169 | 169 | </tr> |
170 | 170 | <?php |
@@ -181,7 +181,7 @@ discard block |
||
181 | 181 | public function output() { |
182 | 182 | $settings = $this->get_settings(); |
183 | 183 | |
184 | - Auto_Load_Next_Post_Admin_Settings::output_fields( $settings ); |
|
184 | + Auto_Load_Next_Post_Admin_Settings::output_fields($settings); |
|
185 | 185 | } // END output() |
186 | 186 | |
187 | 187 | /** |
@@ -193,7 +193,7 @@ discard block |
||
193 | 193 | public function save() { |
194 | 194 | $settings = $this->get_settings(); |
195 | 195 | |
196 | - Auto_Load_Next_Post_Admin_Settings::save_fields( $settings ); |
|
196 | + Auto_Load_Next_Post_Admin_Settings::save_fields($settings); |
|
197 | 197 | } // END save() |
198 | 198 | |
199 | 199 | } // END class |
@@ -11,11 +11,11 @@ discard block |
||
11 | 11 | */ |
12 | 12 | |
13 | 13 | // Exit if accessed directly. |
14 | -if ( ! defined( 'ABSPATH' ) ) { |
|
14 | +if ( ! defined('ABSPATH')) { |
|
15 | 15 | exit; |
16 | 16 | } |
17 | 17 | |
18 | -if ( ! class_exists( 'Auto_Load_Next_Post_Install' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Install')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Install { |
21 | 21 | |
@@ -36,11 +36,11 @@ discard block |
||
36 | 36 | * @access public |
37 | 37 | */ |
38 | 38 | public function __construct() { |
39 | - add_action( 'init', array( __CLASS__, 'add_rewrite_endpoint' ), 0 ); |
|
40 | - add_action( 'init', array( __CLASS__, 'check_version' ), 5 ); |
|
39 | + add_action('init', array(__CLASS__, 'add_rewrite_endpoint'), 0); |
|
40 | + add_action('init', array(__CLASS__, 'check_version'), 5); |
|
41 | 41 | |
42 | 42 | // Get plugin version. |
43 | - self::$current_version = get_option( 'auto_load_next_post_version' ); |
|
43 | + self::$current_version = get_option('auto_load_next_post_version'); |
|
44 | 44 | } // END __construct() |
45 | 45 | |
46 | 46 | /** |
@@ -53,9 +53,9 @@ discard block |
||
53 | 53 | * @since 1.4.10 |
54 | 54 | */ |
55 | 55 | public static function check_version() { |
56 | - if ( ! defined( 'IFRAME_REQUEST' ) && version_compare( self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<' ) ) { |
|
56 | + if ( ! defined('IFRAME_REQUEST') && version_compare(self::$current_version, AUTO_LOAD_NEXT_POST_VERSION, '<')) { |
|
57 | 57 | self::install(); |
58 | - do_action( 'auto_load_next_post_updated' ); |
|
58 | + do_action('auto_load_next_post_updated'); |
|
59 | 59 | } |
60 | 60 | } // END check_version() |
61 | 61 | |
@@ -68,19 +68,19 @@ discard block |
||
68 | 68 | * @version 1.5.0 |
69 | 69 | */ |
70 | 70 | public static function install() { |
71 | - if ( ! is_blog_installed() ) { |
|
71 | + if ( ! is_blog_installed()) { |
|
72 | 72 | return; |
73 | 73 | } |
74 | 74 | |
75 | 75 | // Check if we are not already running this routine. |
76 | - if ( 'yes' === get_transient( 'alnp_installing' ) ) { |
|
76 | + if ('yes' === get_transient('alnp_installing')) { |
|
77 | 77 | return; |
78 | 78 | } |
79 | 79 | |
80 | 80 | // If we made it till here nothing is running yet, lets set the transient now for five minutes. |
81 | - set_transient( 'alnp_installing', 'yes', MINUTE_IN_SECONDS * 5 ); |
|
82 | - if ( ! defined( 'AUTO_LOAD_NEXT_POST_INSTALLING' ) ) { |
|
83 | - define( 'AUTO_LOAD_NEXT_POST_INSTALLING', true ); |
|
81 | + set_transient('alnp_installing', 'yes', MINUTE_IN_SECONDS * 5); |
|
82 | + if ( ! defined('AUTO_LOAD_NEXT_POST_INSTALLING')) { |
|
83 | + define('AUTO_LOAD_NEXT_POST_INSTALLING', true); |
|
84 | 84 | } |
85 | 85 | |
86 | 86 | // Add default options. |
@@ -101,9 +101,9 @@ discard block |
||
101 | 101 | // Refresh rewrite rules. |
102 | 102 | self::flush_rewrite_rules(); |
103 | 103 | |
104 | - delete_transient( 'alnp_installing' ); |
|
104 | + delete_transient('alnp_installing'); |
|
105 | 105 | |
106 | - do_action( 'alnp_installed' ); |
|
106 | + do_action('alnp_installed'); |
|
107 | 107 | } // END install() |
108 | 108 | |
109 | 109 | /** |
@@ -115,16 +115,16 @@ discard block |
||
115 | 115 | * @since 1.5.0 |
116 | 116 | */ |
117 | 117 | private static function set_theme_selectors() { |
118 | - if ( is_alnp_supported() ) { |
|
119 | - $content_container = alnp_get_theme_support( 'content_container' ); |
|
120 | - $title_selector = alnp_get_theme_support( 'title_selector' ); |
|
121 | - $navigation_container = alnp_get_theme_support( 'navigation_container' ); |
|
122 | - $comments_container = alnp_get_theme_support( 'comments_container' ); |
|
123 | - |
|
124 | - if ( ! empty( $content_container ) ) update_option( 'auto_load_next_post_content_container', $content_container ); |
|
125 | - if ( ! empty( $title_selector ) ) update_option( 'auto_load_next_post_title_selector', $title_selector ); |
|
126 | - if ( ! empty( $navigation_container ) ) update_option( 'auto_load_next_post_navigation_container', $navigation_container ); |
|
127 | - if ( ! empty( $comments_container ) ) update_option( 'auto_load_next_post_comments_container', $comments_container ); |
|
118 | + if (is_alnp_supported()) { |
|
119 | + $content_container = alnp_get_theme_support('content_container'); |
|
120 | + $title_selector = alnp_get_theme_support('title_selector'); |
|
121 | + $navigation_container = alnp_get_theme_support('navigation_container'); |
|
122 | + $comments_container = alnp_get_theme_support('comments_container'); |
|
123 | + |
|
124 | + if ( ! empty($content_container)) update_option('auto_load_next_post_content_container', $content_container); |
|
125 | + if ( ! empty($title_selector)) update_option('auto_load_next_post_title_selector', $title_selector); |
|
126 | + if ( ! empty($navigation_container)) update_option('auto_load_next_post_navigation_container', $navigation_container); |
|
127 | + if ( ! empty($comments_container)) update_option('auto_load_next_post_comments_container', $comments_container); |
|
128 | 128 | } |
129 | 129 | } // END set_theme_selectors() |
130 | 130 | |
@@ -139,12 +139,12 @@ discard block |
||
139 | 139 | * @version 1.5.3 |
140 | 140 | */ |
141 | 141 | private static function set_js_in_footer() { |
142 | - if ( is_alnp_supported() ) { |
|
143 | - $load_js_in_footer = alnp_get_theme_support( 'load_js_in_footer' ); |
|
144 | - $lock_js_in_footer = alnp_get_theme_support( 'lock_js_in_footer' ); |
|
142 | + if (is_alnp_supported()) { |
|
143 | + $load_js_in_footer = alnp_get_theme_support('load_js_in_footer'); |
|
144 | + $lock_js_in_footer = alnp_get_theme_support('lock_js_in_footer'); |
|
145 | 145 | |
146 | - if ( ! empty( $load_js_in_footer ) && $load_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_load_js_in_footer', $load_js_in_footer ); |
|
147 | - if ( ! empty( $lock_js_in_footer ) && $lock_js_in_footer == 'yes' ) update_option( 'auto_load_next_post_lock_js_in_footer', $lock_js_in_footer ); |
|
146 | + if ( ! empty($load_js_in_footer) && $load_js_in_footer == 'yes') update_option('auto_load_next_post_load_js_in_footer', $load_js_in_footer); |
|
147 | + if ( ! empty($lock_js_in_footer) && $lock_js_in_footer == 'yes') update_option('auto_load_next_post_lock_js_in_footer', $lock_js_in_footer); |
|
148 | 148 | } |
149 | 149 | } // END set_js_in_footer() |
150 | 150 | |
@@ -155,7 +155,7 @@ discard block |
||
155 | 155 | * @static |
156 | 156 | */ |
157 | 157 | private static function update_version() { |
158 | - update_option( 'auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION ); |
|
158 | + update_option('auto_load_next_post_version', AUTO_LOAD_NEXT_POST_VERSION); |
|
159 | 159 | } // END update_version() |
160 | 160 | |
161 | 161 | /** |
@@ -167,13 +167,13 @@ discard block |
||
167 | 167 | * @version 1.5.0 |
168 | 168 | */ |
169 | 169 | public static function set_install_date() { |
170 | - $install_date = get_site_option( 'auto_load_next_post_install_date' ); |
|
170 | + $install_date = get_site_option('auto_load_next_post_install_date'); |
|
171 | 171 | |
172 | 172 | // If ALNP was installed before but the install date was not converted to time then convert it. |
173 | - if ( ! empty( $install_date ) && !intval( $install_date ) ) { |
|
174 | - update_site_option( 'auto_load_next_post_install_date', strtotime( $install_date ) ); |
|
173 | + if ( ! empty($install_date) && ! intval($install_date)) { |
|
174 | + update_site_option('auto_load_next_post_install_date', strtotime($install_date)); |
|
175 | 175 | } else { |
176 | - add_site_option( 'auto_load_next_post_install_date', time() ); |
|
176 | + add_site_option('auto_load_next_post_install_date', time()); |
|
177 | 177 | } |
178 | 178 | } // END set_install_date() |
179 | 179 | |
@@ -189,15 +189,15 @@ discard block |
||
189 | 189 | */ |
190 | 190 | public static function create_options() { |
191 | 191 | // Include settings so that we can run through defaults |
192 | - include_once( dirname( __FILE__ ) . '/admin/class-alnp-admin-settings.php' ); |
|
192 | + include_once(dirname(__FILE__).'/admin/class-alnp-admin-settings.php'); |
|
193 | 193 | |
194 | 194 | $settings = Auto_Load_Next_Post_Admin_Settings::get_settings_pages(); |
195 | 195 | |
196 | - foreach ( $settings as $section ) { |
|
197 | - foreach ( $section->get_settings() as $value ) { |
|
198 | - if ( isset( $value['default'] ) && isset( $value['id'] ) ) { |
|
199 | - $autoload = isset( $value['autoload'] ) ? (bool) $value['autoload'] : true; |
|
200 | - add_option( $value['id'], $value['default'], '', ( $autoload ? 'yes' : 'no' ) ); |
|
196 | + foreach ($settings as $section) { |
|
197 | + foreach ($section->get_settings() as $value) { |
|
198 | + if (isset($value['default']) && isset($value['id'])) { |
|
199 | + $autoload = isset($value['autoload']) ? (bool) $value['autoload'] : true; |
|
200 | + add_option($value['id'], $value['default'], '', ($autoload ? 'yes' : 'no')); |
|
201 | 201 | } |
202 | 202 | } |
203 | 203 | } |
@@ -212,7 +212,7 @@ discard block |
||
212 | 212 | * @version 1.5.0 |
213 | 213 | */ |
214 | 214 | public static function add_rewrite_endpoint() { |
215 | - add_rewrite_endpoint( 'alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT ); |
|
215 | + add_rewrite_endpoint('alnp', EP_PERMALINK | EP_PAGES | EP_ATTACHMENT); |
|
216 | 216 | } // END add_rewrite_endpoint() |
217 | 217 | |
218 | 218 | /** |
@@ -9,17 +9,17 @@ discard block |
||
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 | 18 | // Make sure it is only a single site we are uninstalling from. |
19 | -if ( ! is_multisite() ) { |
|
20 | - $uninstall = get_option( 'auto_load_next_post_uninstall_data' ); |
|
19 | +if ( ! is_multisite()) { |
|
20 | + $uninstall = get_option('auto_load_next_post_uninstall_data'); |
|
21 | 21 | |
22 | - if ( ! empty( $uninstall ) ) { |
|
22 | + if ( ! empty($uninstall)) { |
|
23 | 23 | // Delete options |
24 | 24 | $wpdb->query("DELETE FROM $wpdb->options WHERE option_name LIKE 'auto_load_next_post_%'"); |
25 | 25 | |
@@ -29,10 +29,10 @@ discard block |
||
29 | 29 | } |
30 | 30 | |
31 | 31 | // Delete Install Date |
32 | -delete_site_option( 'auto_load_next_post_install_date' ); |
|
32 | +delete_site_option('auto_load_next_post_install_date'); |
|
33 | 33 | |
34 | 34 | // Delete Uninstall Data - Just to double check it has been removed. |
35 | -delete_option( 'auto_load_next_post_uninstall_data' ); |
|
35 | +delete_option('auto_load_next_post_uninstall_data'); |
|
36 | 36 | |
37 | 37 | // Clear any cached data that has been removed. |
38 | 38 | wp_cache_flush(); |
@@ -11,7 +11,7 @@ discard block |
||
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 | |
@@ -24,12 +24,12 @@ discard block |
||
24 | 24 | * @param string|array $var Data to sanitize. |
25 | 25 | * @return string|array * |
26 | 26 | */ |
27 | -if ( ! function_exists( 'auto_load_next_post_clean' ) ) { |
|
28 | - function auto_load_next_post_clean( $var ) { |
|
29 | - if ( is_array( $var ) ) { |
|
30 | - return array_map( 'auto_load_next_post_clean', $var ); |
|
27 | +if ( ! function_exists('auto_load_next_post_clean')) { |
|
28 | + function 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 | } |
@@ -44,60 +44,60 @@ discard block |
||
44 | 44 | * @param string $seconds Seconds in time. |
45 | 45 | * @return string |
46 | 46 | */ |
47 | -if ( ! function_exists( 'auto_load_next_post_seconds_to_words' ) ) { |
|
48 | - function auto_load_next_post_seconds_to_words( $seconds ) { |
|
47 | +if ( ! function_exists('auto_load_next_post_seconds_to_words')) { |
|
48 | + function auto_load_next_post_seconds_to_words($seconds) { |
|
49 | 49 | // Get the years. |
50 | - $years = ( intval( $seconds ) / YEAR_IN_SECONDS ) % 100; |
|
51 | - if ( $years > 1 ) { |
|
50 | + $years = (intval($seconds) / YEAR_IN_SECONDS) % 100; |
|
51 | + if ($years > 1) { |
|
52 | 52 | /* translators: Number of years */ |
53 | - return sprintf( __( '%s years', 'auto-load-next-post' ), $years ); |
|
54 | - } elseif ( $years > 0 ) { |
|
55 | - return __( 'a year', 'auto-load-next-post' ); |
|
53 | + return sprintf(__('%s years', 'auto-load-next-post'), $years); |
|
54 | + } elseif ($years > 0) { |
|
55 | + return __('a year', 'auto-load-next-post'); |
|
56 | 56 | } |
57 | 57 | |
58 | 58 | // Get the weeks. |
59 | - $weeks = ( intval( $seconds ) / WEEK_IN_SECONDS ) % 52; |
|
60 | - if ( $weeks > 1 ) { |
|
59 | + $weeks = (intval($seconds) / WEEK_IN_SECONDS) % 52; |
|
60 | + if ($weeks > 1) { |
|
61 | 61 | /* translators: Number of weeks */ |
62 | - return sprintf( __( '%s weeks', 'auto-load-next-post' ), $weeks ); |
|
63 | - } elseif ( $weeks > 0 ) { |
|
64 | - return __( 'a week', 'auto-load-next-post' ); |
|
62 | + return sprintf(__('%s weeks', 'auto-load-next-post'), $weeks); |
|
63 | + } elseif ($weeks > 0) { |
|
64 | + return __('a week', 'auto-load-next-post'); |
|
65 | 65 | } |
66 | 66 | |
67 | 67 | // Get the days. |
68 | - $days = ( intval( $seconds ) / DAY_IN_SECONDS ) % 7; |
|
69 | - if ( $days > 1 ) { |
|
68 | + $days = (intval($seconds) / DAY_IN_SECONDS) % 7; |
|
69 | + if ($days > 1) { |
|
70 | 70 | /* translators: Number of days */ |
71 | - return sprintf( __( '%s days', 'auto-load-next-post' ), $days ); |
|
72 | - } elseif ( $days > 0 ) { |
|
73 | - return __( 'a day', 'auto-load-next-post' ); |
|
71 | + return sprintf(__('%s days', 'auto-load-next-post'), $days); |
|
72 | + } elseif ($days > 0) { |
|
73 | + return __('a day', 'auto-load-next-post'); |
|
74 | 74 | } |
75 | 75 | |
76 | 76 | // Get the hours. |
77 | - $hours = ( intval( $seconds ) / HOUR_IN_SECONDS ) % 24; |
|
78 | - if ( $hours > 1 ) { |
|
77 | + $hours = (intval($seconds) / HOUR_IN_SECONDS) % 24; |
|
78 | + if ($hours > 1) { |
|
79 | 79 | /* translators: Number of hours */ |
80 | - return sprintf( __( '%s hours', 'auto-load-next-post' ), $hours ); |
|
81 | - } elseif ( $hours > 0 ) { |
|
82 | - return __( 'an hour', 'auto-load-next-post' ); |
|
80 | + return sprintf(__('%s hours', 'auto-load-next-post'), $hours); |
|
81 | + } elseif ($hours > 0) { |
|
82 | + return __('an hour', 'auto-load-next-post'); |
|
83 | 83 | } |
84 | 84 | |
85 | 85 | // Get the minutes. |
86 | - $minutes = ( intval( $seconds ) / MINUTE_IN_SECONDS ) % 60; |
|
87 | - if ( $minutes > 1 ) { |
|
86 | + $minutes = (intval($seconds) / MINUTE_IN_SECONDS) % 60; |
|
87 | + if ($minutes > 1) { |
|
88 | 88 | /* translators: Number of minutes */ |
89 | - return sprintf( __( '%s minutes', 'auto-load-next-post' ), $minutes ); |
|
90 | - } elseif ( $minutes > 0 ) { |
|
91 | - return __( 'a minute', 'auto-load-next-post' ); |
|
89 | + return sprintf(__('%s minutes', 'auto-load-next-post'), $minutes); |
|
90 | + } elseif ($minutes > 0) { |
|
91 | + return __('a minute', 'auto-load-next-post'); |
|
92 | 92 | } |
93 | 93 | |
94 | 94 | // Get the seconds. |
95 | - $seconds = intval( $seconds ) % 60; |
|
96 | - if ( $seconds > 1 ) { |
|
95 | + $seconds = intval($seconds) % 60; |
|
96 | + if ($seconds > 1) { |
|
97 | 97 | /* translators: Number of seconds */ |
98 | - return sprintf( __( '%s seconds', 'auto-load-next-post' ), $seconds ); |
|
99 | - } elseif ( $seconds > 0 ) { |
|
100 | - return __( 'a second', 'auto-load-next-post' ); |
|
98 | + return sprintf(__('%s seconds', 'auto-load-next-post'), $seconds); |
|
99 | + } elseif ($seconds > 0) { |
|
100 | + return __('a second', 'auto-load-next-post'); |
|
101 | 101 | } |
102 | 102 | } // END auto_load_next_post_seconds_to_words() |
103 | 103 | } |
@@ -10,12 +10,12 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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( alnp_get_random_page_permalink() ); ?>' ); |
|
70 | + wp.customize.previewer.previewUrl.set( '<?php echo esc_js(alnp_get_random_page_permalink()); ?>' ); |
|
71 | 71 | } |
72 | 72 | |
73 | 73 | } ); |
@@ -13,7 +13,7 @@ discard block |
||
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 | |
@@ -26,12 +26,12 @@ discard block |
||
26 | 26 | * @version 1.5.4 |
27 | 27 | * @global WP_Query $wp_query - The object information defining the current request and determines what type of query it's dealing with. See https://codex.wordpress.org/Class_Reference/WP_Query |
28 | 28 | */ |
29 | -if ( ! function_exists( 'auto_load_next_post_template_redirect' ) ) { |
|
29 | +if ( ! function_exists('auto_load_next_post_template_redirect')) { |
|
30 | 30 | function auto_load_next_post_template_redirect() { |
31 | 31 | global $wp_query; |
32 | 32 | |
33 | 33 | // If this is not a request for alnp or a singular object then bail |
34 | - if ( ! isset( $wp_query->query_vars['alnp'] ) || ! is_singular() ) { |
|
34 | + if ( ! isset($wp_query->query_vars['alnp']) || ! is_singular()) { |
|
35 | 35 | return; |
36 | 36 | } |
37 | 37 | |
@@ -40,28 +40,28 @@ discard block |
||
40 | 40 | * If theme does not have a template file for Auto Load Next Post, |
41 | 41 | * the plugin will load a default template. |
42 | 42 | */ |
43 | - $child_path = get_stylesheet_directory() . '/' . AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
44 | - $template_path = get_template_directory() . '/' . AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
43 | + $child_path = get_stylesheet_directory().'/'.AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
44 | + $template_path = get_template_directory().'/'.AUTO_LOAD_NEXT_POST_TEMPLATE_PATH; |
|
45 | 45 | $default_path = AUTO_LOAD_NEXT_POST_FILE_PATH; |
46 | 46 | |
47 | - if ( file_exists( $child_path . 'content-alnp.php' ) ) { |
|
48 | - $template_redirect = $child_path . 'content-alnp.php'; |
|
47 | + if (file_exists($child_path.'content-alnp.php')) { |
|
48 | + $template_redirect = $child_path.'content-alnp.php'; |
|
49 | 49 | } |
50 | - else if( file_exists( $template_path . 'content-alnp.php') ) { |
|
51 | - $template_redirect = $template_path . 'content-alnp.php'; |
|
50 | + else if (file_exists($template_path.'content-alnp.php')) { |
|
51 | + $template_redirect = $template_path.'content-alnp.php'; |
|
52 | 52 | } |
53 | - else if( file_exists( $default_path . '/template/content-alnp.php' ) ) { |
|
54 | - $template_redirect = $default_path . '/template/content-alnp.php'; |
|
53 | + else if (file_exists($default_path.'/template/content-alnp.php')) { |
|
54 | + $template_redirect = $default_path.'/template/content-alnp.php'; |
|
55 | 55 | } |
56 | 56 | |
57 | - $template_redirect = apply_filters( 'alnp_template_redirect', $template_redirect ); |
|
57 | + $template_redirect = apply_filters('alnp_template_redirect', $template_redirect); |
|
58 | 58 | |
59 | - include( $template_redirect ); |
|
59 | + include($template_redirect); |
|
60 | 60 | |
61 | 61 | exit; |
62 | 62 | } // END auto_load_next_post_template_redirect() |
63 | 63 | } |
64 | -add_action( 'template_redirect', 'auto_load_next_post_template_redirect' ); |
|
64 | +add_action('template_redirect', 'auto_load_next_post_template_redirect'); |
|
65 | 65 | |
66 | 66 | /** |
67 | 67 | * Adds the comments template after the post content. |
@@ -70,15 +70,15 @@ discard block |
||
70 | 70 | * @since 1.4.8 |
71 | 71 | * @version 1.5.4 |
72 | 72 | */ |
73 | -if ( ! function_exists( 'auto_load_next_post_comments' ) ) { |
|
73 | +if ( ! function_exists('auto_load_next_post_comments')) { |
|
74 | 74 | function auto_load_next_post_comments() { |
75 | 75 | // If comments are open or we have at least one comment, load up the comment template. |
76 | - if ( comments_open() || get_comments_number() ) : |
|
76 | + if (comments_open() || get_comments_number()) : |
|
77 | 77 | comments_template(); |
78 | 78 | endif; |
79 | 79 | } // END auto_load_next_post_comments() |
80 | 80 | } |
81 | -add_action( 'alnp_load_after_content', 'auto_load_next_post_comments', 1, 5 ); |
|
81 | +add_action('alnp_load_after_content', 'auto_load_next_post_comments', 1, 5); |
|
82 | 82 | |
83 | 83 | /** |
84 | 84 | * Adds the post navigation for the previous link only after the post content. |
@@ -87,16 +87,16 @@ discard block |
||
87 | 87 | * @since 1.4.8 |
88 | 88 | * @version 1.5.4 |
89 | 89 | */ |
90 | -if ( ! function_exists( 'auto_load_next_post_navigation' ) ) { |
|
90 | +if ( ! function_exists('auto_load_next_post_navigation')) { |
|
91 | 91 | function auto_load_next_post_navigation() { |
92 | 92 | ?> |
93 | 93 | <nav class="navigation post-navigation" role="navigation"> |
94 | - <span class="nav-previous"><?php previous_post_link( '%link', '<span class="meta-nav">' . _x( '←', 'Previous post link', 'auto-load-next-post' ) . '</span> %title' ); ?></span> |
|
94 | + <span class="nav-previous"><?php previous_post_link('%link', '<span class="meta-nav">'._x('←', 'Previous post link', 'auto-load-next-post').'</span> %title'); ?></span> |
|
95 | 95 | </nav> |
96 | 96 | <?php |
97 | 97 | } // END auto_load_next_post_navigation() |
98 | 98 | } |
99 | -add_action( 'alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10 ); |
|
99 | +add_action('alnp_load_after_content', 'auto_load_next_post_navigation', 1, 10); |
|
100 | 100 | |
101 | 101 | /** |
102 | 102 | * Returns the permalink of a random page |
@@ -105,8 +105,8 @@ discard block |
||
105 | 105 | * @param string $post_type - Default is post. |
106 | 106 | * @return int|boolean |
107 | 107 | */ |
108 | -if ( ! function_exists( 'alnp_get_random_page_permalink' ) ) { |
|
109 | - function alnp_get_random_page_permalink( $post_type = 'post' ) { |
|
108 | +if ( ! function_exists('alnp_get_random_page_permalink')) { |
|
109 | + function alnp_get_random_page_permalink($post_type = 'post') { |
|
110 | 110 | $args = array( |
111 | 111 | 'post_type' => $post_type, |
112 | 112 | 'post_status' => 'publish', |
@@ -114,13 +114,13 @@ discard block |
||
114 | 114 | 'posts_per_page' => 1 |
115 | 115 | ); |
116 | 116 | |
117 | - $query = new WP_Query( $args ); |
|
117 | + $query = new WP_Query($args); |
|
118 | 118 | |
119 | - if ( $query->have_posts() ) { |
|
120 | - while ( $query->have_posts() ) : $query->the_post(); |
|
119 | + if ($query->have_posts()) { |
|
120 | + while ($query->have_posts()) : $query->the_post(); |
|
121 | 121 | $id = get_the_ID(); |
122 | 122 | |
123 | - return get_permalink( $id ); |
|
123 | + return get_permalink($id); |
|
124 | 124 | endwhile; |
125 | 125 | } |
126 | 126 | else { |
@@ -25,7 +25,7 @@ discard block |
||
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 |
||
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 |
||
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 |
||
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 |
||
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 |
||
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,8 +133,8 @@ discard block |
||
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 | 139 | |
140 | 140 | $this->define('AUTO_LOAD_NEXT_POST_WP_VERSION_REQUIRE', '4.4'); |
@@ -158,9 +158,9 @@ discard block |
||
158 | 158 | * @access private |
159 | 159 | * @since 1.4.3 |
160 | 160 | */ |
161 | - private function define( $name, $value ) { |
|
162 | - if ( ! defined( $name ) ) { |
|
163 | - define( $name, $value ); |
|
161 | + private function define($name, $value) { |
|
162 | + if ( ! defined($name)) { |
|
163 | + define($name, $value); |
|
164 | 164 | } |
165 | 165 | } // END define() |
166 | 166 | |
@@ -173,25 +173,25 @@ discard block |
||
173 | 173 | * @return void |
174 | 174 | */ |
175 | 175 | public function includes() { |
176 | - include_once( dirname( __FILE__ ) . '/includes/class-alnp-autoloader.php' ); // Autoloader. |
|
177 | - include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-conditional-functions.php' ); // Conditional functions. |
|
178 | - include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-formatting-functions.php' ); // Formatting functions. |
|
179 | - include_once( dirname( __FILE__ ) . '/includes/auto-load-next-post-core-functions.php' ); // Contains core functions for the front/back end. |
|
176 | + include_once(dirname(__FILE__).'/includes/class-alnp-autoloader.php'); // Autoloader. |
|
177 | + include_once(dirname(__FILE__).'/includes/auto-load-next-post-conditional-functions.php'); // Conditional functions. |
|
178 | + include_once(dirname(__FILE__).'/includes/auto-load-next-post-formatting-functions.php'); // Formatting functions. |
|
179 | + include_once(dirname(__FILE__).'/includes/auto-load-next-post-core-functions.php'); // Contains core functions for the front/back end. |
|
180 | 180 | |
181 | 181 | // Include theme support. |
182 | 182 | $this->alnp_include_theme_support(); |
183 | 183 | |
184 | 184 | // Customizer. |
185 | - include_once( dirname( __FILE__ ) . '/includes/customizer/class-alnp-customizer.php' ); |
|
186 | - include_once( dirname( __FILE__ ) . '/includes/customizer/class-alnp-customizer-scripts.php' ); |
|
185 | + include_once(dirname(__FILE__).'/includes/customizer/class-alnp-customizer.php'); |
|
186 | + include_once(dirname(__FILE__).'/includes/customizer/class-alnp-customizer-scripts.php'); |
|
187 | 187 | |
188 | 188 | // Include admin class to handle all back-end functions. |
189 | - if ( is_admin() ) { |
|
190 | - include_once( dirname( __FILE__ ) . '/includes/admin/class-alnp-admin.php' ); // Admin section. |
|
189 | + if (is_admin()) { |
|
190 | + include_once(dirname(__FILE__).'/includes/admin/class-alnp-admin.php'); // Admin section. |
|
191 | 191 | } |
192 | 192 | |
193 | 193 | // Install. |
194 | - require_once( dirname( __FILE__ ) . '/includes/class-alnp-install.php' ); |
|
194 | + require_once(dirname(__FILE__).'/includes/class-alnp-install.php'); |
|
195 | 195 | } // END includes() |
196 | 196 | |
197 | 197 | /** |
@@ -201,45 +201,45 @@ discard block |
||
201 | 201 | * @since 1.5.0 |
202 | 202 | */ |
203 | 203 | public function alnp_include_theme_support() { |
204 | - if ( is_alnp_active_theme( array( 'make', 'understrap', 'storefront', 'twentyseventeen', 'twentysixteen', 'twentyfifteen', 'twentyfourteen', 'twentythirteen', 'twentytwelve', 'twentyeleven', 'twentyten' ) ) ) { |
|
204 | + if (is_alnp_active_theme(array('make', 'understrap', 'storefront', 'twentyseventeen', 'twentysixteen', 'twentyfifteen', 'twentyfourteen', 'twentythirteen', 'twentytwelve', 'twentyeleven', 'twentyten'))) { |
|
205 | 205 | |
206 | - switch ( get_template() ) { |
|
206 | + switch (get_template()) { |
|
207 | 207 | case 'twentyten': |
208 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-ten.php' ); |
|
208 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-ten.php'); |
|
209 | 209 | break; |
210 | 210 | case 'twentyeleven': |
211 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-eleven.php' ); |
|
211 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-eleven.php'); |
|
212 | 212 | break; |
213 | 213 | case 'twentytwelve': |
214 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-twelve.php' ); |
|
214 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-twelve.php'); |
|
215 | 215 | break; |
216 | 216 | case 'twentythirteen': |
217 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-thirteen.php' ); |
|
217 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-thirteen.php'); |
|
218 | 218 | break; |
219 | 219 | case 'twentyfourteen': |
220 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-fourteen.php' ); |
|
220 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-fourteen.php'); |
|
221 | 221 | break; |
222 | 222 | case 'twentyfifteen': |
223 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-fifteen.php' ); |
|
223 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-fifteen.php'); |
|
224 | 224 | break; |
225 | 225 | case 'twentysixteen': |
226 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-sixteen.php' ); |
|
226 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-sixteen.php'); |
|
227 | 227 | break; |
228 | 228 | case 'twentyseventeen': |
229 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-twenty-seventeen.php' ); |
|
229 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-twenty-seventeen.php'); |
|
230 | 230 | break; |
231 | 231 | case 'storefront': |
232 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-storefront.php' ); |
|
232 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-storefront.php'); |
|
233 | 233 | break; |
234 | 234 | case 'understrap': |
235 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-understrap.php' ); |
|
235 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-understrap.php'); |
|
236 | 236 | break; |
237 | 237 | case 'make': |
238 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-make.php' ); |
|
238 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-make.php'); |
|
239 | 239 | break; |
240 | 240 | } // END switch() |
241 | 241 | |
242 | - include_once( dirname( __FILE__ ) . '/includes/theme-support/class-alnp-theme-support.php' ); |
|
242 | + include_once(dirname(__FILE__).'/includes/theme-support/class-alnp-theme-support.php'); |
|
243 | 243 | |
244 | 244 | } |
245 | 245 | } // END alnp_include_theme_support() |
@@ -256,7 +256,7 @@ discard block |
||
256 | 256 | * @return void |
257 | 257 | */ |
258 | 258 | public function load_plugin_textdomain() { |
259 | - load_plugin_textdomain( 'auto-load-next-post', false, dirname( plugin_basename( __FILE__ ) ) . '/languages/' ); |
|
259 | + load_plugin_textdomain('auto-load-next-post', false, dirname(plugin_basename(__FILE__)).'/languages/'); |
|
260 | 260 | } // END load_plugin_textdomain() |
261 | 261 | |
262 | 262 | /** |
@@ -268,32 +268,32 @@ discard block |
||
268 | 268 | */ |
269 | 269 | public function alnp_enqueue_scripts() { |
270 | 270 | // Load the Javascript if found as a singluar post and the user is not a bot. |
271 | - if ( !alnp_is_bot() && is_singular() && get_post_type() == 'post' ) { |
|
271 | + if ( ! alnp_is_bot() && is_singular() && get_post_type() == 'post') { |
|
272 | 272 | // This helps the plugin decide to load the JavaScript in the footer or not. |
273 | - $load_in_footer = get_option( 'auto_load_next_post_js_footer' ); |
|
273 | + $load_in_footer = get_option('auto_load_next_post_js_footer'); |
|
274 | 274 | |
275 | - $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 ); |
|
275 | + $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); |
|
276 | 276 | |
277 | 277 | // Only load History.js when not in the customizer. |
278 | - if ( ! is_customize_preview() ) { |
|
279 | - $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 ); |
|
278 | + if ( ! is_customize_preview()) { |
|
279 | + $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); |
|
280 | 280 | } |
281 | 281 | |
282 | - $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 ); |
|
282 | + $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); |
|
283 | 283 | |
284 | 284 | // Variables for the JavaScript |
285 | - wp_localize_script( 'auto-load-next-post-script', 'auto_load_next_post_params', array( |
|
285 | + wp_localize_script('auto-load-next-post-script', 'auto_load_next_post_params', array( |
|
286 | 286 | 'alnp_version' => AUTO_LOAD_NEXT_POST_VERSION, |
287 | - 'alnp_content_container' => get_option( 'auto_load_next_post_content_container' ), |
|
288 | - 'alnp_title_selector' => get_option( 'auto_load_next_post_title_selector' ), |
|
289 | - 'alnp_navigation_container' => get_option( 'auto_load_next_post_navigation_container' ), |
|
290 | - 'alnp_comments_container' => get_option( 'auto_load_next_post_comments_container' ), |
|
291 | - 'alnp_remove_comments' => get_option( 'auto_load_next_post_remove_comments' ), |
|
292 | - 'alnp_google_analytics' => get_option( 'auto_load_next_post_google_analytics' ), |
|
293 | - 'alnp_event_on_load' => get_option( 'auto_load_next_post_on_load_event' ), |
|
294 | - 'alnp_event_on_entering' => get_option( 'auto_load_next_post_on_entering_event' ), |
|
287 | + 'alnp_content_container' => get_option('auto_load_next_post_content_container'), |
|
288 | + 'alnp_title_selector' => get_option('auto_load_next_post_title_selector'), |
|
289 | + 'alnp_navigation_container' => get_option('auto_load_next_post_navigation_container'), |
|
290 | + 'alnp_comments_container' => get_option('auto_load_next_post_comments_container'), |
|
291 | + 'alnp_remove_comments' => get_option('auto_load_next_post_remove_comments'), |
|
292 | + 'alnp_google_analytics' => get_option('auto_load_next_post_google_analytics'), |
|
293 | + 'alnp_event_on_load' => get_option('auto_load_next_post_on_load_event'), |
|
294 | + 'alnp_event_on_entering' => get_option('auto_load_next_post_on_entering_event'), |
|
295 | 295 | 'alnp_is_customizer' => $this->is_alnp_using_customizer(), |
296 | - ) ); |
|
296 | + )); |
|
297 | 297 | } // END if is_singular() && get_post_type() |
298 | 298 | } // END alnp_enqueue_scripts() |
299 | 299 | |
@@ -306,7 +306,7 @@ discard block |
||
306 | 306 | * @return string|boolean |
307 | 307 | */ |
308 | 308 | public static function is_alnp_using_customizer() { |
309 | - if ( is_customize_preview() ) { |
|
309 | + if (is_customize_preview()) { |
|
310 | 310 | return "yes"; |
311 | 311 | } |
312 | 312 | |
@@ -328,21 +328,21 @@ discard block |
||
328 | 328 | * @param bool $footer Optional, can set the JavaScript to load in the footer instead. |
329 | 329 | * @global string $wp_version |
330 | 330 | */ |
331 | - public static function load_file( $name, $file_path, $is_script = false, $support = array(), $version = '', $footer = false ) { |
|
331 | + public static function load_file($name, $file_path, $is_script = false, $support = array(), $version = '', $footer = false) { |
|
332 | 332 | global $wp_version; |
333 | 333 | |
334 | - $url = AUTO_LOAD_NEXT_POST_URL_PATH . $file_path; // URL to the file. |
|
334 | + $url = AUTO_LOAD_NEXT_POST_URL_PATH.$file_path; // URL to the file. |
|
335 | 335 | |
336 | - if ( file_exists( AUTO_LOAD_NEXT_POST_FILE_PATH . $file_path ) ) { |
|
337 | - if ( $is_script ) { |
|
338 | - if ( !wp_script_is( $name, 'registered' ) ) { |
|
339 | - wp_register_script( $name, $url, $support, $version, $footer ); |
|
340 | - wp_enqueue_script( $name ); |
|
336 | + if (file_exists(AUTO_LOAD_NEXT_POST_FILE_PATH.$file_path)) { |
|
337 | + if ($is_script) { |
|
338 | + if ( ! wp_script_is($name, 'registered')) { |
|
339 | + wp_register_script($name, $url, $support, $version, $footer); |
|
340 | + wp_enqueue_script($name); |
|
341 | 341 | } |
342 | 342 | } else { |
343 | - if ( !wp_style_is( $name, 'registered' ) ) { |
|
344 | - wp_register_style( $name, $url ); |
|
345 | - wp_enqueue_style( $name ); |
|
343 | + if ( ! wp_style_is($name, 'registered')) { |
|
344 | + wp_register_style($name, $url); |
|
345 | + wp_enqueue_style($name); |
|
346 | 346 | } |
347 | 347 | } // end if |
348 | 348 | } // end if |
@@ -11,11 +11,11 @@ discard block |
||
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' ) ) { |
|
18 | +if ( ! class_exists('Auto_Load_Next_Post_Admin')) { |
|
19 | 19 | |
20 | 20 | class Auto_Load_Next_Post_Admin { |
21 | 21 | |
@@ -28,23 +28,23 @@ discard block |
||
28 | 28 | */ |
29 | 29 | public function __construct() { |
30 | 30 | // Include classes. |
31 | - add_action( 'admin_init', array( $this, 'includes' ), 10 ); |
|
31 | + add_action('admin_init', array($this, 'includes'), 10); |
|
32 | 32 | |
33 | 33 | // Register scripts and styles for settings page. |
34 | - add_action( 'admin_enqueue_scripts', array( $this, 'admin_styles' ), 10 ); |
|
35 | - add_action( 'admin_enqueue_scripts', array( $this, 'admin_scripts' ), 10 ); |
|
34 | + add_action('admin_enqueue_scripts', array($this, 'admin_styles'), 10); |
|
35 | + add_action('admin_enqueue_scripts', array($this, 'admin_scripts'), 10); |
|
36 | 36 | |
37 | 37 | // Add a message in the WP Privacy Policy Guide page. |
38 | - add_action( 'admin_init', array( $this, 'add_privacy_policy_guide_content' ) ); |
|
38 | + add_action('admin_init', array($this, 'add_privacy_policy_guide_content')); |
|
39 | 39 | |
40 | 40 | // Add settings page. |
41 | - add_action( 'admin_menu', array( $this, 'admin_menu' ), 9 ); |
|
41 | + add_action('admin_menu', array($this, 'admin_menu'), 9); |
|
42 | 42 | |
43 | 43 | // Filters |
44 | - add_filter( 'plugin_action_links_' . plugin_basename( AUTO_LOAD_NEXT_POST_FILE ), array( $this, 'plugin_action_links' ) ); |
|
45 | - add_filter( 'plugin_row_meta', array( $this, 'plugin_row_meta'), 10, 3 ); |
|
46 | - add_filter( 'admin_footer_text', array( $this, 'admin_footer_text' ) ); |
|
47 | - add_filter( 'update_footer', array( $this, 'update_footer'), 15 ); |
|
44 | + add_filter('plugin_action_links_'.plugin_basename(AUTO_LOAD_NEXT_POST_FILE), array($this, 'plugin_action_links')); |
|
45 | + add_filter('plugin_row_meta', array($this, 'plugin_row_meta'), 10, 3); |
|
46 | + add_filter('admin_footer_text', array($this, 'admin_footer_text')); |
|
47 | + add_filter('update_footer', array($this, 'update_footer'), 15); |
|
48 | 48 | } // END __construct() |
49 | 49 | |
50 | 50 | /** |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | */ |
56 | 56 | public function includes() { |
57 | 57 | // Classes we only need if the ajax is not-ajax |
58 | - if ( ! auto_load_next_post_is_ajax() ) { |
|
59 | - include( dirname( __FILE__ ) . '/class-alnp-admin-notices.php' ); // Plugin Notices |
|
60 | - include( dirname( __FILE__ ) . '/class-alnp-admin-help.php' ); // Plugin Help Tab |
|
58 | + if ( ! auto_load_next_post_is_ajax()) { |
|
59 | + include(dirname(__FILE__).'/class-alnp-admin-notices.php'); // Plugin Notices |
|
60 | + include(dirname(__FILE__).'/class-alnp-admin-help.php'); // Plugin Help Tab |
|
61 | 61 | } |
62 | 62 | } // END includes() |
63 | 63 | |
@@ -74,16 +74,16 @@ discard block |
||
74 | 74 | $screen = get_current_screen(); |
75 | 75 | $screen_id = $screen ? $screen->id : ''; |
76 | 76 | |
77 | - Auto_Load_Next_Post::load_file( AUTO_LOAD_NEXT_POST_SLUG . '_admin', '/assets/css/admin/auto-load-next-post' . AUTO_LOAD_NEXT_POST_SCRIPT_MODE . '.css' ); |
|
77 | + Auto_Load_Next_Post::load_file(AUTO_LOAD_NEXT_POST_SLUG.'_admin', '/assets/css/admin/auto-load-next-post'.AUTO_LOAD_NEXT_POST_SCRIPT_MODE.'.css'); |
|
78 | 78 | |
79 | - if ( $screen->id == 'settings_page_auto-load-next-post-settings' ) { |
|
79 | + if ($screen->id == 'settings_page_auto-load-next-post-settings') { |
|
80 | 80 | // Select2 - Make sure that we remove other registered Select2 to prevent styling issues. |
81 | - if ( wp_script_is( 'select2', 'registered' ) ) { |
|
82 | - wp_dequeue_style( 'select2' ); |
|
83 | - wp_deregister_style( 'select2' ); |
|
81 | + if (wp_script_is('select2', 'registered')) { |
|
82 | + wp_dequeue_style('select2'); |
|
83 | + wp_deregister_style('select2'); |
|
84 | 84 | } |
85 | 85 | |
86 | - Auto_Load_Next_Post::load_file( 'select2', '/assets/css/libs/select2' . AUTO_LOAD_NEXT_POST_SCRIPT_MODE . '.css' ); |
|
86 | + Auto_Load_Next_Post::load_file('select2', '/assets/css/libs/select2'.AUTO_LOAD_NEXT_POST_SCRIPT_MODE.'.css'); |
|
87 | 87 | } |
88 | 88 | } // END admin_styles() |
89 | 89 | |
@@ -98,24 +98,24 @@ discard block |
||
98 | 98 | $screen = get_current_screen(); |
99 | 99 | $screen_id = $screen ? $screen->id : ''; |
100 | 100 | |
101 | - if ( $screen->id == 'settings_page_auto-load-next-post-settings' ) { |
|
101 | + if ($screen->id == 'settings_page_auto-load-next-post-settings') { |
|
102 | 102 | // Select2 - Make sure that we remove other registered Select2 to prevent plugin conflict issues. |
103 | - if ( wp_script_is( 'select2', 'registered' ) ) { |
|
104 | - wp_dequeue_script( 'select2' ); |
|
105 | - wp_deregister_script( 'select2' ); |
|
103 | + if (wp_script_is('select2', 'registered')) { |
|
104 | + wp_dequeue_script('select2'); |
|
105 | + wp_deregister_script('select2'); |
|
106 | 106 | } |
107 | 107 | |
108 | 108 | // Load Select2 |
109 | - Auto_Load_Next_Post::load_file( 'select2', '/assets/js/libs/select2' . AUTO_LOAD_NEXT_POST_SCRIPT_MODE . '.js', true, array( 'jquery' ), '4.0.5', true ); |
|
109 | + Auto_Load_Next_Post::load_file('select2', '/assets/js/libs/select2'.AUTO_LOAD_NEXT_POST_SCRIPT_MODE.'.js', true, array('jquery'), '4.0.5', true); |
|
110 | 110 | |
111 | 111 | // Load plugin settings. |
112 | - Auto_Load_Next_Post::load_file( AUTO_LOAD_NEXT_POST_SLUG . '_admin', '/assets/js/admin/settings' . AUTO_LOAD_NEXT_POST_SCRIPT_MODE . '.js', true, array( 'jquery' ), AUTO_LOAD_NEXT_POST_VERSION, true ); |
|
112 | + Auto_Load_Next_Post::load_file(AUTO_LOAD_NEXT_POST_SLUG.'_admin', '/assets/js/admin/settings'.AUTO_LOAD_NEXT_POST_SCRIPT_MODE.'.js', true, array('jquery'), AUTO_LOAD_NEXT_POST_VERSION, true); |
|
113 | 113 | |
114 | 114 | // Variables for Admin JavaScripts |
115 | - wp_localize_script( AUTO_LOAD_NEXT_POST_SLUG . '_admin', 'alnp_settings_params', array( |
|
115 | + wp_localize_script(AUTO_LOAD_NEXT_POST_SLUG.'_admin', 'alnp_settings_params', array( |
|
116 | 116 | 'is_rtl' => is_rtl() ? 'rtl' : 'ltr', |
117 | - 'i18n_nav_warning' => esc_html__( 'The changes you made will be lost if you navigate away from this page.', 'auto-load-next-post' ), |
|
118 | - ) ); |
|
117 | + 'i18n_nav_warning' => esc_html__('The changes you made will be lost if you navigate away from this page.', 'auto-load-next-post'), |
|
118 | + )); |
|
119 | 119 | } |
120 | 120 | } // END admin_scripts() |
121 | 121 | |
@@ -127,8 +127,8 @@ discard block |
||
127 | 127 | * @static |
128 | 128 | */ |
129 | 129 | public static function add_privacy_policy_guide_content() { |
130 | - if ( function_exists( 'wp_add_privacy_policy_content' ) ) { |
|
131 | - wp_add_privacy_policy_content( esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), self::get_privacy_policy_guide_message() ); |
|
130 | + if (function_exists('wp_add_privacy_policy_content')) { |
|
131 | + wp_add_privacy_policy_content(esc_html__('Auto Load Next Post', 'auto-load-next-post'), self::get_privacy_policy_guide_message()); |
|
132 | 132 | } |
133 | 133 | } // END add_privacy_policy_guide_content() |
134 | 134 | |
@@ -143,9 +143,9 @@ discard block |
||
143 | 143 | protected static function get_privacy_policy_guide_message() { |
144 | 144 | $content = ' |
145 | 145 | <div contenteditable="false">' . |
146 | - '<p class="wp-policy-help">' . |
|
147 | - sprintf( __( '%s does not collect, store or share any personal data.', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) . |
|
148 | - '</p>' . |
|
146 | + '<p class="wp-policy-help">'. |
|
147 | + sprintf(__('%s does not collect, store or share any personal data.', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')). |
|
148 | + '</p>'. |
|
149 | 149 | '</div>'; |
150 | 150 | |
151 | 151 | return $content; |
@@ -160,14 +160,14 @@ discard block |
||
160 | 160 | */ |
161 | 161 | public function admin_menu() { |
162 | 162 | $settings_page = add_options_page( |
163 | - sprintf( __( '%s Settings', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ), |
|
164 | - esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ), |
|
163 | + sprintf(__('%s Settings', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')), |
|
164 | + esc_html__('Auto Load Next Post', 'auto-load-next-post'), |
|
165 | 165 | 'manage_options', |
166 | 166 | 'auto-load-next-post-settings', |
167 | - array( $this, 'settings_page' ) |
|
167 | + array($this, 'settings_page') |
|
168 | 168 | ); |
169 | 169 | |
170 | - add_action( 'load-' . $settings_page, array( $this, 'settings_page_init' ) ); |
|
170 | + add_action('load-'.$settings_page, array($this, 'settings_page_init')); |
|
171 | 171 | } // END admin_menu() |
172 | 172 | |
173 | 173 | /** |
@@ -182,29 +182,29 @@ discard block |
||
182 | 182 | global $current_tab, $current_section; |
183 | 183 | |
184 | 184 | // Include settings pages. |
185 | - include_once( dirname( __FILE__ ) . '/class-alnp-admin-settings.php' ); |
|
185 | + include_once(dirname(__FILE__).'/class-alnp-admin-settings.php'); |
|
186 | 186 | |
187 | 187 | Auto_Load_Next_Post_Admin_Settings::get_settings_pages(); |
188 | 188 | |
189 | 189 | // Get current tab/section. |
190 | - $current_tab = empty( $_GET['tab'] ) ? 'theme-selectors' : sanitize_title( wp_unslash( $_GET['tab'] ) ); |
|
191 | - $current_section = empty( $_REQUEST['section'] ) ? '' : sanitize_title( wp_unslash( $_REQUEST['section'] ) ); |
|
190 | + $current_tab = empty($_GET['tab']) ? 'theme-selectors' : sanitize_title(wp_unslash($_GET['tab'])); |
|
191 | + $current_section = empty($_REQUEST['section']) ? '' : sanitize_title(wp_unslash($_REQUEST['section'])); |
|
192 | 192 | |
193 | 193 | // Save settings if data has been posted. |
194 | - if ( apply_filters( '' !== $current_section ? "auto_load_next_post_save_settings_{$current_tab}_{$current_section}" : "auto_load_next_post_save_settings_{$current_tab}", ! empty( $_POST ) ) ) { |
|
194 | + if (apply_filters('' !== $current_section ? "auto_load_next_post_save_settings_{$current_tab}_{$current_section}" : "auto_load_next_post_save_settings_{$current_tab}", ! empty($_POST))) { |
|
195 | 195 | Auto_Load_Next_Post_Admin_Settings::save(); |
196 | 196 | } |
197 | 197 | |
198 | 198 | // Add any posted messages. |
199 | - if ( ! empty( $_GET['auto_load_next_post_error'] ) ) { |
|
200 | - Auto_Load_Next_Post_Admin_Settings::add_error( wp_kses_post( wp_unslash( $_GET['auto_load_next_post_error'] ) ) ); |
|
199 | + if ( ! empty($_GET['auto_load_next_post_error'])) { |
|
200 | + Auto_Load_Next_Post_Admin_Settings::add_error(wp_kses_post(wp_unslash($_GET['auto_load_next_post_error']))); |
|
201 | 201 | } |
202 | 202 | |
203 | - if ( ! empty( $_GET['auto_load_next_post_message'] ) ) { |
|
204 | - Auto_Load_Next_Post_Admin_Settings::add_message( wp_kses_post( wp_unslash( $_GET['auto_load_next_post_message'] ) ) ); |
|
203 | + if ( ! empty($_GET['auto_load_next_post_message'])) { |
|
204 | + Auto_Load_Next_Post_Admin_Settings::add_message(wp_kses_post(wp_unslash($_GET['auto_load_next_post_message']))); |
|
205 | 205 | } |
206 | 206 | |
207 | - do_action( 'auto_load_next_post_settings_page_init' ); |
|
207 | + do_action('auto_load_next_post_settings_page_init'); |
|
208 | 208 | } // END settings_page_init() |
209 | 209 | |
210 | 210 | /** |
@@ -214,7 +214,7 @@ discard block |
||
214 | 214 | * @since 1.0.0 |
215 | 215 | */ |
216 | 216 | public function settings_page() { |
217 | - include_once( dirname( __FILE__ ) . '/class-alnp-admin-settings.php' ); |
|
217 | + include_once(dirname(__FILE__).'/class-alnp-admin-settings.php'); |
|
218 | 218 | |
219 | 219 | Auto_Load_Next_Post_Admin_Settings::output(); |
220 | 220 | } // END settings_page() |
@@ -228,18 +228,18 @@ discard block |
||
228 | 228 | * @param array $links |
229 | 229 | * @return array $links |
230 | 230 | */ |
231 | - public function plugin_action_links( $links ) { |
|
231 | + public function plugin_action_links($links) { |
|
232 | 232 | $plugin_action_links = array(); |
233 | 233 | |
234 | - if ( current_user_can( 'manage_options' ) ) { |
|
234 | + if (current_user_can('manage_options')) { |
|
235 | 235 | // Checks if Auto Load Next Post Pro has been installed. |
236 | - if ( ! is_alnp_pro_version_installed() ) { |
|
237 | - $plugin_action_links['go-pro'] = '<a href="' . esc_url( AUTO_LOAD_NEXT_POST_STORE_URL . 'pro/?utm_source=plugin&utm_medium=link&utm_campaign=plugins-page' ) . '" target="_blank" style="color:green; font-weight:bold;">' . __( 'Sign up for Pro', 'auto-load-next-post' ) . '</a>'; |
|
236 | + if ( ! is_alnp_pro_version_installed()) { |
|
237 | + $plugin_action_links['go-pro'] = '<a href="'.esc_url(AUTO_LOAD_NEXT_POST_STORE_URL.'pro/?utm_source=plugin&utm_medium=link&utm_campaign=plugins-page').'" target="_blank" style="color:green; font-weight:bold;">'.__('Sign up for Pro', 'auto-load-next-post').'</a>'; |
|
238 | 238 | } |
239 | 239 | |
240 | - $plugin_action_links['settings'] = '<a href="' . admin_url( 'options-general.php?page=auto-load-next-post-settings' ) . '">' . __( 'Settings', 'auto-load-next-post' ) . '</a>'; |
|
240 | + $plugin_action_links['settings'] = '<a href="'.admin_url('options-general.php?page=auto-load-next-post-settings').'">'.__('Settings', 'auto-load-next-post').'</a>'; |
|
241 | 241 | |
242 | - return array_merge( $plugin_action_links, $links ); |
|
242 | + return array_merge($plugin_action_links, $links); |
|
243 | 243 | } |
244 | 244 | |
245 | 245 | return $links; |
@@ -256,17 +256,17 @@ discard block |
||
256 | 256 | * @param array $data Plugin Information |
257 | 257 | * @return array $links |
258 | 258 | */ |
259 | - public function plugin_row_meta( $links, $file, $data ) { |
|
260 | - if ( $file == plugin_basename( AUTO_LOAD_NEXT_POST_FILE ) ) { |
|
261 | - $links[ 1 ] = sprintf( __( 'Developed By %s', 'auto-load-next-post' ), '<a href="' . $data[ 'AuthorURI' ] . '">' . $data[ 'Author' ] . '</a>' ); |
|
259 | + public function plugin_row_meta($links, $file, $data) { |
|
260 | + if ($file == plugin_basename(AUTO_LOAD_NEXT_POST_FILE)) { |
|
261 | + $links[1] = sprintf(__('Developed By %s', 'auto-load-next-post'), '<a href="'.$data['AuthorURI'].'">'.$data['Author'].'</a>'); |
|
262 | 262 | |
263 | 263 | $row_meta = array( |
264 | - 'docs' => '<a href="' . esc_url( AUTO_LOAD_NEXT_POST_STORE_URL . 'documentation/?utm_source=plugin&utm_medium=link&utm_campaign=plugins-page' ) . '" aria-label="' . esc_attr__( 'View Auto Load Next Post Documentation', 'auto-load-next-post' ) . '" target="_blank">' . esc_attr__( 'Documentation', 'auto-load-next-post' ) . '</a>', |
|
265 | - 'community' => '<a href="' . esc_url( 'https://wordpress.org/support/plugin/auto-load-next-post' ) . '" aria-label="' . esc_attr__( 'Get support from the community', 'auto-load-next-post' ). '" target="_blank">' . esc_attr__( 'Community Support', 'auto-load-next-post' ) . '</a>', |
|
266 | - 'theme-support' => '<a href="' . esc_url( AUTO_LOAD_NEXT_POST_STORE_URL . 'product/theme-support/?utm_source=plugin&utm_medium=link&utm_campaign=plugins-page' ) . '" attr-label="' . esc_attr__( 'Get Theme Support', 'auto-load-next-post' ) . '" target="_blank">' . esc_attr__( 'Theme Support', 'auto-load-next-post' ) . '</a>', |
|
264 | + 'docs' => '<a href="'.esc_url(AUTO_LOAD_NEXT_POST_STORE_URL.'documentation/?utm_source=plugin&utm_medium=link&utm_campaign=plugins-page').'" aria-label="'.esc_attr__('View Auto Load Next Post Documentation', 'auto-load-next-post').'" target="_blank">'.esc_attr__('Documentation', 'auto-load-next-post').'</a>', |
|
265 | + 'community' => '<a href="'.esc_url('https://wordpress.org/support/plugin/auto-load-next-post').'" aria-label="'.esc_attr__('Get support from the community', 'auto-load-next-post').'" target="_blank">'.esc_attr__('Community Support', 'auto-load-next-post').'</a>', |
|
266 | + 'theme-support' => '<a href="'.esc_url(AUTO_LOAD_NEXT_POST_STORE_URL.'product/theme-support/?utm_source=plugin&utm_medium=link&utm_campaign=plugins-page').'" attr-label="'.esc_attr__('Get Theme Support', 'auto-load-next-post').'" target="_blank">'.esc_attr__('Theme Support', 'auto-load-next-post').'</a>', |
|
267 | 267 | ); |
268 | 268 | |
269 | - $links = array_merge( $links, $row_meta ); |
|
269 | + $links = array_merge($links, $row_meta); |
|
270 | 270 | } |
271 | 271 | |
272 | 272 | return $links; |
@@ -282,16 +282,16 @@ discard block |
||
282 | 282 | * @param string $text |
283 | 283 | * @return string $text |
284 | 284 | */ |
285 | - public function admin_footer_text( $text ) { |
|
285 | + public function admin_footer_text($text) { |
|
286 | 286 | $current_screen = get_current_screen(); |
287 | 287 | |
288 | - if ( isset( $current_screen->id ) && $current_screen->id == 'settings_page_auto-load-next-post-settings' ) { |
|
288 | + if (isset($current_screen->id) && $current_screen->id == 'settings_page_auto-load-next-post-settings') { |
|
289 | 289 | // Rating and Review |
290 | 290 | return sprintf( |
291 | 291 | /* translators: 1: Auto Load Next Post 2:: five stars */ |
292 | - __( 'If you like %1$s, please leave a %2$s rating. A huge thank you in advance!', 'auto-load-next-post' ), |
|
293 | - sprintf( '<strong>%1$s</strong>', esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ), |
|
294 | - '<a href="' . AUTO_LOAD_NEXT_POST_REVIEW_URL . '?rate=5#new-post" target="_blank" data-rated="' . esc_attr__( 'Thanks :)', 'auto-load-next-post' ) . '">★★★★★</a>' |
|
292 | + __('If you like %1$s, please leave a %2$s rating. A huge thank you in advance!', 'auto-load-next-post'), |
|
293 | + sprintf('<strong>%1$s</strong>', esc_html__('Auto Load Next Post', 'auto-load-next-post')), |
|
294 | + '<a href="'.AUTO_LOAD_NEXT_POST_REVIEW_URL.'?rate=5#new-post" target="_blank" data-rated="'.esc_attr__('Thanks :)', 'auto-load-next-post').'">★★★★★</a>' |
|
295 | 295 | ); |
296 | 296 | } |
297 | 297 | |
@@ -308,11 +308,11 @@ discard block |
||
308 | 308 | * @param string $text |
309 | 309 | * @return string $text |
310 | 310 | */ |
311 | - public function update_footer( $text ) { |
|
311 | + public function update_footer($text) { |
|
312 | 312 | $screen = get_current_screen(); |
313 | 313 | |
314 | - if ( $screen->id == 'settings_page_auto-load-next-post-settings' ) { |
|
315 | - return '<p class="alignright">' . sprintf( __( '%s Version', 'auto-load-next-post' ), esc_html__( 'Auto Load Next Post', 'auto-load-next-post' ) ) . ' ' . esc_attr( AUTO_LOAD_NEXT_POST_VERSION ) . '</p>'; |
|
314 | + if ($screen->id == 'settings_page_auto-load-next-post-settings') { |
|
315 | + return '<p class="alignright">'.sprintf(__('%s Version', 'auto-load-next-post'), esc_html__('Auto Load Next Post', 'auto-load-next-post')).' '.esc_attr(AUTO_LOAD_NEXT_POST_VERSION).'</p>'; |
|
316 | 316 | } |
317 | 317 | |
318 | 318 | return $text; |