setting_tabs = array( 'general' => array( 'title' => __( 'General', 'password-protected' ), 'slug' => 'general', 'icon' => 'dashicons-migrate', ), 'advanced' => array( 'title' => __( 'Advanced', 'password-protected' ), 'slug' => 'advanced', 'icon' => 'dashicons-admin-settings', 'sub-tabs' => array( 'exclude-from-protection' => array( 'title' => __( 'Exclude From Protection', 'password-protected' ), 'slug' => 'exclude-from-protection', ), 'password-protected-page-description' => array( 'title' => __( 'Protected Page Content', 'password-protected' ), 'slug' => 'password-protected-page-description', ), 'bypass-url' => array( 'title' => __( 'Bypass URL', 'password-protected' ), 'slug' => 'bypass-url', ), ), ), 'manage_passwords' => array( 'title' => __( 'Multiple Passwords', 'password-protected' ), 'slug' => 'manage_passwords', 'icon' => 'dashicons-shield', ), 'content-protection' => array( 'title' => __( 'Content Protection', 'password-protected' ), 'slug' => 'content-protection', 'icon' => 'dashicons-superhero', 'sub-tabs' => array( 'post-type-protection' => array( 'title' => __( 'Post Type Protection', 'password-protected' ), 'slug' => 'post-type-protection', ), 'taxonomy-protection' => array( 'title' => __( 'Taxonomy Protection', 'password-protected' ), 'slug' => 'taxonomy-protection', ), ), ), 'security' => array( 'title' => __( 'Security', 'password-protected' ), 'slug' => 'security', 'icon' => 'dashicons-shield-alt', 'sub-tabs' => array( 'whitelist-user-role' => array( 'title' => __( 'Whitelist User Role', 'password-protected' ), 'slug' => 'whitelist-user-role', ), 'google-recaptcha' => array( 'title' => __( 'Google ReCaptcha', 'password-protected' ), 'slug' => 'google-recaptcha', ), 'wp-admin-protection' => array( 'title' => __( 'WP-Admin Protection', 'password-protected' ), 'slug' => 'wp-admin-protection', ), 'attempt-limitation' => array( 'title' => __( 'Attempt Limitation', 'password-protected' ), 'slug' => 'attempt-limitation', ), ), ), 'logs' => array( 'title' => __( 'Logs', 'password-protected' ), 'slug' => 'logs', 'icon' => 'dashicons-media-text', 'sub-tabs' => array( 'activity_logs' => array( 'title' => __( 'Activity Logs', 'password-protected' ), 'slug' => 'activity_logs', ), 'activity-report' => array( 'title' => __( 'Activity Report', 'password-protected' ), 'slug' => 'activity-report', ), ), ), ); $this->setting_tabs = apply_filters( 'password_protected_setting_tabs', $this->setting_tabs ); $this->setting_tabs['help'] = array( 'title' => __( 'Help', 'password-protected' ), 'slug' => 'help', 'icon' => 'dashicons-editor-help', ); $this->setting_tabs['getpro'] = array( 'title' => __( 'Get Pro', 'password-protected' ), 'slug' => 'getpro', 'icon' => 'dashicons-privacy', ); if ( class_exists( 'Password_Protected_Pro' ) ) { unset( $this->setting_tabs['getpro'] ); } } /** * Admin enqueue scripts. * * @param string $hooks Page Hook. */ public function admin_enqueue_scripts( $hooks ) { if ( 'settings_page_password-protected' === $hooks || 'toplevel_page_password-protected' === $hooks ) { wp_enqueue_style( 'password-protected-page-script', PASSWORD_PROTECTED_URL . 'assets/css/admin.css', array(), '2.6.2' ); wp_enqueue_script( 'password-protected-admin-script', PASSWORD_PROTECTED_URL . 'assets/js/admin.js', array('jquery'), '2.6.2' ); } } public function init() { if ( ! class_exists( 'Password_Protected_Pro' ) ) { add_action( 'password_protected_subtab_exclude-from-protection_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_attempt-limitation_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_bypass-url_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_tab_manage_passwords_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_post-type-protection_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_taxonomy-protection_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_whitelist-user-role_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_wp-admin-protection_content', array( $this, 'dummy_content' ) ); add_action( 'password_protected_subtab_activity_logs_content', array( $this, 'dummy_content' ) ); } if ( isset( $_GET['page'] ) && 'password-protected-get-pro' === $_GET['page'] ) { wp_redirect( 'https://passwordprotectedwp.com/pricing/?utm_source=Plugin&utm_medium=Submenu' ); exit; } } /** * Add Privacy Policy */ public function add_privacy_policy() { if ( ! function_exists( 'wp_add_privacy_policy_content' ) ) { return 1; } $content = _x( 'The Password Protected plugin stores a cookie on successful password login containing a hashed version of the entered password. It does not store any information about the user. The cookie stored is named bid_n_password_protected_auth where n is the blog ID in a multisite network', 'privacy policy content', 'password-protected' ); wp_add_privacy_policy_content( __( 'Password Protected Plugin', 'password-protected' ), wp_kses_post( wpautop( $content, false ) ) ); } /** * Admin Menu */ public function admin_menu() { $capability = apply_filters( 'password_protected_options_page_capability', 'manage_options' ); $this->settings_page_id = add_options_page( __( 'Password Protected', 'password-protected' ), __( 'Password Protected', 'password-protected' ), $capability, 'password-protected', array( $this, 'settings_page' ) ); add_menu_page( 'Password Protected', 'Password Protected', 'manage_options', 'password-protected', array( $this, 'pp_admin_menu_page_callback' ), 'dashicons-lock', 99 ); add_action( 'load-' . $this->settings_page_id, array( $this, 'add_help_tabs' ), 20 ); if ( ! class_exists( 'Password_Protected_Pro' ) ) { add_submenu_page( 'password-protected', __( 'Get Pro', 'password-protected' ), __( '↳ ⭐ Get Pro', 'password-protected' ), 'manage_options', 'password-protected-get-pro', array( $this, 'password_protected_get_pro_features' ) ); } } /** * Settings Page */ public function settings_page() { ?>

setting_tabs = array_filter( $this->setting_tabs, function( $tab ) { return isset( $tab['title'] ) && isset( $tab['slug'] ) && isset( $tab['icon'] ); } ); if ( isset( $this->setting_tabs[ $tab ]['sub-tabs'] ) && ! empty( $this->setting_tabs[ $tab ]['sub-tabs'] ) ) { $this->setting_tabs[ $tab ]['sub-tabs'] = array_filter( $this->setting_tabs[ $tab ]['sub-tabs'], function ( $subtab ) { return isset( $subtab['title'] ) && isset( $subtab['slug'] ); } ); } ?>
setting_tabs as $index => $setting_tab ) : ?>
setting_tabs[ $tab ] ) && isset( $this->setting_tabs[ $tab ]['sub-tabs'] ) && ! empty( $this->setting_tabs[ $tab ]['sub-tabs'] ) ) : ?>
password_protected_render_tab_content( $tab, $subtab ); ?>
'; settings_fields( 'password-protected-advanced' ); do_settings_sections( 'password-protected&tab=advanced&sub-tab=password-protected-page-description' ); submit_button(); echo ''; } /** * password protected render settings page in menu */ public function password_protected_render_tab_content( $tab, $sub_tab ) { switch ( $tab ) { case 'general': do_settings_sections( 'password-protected-help' ); echo '
'; settings_fields( 'password-protected' ); do_settings_sections( 'password-protected' ); submit_button(); echo '
'; break; case 'help': ?>
password_protected_get_pro_features(); break; case $tab: if ( ! empty( $sub_tab ) ) { do_action( 'password_protected_subtab_' . $sub_tab . '_content', $this->setting_tabs[ $tab ]['sub-tabs'][ $sub_tab ] ); } else { do_action( 'password_protected_tab_' . $tab . '_content', $this->setting_tabs[ $tab ] ); } break; } } /** * Add Help Tabs */ public function add_help_tabs() { global $wp_version; if ( version_compare( $wp_version, '3.3', '<' ) ) { return 1; } do_action( 'password_protected_help_tabs', get_current_screen() ); } /** * Help Tabs * * @param object $current_screen Screen object. */ public function help_tabs( $current_screen ) { $current_screen->add_help_tab( array( 'id' => 'PASSWORD_PROTECTED_SETTINGS', 'title' => __( 'Password Protected', 'password-protected' ), 'content' => __( '

Password Protected Status
Turn on/off password protection.

', 'password-protected' ) . __( '

Protected Permissions
Allow access for logged in users and administrators without needing to enter a password. You will need to enable this option if you want administrators to be able to preview the site in the Theme Customizer. Also allow RSS Feeds to be accessed when the site is password protected.

', 'password-protected' ) . __( '

Password Fields
To set a new password, enter it into both fields. You cannot set an `empty` password. To disable password protection uncheck the Enabled checkbox.

', 'password-protected' ) ) ); } /** * Settings API */ public function password_protected_settings() { // general tab add_settings_section( 'password_protected', __( 'Password Protected Configuration', 'password-protected' ), array( $this, 'password_protected_settings_section' ), $this->options_group ); add_settings_field( 'password_protected_status', __( 'Password Protected Status', 'password-protected' ), array( $this, 'password_protected_status_field' ), $this->options_group, 'password_protected' ); add_settings_field( 'password_protected_permissions', __( 'Protected Permissions', 'password-protected' ), array( $this, 'password_protected_permissions_field' ), $this->options_group, 'password_protected' ); add_settings_field( 'password_protected_password', __( 'New Password', 'password-protected' ), array( $this, 'password_protected_password_field' ), $this->options_group, 'password_protected' ); add_settings_field( 'password_protected_allowed_ip_addresses', __( 'Allow IP Addresses', 'password-protected' ), array( $this, 'password_protected_allowed_ip_addresses_field' ), $this->options_group, 'password_protected' ); add_settings_field( 'password_protected_remember_me', __( 'Allow Remember me', 'password-protected' ), array( $this, 'password_protected_remember_me_field' ), $this->options_group, 'password_protected' ); add_settings_field( 'password_protected_remember_me_lifetime', __( 'Remember for this many days', 'password-protected' ), array( $this, 'password_protected_remember_me_lifetime_field' ), $this->options_group, 'password_protected' ); // password protected advanced tab add_settings_section( 'password-protected-advanced-tab', 'Password Protected Page description', array( $this, 'password_protected_page_description' ), 'password-protected&tab=advanced&sub-tab=password-protected-page-description' ); add_settings_field( 'text-above-password', __( 'Text Above Password Field', 'password-protected' ), array( $this, 'password_protected_text_above_password' ), 'password-protected&tab=advanced&sub-tab=password-protected-page-description', 'password-protected-advanced-tab' ); add_settings_field( 'text-below-password', __( 'Text Below Password Field ', 'password-protected' ), array( $this, 'password_protected_text_below_password' ), 'password-protected&tab=advanced&sub-tab=password-protected-page-description', 'password-protected-advanced-tab' ); /*add_settings_field( 'password-protected-use-transient', __( 'Use Transients', 'password-protected' ), array( $this, 'password_protected_use_transient' ), 'password-protected&tab=advanced', 'password-protected-advanced-tab', array( 'label_for' => 'password-protected-use-transient', ) );*/ // password protected help tab add_settings_section( 'password-protected-help', '', array( $this, 'password_protected_help_tab' ), 'password-protected-help' ); if( !$this->password_protected_pro_is_installed_and_activated() ) { add_settings_section( 'password-protected-try-pro', '', array( $this, 'password_protected_try_pro' ), 'password-protected-try-pro' ); } // registering settings register_setting( $this->options_group, 'password_protected_status', 'intval' ); register_setting( $this->options_group, 'password_protected_feeds', 'intval' ); register_setting( $this->options_group, 'password_protected_rest', 'intval' ); register_setting( $this->options_group, 'password_protected_administrators', 'intval' ); register_setting( $this->options_group, 'password_protected_users', 'intval' ); register_setting( $this->options_group, 'password_protected_password', array( $this, 'sanitize_password_protected_password' ) ); register_setting( $this->options_group, 'password_protected_allowed_ip_addresses', array( $this, 'sanitize_ip_addresses' ) ); register_setting( $this->options_group, 'password_protected_remember_me', 'boolval' ); register_setting( $this->options_group, 'password_protected_remember_me_lifetime', 'intval' ); register_setting( $this->options_group.'-advanced', 'password_protected_text_above_password', array( 'type' => 'string' ) ); register_setting( $this->options_group.'-advanced', 'password_protected_text_below_password', array( 'type' => 'string' ) ); } /** * Sanitize Password Field Input * * @param string $val Password. * @return string Sanitized password. */ public function sanitize_password_protected_password( $val ) { $old_val = get_option( 'password_protected_password' ); if ( is_array( $val ) ) { if ( empty( $val['new'] ) ) { return $old_val; } elseif ( empty( $val['confirm'] ) ) { add_settings_error( 'password_protected_password', 'password_protected_password', __( 'New password not saved. When setting a new password please enter it in both fields.', 'password-protected' ) ); return $old_val; } elseif ( $val['new'] != $val['confirm'] ) { add_settings_error( 'password_protected_password', 'password_protected_password', __( 'New password not saved. Password fields did not match.', 'password-protected' ) ); return $old_val; } elseif ( $val['new'] == $val['confirm'] ) { add_settings_error( 'password_protected_password', 'password_protected_password', __( 'New password saved.', 'password-protected' ), 'updated' ); return $val['new']; } return get_option( 'password_protected_password' ); } return $val; } /** * Sanitize IP Addresses * * @param string $val IP addresses. * @return string Sanitized IP addresses. */ public function sanitize_ip_addresses( $val ) { $ip_addresses = explode( "\n", $val ); $ip_addresses = array_map( 'sanitize_text_field', $ip_addresses ); $ip_addresses = array_map( 'trim', $ip_addresses ); $ip_addresses = array_map( array( $this, 'validate_ip_address' ), $ip_addresses ); $ip_addresses = array_filter( $ip_addresses ); $val = implode( "\n", $ip_addresses ); return $val; } /** * Validate IP Address * * @param string $ip_address IP Address. * @return string Validated IP Address. */ private function validate_ip_address( $ip_address ) { return filter_var( $ip_address, FILTER_VALIDATE_IP ); } /** * Password Protected Section */ public function password_protected_settings_section() { return 1; } /** * Password Protection Status Field */ public function password_protected_status_field() { echo '

'; } /** * Password Protection Permissions Field */ public function password_protected_permissions_field() { echo '

'; } /** * Password Field */ public function password_protected_password_field() { echo '

' . __( 'If you would like to change the password, type a new one. Otherwise, leave this blank.', 'password-protected' ) . '


' . __( 'Type your new password again.', 'password-protected' ) . '

'; } /** * Allowed IP Addresses Field */ public function password_protected_allowed_ip_addresses_field() { echo ''; echo '

' . esc_html__( 'Enter one IP address per line.', 'password-protected' ); if ( isset( $_SERVER['REMOTE_ADDR'] ) ) { echo ' ' . esc_html( sprintf( __( 'Your IP address is %s.', 'password-protected' ), $_SERVER['REMOTE_ADDR'] ) ); } echo '

'; } /** * Remember Me Field */ public function password_protected_remember_me_field() { echo '

'; } /** * Remember Me lifetime field */ public function password_protected_remember_me_lifetime_field() { echo ''; } /** * Password Protected Page description */ public function password_protected_page_description() { return 1; } /** * Password Protected text above passsword */ public function password_protected_text_above_password() { echo ''; } /** * Password Protected below above passsword */ public function password_protected_text_below_password() { echo ''; } public function password_protected_use_transient() { $use_transient = get_option( 'password_protected_use_transient', false ); $checked = empty( $use_transient ) ? '' : 'checked="checked"'; echo ' ' . esc_attr__( 'This option will save your passwords in transients for your IP instead of cookies. Only use it if you face any cache-related issues on your site.', 'password-protected' ) . ''; } /** * Help Tab text field */ public function password_protected_help_tab() { echo '

' . __( 'Password protect your web site. Users will be asked to enter a password to view the site.', 'password-protected' ) . '
' . __( 'For more information about Password Protected settings, view the "Help" tab at the top of this page.', 'password-protected' ) . '

'; } /** * Try pro sideabr */ public function password_protected_try_pro() { $image_url = PASSWORD_PROTECTED_URL . 'assets/images/'; echo '

Level up your WordPress protection with

Password Protected Pro

  • Protect Specific Post Types
  • Whitelist Specific User Role
  • Password Protect WP-Admin
  • Password Attempt Activity Report
  • Specific Post/Page Protection
  • Certain Page/Posts Exclusions
  • Password Attempts Restriction
  • Password Expiration and Usage Limit
  • Bypass URL (Post, Page, Category, etc.)
  • Activity Log For Each Password Attempt
  • Multiple Password Management
'; } /** * Pre-update 'password_protected_password' Option * * Before the password is saved, MD5 it! * Doing it in this way allows developers to intercept with an earlier filter if they * need to do something with the plaintext password. * * @param string $newvalue New Value. * @param string $oldvalue Old Value. * @return string Filtered new value. */ public function pre_update_option_password_protected_password( $newvalue, $oldvalue ) { global $Password_Protected; if ( $newvalue != $oldvalue ) { $newvalue = $Password_Protected->encrypt_password( $newvalue ); } return $newvalue; } /** * Plugin Row Meta * * Adds GitHub and translate links below the plugin description on the plugins page. * * @param array $plugin_meta Plugin meta display array. * @param string $plugin_file Plugin reference. * @param array $plugin_data Plugin data. * @param string $status Plugin status. * @return array Plugin meta array. */ public function plugin_row_meta( $plugin_meta, $plugin_file, $plugin_data, $status ) { if ( 'password-protected/password-protected.php' == $plugin_file ) { $plugin_meta[] = sprintf( '%s', __( 'http://github.com/benhuson/password-protected', 'password-protected' ), __( 'GitHub', 'password-protected' ) ); $plugin_meta[] = sprintf( '%s', __( 'https://translate.wordpress.org/projects/wp-plugins/password-protected', 'password-protected' ), __( 'Translate', 'password-protected' ) ); } return $plugin_meta; } /** * Plugin Action Links * * Adds settings link on the plugins page. * * @param array $actions Plugin action links array. * @return array Plugin action links array. */ public function plugin_action_links( $actions ) { $actions[] = sprintf( '%s', admin_url( 'admin.php?page=password-protected' ), __( 'Settings', 'password-protected' ) ); return $actions; } /** * Password Admin Notice * Warns the user if they have enabled password protection but not entered a password */ public function password_protected_admin_notices() { global $Password_Protected; // Check Support $screens = $this->plugin_screen_ids( array( 'dashboard', 'plugins' ) ); if ( $this->is_current_screen( $screens ) ) { $supported = $Password_Protected->is_plugin_supported(); if ( is_wp_error( $supported ) ) { echo $this->admin_error_display( $supported->get_error_message( $supported->get_error_code() ) ); } } // Settings if ( $this->is_current_screen( $this->plugin_screen_ids() ) ) { $status = get_option( 'password_protected_status' ); $pwd = get_option( 'password_protected_password' ); if ( (bool) $status && empty( $pwd ) ) { $error_message = __( 'You have enabled password protection but not yet set a password. Please set one below.', 'password-protected' ); $error = apply_filters( 'password_protected_password_status_activation', $error_message ); if( !empty( $error ) ) { echo $this->admin_error_display( $error ); } } if ( current_user_can( 'manage_options' ) && ( (bool) get_option( 'password_protected_administrators' ) || (bool) get_option( 'password_protected_users' ) ) ) { if ( (bool) get_option( 'password_protected_administrators' ) && (bool) get_option( 'password_protected_users' ) ) { echo $this->admin_error_display( __( 'You have enabled password protection and allowed administrators and logged in users - other users will still need to enter a password to view the site.', 'password-protected' ) ); } elseif ( (bool) get_option( 'password_protected_administrators' ) ) { if ( (bool) get_option( 'password_protected_status' ) ) { echo $this->admin_error_display( __( 'You have enabled password protection and allowed administrators - other users will still need to enter a password to view the site.', 'password-protected' ) ); } } elseif ( (bool) get_option( 'password_protected_users' ) ) { if ( (bool) get_option( 'password_protected_status' ) ) { echo $this->admin_error_display( __( 'You have enabled password protection and allowed logged in users - other users will still need to enter a password to view the site.', 'password-protected' ) ); } } } } } /** * Admin Error Display * * Returns a string wrapped in HTML to display an admin error. * * @param string $string Error string. * @return string HTML error. */ private function admin_error_display( $string ) { return '

' . $string . '

'; } /** * Is Current Screen * * Checks wether the admin is displaying a specific screen. * * @param string|array $screen_id Admin screen ID(s). * @return boolean */ public function is_current_screen( $screen_id ) { if ( function_exists( 'get_current_screen' ) ) { $current_screen = get_current_screen(); if ( ! is_array( $screen_id ) ) { $screen_id = array( $screen_id ); } if ( in_array( $current_screen->id, $screen_id ) ) { return true; } } return false; } /** * Plugin Screen IDs * * @param string|array $screen_id Additional screen IDs to add to the returned array. * @return array Screen IDs. */ public function plugin_screen_ids( $screen_id = '' ) { $screen_ids = array( 'options-' . $this->options_group, 'settings_page_' . $this->options_group ); array_push( $screen_ids, 'toplevel_page_'.$this->options_group ); if ( ! empty( $screen_id ) ) { if ( is_array( $screen_id ) ) { $screen_ids = array_merge( $screen_ids, $screen_id ); } else { $screen_ids[] = $screen_id; } } // toplevel_page_password-protected return $screen_ids; } /** * @return bool * true if password protected pro is installed and activated otherwise false */ public function password_protected_pro_is_installed_and_activated(): bool { return class_exists( 'Password_Protected_Pro' ); } /** * @return void * Display Pro Features */ public function password_protected_get_pro_features() { $image_url = PASSWORD_PROTECTED_URL . 'assets/images/'; echo '

Level up your WordPress protection with

Password Protected Pro

Protect Specific Post Types Docs
Whitelist Specific User Role Docs
Password Protect WP-Admin Docs
Password Attempt Activity Report Docs
Specific Post/Page Protection Docs
Certain Page/Posts Exclusions Docs
Password Attempts Restriction Docs
Password Expiration and Usage Limit Docs
Bypass URL (Post, Page, Category, etc.) Docs
Activity Log For Each Password Attempt Docs
Multiple Password Management Docs
'; } public function dummy_content( $k ) { echo '
'; switch ( $k['slug'] ) { case 'exclude-from-protection': echo '

Exclude From Password Protection PRO

'; break; case 'attempt-limitation': echo '

Limit Password Attempts PRO

'; break; case 'bypass-url': echo '

Bypass URL PRO

'; break; case 'manage_passwords': echo '

Manage Passwords PRO



Password Uses Remaining Expiry Status Actions Bypass URL
Manage passwords are only available in Password Protected Pro version.
Password Uses Remaining Expiry Status Actions Bypass URL
'; break; case 'activity_logs': echo '

Activity Logs PRO

IP Browser Status Password Date Time
Activity logs are only available in Password Protected Pro version.
IP Browser Status Password Date Time
'; break; case 'post-type-protection': echo '

Post type protection PRO

Post Type Global Individual
Post
Page
'; break; case 'taxonomy-protection': echo '

Category/Taxonomy protection PRO

Category
Post_tag
'; break; case 'whitelist-user-role': echo '

White List User Roles PRO

Enable Whitelist User Roles
Whitelist User Roles

WP Login Screen Redirect

Enable WP Login Screen Redirection
Add Text for Redirection Link
'; break; case 'wp-admin-protection': echo '

Enable Admin Protection PRO

Enable

Password

Password

Remember Me

Remember Me
Remember Me Many Days

Forgot Password

Forgot Password
'; break; } echo '
'; } }