@@ -6,77 +6,77 @@ discard block |
||
6 | 6 | |
7 | 7 | class Notices { |
8 | 8 | |
9 | - /** |
|
10 | - * @var Plugin |
|
11 | - */ |
|
12 | - private $acf4so_plugin; |
|
13 | - |
|
14 | - public function __construct( Plugin $plugin ) { |
|
15 | - $this->acf4so_plugin = $plugin; |
|
16 | - } |
|
17 | - |
|
18 | - public function register_hooks() { |
|
19 | - add_action( 'admin_notices', array( $this, 'admin_notices' ) ); |
|
20 | - } |
|
21 | - |
|
22 | - public function admin_notices() { |
|
23 | - |
|
24 | - $is_package_type_supported = $this->is_package_type_supported(); |
|
25 | - |
|
26 | - $is_woocommerce_plugin_installed = defined( 'WL_WOO_VERSION' ); |
|
27 | - |
|
28 | - if ( ! $is_package_type_supported && ! $is_woocommerce_plugin_installed ) { |
|
29 | - // Dont display notice. |
|
30 | - return; |
|
31 | - } |
|
32 | - |
|
33 | - /** |
|
34 | - * 1. When package type is supported and acf4so not installed or activated then the notice should appear. |
|
35 | - * 2. When woocommerce plugin installed and acf4so not installed or activated then the notice should appear. |
|
36 | - */ |
|
37 | - if ( ! $this->acf4so_plugin->is_plugin_installed() ) { |
|
38 | - $this->display_notice( |
|
39 | - __( "WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is not installed and, you're losing out on full Schema.org support.", 'wordlift' ), |
|
40 | - __( 'Reinstall & Activate', 'wordlift' ) |
|
41 | - ); |
|
42 | - |
|
43 | - // Dont display notice. |
|
44 | - return; |
|
45 | - } |
|
46 | - |
|
47 | - if ( ! $this->acf4so_plugin->is_plugin_activated() ) { |
|
48 | - $this->display_notice( |
|
49 | - __( "WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is deactivated and, you're losing out on full Schema.org support.", 'wordlift' ), |
|
50 | - __( 'Reactivate', 'wordlift' ) |
|
51 | - ); |
|
52 | - |
|
53 | - return; |
|
54 | - } |
|
55 | - |
|
56 | - } |
|
57 | - |
|
58 | - private function display_notice( $message, $button_text ) { |
|
59 | - |
|
60 | - $kses_options = array( |
|
61 | - 'p' => array(), |
|
62 | - 'b' => array(), |
|
63 | - 'button' => array( |
|
64 | - 'class' => array(), |
|
65 | - 'onclick' => array(), |
|
66 | - ), |
|
67 | - ); |
|
68 | - $installation_success_message = __( |
|
69 | - '</p>WordLift: <b>Advanced Custom Fields for Schema.org</b> plugin installed and activated.</p>', |
|
70 | - 'wordlift' |
|
71 | - ); |
|
72 | - |
|
73 | - $installing_message = __( 'Installing', 'wordlift' ) . ' <span class="spinner is-active"></span>'; |
|
74 | - $installation_failed_message = '<p>' . |
|
75 | - __( 'Wordlift: Advanced Custom Fields for Schema.org installation failed, please retry or contact [email protected]', 'wordlift' ) |
|
76 | - . '</p><button class="button action" onclick="wordliftInstallAcf4so(this)">' |
|
77 | - . __( 'Retry', 'wordlift' ) |
|
78 | - . '</button>'; |
|
79 | - ?> |
|
9 | + /** |
|
10 | + * @var Plugin |
|
11 | + */ |
|
12 | + private $acf4so_plugin; |
|
13 | + |
|
14 | + public function __construct( Plugin $plugin ) { |
|
15 | + $this->acf4so_plugin = $plugin; |
|
16 | + } |
|
17 | + |
|
18 | + public function register_hooks() { |
|
19 | + add_action( 'admin_notices', array( $this, 'admin_notices' ) ); |
|
20 | + } |
|
21 | + |
|
22 | + public function admin_notices() { |
|
23 | + |
|
24 | + $is_package_type_supported = $this->is_package_type_supported(); |
|
25 | + |
|
26 | + $is_woocommerce_plugin_installed = defined( 'WL_WOO_VERSION' ); |
|
27 | + |
|
28 | + if ( ! $is_package_type_supported && ! $is_woocommerce_plugin_installed ) { |
|
29 | + // Dont display notice. |
|
30 | + return; |
|
31 | + } |
|
32 | + |
|
33 | + /** |
|
34 | + * 1. When package type is supported and acf4so not installed or activated then the notice should appear. |
|
35 | + * 2. When woocommerce plugin installed and acf4so not installed or activated then the notice should appear. |
|
36 | + */ |
|
37 | + if ( ! $this->acf4so_plugin->is_plugin_installed() ) { |
|
38 | + $this->display_notice( |
|
39 | + __( "WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is not installed and, you're losing out on full Schema.org support.", 'wordlift' ), |
|
40 | + __( 'Reinstall & Activate', 'wordlift' ) |
|
41 | + ); |
|
42 | + |
|
43 | + // Dont display notice. |
|
44 | + return; |
|
45 | + } |
|
46 | + |
|
47 | + if ( ! $this->acf4so_plugin->is_plugin_activated() ) { |
|
48 | + $this->display_notice( |
|
49 | + __( "WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is deactivated and, you're losing out on full Schema.org support.", 'wordlift' ), |
|
50 | + __( 'Reactivate', 'wordlift' ) |
|
51 | + ); |
|
52 | + |
|
53 | + return; |
|
54 | + } |
|
55 | + |
|
56 | + } |
|
57 | + |
|
58 | + private function display_notice( $message, $button_text ) { |
|
59 | + |
|
60 | + $kses_options = array( |
|
61 | + 'p' => array(), |
|
62 | + 'b' => array(), |
|
63 | + 'button' => array( |
|
64 | + 'class' => array(), |
|
65 | + 'onclick' => array(), |
|
66 | + ), |
|
67 | + ); |
|
68 | + $installation_success_message = __( |
|
69 | + '</p>WordLift: <b>Advanced Custom Fields for Schema.org</b> plugin installed and activated.</p>', |
|
70 | + 'wordlift' |
|
71 | + ); |
|
72 | + |
|
73 | + $installing_message = __( 'Installing', 'wordlift' ) . ' <span class="spinner is-active"></span>'; |
|
74 | + $installation_failed_message = '<p>' . |
|
75 | + __( 'Wordlift: Advanced Custom Fields for Schema.org installation failed, please retry or contact [email protected]', 'wordlift' ) |
|
76 | + . '</p><button class="button action" onclick="wordliftInstallAcf4so(this)">' |
|
77 | + . __( 'Retry', 'wordlift' ) |
|
78 | + . '</button>'; |
|
79 | + ?> |
|
80 | 80 | |
81 | 81 | <script> |
82 | 82 | window.addEventListener("load", function () { |
@@ -111,16 +111,16 @@ discard block |
||
111 | 111 | <br/> |
112 | 112 | </div> |
113 | 113 | <?php |
114 | - } |
|
115 | - |
|
116 | - /** |
|
117 | - * @return bool |
|
118 | - */ |
|
119 | - private function is_package_type_supported() { |
|
120 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
121 | - return apply_filters( 'wl_feature__enable__entity-types-professional', false ) || |
|
122 | - // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
123 | - apply_filters( 'wl_feature__enable__entity-types-business', false ); |
|
124 | - } |
|
114 | + } |
|
115 | + |
|
116 | + /** |
|
117 | + * @return bool |
|
118 | + */ |
|
119 | + private function is_package_type_supported() { |
|
120 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
121 | + return apply_filters( 'wl_feature__enable__entity-types-professional', false ) || |
|
122 | + // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
|
123 | + apply_filters( 'wl_feature__enable__entity-types-business', false ); |
|
124 | + } |
|
125 | 125 | |
126 | 126 | } |
@@ -11,21 +11,21 @@ discard block |
||
11 | 11 | */ |
12 | 12 | private $acf4so_plugin; |
13 | 13 | |
14 | - public function __construct( Plugin $plugin ) { |
|
14 | + public function __construct(Plugin $plugin) { |
|
15 | 15 | $this->acf4so_plugin = $plugin; |
16 | 16 | } |
17 | 17 | |
18 | 18 | public function register_hooks() { |
19 | - add_action( 'admin_notices', array( $this, 'admin_notices' ) ); |
|
19 | + add_action('admin_notices', array($this, 'admin_notices')); |
|
20 | 20 | } |
21 | 21 | |
22 | 22 | public function admin_notices() { |
23 | 23 | |
24 | 24 | $is_package_type_supported = $this->is_package_type_supported(); |
25 | 25 | |
26 | - $is_woocommerce_plugin_installed = defined( 'WL_WOO_VERSION' ); |
|
26 | + $is_woocommerce_plugin_installed = defined('WL_WOO_VERSION'); |
|
27 | 27 | |
28 | - if ( ! $is_package_type_supported && ! $is_woocommerce_plugin_installed ) { |
|
28 | + if ( ! $is_package_type_supported && ! $is_woocommerce_plugin_installed) { |
|
29 | 29 | // Dont display notice. |
30 | 30 | return; |
31 | 31 | } |
@@ -34,20 +34,20 @@ discard block |
||
34 | 34 | * 1. When package type is supported and acf4so not installed or activated then the notice should appear. |
35 | 35 | * 2. When woocommerce plugin installed and acf4so not installed or activated then the notice should appear. |
36 | 36 | */ |
37 | - if ( ! $this->acf4so_plugin->is_plugin_installed() ) { |
|
37 | + if ( ! $this->acf4so_plugin->is_plugin_installed()) { |
|
38 | 38 | $this->display_notice( |
39 | - __( "WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is not installed and, you're losing out on full Schema.org support.", 'wordlift' ), |
|
40 | - __( 'Reinstall & Activate', 'wordlift' ) |
|
39 | + __("WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is not installed and, you're losing out on full Schema.org support.", 'wordlift'), |
|
40 | + __('Reinstall & Activate', 'wordlift') |
|
41 | 41 | ); |
42 | 42 | |
43 | 43 | // Dont display notice. |
44 | 44 | return; |
45 | 45 | } |
46 | 46 | |
47 | - if ( ! $this->acf4so_plugin->is_plugin_activated() ) { |
|
47 | + if ( ! $this->acf4so_plugin->is_plugin_activated()) { |
|
48 | 48 | $this->display_notice( |
49 | - __( "WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is deactivated and, you're losing out on full Schema.org support.", 'wordlift' ), |
|
50 | - __( 'Reactivate', 'wordlift' ) |
|
49 | + __("WordLift detected that <b>Advanced Custom Fields for Schema.org</b> is deactivated and, you're losing out on full Schema.org support.", 'wordlift'), |
|
50 | + __('Reactivate', 'wordlift') |
|
51 | 51 | ); |
52 | 52 | |
53 | 53 | return; |
@@ -55,9 +55,9 @@ discard block |
||
55 | 55 | |
56 | 56 | } |
57 | 57 | |
58 | - private function display_notice( $message, $button_text ) { |
|
58 | + private function display_notice($message, $button_text) { |
|
59 | 59 | |
60 | - $kses_options = array( |
|
60 | + $kses_options = array( |
|
61 | 61 | 'p' => array(), |
62 | 62 | 'b' => array(), |
63 | 63 | 'button' => array( |
@@ -70,11 +70,11 @@ discard block |
||
70 | 70 | 'wordlift' |
71 | 71 | ); |
72 | 72 | |
73 | - $installing_message = __( 'Installing', 'wordlift' ) . ' <span class="spinner is-active"></span>'; |
|
74 | - $installation_failed_message = '<p>' . |
|
75 | - __( 'Wordlift: Advanced Custom Fields for Schema.org installation failed, please retry or contact [email protected]', 'wordlift' ) |
|
73 | + $installing_message = __('Installing', 'wordlift').' <span class="spinner is-active"></span>'; |
|
74 | + $installation_failed_message = '<p>'. |
|
75 | + __('Wordlift: Advanced Custom Fields for Schema.org installation failed, please retry or contact [email protected]', 'wordlift') |
|
76 | 76 | . '</p><button class="button action" onclick="wordliftInstallAcf4so(this)">' |
77 | - . __( 'Retry', 'wordlift' ) |
|
77 | + . __('Retry', 'wordlift') |
|
78 | 78 | . '</button>'; |
79 | 79 | ?> |
80 | 80 | |
@@ -83,15 +83,15 @@ discard block |
||
83 | 83 | const pluginInstallationNotice = document.getElementById("wordlift_acf4so_plugin_installation_notice") |
84 | 84 | const installPlugin = (ajaxUrl) => fetch(`${ajaxUrl}?action=wl_install_and_activate_advanced-custom-fields-for-schema-org`) |
85 | 85 | .then(response => response.ok ? response.json() : Promise.reject()) |
86 | - const ajaxUrl = "<?php echo esc_html( wp_parse_url( admin_url( 'admin-ajax.php' ), PHP_URL_PATH ) ); ?>" |
|
86 | + const ajaxUrl = "<?php echo esc_html(wp_parse_url(admin_url('admin-ajax.php'), PHP_URL_PATH)); ?>" |
|
87 | 87 | window.wordliftInstallAcf4so = function (installBtn) { |
88 | - installBtn.innerHTML = `<?php echo wp_kses( $installing_message, array( 'span' => array( 'class' => array() ) ) ); ?>` |
|
88 | + installBtn.innerHTML = `<?php echo wp_kses($installing_message, array('span' => array('class' => array()))); ?>` |
|
89 | 89 | installPlugin(ajaxUrl) |
90 | 90 | .catch(e => { |
91 | - pluginInstallationNotice.innerHTML = `<?php echo wp_kses( $installation_failed_message, $kses_options ); ?>` |
|
91 | + pluginInstallationNotice.innerHTML = `<?php echo wp_kses($installation_failed_message, $kses_options); ?>` |
|
92 | 92 | }) |
93 | 93 | .then(() => { |
94 | - pluginInstallationNotice.innerHTML = `<?php echo wp_kses( $installation_success_message, $kses_options ); ?>` |
|
94 | + pluginInstallationNotice.innerHTML = `<?php echo wp_kses($installation_success_message, $kses_options); ?>` |
|
95 | 95 | pluginInstallationNotice.classList.remove('notice-error') |
96 | 96 | pluginInstallationNotice.classList.add('notice-success') |
97 | 97 | }) |
@@ -103,9 +103,9 @@ discard block |
||
103 | 103 | |
104 | 104 | <div class="notice notice-error" id="wordlift_acf4so_plugin_installation_notice"> |
105 | 105 | <p> |
106 | - <?php echo wp_kses( $message, array( 'b' => array() ) ); ?> |
|
106 | + <?php echo wp_kses($message, array('b' => array())); ?> |
|
107 | 107 | <button class="button action right" onclick="wordliftInstallAcf4so(this)"> |
108 | - <?php echo esc_html( $button_text ); ?> |
|
108 | + <?php echo esc_html($button_text); ?> |
|
109 | 109 | </button> |
110 | 110 | </p> |
111 | 111 | <br/> |
@@ -118,9 +118,9 @@ discard block |
||
118 | 118 | */ |
119 | 119 | private function is_package_type_supported() { |
120 | 120 | // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
121 | - return apply_filters( 'wl_feature__enable__entity-types-professional', false ) || |
|
121 | + return apply_filters('wl_feature__enable__entity-types-professional', false) || |
|
122 | 122 | // phpcs:ignore WordPress.NamingConventions.ValidHookName.UseUnderscores |
123 | - apply_filters( 'wl_feature__enable__entity-types-business', false ); |
|
123 | + apply_filters('wl_feature__enable__entity-types-business', false); |
|
124 | 124 | } |
125 | 125 | |
126 | 126 | } |
@@ -14,101 +14,101 @@ |
||
14 | 14 | */ |
15 | 15 | class Settings { |
16 | 16 | |
17 | - /** |
|
18 | - * Register hooks. |
|
19 | - */ |
|
20 | - public function register_hooks() { |
|
21 | - if ( is_admin() ) { |
|
22 | - add_action( |
|
23 | - 'plugins_loaded', |
|
24 | - function () { |
|
25 | - add_action( 'admin_menu', array( $this, 'register_sub_menu' ) ); |
|
26 | - add_action( 'admin_init', array( $this, 'register_setting' ) ); |
|
27 | - } |
|
28 | - ); |
|
29 | - } |
|
30 | - } |
|
17 | + /** |
|
18 | + * Register hooks. |
|
19 | + */ |
|
20 | + public function register_hooks() { |
|
21 | + if ( is_admin() ) { |
|
22 | + add_action( |
|
23 | + 'plugins_loaded', |
|
24 | + function () { |
|
25 | + add_action( 'admin_menu', array( $this, 'register_sub_menu' ) ); |
|
26 | + add_action( 'admin_init', array( $this, 'register_setting' ) ); |
|
27 | + } |
|
28 | + ); |
|
29 | + } |
|
30 | + } |
|
31 | 31 | |
32 | - /** |
|
33 | - * Register submenu. |
|
34 | - */ |
|
35 | - public function register_sub_menu() { |
|
36 | - add_submenu_page( |
|
37 | - 'wl_admin_menu', |
|
38 | - __( 'Exclude Include URLs', 'wordlift' ), |
|
39 | - __( 'Exclude Include URLs', 'wordlift' ), |
|
40 | - 'manage_options', |
|
41 | - 'wl_exclude_include_urls_menu', |
|
42 | - array( $this, 'submenu_page_callback' ) |
|
43 | - ); |
|
44 | - } |
|
32 | + /** |
|
33 | + * Register submenu. |
|
34 | + */ |
|
35 | + public function register_sub_menu() { |
|
36 | + add_submenu_page( |
|
37 | + 'wl_admin_menu', |
|
38 | + __( 'Exclude Include URLs', 'wordlift' ), |
|
39 | + __( 'Exclude Include URLs', 'wordlift' ), |
|
40 | + 'manage_options', |
|
41 | + 'wl_exclude_include_urls_menu', |
|
42 | + array( $this, 'submenu_page_callback' ) |
|
43 | + ); |
|
44 | + } |
|
45 | 45 | |
46 | - /** |
|
47 | - * Register settings. |
|
48 | - */ |
|
49 | - public function register_setting() { |
|
50 | - register_setting( 'wl_exclude_include_urls_settings_group', 'wl_exclude_include_urls_settings' ); |
|
51 | - add_settings_section( |
|
52 | - 'wl_exclude_include_urls_settings_section_0', |
|
53 | - __( 'URL filter type, list of URLs', 'wordlift' ), |
|
54 | - array( $this, 'settings_section_callback' ), |
|
55 | - 'wl_exclude_include_urls_settings_page' |
|
56 | - ); |
|
46 | + /** |
|
47 | + * Register settings. |
|
48 | + */ |
|
49 | + public function register_setting() { |
|
50 | + register_setting( 'wl_exclude_include_urls_settings_group', 'wl_exclude_include_urls_settings' ); |
|
51 | + add_settings_section( |
|
52 | + 'wl_exclude_include_urls_settings_section_0', |
|
53 | + __( 'URL filter type, list of URLs', 'wordlift' ), |
|
54 | + array( $this, 'settings_section_callback' ), |
|
55 | + 'wl_exclude_include_urls_settings_page' |
|
56 | + ); |
|
57 | 57 | |
58 | - add_settings_field( |
|
59 | - 'wl_exclude_include_urls_field_0', |
|
60 | - __( 'URLs filter type', 'wordlift' ), |
|
61 | - array( $this, 'settings_field_0_render' ), |
|
62 | - 'wl_exclude_include_urls_settings_page', |
|
63 | - 'wl_exclude_include_urls_settings_section_0' |
|
64 | - ); |
|
58 | + add_settings_field( |
|
59 | + 'wl_exclude_include_urls_field_0', |
|
60 | + __( 'URLs filter type', 'wordlift' ), |
|
61 | + array( $this, 'settings_field_0_render' ), |
|
62 | + 'wl_exclude_include_urls_settings_page', |
|
63 | + 'wl_exclude_include_urls_settings_section_0' |
|
64 | + ); |
|
65 | 65 | |
66 | - add_settings_field( |
|
67 | - 'wl_exclude_include_urls_field_1', |
|
68 | - __( 'List of URLs', 'wordlift' ), |
|
69 | - array( $this, 'settings_field_1_render' ), |
|
70 | - 'wl_exclude_include_urls_settings_page', |
|
71 | - 'wl_exclude_include_urls_settings_section_0' |
|
72 | - ); |
|
73 | - } |
|
66 | + add_settings_field( |
|
67 | + 'wl_exclude_include_urls_field_1', |
|
68 | + __( 'List of URLs', 'wordlift' ), |
|
69 | + array( $this, 'settings_field_1_render' ), |
|
70 | + 'wl_exclude_include_urls_settings_page', |
|
71 | + 'wl_exclude_include_urls_settings_section_0' |
|
72 | + ); |
|
73 | + } |
|
74 | 74 | |
75 | - public function settings_section_callback() { |
|
76 | - echo esc_html__( "Choose a filter type, and add list of URLs to selective active from WordLift's JSON-LD", 'wordlift' ); |
|
77 | - } |
|
75 | + public function settings_section_callback() { |
|
76 | + echo esc_html__( "Choose a filter type, and add list of URLs to selective active from WordLift's JSON-LD", 'wordlift' ); |
|
77 | + } |
|
78 | 78 | |
79 | - /** |
|
80 | - * Callback function for settings field rendering. |
|
81 | - */ |
|
82 | - public function settings_field_0_render() { |
|
83 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
84 | - $options = get_option( |
|
85 | - 'wl_exclude_include_urls_settings', |
|
86 | - array( |
|
87 | - 'include_exclude' => 'exclude', |
|
88 | - 'urls' => '', |
|
89 | - ) ); // phpcs:ignore |
|
90 | - include_once plugin_dir_path( __FILE__ ) . 'partials/field-0.php'; |
|
91 | - } |
|
79 | + /** |
|
80 | + * Callback function for settings field rendering. |
|
81 | + */ |
|
82 | + public function settings_field_0_render() { |
|
83 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
84 | + $options = get_option( |
|
85 | + 'wl_exclude_include_urls_settings', |
|
86 | + array( |
|
87 | + 'include_exclude' => 'exclude', |
|
88 | + 'urls' => '', |
|
89 | + ) ); // phpcs:ignore |
|
90 | + include_once plugin_dir_path( __FILE__ ) . 'partials/field-0.php'; |
|
91 | + } |
|
92 | 92 | |
93 | - /** |
|
94 | - * Callback function for settings field rendering. |
|
95 | - */ |
|
96 | - public function settings_field_1_render() { |
|
97 | - // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
98 | - $options = get_option( |
|
99 | - 'wl_exclude_include_urls_settings', |
|
100 | - array( |
|
101 | - 'include_exclude' => true, |
|
102 | - 'urls' => '', |
|
103 | - ) ); // phpcs:ignore |
|
104 | - include_once plugin_dir_path( __FILE__ ) . 'partials/field-1.php'; |
|
105 | - } |
|
93 | + /** |
|
94 | + * Callback function for settings field rendering. |
|
95 | + */ |
|
96 | + public function settings_field_1_render() { |
|
97 | + // phpcs:ignore VariableAnalysis.CodeAnalysis.VariableAnalysis.UnusedVariable |
|
98 | + $options = get_option( |
|
99 | + 'wl_exclude_include_urls_settings', |
|
100 | + array( |
|
101 | + 'include_exclude' => true, |
|
102 | + 'urls' => '', |
|
103 | + ) ); // phpcs:ignore |
|
104 | + include_once plugin_dir_path( __FILE__ ) . 'partials/field-1.php'; |
|
105 | + } |
|
106 | 106 | |
107 | - /** |
|
108 | - * Callback function for Exclude Include URLs submenu page. |
|
109 | - */ |
|
110 | - public function submenu_page_callback() { |
|
111 | - include_once plugin_dir_path( __FILE__ ) . 'partials/exclude-include-urls-page.php'; |
|
112 | - } |
|
107 | + /** |
|
108 | + * Callback function for Exclude Include URLs submenu page. |
|
109 | + */ |
|
110 | + public function submenu_page_callback() { |
|
111 | + include_once plugin_dir_path( __FILE__ ) . 'partials/exclude-include-urls-page.php'; |
|
112 | + } |
|
113 | 113 | |
114 | 114 | } |
@@ -18,12 +18,12 @@ discard block |
||
18 | 18 | * Register hooks. |
19 | 19 | */ |
20 | 20 | public function register_hooks() { |
21 | - if ( is_admin() ) { |
|
21 | + if (is_admin()) { |
|
22 | 22 | add_action( |
23 | 23 | 'plugins_loaded', |
24 | - function () { |
|
25 | - add_action( 'admin_menu', array( $this, 'register_sub_menu' ) ); |
|
26 | - add_action( 'admin_init', array( $this, 'register_setting' ) ); |
|
24 | + function() { |
|
25 | + add_action('admin_menu', array($this, 'register_sub_menu')); |
|
26 | + add_action('admin_init', array($this, 'register_setting')); |
|
27 | 27 | } |
28 | 28 | ); |
29 | 29 | } |
@@ -35,11 +35,11 @@ discard block |
||
35 | 35 | public function register_sub_menu() { |
36 | 36 | add_submenu_page( |
37 | 37 | 'wl_admin_menu', |
38 | - __( 'Exclude Include URLs', 'wordlift' ), |
|
39 | - __( 'Exclude Include URLs', 'wordlift' ), |
|
38 | + __('Exclude Include URLs', 'wordlift'), |
|
39 | + __('Exclude Include URLs', 'wordlift'), |
|
40 | 40 | 'manage_options', |
41 | 41 | 'wl_exclude_include_urls_menu', |
42 | - array( $this, 'submenu_page_callback' ) |
|
42 | + array($this, 'submenu_page_callback') |
|
43 | 43 | ); |
44 | 44 | } |
45 | 45 | |
@@ -47,33 +47,33 @@ discard block |
||
47 | 47 | * Register settings. |
48 | 48 | */ |
49 | 49 | public function register_setting() { |
50 | - register_setting( 'wl_exclude_include_urls_settings_group', 'wl_exclude_include_urls_settings' ); |
|
50 | + register_setting('wl_exclude_include_urls_settings_group', 'wl_exclude_include_urls_settings'); |
|
51 | 51 | add_settings_section( |
52 | 52 | 'wl_exclude_include_urls_settings_section_0', |
53 | - __( 'URL filter type, list of URLs', 'wordlift' ), |
|
54 | - array( $this, 'settings_section_callback' ), |
|
53 | + __('URL filter type, list of URLs', 'wordlift'), |
|
54 | + array($this, 'settings_section_callback'), |
|
55 | 55 | 'wl_exclude_include_urls_settings_page' |
56 | 56 | ); |
57 | 57 | |
58 | 58 | add_settings_field( |
59 | 59 | 'wl_exclude_include_urls_field_0', |
60 | - __( 'URLs filter type', 'wordlift' ), |
|
61 | - array( $this, 'settings_field_0_render' ), |
|
60 | + __('URLs filter type', 'wordlift'), |
|
61 | + array($this, 'settings_field_0_render'), |
|
62 | 62 | 'wl_exclude_include_urls_settings_page', |
63 | 63 | 'wl_exclude_include_urls_settings_section_0' |
64 | 64 | ); |
65 | 65 | |
66 | 66 | add_settings_field( |
67 | 67 | 'wl_exclude_include_urls_field_1', |
68 | - __( 'List of URLs', 'wordlift' ), |
|
69 | - array( $this, 'settings_field_1_render' ), |
|
68 | + __('List of URLs', 'wordlift'), |
|
69 | + array($this, 'settings_field_1_render'), |
|
70 | 70 | 'wl_exclude_include_urls_settings_page', |
71 | 71 | 'wl_exclude_include_urls_settings_section_0' |
72 | 72 | ); |
73 | 73 | } |
74 | 74 | |
75 | 75 | public function settings_section_callback() { |
76 | - echo esc_html__( "Choose a filter type, and add list of URLs to selective active from WordLift's JSON-LD", 'wordlift' ); |
|
76 | + echo esc_html__("Choose a filter type, and add list of URLs to selective active from WordLift's JSON-LD", 'wordlift'); |
|
77 | 77 | } |
78 | 78 | |
79 | 79 | /** |
@@ -87,7 +87,7 @@ discard block |
||
87 | 87 | 'include_exclude' => 'exclude', |
88 | 88 | 'urls' => '', |
89 | 89 | ) ); // phpcs:ignore |
90 | - include_once plugin_dir_path( __FILE__ ) . 'partials/field-0.php'; |
|
90 | + include_once plugin_dir_path(__FILE__).'partials/field-0.php'; |
|
91 | 91 | } |
92 | 92 | |
93 | 93 | /** |
@@ -101,14 +101,14 @@ discard block |
||
101 | 101 | 'include_exclude' => true, |
102 | 102 | 'urls' => '', |
103 | 103 | ) ); // phpcs:ignore |
104 | - include_once plugin_dir_path( __FILE__ ) . 'partials/field-1.php'; |
|
104 | + include_once plugin_dir_path(__FILE__).'partials/field-1.php'; |
|
105 | 105 | } |
106 | 106 | |
107 | 107 | /** |
108 | 108 | * Callback function for Exclude Include URLs submenu page. |
109 | 109 | */ |
110 | 110 | public function submenu_page_callback() { |
111 | - include_once plugin_dir_path( __FILE__ ) . 'partials/exclude-include-urls-page.php'; |
|
111 | + include_once plugin_dir_path(__FILE__).'partials/exclude-include-urls-page.php'; |
|
112 | 112 | } |
113 | 113 | |
114 | 114 | } |
@@ -1,12 +1,12 @@ |
||
1 | 1 | <p> |
2 | 2 | <input type="radio" id="wl_exclude_include_urls_settings_include_exclude_include" |
3 | 3 | name="wl_exclude_include_urls_settings[include_exclude]" |
4 | - value="exclude" <?php checked( is_array( $options ) ? $options['include_exclude'] : '', 'exclude' ); // phpcs:ignore ?>> |
|
5 | - <label for="wl_exclude_include_urls_settings_include_exclude_include"><?php echo esc_html__( 'Exclude', 'wordlift' ); ?></label> |
|
4 | + value="exclude" <?php checked(is_array($options) ? $options['include_exclude'] : '', 'exclude'); // phpcs:ignore ?>> |
|
5 | + <label for="wl_exclude_include_urls_settings_include_exclude_include"><?php echo esc_html__('Exclude', 'wordlift'); ?></label> |
|
6 | 6 | </p> |
7 | 7 | <p> |
8 | 8 | <input type="radio" id="wl_exclude_include_urls_settings_include_exclude_exclude" |
9 | 9 | name="wl_exclude_include_urls_settings[include_exclude]" |
10 | - value="include" <?php checked( is_array( $options ) ? $options['include_exclude'] : '', 'include' ); // phpcs:ignore ?>> |
|
11 | - <label for="wl_exclude_include_urls_settings_include_exclude_exclude"><?php echo esc_html__( 'Include', 'wordlift' ); ?></label> |
|
10 | + value="include" <?php checked(is_array($options) ? $options['include_exclude'] : '', 'include'); // phpcs:ignore ?>> |
|
11 | + <label for="wl_exclude_include_urls_settings_include_exclude_exclude"><?php echo esc_html__('Include', 'wordlift'); ?></label> |
|
12 | 12 | </p> |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Wordlift_Modules_Include_Exclude_Push_Config_Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -26,7 +26,7 @@ discard block |
||
26 | 26 | self::$loader = $loader = new \Wordlift_Modules_Include_Exclude_Push_Config_Composer\Autoload\ClassLoader(\dirname(__DIR__)); |
27 | 27 | spl_autoload_unregister(array('ComposerAutoloaderInit3d5ab0830c7bf52ba5addfd65f37fd54', 'loadClassLoader')); |
28 | 28 | |
29 | - require __DIR__ . '/autoload_static.php'; |
|
29 | + require __DIR__.'/autoload_static.php'; |
|
30 | 30 | call_user_func(\Wordlift_Modules_Include_Exclude_Push_Config_Composer\Autoload\ComposerStaticInit3d5ab0830c7bf52ba5addfd65f37fd54::getInitializer($loader)); |
31 | 31 | |
32 | 32 | $loader->setClassMapAuthoritative(true); |
@@ -137,7 +137,7 @@ discard block |
||
137 | 137 | public static function getVersionRanges($packageName) |
138 | 138 | { |
139 | 139 | foreach (self::getInstalled() as $installed) { |
140 | - if (!isset($installed['versions'][$packageName])) { |
|
140 | + if ( ! isset($installed['versions'][$packageName])) { |
|
141 | 141 | continue; |
142 | 142 | } |
143 | 143 | |
@@ -158,7 +158,7 @@ discard block |
||
158 | 158 | return implode(' || ', $ranges); |
159 | 159 | } |
160 | 160 | |
161 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
161 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
162 | 162 | } |
163 | 163 | |
164 | 164 | /** |
@@ -168,18 +168,18 @@ discard block |
||
168 | 168 | public static function getVersion($packageName) |
169 | 169 | { |
170 | 170 | foreach (self::getInstalled() as $installed) { |
171 | - if (!isset($installed['versions'][$packageName])) { |
|
171 | + if ( ! isset($installed['versions'][$packageName])) { |
|
172 | 172 | continue; |
173 | 173 | } |
174 | 174 | |
175 | - if (!isset($installed['versions'][$packageName]['version'])) { |
|
175 | + if ( ! isset($installed['versions'][$packageName]['version'])) { |
|
176 | 176 | return null; |
177 | 177 | } |
178 | 178 | |
179 | 179 | return $installed['versions'][$packageName]['version']; |
180 | 180 | } |
181 | 181 | |
182 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
182 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
183 | 183 | } |
184 | 184 | |
185 | 185 | /** |
@@ -189,18 +189,18 @@ discard block |
||
189 | 189 | public static function getPrettyVersion($packageName) |
190 | 190 | { |
191 | 191 | foreach (self::getInstalled() as $installed) { |
192 | - if (!isset($installed['versions'][$packageName])) { |
|
192 | + if ( ! isset($installed['versions'][$packageName])) { |
|
193 | 193 | continue; |
194 | 194 | } |
195 | 195 | |
196 | - if (!isset($installed['versions'][$packageName]['pretty_version'])) { |
|
196 | + if ( ! isset($installed['versions'][$packageName]['pretty_version'])) { |
|
197 | 197 | return null; |
198 | 198 | } |
199 | 199 | |
200 | 200 | return $installed['versions'][$packageName]['pretty_version']; |
201 | 201 | } |
202 | 202 | |
203 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
203 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
204 | 204 | } |
205 | 205 | |
206 | 206 | /** |
@@ -210,18 +210,18 @@ discard block |
||
210 | 210 | public static function getReference($packageName) |
211 | 211 | { |
212 | 212 | foreach (self::getInstalled() as $installed) { |
213 | - if (!isset($installed['versions'][$packageName])) { |
|
213 | + if ( ! isset($installed['versions'][$packageName])) { |
|
214 | 214 | continue; |
215 | 215 | } |
216 | 216 | |
217 | - if (!isset($installed['versions'][$packageName]['reference'])) { |
|
217 | + if ( ! isset($installed['versions'][$packageName]['reference'])) { |
|
218 | 218 | return null; |
219 | 219 | } |
220 | 220 | |
221 | 221 | return $installed['versions'][$packageName]['reference']; |
222 | 222 | } |
223 | 223 | |
224 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
224 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
225 | 225 | } |
226 | 226 | |
227 | 227 | /** |
@@ -231,14 +231,14 @@ discard block |
||
231 | 231 | public static function getInstallPath($packageName) |
232 | 232 | { |
233 | 233 | foreach (self::getInstalled() as $installed) { |
234 | - if (!isset($installed['versions'][$packageName])) { |
|
234 | + if ( ! isset($installed['versions'][$packageName])) { |
|
235 | 235 | continue; |
236 | 236 | } |
237 | 237 | |
238 | 238 | return isset($installed['versions'][$packageName]['install_path']) ? $installed['versions'][$packageName]['install_path'] : null; |
239 | 239 | } |
240 | 240 | |
241 | - throw new \OutOfBoundsException('Package "' . $packageName . '" is not installed'); |
|
241 | + throw new \OutOfBoundsException('Package "'.$packageName.'" is not installed'); |
|
242 | 242 | } |
243 | 243 | |
244 | 244 | /** |
@@ -267,7 +267,7 @@ discard block |
||
267 | 267 | // only require the installed.php file if this file is loaded from its dumped location, |
268 | 268 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
269 | 269 | if (substr(__DIR__, -8, 1) !== 'C') { |
270 | - self::$installed = include __DIR__ . '/installed.php'; |
|
270 | + self::$installed = include __DIR__.'/installed.php'; |
|
271 | 271 | } else { |
272 | 272 | self::$installed = array(); |
273 | 273 | } |
@@ -340,7 +340,7 @@ discard block |
||
340 | 340 | // only require the installed.php file if this file is loaded from its dumped location, |
341 | 341 | // and not from its source location in the composer/composer package, see https://github.com/composer/composer/issues/9937 |
342 | 342 | if (substr(__DIR__, -8, 1) !== 'C') { |
343 | - self::$installed = require __DIR__ . '/installed.php'; |
|
343 | + self::$installed = require __DIR__.'/installed.php'; |
|
344 | 344 | } else { |
345 | 345 | self::$installed = array(); |
346 | 346 | } |
@@ -113,7 +113,7 @@ discard block |
||
113 | 113 | */ |
114 | 114 | public function getPrefixes() |
115 | 115 | { |
116 | - if (!empty($this->prefixesPsr0)) { |
|
116 | + if ( ! empty($this->prefixesPsr0)) { |
|
117 | 117 | return call_user_func_array('array_merge', array_values($this->prefixesPsr0)); |
118 | 118 | } |
119 | 119 | |
@@ -183,7 +183,7 @@ discard block |
||
183 | 183 | */ |
184 | 184 | public function add($prefix, $paths, $prepend = false) |
185 | 185 | { |
186 | - if (!$prefix) { |
|
186 | + if ( ! $prefix) { |
|
187 | 187 | if ($prepend) { |
188 | 188 | $this->fallbackDirsPsr0 = array_merge( |
189 | 189 | (array) $paths, |
@@ -200,7 +200,7 @@ discard block |
||
200 | 200 | } |
201 | 201 | |
202 | 202 | $first = $prefix[0]; |
203 | - if (!isset($this->prefixesPsr0[$first][$prefix])) { |
|
203 | + if ( ! isset($this->prefixesPsr0[$first][$prefix])) { |
|
204 | 204 | $this->prefixesPsr0[$first][$prefix] = (array) $paths; |
205 | 205 | |
206 | 206 | return; |
@@ -232,7 +232,7 @@ discard block |
||
232 | 232 | */ |
233 | 233 | public function addPsr4($prefix, $paths, $prepend = false) |
234 | 234 | { |
235 | - if (!$prefix) { |
|
235 | + if ( ! $prefix) { |
|
236 | 236 | // Register directories for the root namespace. |
237 | 237 | if ($prepend) { |
238 | 238 | $this->fallbackDirsPsr4 = array_merge( |
@@ -245,7 +245,7 @@ discard block |
||
245 | 245 | (array) $paths |
246 | 246 | ); |
247 | 247 | } |
248 | - } elseif (!isset($this->prefixDirsPsr4[$prefix])) { |
|
248 | + } elseif ( ! isset($this->prefixDirsPsr4[$prefix])) { |
|
249 | 249 | // Register directories for a new namespace. |
250 | 250 | $length = strlen($prefix); |
251 | 251 | if ('\\' !== $prefix[$length - 1]) { |
@@ -279,7 +279,7 @@ discard block |
||
279 | 279 | */ |
280 | 280 | public function set($prefix, $paths) |
281 | 281 | { |
282 | - if (!$prefix) { |
|
282 | + if ( ! $prefix) { |
|
283 | 283 | $this->fallbackDirsPsr0 = (array) $paths; |
284 | 284 | } else { |
285 | 285 | $this->prefixesPsr0[$prefix[0]][$prefix] = (array) $paths; |
@@ -299,7 +299,7 @@ discard block |
||
299 | 299 | */ |
300 | 300 | public function setPsr4($prefix, $paths) |
301 | 301 | { |
302 | - if (!$prefix) { |
|
302 | + if ( ! $prefix) { |
|
303 | 303 | $this->fallbackDirsPsr4 = (array) $paths; |
304 | 304 | } else { |
305 | 305 | $length = strlen($prefix); |
@@ -493,18 +493,18 @@ discard block |
||
493 | 493 | private function findFileWithExtension($class, $ext) |
494 | 494 | { |
495 | 495 | // PSR-4 lookup |
496 | - $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR) . $ext; |
|
496 | + $logicalPathPsr4 = strtr($class, '\\', DIRECTORY_SEPARATOR).$ext; |
|
497 | 497 | |
498 | 498 | $first = $class[0]; |
499 | 499 | if (isset($this->prefixLengthsPsr4[$first])) { |
500 | 500 | $subPath = $class; |
501 | 501 | while (false !== $lastPos = strrpos($subPath, '\\')) { |
502 | 502 | $subPath = substr($subPath, 0, $lastPos); |
503 | - $search = $subPath . '\\'; |
|
503 | + $search = $subPath.'\\'; |
|
504 | 504 | if (isset($this->prefixDirsPsr4[$search])) { |
505 | - $pathEnd = DIRECTORY_SEPARATOR . substr($logicalPathPsr4, $lastPos + 1); |
|
505 | + $pathEnd = DIRECTORY_SEPARATOR.substr($logicalPathPsr4, $lastPos + 1); |
|
506 | 506 | foreach ($this->prefixDirsPsr4[$search] as $dir) { |
507 | - if (file_exists($file = $dir . $pathEnd)) { |
|
507 | + if (file_exists($file = $dir.$pathEnd)) { |
|
508 | 508 | return $file; |
509 | 509 | } |
510 | 510 | } |
@@ -514,7 +514,7 @@ discard block |
||
514 | 514 | |
515 | 515 | // PSR-4 fallback dirs |
516 | 516 | foreach ($this->fallbackDirsPsr4 as $dir) { |
517 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr4)) { |
|
517 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr4)) { |
|
518 | 518 | return $file; |
519 | 519 | } |
520 | 520 | } |
@@ -526,14 +526,14 @@ discard block |
||
526 | 526 | . strtr(substr($logicalPathPsr4, $pos + 1), '_', DIRECTORY_SEPARATOR); |
527 | 527 | } else { |
528 | 528 | // PEAR-like class name |
529 | - $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR) . $ext; |
|
529 | + $logicalPathPsr0 = strtr($class, '_', DIRECTORY_SEPARATOR).$ext; |
|
530 | 530 | } |
531 | 531 | |
532 | 532 | if (isset($this->prefixesPsr0[$first])) { |
533 | 533 | foreach ($this->prefixesPsr0[$first] as $prefix => $dirs) { |
534 | 534 | if (0 === strpos($class, $prefix)) { |
535 | 535 | foreach ($dirs as $dir) { |
536 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
536 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
537 | 537 | return $file; |
538 | 538 | } |
539 | 539 | } |
@@ -543,7 +543,7 @@ discard block |
||
543 | 543 | |
544 | 544 | // PSR-0 fallback dirs |
545 | 545 | foreach ($this->fallbackDirsPsr0 as $dir) { |
546 | - if (file_exists($file = $dir . DIRECTORY_SEPARATOR . $logicalPathPsr0)) { |
|
546 | + if (file_exists($file = $dir.DIRECTORY_SEPARATOR.$logicalPathPsr0)) { |
|
547 | 547 | return $file; |
548 | 548 | } |
549 | 549 | } |
@@ -9,7 +9,7 @@ discard block |
||
9 | 9 | public static function loadClassLoader($class) |
10 | 10 | { |
11 | 11 | if ('Composer\Autoload\ClassLoader' === $class) { |
12 | - require __DIR__ . '/ClassLoader.php'; |
|
12 | + require __DIR__.'/ClassLoader.php'; |
|
13 | 13 | } |
14 | 14 | } |
15 | 15 | |
@@ -22,13 +22,13 @@ discard block |
||
22 | 22 | return self::$loader; |
23 | 23 | } |
24 | 24 | |
25 | - require __DIR__ . '/platform_check.php'; |
|
25 | + require __DIR__.'/platform_check.php'; |
|
26 | 26 | |
27 | 27 | spl_autoload_register(array('ComposerAutoloaderInit718e370ed095fd597a1f1d468c2b59f4', 'loadClassLoader'), true, true); |
28 | 28 | self::$loader = $loader = new \Composer\Autoload\ClassLoader(\dirname(__DIR__)); |
29 | 29 | spl_autoload_unregister(array('ComposerAutoloaderInit718e370ed095fd597a1f1d468c2b59f4', 'loadClassLoader')); |
30 | 30 | |
31 | - require __DIR__ . '/autoload_static.php'; |
|
31 | + require __DIR__.'/autoload_static.php'; |
|
32 | 32 | call_user_func(\Composer\Autoload\ComposerStaticInit718e370ed095fd597a1f1d468c2b59f4::getInitializer($loader)); |
33 | 33 | |
34 | 34 | $loader->register(true); |
@@ -4,23 +4,23 @@ |
||
4 | 4 | |
5 | 5 | $issues = array(); |
6 | 6 | |
7 | -if (!(PHP_VERSION_ID >= 50600)) { |
|
8 | - $issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running ' . PHP_VERSION . '.'; |
|
7 | +if ( ! (PHP_VERSION_ID >= 50600)) { |
|
8 | + $issues[] = 'Your Composer dependencies require a PHP version ">= 5.6.0". You are running '.PHP_VERSION.'.'; |
|
9 | 9 | } |
10 | 10 | |
11 | 11 | if ($issues) { |
12 | - if (!headers_sent()) { |
|
12 | + if ( ! headers_sent()) { |
|
13 | 13 | header('HTTP/1.1 500 Internal Server Error'); |
14 | 14 | } |
15 | - if (!ini_get('display_errors')) { |
|
15 | + if ( ! ini_get('display_errors')) { |
|
16 | 16 | if (PHP_SAPI === 'cli' || PHP_SAPI === 'phpdbg') { |
17 | - fwrite(STDERR, 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . implode(PHP_EOL, $issues) . PHP_EOL.PHP_EOL); |
|
18 | - } elseif (!headers_sent()) { |
|
19 | - echo 'Composer detected issues in your platform:' . PHP_EOL.PHP_EOL . str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)) . PHP_EOL.PHP_EOL; |
|
17 | + fwrite(STDERR, 'Composer detected issues in your platform:'.PHP_EOL.PHP_EOL.implode(PHP_EOL, $issues).PHP_EOL.PHP_EOL); |
|
18 | + } elseif ( ! headers_sent()) { |
|
19 | + echo 'Composer detected issues in your platform:'.PHP_EOL.PHP_EOL.str_replace('You are running '.PHP_VERSION.'.', '', implode(PHP_EOL, $issues)).PHP_EOL.PHP_EOL; |
|
20 | 20 | } |
21 | 21 | } |
22 | 22 | trigger_error( |
23 | - 'Composer detected issues in your platform: ' . implode(' ', $issues), |
|
23 | + 'Composer detected issues in your platform: '.implode(' ', $issues), |
|
24 | 24 | E_USER_ERROR |
25 | 25 | ); |
26 | 26 | } |
@@ -6,44 +6,44 @@ |
||
6 | 6 | */ |
7 | 7 | abstract class ActionScheduler_Store_Deprecated { |
8 | 8 | |
9 | - /** |
|
10 | - * Mark an action that failed to fetch correctly as failed. |
|
11 | - * |
|
12 | - * @since 2.2.6 |
|
13 | - * |
|
14 | - * @param int $action_id The ID of the action. |
|
15 | - */ |
|
16 | - public function mark_failed_fetch_action( $action_id ) { |
|
17 | - _deprecated_function( __METHOD__, '3.0.0', 'ActionScheduler_Store::mark_failure()' ); |
|
18 | - self::$store->mark_failure( $action_id ); |
|
19 | - } |
|
9 | + /** |
|
10 | + * Mark an action that failed to fetch correctly as failed. |
|
11 | + * |
|
12 | + * @since 2.2.6 |
|
13 | + * |
|
14 | + * @param int $action_id The ID of the action. |
|
15 | + */ |
|
16 | + public function mark_failed_fetch_action( $action_id ) { |
|
17 | + _deprecated_function( __METHOD__, '3.0.0', 'ActionScheduler_Store::mark_failure()' ); |
|
18 | + self::$store->mark_failure( $action_id ); |
|
19 | + } |
|
20 | 20 | |
21 | - /** |
|
22 | - * Add base hooks |
|
23 | - * |
|
24 | - * @since 2.2.6 |
|
25 | - */ |
|
26 | - protected static function hook() { |
|
27 | - _deprecated_function( __METHOD__, '3.0.0' ); |
|
28 | - } |
|
21 | + /** |
|
22 | + * Add base hooks |
|
23 | + * |
|
24 | + * @since 2.2.6 |
|
25 | + */ |
|
26 | + protected static function hook() { |
|
27 | + _deprecated_function( __METHOD__, '3.0.0' ); |
|
28 | + } |
|
29 | 29 | |
30 | - /** |
|
31 | - * Remove base hooks |
|
32 | - * |
|
33 | - * @since 2.2.6 |
|
34 | - */ |
|
35 | - protected static function unhook() { |
|
36 | - _deprecated_function( __METHOD__, '3.0.0' ); |
|
37 | - } |
|
30 | + /** |
|
31 | + * Remove base hooks |
|
32 | + * |
|
33 | + * @since 2.2.6 |
|
34 | + */ |
|
35 | + protected static function unhook() { |
|
36 | + _deprecated_function( __METHOD__, '3.0.0' ); |
|
37 | + } |
|
38 | 38 | |
39 | - /** |
|
40 | - * Get the site's local time. |
|
41 | - * |
|
42 | - * @deprecated 2.1.0 |
|
43 | - * @return DateTimeZone |
|
44 | - */ |
|
45 | - protected function get_local_timezone() { |
|
46 | - _deprecated_function( __FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()' ); |
|
47 | - return ActionScheduler_TimezoneHelper::get_local_timezone(); |
|
48 | - } |
|
39 | + /** |
|
40 | + * Get the site's local time. |
|
41 | + * |
|
42 | + * @deprecated 2.1.0 |
|
43 | + * @return DateTimeZone |
|
44 | + */ |
|
45 | + protected function get_local_timezone() { |
|
46 | + _deprecated_function( __FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()' ); |
|
47 | + return ActionScheduler_TimezoneHelper::get_local_timezone(); |
|
48 | + } |
|
49 | 49 | } |
@@ -13,9 +13,9 @@ discard block |
||
13 | 13 | * |
14 | 14 | * @param int $action_id The ID of the action. |
15 | 15 | */ |
16 | - public function mark_failed_fetch_action( $action_id ) { |
|
17 | - _deprecated_function( __METHOD__, '3.0.0', 'ActionScheduler_Store::mark_failure()' ); |
|
18 | - self::$store->mark_failure( $action_id ); |
|
16 | + public function mark_failed_fetch_action($action_id) { |
|
17 | + _deprecated_function(__METHOD__, '3.0.0', 'ActionScheduler_Store::mark_failure()'); |
|
18 | + self::$store->mark_failure($action_id); |
|
19 | 19 | } |
20 | 20 | |
21 | 21 | /** |
@@ -24,7 +24,7 @@ discard block |
||
24 | 24 | * @since 2.2.6 |
25 | 25 | */ |
26 | 26 | protected static function hook() { |
27 | - _deprecated_function( __METHOD__, '3.0.0' ); |
|
27 | + _deprecated_function(__METHOD__, '3.0.0'); |
|
28 | 28 | } |
29 | 29 | |
30 | 30 | /** |
@@ -33,7 +33,7 @@ discard block |
||
33 | 33 | * @since 2.2.6 |
34 | 34 | */ |
35 | 35 | protected static function unhook() { |
36 | - _deprecated_function( __METHOD__, '3.0.0' ); |
|
36 | + _deprecated_function(__METHOD__, '3.0.0'); |
|
37 | 37 | } |
38 | 38 | |
39 | 39 | /** |
@@ -43,7 +43,7 @@ discard block |
||
43 | 43 | * @return DateTimeZone |
44 | 44 | */ |
45 | 45 | protected function get_local_timezone() { |
46 | - _deprecated_function( __FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()' ); |
|
46 | + _deprecated_function(__FUNCTION__, '2.1.0', 'ActionScheduler_TimezoneHelper::set_local_timezone()'); |
|
47 | 47 | return ActionScheduler_TimezoneHelper::get_local_timezone(); |
48 | 48 | } |
49 | 49 | } |