File: /var/www/itself.kauko.lt/wp-content/plugins/analytics_1746819531/classes/plugin.php
<?php
namespace WPS\WPS_Hide_Login;
class Plugin {
use Singleton;
private $wp_login_php;
protected function init() {
global $wp_version;
if ( version_compare( $wp_version, '4.0-RC1-src', '<' ) ) {
add_action( 'admin_notices', array( $this, 'admin_notices_incompatible' ) );
add_action( 'network_admin_notices', array( $this, 'admin_notices_incompatible' ) );
return;
}
if ( is_multisite() && ! function_exists( 'is_plugin_active_for_network' ) || ! function_exists( 'is_plugin_active' ) ) {
require_once( ABSPATH . '/wp-admin/includes/plugin.php' );
}
if ( is_plugin_active_for_network( 'rename-wp-login/rename-wp-login.php' ) ) {
deactivate_plugins( WPS_HIDE_LOGIN_BASENAME );
add_action( 'network_admin_notices', array( $this, 'admin_notices_plugin_conflict' ) );
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
return;
}
if ( is_plugin_active( 'rename-wp-login/rename-wp-login.php' ) ) {
deactivate_plugins( WPS_HIDE_LOGIN_BASENAME );
add_action( 'admin_notices', array( $this, 'admin_notices_plugin_conflict' ) );
if ( isset( $_GET['activate'] ) ) {
unset( $_GET['activate'] );
}
return;
}
if ( is_multisite() && is_plugin_active_for_network( WPS_HIDE_LOGIN_BASENAME ) ) {
add_action( 'wpmu_options', array( $this, 'wpmu_options' ) );
add_action( 'update_wpmu_options', array( $this, 'update_wpmu_options' ) );
add_filter( 'network_admin_plugin_action_links_' . WPS_HIDE_LOGIN_BASENAME, array(
$this,
'plugin_action_links'
) );
}
if ( is_multisite() ) {
add_action( 'wp_before_admin_bar_render', array( $this, 'modify_mysites_menu' ), 999 );
}
add_action( 'admin_init', array( $this, 'admin_init' ) );
add_action( 'plugins_loaded', array( $this, 'plugins_loaded' ), 9999 );
add_action( 'admin_notices', array( $this, 'admin_notices' ) );
add_action( 'network_admin_notices', array( $this, 'admin_notices' ) );
add_action( 'wp_loaded', array( $this, 'wp_loaded' ) );
add_action( 'setup_theme', array( $this, 'setup_theme' ), 1 );
add_filter( 'plugin_action_links_' . WPS_HIDE_LOGIN_BASENAME, array( $this, 'plugin_action_links' ) );
add_filter( 'site_url', array( $this, 'site_url' ), 10, 4 );
add_filter( 'network_site_url', array( $this, 'network_site_url' ), 10, 3 );
add_filter( 'wp_redirect', array( $this, 'wp_redirect' ), 10, 2 );
add_filter( 'site_option_welcome_email', array( $this, 'welcome_email' ) );
remove_action( 'template_redirect', 'wp_redirect_admin_locations', 1000 );
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts' ) );
add_action( 'admin_menu', array( $this, 'wps_hide_login_menu_page' ) );
add_action( 'admin_init', array( $this, 'whl_template_redirect' ) );
add_action( 'template_redirect', array( $this, 'redirect_export_data' ) );
add_filter( 'login_url', array( $this, 'login_url' ), 10, 3 );
add_filter( 'user_request_action_email_content', array( $this, 'user_request_action_email_content' ), 999, 2 );
add_filter( 'site_status_tests', array( $this, 'site_status_tests' ) );
add_action( 'wp_ajax_dismiss_admin_notice', array( $this, 'dismiss_admin_notice' ) );
add_action( 'admin_enqueue_scripts', array( $this, 'admin_enqueue_scripts_notifs' ) );
add_action( 'admin_notices', array( $this, 'warning_options_discussion' ) );
//add_action( 'admin_notices', array( $this, 'warning_notice_for_comment_registration' ) );
add_filter( 'manage_sites_action_links', array( $this, 'manage_sites_action_links' ), 10, 3 );
}
public function site_status_tests( $tests ) {
unset( $tests['async']['loopback_requests'] );
return $tests;
}
public function user_request_action_email_content( $email_text, $email_data ) {
$email_text = str_replace( '###CONFIRM_URL###', esc_url_raw( str_replace( $this->new_login_slug() . '/', 'wp-login.php', $email_data['confirm_url'] ) ), $email_text );
return $email_text;
}
private function use_trailing_slashes() {
return ( '/' === substr( get_option( 'permalink_structure' ), - 1, 1 ) );
}
private function user_trailingslashit( $string ) {
return $this->use_trailing_slashes() ? trailingslashit( $string ) : untrailingslashit( $string );
}
private function wp_template_loader() {
global $pagenow;
$pagenow = 'index.php';
if ( ! defined( 'WP_USE_THEMES' ) ) {
define( 'WP_USE_THEMES', true );
}
wp();
require_once( ABSPATH . WPINC . '/template-loader.php' );
die;
}
public function modify_mysites_menu() {
global $wp_admin_bar;
$all_toolbar_nodes = $wp_admin_bar->get_nodes();
foreach ( $all_toolbar_nodes as $node ) {
if ( preg_match( '/^blog-(\d+)(.*)/', $node->id, $matches ) ) {
$blog_id = $matches[1];
if ( $login_slug = $this->new_login_slug( $blog_id ) ) {
if ( ! $matches[2] || '-d' === $matches[2] ) {
$args = $node;
$old_href = $args->href;
$args->href = preg_replace( '/wp-admin\/$/', "$login_slug/", $old_href );
if ( $old_href !== $args->href ) {
$wp_admin_bar->add_node( $args );
}
} elseif ( strpos( $node->href, '/wp-admin/' ) !== false ) {
$wp_admin_bar->remove_node( $node->id );
}
}
}
}
}
private function new_login_slug( $blog_id = '' ) {
if ( $blog_id ) {
if ( $slug = get_blog_option( $blog_id, 'whl_page' ) ) {
return $slug;
}
} else {
if ( $slug = get_option( 'whl_page' ) ) {
return $slug;
} else if ( ( is_multisite() && is_plugin_active_for_network( WPS_HIDE_LOGIN_BASENAME ) && ( $slug = get_site_option( 'whl_page', 'login' ) ) ) ) {
return $slug;
} else if ( $slug = 'login' ) {
return $slug;
}
}
}
private function new_redirect_slug() {
if ( $slug = get_option( 'whl_redirect_admin' ) ) {
return $slug;
} else if ( ( is_multisite() && is_plugin_active_for_network( WPS_HIDE_LOGIN_BASENAME ) && ( $slug = get_site_option( 'whl_redirect_admin', '404' ) ) ) ) {
return $slug;
} else if ( $slug = '404' ) {
return $slug;
}
}
public function new_login_url( $scheme = null ) {
$url = apply_filters( 'wps_hide_login_home_url', home_url( '/', $scheme ) );
if ( get_option( 'permalink_structure' ) ) {
return $this->user_trailingslashit( $url . $this->new_login_slug() );
} else {
return $url . '?' . $this->new_login_slug();
}
}
public function new_redirect_url( $scheme = null ) {
if ( get_option( 'permalink_structure' ) ) {
return $this->user_trailingslashit( home_url( '/', $scheme ) . $this->new_redirect_slug() );
} else {
return home_url( '/', $scheme ) . '?' . $this->new_redirect_slug();
}
}
public function admin_notices_incompatible() {
echo '<div class="error notice is-dismissible"><p>' . __( 'Please upgrade to the latest version of WordPress to activate', 'wps-hide-login' ) . ' <strong>' . __( 'WPS Hide Login', 'wps-hide-login' ) . '</strong>.</p></div>';
}
public function admin_notices_plugin_conflict() {
echo '<div class="error notice is-dismissible"><p>' . __( 'WPS Hide Login could not be activated because you already have Rename wp-login.php active. Please uninstall rename wp-login.php to use WPS Hide Login', 'wps-hide-login' ) . '</p></div>';
}
/**
* Plugin activation
*/
public static function activate() {
//add_option( 'whl_redirect', '1' );
do_action( 'wps_hide_login_activate' );
}
public function wpmu_options() {
$out = '';
$out .= '<h3>' . __( 'WPS Hide Login', 'wps-hide-login' ) . '</h3>';
$out .= '<p>' . __( 'This option allows you to set a networkwide default, which can be overridden by individual sites. Simply go to to the site’s permalink settings to change the url.', 'wps-hide-login' ) . '</p>';
$out .= '<p>' . sprintf( __( 'Need help? Try the <a href="%1$s" target="_blank">support forum</a>. This plugin is kindly brought to you by <a href="%2$s" target="_blank">WPServeur</a>', 'wps-hide-login' ), 'http://wordpress.org/support/plugin/wps-hide-login/', 'https://www.wpserveur.net/?refwps=14&campaign=wpshidelogin' ) . '</p>';
$out .= '<table class="form-table">';
$out .= '<tr valign="top">';
$out .= '<th scope="row"><label for="whl_page">' . __( 'Networkwide default', 'wps-hide-login' ) . '</label></th>';
$out .= '<td><input id="whl_page" type="text" name="whl_page" value="' . esc_attr( get_site_option( 'whl_page', 'login' ) ) . '"></td>';
$out .= '<th scope="row"><label for="whl_redirect_admin">' . __( 'Redirection url default', 'wps-hide-login' ) . '</label></th>';
$out .= '<td><input id="whl_redirect_admin" type="text" name="whl_redirect_admin" value="' . esc_attr( get_site_option( 'whl_redirect_admin', '404' ) ) . '"></td>';
$out .= '</tr>';
$out .= '</table>';
echo $out;
}
public function update_wpmu_options() {
if ( ! empty( $_POST ) && check_admin_referer( 'siteoptions' ) ) {
if ( ( $whl_page = sanitize_title_with_dashes( $_POST['whl_page'] ) )
&& strpos( $whl_page, 'wp-login' ) === false
&& ! in_array( $whl_page, $this->forbidden_slugs() ) ) {
flush_rewrite_rules( true );
update_site_option( 'whl_page', $whl_page );
}
if ( ( $whl_redirect_admin = sanitize_title_with_dashes( $_POST['whl_redirect_admin'] ) )
&& strpos( $whl_redirect_admin, '404' ) === false ) {
flush_rewrite_rules( true );
update_site_option( 'whl_redirect_admin', $whl_redirect_admin );
}
}
}
public function admin_init() {
global $pagenow;
add_settings_section(
'wps-hide-login-section',
'WPS Hide Login',
array( $this, 'whl_section_desc' ),
'general'
);
add_settings_field(
'whl_page',
'<label for="whl_page">' . __( 'Login url', 'wps-hide-login' ) . '</label>',
array( $this, 'whl_page_input' ),
'general',
'wps-hide-login-section'
);
add_settings_field(
'whl_redirect_admin',
'<label for="whl_redirect_admin">' . __( 'Redirection url', 'wps-hide-login' ) . '</label>',
array( $this, 'whl_redirect_admin_input' ),
'general',
'wps-hide-login-section'
);
register_setting( 'general', 'whl_page', 'sanitize_title_with_dashes' );
register_setting( 'general', 'whl_redirect_admin', 'sanitize_title_with_dashes' );
if ( get_option( 'whl_redirect' ) ) {
delete_option( 'whl_redirect' );
if ( is_multisite()
&& is_super_admin()
&& is_plugin_active_for_network( WPS_HIDE_LOGIN_BASENAME ) ) {
$redirect = network_admin_url( 'settings.php#whl_settings' );
} else {
$redirect = admin_url( 'options-general.php#whl_settings' );
}
wp_safe_redirect( $redirect );
die();
}
}
public function whl_section_desc() {
$out = '';
if ( ! is_multisite()
|| is_super_admin() ) {
$details_url_wpsbidouille = add_query_arg(
array(
'tab' => 'plugin-information',
'plugin' => 'wps-bidouille',
'TB_iframe' => true,
'width' => 722,
'height' => 949,
),
admin_url( 'plugin-install.php' )
);
$details_url_wpscleaner = add_query_arg(
array(
'tab' => 'plugin-information',
'plugin' => 'wps-cleaner',
'TB_iframe' => true,
'width' => 722,
'height' => 949,
),
admin_url( 'plugin-install.php' )
);
$details_url_wpslimitlogin = add_query_arg(
array(
'tab' => 'plugin-information',
'plugin' => 'wps-limit-login',
'TB_iframe' => true,
'width' => 722,
'height' => 949,
),
admin_url( 'plugin-install.php' )
);
$details_url_wpboutik = add_query_arg(
array(
'tab' => 'plugin-information',
'plugin' => 'wpboutik',
'TB_iframe' => true,
'width' => 722,
'height' => 949,
),
admin_url( 'plugin-install.php' )
);
$out .= '<div id="whl_settings">';
$out .= sprintf( __( 'Need help? Try the <a href="%1$s" target="_blank">support forum</a>. This plugin is kindly brought to you by <a href="%2$s" target="_blank">WPServeur</a>', 'wps-hide-login' ), 'http://wordpress.org/support/plugin/wps-hide-login/', 'https://www.wpserveur.net/?refwps=14&campaign=wpshidelogin' ) . ' (' . __( 'WordPress specialized hosting', 'wps-hide-login' ) . ')';
$out .= '<br>' . __( 'Discover our other plugins:', 'wps-hide-login' ) . ' ';
$out .= __( 'the plugin', 'wps-hide-login' ) . ' <a href="' . $details_url_wpsbidouille . '" class="thickbox open-plugin-details-modal">' . __( 'WPS Bidouille', 'wps-hide-login' ) . '</a>';
$out .= ', ' . __( 'the plugin', 'wps-hide-login' ) . ' <a href="' . $details_url_wpscleaner . '" class="thickbox open-plugin-details-modal">' . __( 'WPS Cleaner', 'wps-hide-login' ) . '</a>';
$out .= ' ' . __( 'and', 'wps-hide-login' ) . ' <a href="' . $details_url_wpslimitlogin . '" class="thickbox open-plugin-details-modal">' . __( 'WPS Limit Login', 'wps-hide-login' ) . '</a>.';
$out .= '<br>' . __( 'You want to find out how to simplify ecommerce with WordPress, try', 'wps-hide-login' ) . ' <a href="' . $details_url_wpboutik . '" class="thickbox open-plugin-details-modal">' . __( 'WPBoutik', 'wps-hide-login' ) . '</a>.';
$out .= '</div>';
}
if ( is_multisite()
&& is_super_admin()
&& is_plugin_active_for_network( WPS_HIDE_LOGIN_BASENAME ) ) {
$out .= '<p>' . sprintf( __( 'To set a networkwide default, go to <a href="%s">Network Settings</a>.', 'wps-hide-login' ), network_admin_url( 'settings.php#whl_settings' ) ) . '</p>';
}
echo $out;
}
public function whl_page_input() {
if ( get_option( 'permalink_structure' ) ) {
echo '<code>' . trailingslashit( home_url() ) . '</code> <input id="whl_page" type="text" name="whl_page" value="' . $this->new_login_slug() . '">' . ( $this->use_trailing_slashes() ? ' <code>/</code>' : '' );
} else {
echo '<code>' . trailingslashit( home_url() ) . '?</code> <input id="whl_page" type="text" name="whl_page" value="' . $this->new_login_slug() . '">';
}
echo '<p class="description">' . __( 'Protect your website by changing the login URL and preventing access to the wp-login.php page and the wp-admin directory to non-connected people.', 'wps-hide-login' ) . '</p>';
}
public function whl_redirect_admin_input() {
if ( get_option( 'permalink_structure' ) ) {
echo '<code>' . trailingslashit( home_url() ) . '</code> <input id="whl_redirect_admin" type="text" name="whl_redirect_admin" value="' . $this->new_redirect_slug() . '">' . ( $this->use_trailing_slashes() ? ' <code>/</code>' : '' );
} else {
echo '<code>' . trailingslashit( home_url() ) . '?</code> <input id="whl_redirect_admin" type="text" name="whl_redirect_admin" value="' . $this->new_redirect_slug() . '">';
}
echo '<p class="description">' . __( 'Redirect URL when someone tries to access the wp-login.php page and the wp-admin directory while not logged in.', 'wps-hide-login' ) . '</p>';
}
public function admin_notices() {
global $pagenow;
$out = '';
if ( ! is_network_admin()
&& $pagenow === 'options-general.php'
&& isset( $_GET['settings-updated'] )
&& ! isset( $_GET['page'] ) ) {
echo '<div class="updated notice is-dismissible"><p>' . sprintf( __( 'Your login page is now here: <strong><a href="%1$s">%2$s</a></strong>. Bookmark this page!', 'wps-hide-login' ), $this->new_login_url(), $this->new_login_url() ) . '</p></div>';
}
}
public function plugin_action_links( $links ) {
if ( is_network_admin()
&& is_plugin_active_for_network( WPS_HIDE_LOGIN_BASENAME ) ) {
array_unshift( $links, '<a href="' . network_admin_url( 'settings.php#whl_settings' ) . '">' . __( 'Settings', 'wps-hide-login' ) . '</a>' );
} elseif ( ! is_network_admin() ) {
array_unshift( $links, '<a href="' . admin_url( 'options-general.php#whl_settings' ) . '">' . __( 'Settings', 'wps-hide-login' ) . '</a>' );
}
return $links;
}
public function redirect_export_data() {
if ( ! empty( $_GET ) && isset( $_GET['action'] ) && 'confirmaction' === $_GET['action'] && isset( $_GET['request_id'] ) && isset( $_GET['confirm_key'] ) ) {
$request_id = (int) $_GET['request_id'];
$key = sanitize_text_field( wp_unslash( $_GET['confirm_key'] ) );
$result = wp_validate_user_request_key( $request_id, $key );
if ( ! is_wp_error( $result ) ) {
wp_redirect( add_query_arg( array(
'action' => 'confirmaction',
'request_id' => $_GET['request_id'],
'confirm_key' => $_GET['confirm_key']
), $this->new_login_url()
) );
exit();
}
}
}
public function plugins_loaded() {
global $pagenow;
if ( ! is_multisite()
&& ( strpos( rawurldecode( $_SERVER['REQUEST_URI'] ), 'wp-signup' ) !== false
|| strpos( rawurldecode( $_SERVER['REQUEST_URI'] ), 'wp-activate' ) !== false ) && apply_filters( 'wps_hide_login_signup_enable', false ) === false ) {
wp_die( __( 'This feature is not enabled.', 'wps-hide-login' ) );
}
$request = parse_url( rawurldecode( $_SERVER['REQUEST_URI'] ) );
if ( ( strpos( rawurldecode( $_SERVER['REQUEST_URI'] ), 'wp-login.php' ) !== false
|| ( isset( $request['path'] ) && untrailingslashit( $request['path'] ) === site_url( 'wp-login', 'relative' ) ) )
&& ! is_admin() ) {
$this->wp_login_php = true;
$_SERVER['REQUEST_URI'] = $this->user_trailingslashit( '/' . str_repeat( '-/', 10 ) );
$pagenow = 'index.php';
} elseif ( ( isset( $request['path'] ) && untrailingslashit( $request['path'] ) === home_url( $this->new_login_slug(), 'relative' ) )
|| ( ! get_option( 'permalink_structure' )
&& isset( $_GET[ $this->new_login_slug() ] )
&& empty( $_GET[ $this->new_login_slug() ] ) ) ) {
$_SERVER['SCRIPT_NAME'] = $this->new_login_slug();
$pagenow = 'wp-login.php';
} elseif ( ( strpos( rawurldecode( $_SERVER['REQUEST_URI'] ), 'wp-register.php' ) !== false
|| ( isset( $request['path'] ) && untrailingslashit( $request['path'] ) === site_url( 'wp-register', 'relative' ) ) )
&& ! is_admin() ) {
$this->wp_login_php = true;
$_SERVER['REQUEST_URI'] = $this->user_trailingslashit( '/' . str_repeat( '-/', 10 ) );
$pagenow = 'index.php';
}
}
public function setup_theme() {
global $pagenow;
if ( ! is_user_logged_in() && 'customize.php' === $pagenow ) {
wp_die( __( 'This has been disabled', 'wps-hide-login' ), 403 );
}
}
public function wp_loaded() {
global $pagenow;
$request = parse_url( rawurldecode( $_SERVER['REQUEST_URI'] ) );
do_action( 'wps_hide_login_before_redirect', $request );
if ( ! ( isset( $_GET['action'] ) && $_GET['action'] === 'postpass' && isset( $_POST['post_password'] ) ) ) {
if ( is_admin() && ! is_user_logged_in() && ! defined( 'WP_CLI' ) && ! defined( 'DOING_AJAX' ) && ! defined( 'DOING_CRON' ) && $pagenow !== 'admin-post.php' && $request['path'] !== '/wp-admin/options.php' ) {
wp_safe_redirect( $this->new_redirect_url() );
die();
}
if ( ! is_user_logged_in() && isset( $_GET['wc-ajax'] ) && $pagenow === 'profile.php' ) {
wp_safe_redirect( $this->new_redirect_url() );
die();
}
if ( ! is_user_logged_in() && isset( $request['path'] ) && $request['path'] === '/wp-admin/options.php' ) {
header( 'Location: ' . $this->new_redirect_url() );
die;
}
if ( $pagenow === 'wp-login.php' && isset( $request['path'] ) && $request['path'] !== $this->user_trailingslashit( $request['path'] ) && get_option( 'permalink_structure' ) ) {
wp_safe_redirect( $this->user_trailingslashit( $this->new_login_url() )
. ( ! empty( $_SERVER['QUERY_STRING'] ) ? '?' . $_SERVER['QUERY_STRING'] : '' ) );
die;
} elseif ( $this->wp_login_php ) {
if ( ( $referer = wp_get_referer() )
&& strpos( $referer, 'wp-activate.php' ) !== false
&& ( $referer = parse_url( $referer ) )
&& ! empty( $referer['query'] ) ) {
parse_str( $referer['query'], $referer );
@require_once WPINC . '/ms-functions.php';
if ( ! empty( $referer['key'] )
&& ( $result = wpmu_activate_signup( $referer['key'] ) )
&& is_wp_error( $result )
&& ( $result->get_error_code() === 'already_active'
|| $result->get_error_code() === 'blog_taken' ) ) {
wp_safe_redirect( $this->new_login_url()
. ( ! empty( $_SERVER['QUERY_STRING'] ) ? '?' . $_SERVER['QUERY_STRING'] : '' ) );
die;
}
}
$this->wp_template_loader();
} elseif ( $pagenow === 'wp-login.php' ) {
global $error, $interim_login, $action, $user_login;
$redirect_to = admin_url();
$requested_redirect_to = '';
if ( isset( $_REQUEST['redirect_to'] ) ) {
$requested_redirect_to = $_REQUEST['redirect_to'];
}
if ( is_user_logged_in() ) {
$user = wp_get_current_user();
if ( ! isset( $_REQUEST['action'] ) ) {
$logged_in_redirect = apply_filters( 'whl_logged_in_redirect', $redirect_to, $requested_redirect_to, $user );
wp_safe_redirect( $logged_in_redirect );
die();
}
}
@require_once ABSPATH . 'wp-login.php';
die;
}
}
}
public function site_url( $url, $path, $scheme, $blog_id ) {
return $this->filter_wp_login_php( $url, $scheme );
}
public function network_site_url( $url, $path, $scheme ) {
return $this->filter_wp_login_php( $url, $scheme );
}
public function wp_redirect( $location, $status ) {
if ( strpos( $location, 'https://wordpress.com/wp-login.php' ) !== false ) {
return $location;
}
return $this->filter_wp_login_php( $location );
}
public function filter_wp_login_php( $url, $scheme = null ) {
global $pagenow;
$origin_url = $url;
if ( strpos( $url, 'wp-login.php?action=postpass' ) !== false ) {
return $url;
}
if ( is_multisite() && 'install.php' === $pagenow ) {
return $url;
}
/*if ( strpos( $url, 'wp-admin/?action=postpass' ) === false ) {
return $url;
}*/
if ( strpos( $url, 'wp-login.php' ) !== false && strpos( wp_get_referer(), 'wp-login.php' ) === false ) {
if ( is_ssl() ) {
$scheme = 'https';
}
$args = explode( '?', $url );
if ( isset( $args[1] ) ) {
parse_str( $args[1], $args );
if ( isset( $args['login'] ) ) {
$args['login'] = rawurlencode( $args['login'] );
}
$url = add_query_arg( $args, $this->new_login_url( $scheme ) );
} else {
$url = $this->new_login_url( $scheme );
}
}
if ( isset( $_POST['post_password'] ) ) {
global $current_user;
if ( ! is_user_logged_in() && is_wp_error( wp_authenticate_username_password( null, $current_user->user_login, $_POST['post_password'] ) ) ) {
return $origin_url;
}
}
if ( ! is_user_logged_in() ) {
if ( file_exists( WP_CONTENT_DIR . '/plugins/gravityforms/gravityforms.php' ) && isset( $_GET['gf_page'] ) ) {
return $origin_url;
}
}
return $url;
}
public function welcome_email( $value ) {
return $value = str_replace( 'wp-login.php', trailingslashit( get_site_option( 'whl_page', 'login' ) ), $value );
}
public function forbidden_slugs() {
$wp = new \WP;
return array_merge( $wp->public_query_vars, $wp->private_query_vars );
}
/**
* Load scripts
*/
public function admin_enqueue_scripts( $hook ) {
if ( 'options-general.php' != $hook ) {
return false;
}
wp_enqueue_style( 'plugin-install' );
wp_enqueue_script( 'plugin-install' );
wp_enqueue_script( 'updates' );
add_thickbox();
}
public function wps_hide_login_menu_page() {
$title = __( 'WPS Hide Login' );
add_options_page( $title, $title, 'manage_options', 'whl_settings', array(
$this,
'settings_page'
) );
}
public function settings_page() {
_e( 'WPS Hide Login' );
}
public function whl_template_redirect() {
if ( ! empty( $_GET ) && isset( $_GET['page'] ) && 'whl_settings' === $_GET['page'] ) {
wp_redirect( admin_url( 'options-general.php#whl_settings' ) );
exit();
}
}
/**
*
* Update url redirect : wp-admin/options.php
*
* @param $login_url
* @param $redirect
* @param $force_reauth
*
* @return string
*/
public function login_url( $login_url, $redirect, $force_reauth ) {
if ( is_404() ) {
return '#';
}
if ( $force_reauth === false ) {
return $login_url;
}
if ( empty( $redirect ) ) {
return $login_url;
}
$redirect = explode( '?', $redirect );
if ( $redirect[0] === admin_url( 'options.php' ) ) {
$login_url = admin_url();
}
return $login_url;
}
/**
* Handles Ajax request to persist notices dismissal.
*/
public function dismiss_admin_notice() {
check_ajax_referer( 'wps-hide-login-dismissible-notice' );
$option_name = sanitize_text_field( $_POST['option_name'] );
$dismissible_length = sanitize_text_field( $_POST['dismissible_length'] );
$transient = 0;
if ( 'forever' != $dismissible_length ) {
// If $dismissible_length is not an integer default to 1
$dismissible_length = ( 0 == absint( $dismissible_length ) ) ? 1 : $dismissible_length;
$transient = absint( $dismissible_length ) * DAY_IN_SECONDS;
$dismissible_length = strtotime( absint( $dismissible_length ) . ' days' );
}
set_site_transient( $option_name, $dismissible_length, $transient );
wp_die();
}
/**
* Load scripts
*/
public function admin_enqueue_scripts_notifs( $hook ) {
/*if ( 'options-general.php' != $hook ) {
return false;
}*/
wp_enqueue_script( 'wps-hide-login-functions', WPS_HIDE_LOGIN_URL . 'assets/js/functions.js', array(
'jquery',
), false, true );
wp_localize_script(
'wps-hide-login-functions',
'dismissible_notice',
array(
'nonce' => wp_create_nonce( 'wps-hide-login-dismissible-notice' ),
)
);
}
public function warning_options_discussion() {
if ( ! self::is_admin_notice_active( 'disable-notice-warning-comments' ) ) {
return false;
}
$current_screen = get_current_screen();
// Vérifie si la page actuelle est options-discussion.php
if ( $current_screen && $current_screen->id === 'options-discussion' ) :
/*if ( function_exists( 'wp_admin_notice' ) ) :
wp_admin_notice(
__( 'WPS Hide Login : Please note, if you check the comment_registration option "Users must be registered and logged in to comment", the login link will not be hidden on the comment block.', 'wps-hide-login' ),
array(
'type' => 'warning',
'dismissible' => true,
'attributes' => array( 'data-slug' => 'wps-hide-login' )
)
);
else :*/ ?>
<div class="wps-updates notice notice-warning is-dismissible"
data-dismissible="disable-notice-warning-comments-forever">
<p><?php _e( 'WPS Hide Login : Please note, if you check the comment_registration option "Users must be registered and logged in to comment", the login link will not be hidden on the comment block.', 'wps-hide-login' ); ?></p>
</div>
<?php
//endif;
endif;
}
public function warning_notice_for_comment_registration() {
if ( ! self::is_admin_notice_active( 'disable-notice-warning-comment-registration' ) ) {
return false;
}
$comment_registration_option = get_option( 'comment_registration' );
if ( $comment_registration_option == '1' ) :
/*if ( function_exists( 'wp_admin_notice' ) ) :
wp_admin_notice(
__( 'WPS Hide Login : Please note that the comment_registration option “Users must be registered and logged in to comment” is activated on your site, the connection link will not be hidden on the comments block.', 'wps-hide-login' ),
array(
'type' => 'warning',
'dismissible' => true,
'attributes' => array( 'data-slug' => 'wps-hide-login' )
)
);
else :*/ ?>
<div class="wps-updates notice notice-warning is-dismissible"
data-dismissible="disable-notice-warning-comment-registration-forever">
<p><?php _e( 'WPS Hide Login : Please note that the comment_registration option “Users must be registered and logged in to comment” is activated on your site, the connection link will not be hidden on the comments block.', 'wps-hide-login' ); ?></p>
</div>
<?php
//endif;
endif;
}
/**
* Is admin notice active?
*
* @param string $arg data-dismissible content of notice.
*
* @return bool
*/
public static function is_admin_notice_active( $arg ) {
$array = explode( '-', $arg );
$option_name = implode( '-', $array );
$db_record = get_site_transient( $option_name );
if ( 'forever' == $db_record ) {
return false;
} elseif ( absint( $db_record ) >= time() ) {
return false;
} else {
return true;
}
}
public function manage_sites_action_links( $actions, $blog_id, $blogname ) {
$actions['backend'] = sprintf(
'<a href="%1$s" class="edit">%2$s</a>',
esc_url( get_site_url( $blog_id, $this->new_login_slug() ) ),
__( 'Dashboard' )
);
return $actions;
}
}