2013-08-22 10:58:03 +00:00
< ? php
/**
2015-11-03 13:53:50 +00:00
* WooCommerce Account Settings
2013-08-22 10:58:03 +00:00
*
2014-08-31 08:22:03 +00:00
* @ author WooThemes
* @ category Admin
* @ package WooCommerce / Admin
2013-08-22 10:58:03 +00:00
* @ version 2.1 . 0
*/
2014-09-20 19:55:47 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2013-08-22 10:58:03 +00:00
2017-02-16 11:46:01 +00:00
if ( ! class_exists ( 'WC_Settings_Accounts' , false ) ) :
2013-08-22 10:58:03 +00:00
/**
2015-11-03 13:31:20 +00:00
* WC_Settings_Accounts .
2013-08-22 10:58:03 +00:00
*/
class WC_Settings_Accounts extends WC_Settings_Page {
/**
* Constructor .
*/
public function __construct () {
$this -> id = 'account' ;
$this -> label = __ ( 'Accounts' , 'woocommerce' );
2017-08-12 00:36:35 +00:00
parent :: __construct ();
2013-08-22 10:58:03 +00:00
}
/**
2015-11-03 13:31:20 +00:00
* Get settings array .
2013-08-22 10:58:03 +00:00
*
* @ return array
*/
public function get_settings () {
2014-09-12 11:20:06 +00:00
$settings = apply_filters ( 'woocommerce_' . $this -> id . '_settings' , array (
2013-08-22 10:58:03 +00:00
2016-10-12 10:16:30 +00:00
array ( 'title' => __ ( 'Account pages' , 'woocommerce' ), 'type' => 'title' , 'desc' => __ ( 'These pages need to be set so that WooCommerce knows where to send users to access account related functionality.' , 'woocommerce' ), 'id' => 'account_page_options' ),
2013-08-22 10:58:03 +00:00
array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'My account page' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => sprintf ( __ ( 'Page contents: [%s]' , 'woocommerce' ), apply_filters ( 'woocommerce_my_account_shortcode_tag' , 'woocommerce_my_account' ) ),
2014-08-31 08:22:03 +00:00
'id' => 'woocommerce_myaccount_page_id' ,
'type' => 'single_select_page' ,
'default' => '' ,
2017-06-19 07:14:12 +00:00
'class' => 'wc-enhanced-select-nostd' ,
2014-08-31 08:22:03 +00:00
'css' => 'min-width:300px;' ,
'desc_tip' => true ,
2013-08-22 10:58:03 +00:00
),
array ( 'type' => 'sectionend' , 'id' => 'account_page_options' ),
2016-08-27 02:36:32 +00:00
array ( 'title' => '' , 'type' => 'title' , 'id' => 'account_registration_options' ),
2016-04-22 11:29:06 +00:00
array (
2017-03-21 13:23:35 +00:00
'title' => __ ( 'Customer registration' , 'woocommerce' ),
'desc' => __ ( 'Enable customer registration on the "Checkout" page.' , 'woocommerce' ),
2016-04-22 11:29:06 +00:00
'id' => 'woocommerce_enable_signup_and_login_from_checkout' ,
'default' => 'yes' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'start' ,
2016-08-27 01:46:45 +00:00
'autoload' => false ,
2016-04-22 11:29:06 +00:00
),
array (
2017-03-21 13:23:35 +00:00
'desc' => __ ( 'Enable customer registration on the "My account" page.' , 'woocommerce' ),
2016-04-22 11:29:06 +00:00
'id' => 'woocommerce_enable_myaccount_registration' ,
'default' => 'no' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'end' ,
2016-08-27 01:46:45 +00:00
'autoload' => false ,
2016-04-22 11:29:06 +00:00
),
array (
'title' => __ ( 'Login' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Display returning customer login reminder on the "Checkout" page.' , 'woocommerce' ),
2016-04-22 11:29:06 +00:00
'id' => 'woocommerce_enable_checkout_login_reminder' ,
'default' => 'yes' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'start' ,
2016-08-27 01:46:45 +00:00
'autoload' => false ,
2016-04-22 11:29:06 +00:00
),
array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Account creation' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Automatically generate username from customer email.' , 'woocommerce' ),
2016-04-22 11:29:06 +00:00
'id' => 'woocommerce_registration_generate_username' ,
'default' => 'yes' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'start' ,
2016-08-27 01:46:45 +00:00
'autoload' => false ,
2016-04-22 11:29:06 +00:00
),
array (
'desc' => __ ( 'Automatically generate customer password' , 'woocommerce' ),
'id' => 'woocommerce_registration_generate_password' ,
'default' => 'no' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'end' ,
2016-08-27 01:46:45 +00:00
'autoload' => false ,
2016-04-22 11:29:06 +00:00
),
2016-06-30 16:58:10 +00:00
array ( 'type' => 'sectionend' , 'id' => 'account_registration_options' ),
2016-04-22 11:29:06 +00:00
2016-10-12 10:16:30 +00:00
array ( 'title' => __ ( 'My account endpoints' , 'woocommerce' ), 'type' => 'title' , 'desc' => __ ( 'Endpoints are appended to your page URLs to handle specific actions on the accounts pages. They should be unique and can be left blank to disable the endpoint.' , 'woocommerce' ), 'id' => 'account_endpoint_options' ),
2013-08-22 10:58:03 +00:00
2016-01-19 19:47:01 +00:00
array (
'title' => __ ( 'Orders' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → Orders" page.' , 'woocommerce' ),
2016-01-19 19:47:01 +00:00
'id' => 'woocommerce_myaccount_orders_endpoint' ,
'type' => 'text' ,
'default' => 'orders' ,
'desc_tip' => true ,
),
2013-08-22 10:58:03 +00:00
array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'View order' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → View order" page.' , 'woocommerce' ),
2014-08-31 08:22:03 +00:00
'id' => 'woocommerce_myaccount_view_order_endpoint' ,
'type' => 'text' ,
'default' => 'view-order' ,
'desc_tip' => true ,
2013-08-22 10:58:03 +00:00
),
2016-01-19 19:47:01 +00:00
array (
'title' => __ ( 'Downloads' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → Downloads" page.' , 'woocommerce' ),
2016-01-19 19:47:01 +00:00
'id' => 'woocommerce_myaccount_downloads_endpoint' ,
'type' => 'text' ,
'default' => 'downloads' ,
'desc_tip' => true ,
),
2013-08-22 10:58:03 +00:00
array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Edit account' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → Edit account" page.' , 'woocommerce' ),
2014-08-31 08:22:03 +00:00
'id' => 'woocommerce_myaccount_edit_account_endpoint' ,
'type' => 'text' ,
'default' => 'edit-account' ,
'desc_tip' => true ,
2013-08-22 10:58:03 +00:00
),
array (
2016-05-24 18:09:07 +00:00
'title' => __ ( 'Addresses' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → Addresses" page.' , 'woocommerce' ),
2014-08-31 08:22:03 +00:00
'id' => 'woocommerce_myaccount_edit_address_endpoint' ,
'type' => 'text' ,
'default' => 'edit-address' ,
'desc_tip' => true ,
2013-08-22 10:58:03 +00:00
),
2016-01-20 20:13:17 +00:00
array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Payment methods' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → Payment methods" page.' , 'woocommerce' ),
2016-01-20 20:13:17 +00:00
'id' => 'woocommerce_myaccount_payment_methods_endpoint' ,
'type' => 'text' ,
'default' => 'payment-methods' ,
'desc_tip' => true ,
),
2013-08-22 10:58:03 +00:00
array (
2016-10-12 10:16:30 +00:00
'title' => __ ( 'Lost password' , 'woocommerce' ),
2016-10-26 13:31:32 +00:00
'desc' => __ ( 'Endpoint for the "My account → Lost password" page.' , 'woocommerce' ),
2014-08-31 08:22:03 +00:00
'id' => 'woocommerce_myaccount_lost_password_endpoint' ,
'type' => 'text' ,
'default' => 'lost-password' ,
'desc_tip' => true ,
2013-08-22 10:58:03 +00:00
),
2013-08-23 15:41:02 +00:00
array (
2016-10-26 13:31:32 +00:00
'title' => __ ( 'Logout' , 'woocommerce' ),
2014-08-31 08:22:03 +00:00
'desc' => __ ( 'Endpoint for the triggering logout. You can add this to your menus via a custom link: yoursite.com/?customer-logout=true' , 'woocommerce' ),
'id' => 'woocommerce_logout_endpoint' ,
'type' => 'text' ,
'default' => 'customer-logout' ,
'desc_tip' => true ,
2013-08-23 15:41:02 +00:00
),
2013-08-22 10:58:03 +00:00
array ( 'type' => 'sectionend' , 'id' => 'account_endpoint_options' ),
2014-09-12 11:20:06 +00:00
) );
return apply_filters ( 'woocommerce_get_settings_' . $this -> id , $settings );
2013-08-22 10:58:03 +00:00
}
}
endif ;
2014-08-31 08:22:03 +00:00
return new WC_Settings_Accounts ();