2013-07-26 14:36:28 +00:00
< ? php
/**
* WooCommerce General Settings
*
2014-08-31 08:22:03 +00:00
* @ author WooThemes
* @ category Admin
* @ package WooCommerce / Admin
2013-07-26 14:36:28 +00:00
* @ version 2.1 . 0
*/
2014-04-08 22:11:33 +00:00
if ( ! defined ( 'ABSPATH' ) ) {
exit ; // Exit if accessed directly
}
2013-07-26 14:36:28 +00:00
if ( ! class_exists ( 'WC_Settings_General' ) ) :
/**
* WC_Admin_Settings_General
*/
class WC_Settings_General extends WC_Settings_Page {
/**
* Constructor .
*/
public function __construct () {
2014-08-31 08:22:03 +00:00
2013-07-26 14:36:28 +00:00
$this -> id = 'general' ;
$this -> label = __ ( 'General' , 'woocommerce' );
add_filter ( 'woocommerce_settings_tabs_array' , array ( $this , 'add_settings_page' ), 20 );
add_action ( 'woocommerce_settings_' . $this -> id , array ( $this , 'output' ) );
add_action ( 'woocommerce_settings_save_' . $this -> id , array ( $this , 'save' ) );
}
/**
* Get settings array
*
* @ return array
*/
public function get_settings () {
2014-08-31 08:22:03 +00:00
2013-07-26 14:36:28 +00:00
$currency_code_options = get_woocommerce_currencies ();
2014-04-08 22:11:33 +00:00
foreach ( $currency_code_options as $code => $name ) {
2013-07-26 14:36:28 +00:00
$currency_code_options [ $code ] = $name . ' (' . get_woocommerce_currency_symbol ( $code ) . ')' ;
2014-04-08 22:11:33 +00:00
}
2013-07-26 14:36:28 +00:00
2014-09-12 11:20:06 +00:00
$settings = apply_filters ( 'woocommerce_general_settings' , array (
2013-07-26 14:36:28 +00:00
array ( 'title' => __ ( 'General Options' , 'woocommerce' ), 'type' => 'title' , 'desc' => '' , 'id' => 'general_options' ),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Base Location' , 'woocommerce' ),
'desc' => __ ( 'This is the base location for your business. Tax rates will be based on this country.' , 'woocommerce' ),
'id' => 'woocommerce_default_country' ,
'css' => 'min-width:350px;' ,
'default' => 'GB' ,
'type' => 'single_select_country' ,
'desc_tip' => true ,
2013-07-26 14:36:28 +00:00
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Selling Location(s)' , 'woocommerce' ),
'desc' => __ ( 'This option lets you limit which countries you are willing to sell to.' , 'woocommerce' ),
'id' => 'woocommerce_allowed_countries' ,
'default' => 'all' ,
'type' => 'select' ,
2015-01-09 16:39:10 +00:00
'class' => 'wc-enhanced-select' ,
2014-08-31 08:22:03 +00:00
'css' => 'min-width: 350px;' ,
'desc_tip' => true ,
'options' => array (
2013-08-02 15:54:28 +00:00
'all' => __ ( 'Sell to all countries' , 'woocommerce' ),
'specific' => __ ( 'Sell to specific countries only' , 'woocommerce' )
2013-07-26 14:36:28 +00:00
)
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Specific Countries' , 'woocommerce' ),
'desc' => '' ,
'id' => 'woocommerce_specific_allowed_countries' ,
'css' => 'min-width: 350px;' ,
'default' => '' ,
'type' => 'multi_select_countries'
2013-07-26 14:36:28 +00:00
),
2015-03-06 14:39:46 +00:00
array (
'title' => __ ( 'Default Customer Address' , 'woocommerce' ),
'id' => 'woocommerce_default_customer_address' ,
'desc_tip' => __ ( 'This option determines the customers default address (before they input their details).' , 'woocommerce' ),
'desc' => sprintf ( __ ( 'Note: If you choose to Geolocate the user address, the %sMaxMind GeoLite Database%s will be periodically downloaded and stored in your wp-content directory.' , 'woocommerce' ), '<a href="http://dev.maxmind.com/geoip/legacy/geolite/">' , '</a>' ),
'default' => 'geolocation' ,
'type' => 'select' ,
'class' => 'wc-enhanced-select' ,
'options' => array (
'' => __ ( 'No address' , 'woocommerce' ),
'base' => __ ( 'Shop base address' , 'woocommerce' ),
'geolocation' => __ ( 'Geolocate address' , 'woocommerce' ),
),
),
2013-07-26 14:36:28 +00:00
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Store Notice' , 'woocommerce' ),
'desc' => __ ( 'Enable site-wide store notice text' , 'woocommerce' ),
'id' => 'woocommerce_demo_store' ,
'default' => 'no' ,
'type' => 'checkbox'
2013-07-26 14:36:28 +00:00
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Store Notice Text' , 'woocommerce' ),
'desc' => '' ,
'id' => 'woocommerce_demo_store_notice' ,
'default' => __ ( 'This is a demo store for testing purposes — no orders shall be fulfilled.' , 'woocommerce' ),
'type' => 'text' ,
'css' => 'min-width:300px;' ,
'autoload' => false
2013-07-26 14:36:28 +00:00
),
array ( 'type' => 'sectionend' , 'id' => 'general_options' ),
2014-08-31 08:22:03 +00:00
array ( 'title' => __ ( 'Currency Options' , 'woocommerce' ), 'type' => 'title' , 'desc' => __ ( 'The following options affect how prices are displayed on the frontend.' , 'woocommerce' ), 'id' => 'pricing_options' ),
2013-07-26 14:36:28 +00:00
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Currency' , 'woocommerce' ),
'desc' => __ ( 'This controls what currency prices are listed at in the catalog and which currency gateways will take payments in.' , 'woocommerce' ),
'id' => 'woocommerce_currency' ,
'css' => 'min-width:350px;' ,
'default' => 'GBP' ,
'type' => 'select' ,
2015-01-09 16:39:10 +00:00
'class' => 'wc-enhanced-select' ,
2014-08-31 08:22:03 +00:00
'desc_tip' => true ,
'options' => $currency_code_options
2013-07-26 14:36:28 +00:00
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Currency Position' , 'woocommerce' ),
'desc' => __ ( 'This controls the position of the currency symbol.' , 'woocommerce' ),
'id' => 'woocommerce_currency_pos' ,
'css' => 'min-width:350px;' ,
2015-01-09 16:39:10 +00:00
'class' => 'wc-enhanced-select' ,
2014-08-31 08:22:03 +00:00
'default' => 'left' ,
'type' => 'select' ,
'options' => array (
2013-08-22 10:58:03 +00:00
'left' => __ ( 'Left' , 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol () . '99.99)' ,
'right' => __ ( 'Right' , 'woocommerce' ) . ' (99.99' . get_woocommerce_currency_symbol () . ')' ,
'left_space' => __ ( 'Left with space' , 'woocommerce' ) . ' (' . get_woocommerce_currency_symbol () . ' 99.99)' ,
'right_space' => __ ( 'Right with space' , 'woocommerce' ) . ' (99.99 ' . get_woocommerce_currency_symbol () . ')'
),
2014-08-31 08:22:03 +00:00
'desc_tip' => true ,
2013-07-26 14:36:28 +00:00
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Thousand Separator' , 'woocommerce' ),
'desc' => __ ( 'This sets the thousand separator of displayed prices.' , 'woocommerce' ),
'id' => 'woocommerce_price_thousand_sep' ,
'css' => 'width:50px;' ,
'default' => ',' ,
'type' => 'text' ,
'desc_tip' => true ,
2013-07-26 14:36:28 +00:00
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Decimal Separator' , 'woocommerce' ),
'desc' => __ ( 'This sets the decimal separator of displayed prices.' , 'woocommerce' ),
'id' => 'woocommerce_price_decimal_sep' ,
'css' => 'width:50px;' ,
'default' => '.' ,
'type' => 'text' ,
'desc_tip' => true ,
2013-07-26 14:36:28 +00:00
),
array (
2014-08-31 08:22:03 +00:00
'title' => __ ( 'Number of Decimals' , 'woocommerce' ),
'desc' => __ ( 'This sets the number of decimal points shown in displayed prices.' , 'woocommerce' ),
'id' => 'woocommerce_price_num_decimals' ,
'css' => 'width:50px;' ,
'default' => '2' ,
'desc_tip' => true ,
'type' => 'number' ,
2013-08-22 10:58:03 +00:00
'custom_attributes' => array (
2014-08-31 08:22:03 +00:00
'min' => 0 ,
'step' => 1
2013-08-22 10:58:03 +00:00
)
2013-07-26 14:36:28 +00:00
),
2014-11-11 12:12:28 +00:00
array ( 'type' => 'sectionend' , 'id' => 'pricing_options' )
2013-07-26 14:36:28 +00:00
2014-09-12 11:20:06 +00:00
) );
return apply_filters ( 'woocommerce_get_settings_' . $this -> id , $settings );
2013-07-26 14:36:28 +00:00
}
/**
* Output a colour picker input box .
*
* @ param mixed $name
2014-09-07 23:37:55 +00:00
* @ param string $id
2013-07-26 14:36:28 +00:00
* @ param mixed $value
* @ param string $desc ( default : '' )
*/
2014-08-31 08:22:03 +00:00
public function color_picker ( $name , $id , $value , $desc = '' ) {
2013-07-26 14:36:28 +00:00
echo '<div class="color_box"><strong><img class="help_tip" data-tip="' . esc_attr ( $desc ) . '" src="' . WC () -> plugin_url () . '/assets/images/help.png" height="16" width="16" /> ' . esc_html ( $name ) . ' </ strong >
2014-04-08 22:11:33 +00:00
< input name = " ' . esc_attr( $id ). ' " id = " ' . esc_attr( $id ) . ' " type = " text " value = " ' . esc_attr( $value ) . ' " class = " colorpick " /> < div id = " colorPickerDiv_' . esc_attr( $id ) . ' " class = " colorpickdiv " ></ div >
</ div > ' ;
2013-07-26 14:36:28 +00:00
}
/**
* Save settings
*/
public function save () {
$settings = $this -> get_settings ();
WC_Admin_Settings :: save_fields ( $settings );
}
}
endif ;
2013-11-19 08:01:46 +00:00
return new WC_Settings_General ();