2013-07-26 14:36:28 +00:00
< ? php
/**
* WooCommerce Shipping Settings
*
* @ author WooThemes
* @ category Admin
* @ package WooCommerce / Admin
* @ version 2.1 . 0
*/
if ( ! defined ( 'ABSPATH' ) ) exit ; // Exit if accessed directly
if ( ! class_exists ( 'WC_Settings_Payment_Gateways' ) ) :
/**
* WC_Settings_Payment_Gateways
*/
class WC_Settings_Payment_Gateways extends WC_Settings_Page {
/**
* Constructor .
*/
public function __construct () {
2013-08-22 10:58:03 +00:00
$this -> id = 'checkout' ;
2014-02-06 15:44:50 +00:00
$this -> label = _x ( 'Checkout' , 'Settings tab label' , 'woocommerce' );
2013-07-26 14:36:28 +00:00
add_filter ( 'woocommerce_settings_tabs_array' , array ( $this , 'add_settings_page' ), 20 );
add_action ( 'woocommerce_sections_' . $this -> id , array ( $this , 'output_sections' ) );
add_action ( 'woocommerce_settings_' . $this -> id , array ( $this , 'output' ) );
add_action ( 'woocommerce_admin_field_payment_gateways' , array ( $this , 'payment_gateways_setting' ) );
add_action ( 'woocommerce_settings_save_' . $this -> id , array ( $this , 'save' ) );
}
/**
* Get sections
*
* @ return array
*/
public function get_sections () {
$sections = array (
2013-08-22 10:58:03 +00:00
'' => __ ( 'Checkout Options' , 'woocommerce' )
2013-07-26 14:36:28 +00:00
);
// Load shipping methods so we can show any global options they may have
$payment_gateways = WC () -> payment_gateways -> payment_gateways ();
foreach ( $payment_gateways as $gateway ) {
2013-10-25 15:44:17 +00:00
$title = empty ( $gateway -> method_title ) ? ucfirst ( $gateway -> id ) : $gateway -> method_title ;
2013-07-26 14:36:28 +00:00
$sections [ strtolower ( get_class ( $gateway ) ) ] = esc_html ( $title );
}
2014-02-17 14:30:37 +00:00
return apply_filters ( 'woocommerce_get_sections_' . $this -> id , $sections );
2013-07-26 14:36:28 +00:00
}
/**
* Get settings array
*
* @ return array
*/
public function get_settings () {
return apply_filters ( 'woocommerce_payment_gateways_settings' , array (
2013-08-22 11:11:19 +00:00
array ( 'title' => __ ( 'Checkout Process' , 'woocommerce' ), 'type' => 'title' , 'id' => 'checkout_process_options' ),
array (
'title' => __ ( 'Coupons' , 'woocommerce' ),
'desc' => __ ( 'Enable the use of coupons' , 'woocommerce' ),
'id' => 'woocommerce_enable_coupons' ,
'default' => 'yes' ,
'type' => 'checkbox' ,
'desc_tip' => __ ( 'Coupons can be applied from the cart and checkout pages.' , 'woocommerce' ),
'autoload' => false
),
array (
2014-03-03 14:47:19 +00:00
'title' => _x ( 'Checkout' , 'Settings group label' , 'woocommerce' ),
2013-08-22 11:11:19 +00:00
'desc' => __ ( 'Enable guest checkout' , 'woocommerce' ),
'desc_tip' => __ ( 'Allows customers to checkout without creating an account.' , 'woocommerce' ),
'id' => 'woocommerce_enable_guest_checkout' ,
'default' => 'yes' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'start' ,
'autoload' => false
),
array (
'desc' => __ ( 'Force secure checkout' , 'woocommerce' ),
'id' => 'woocommerce_force_ssl_checkout' ,
'default' => 'no' ,
'type' => 'checkbox' ,
'checkboxgroup' => '' ,
'show_if_checked' => 'option' ,
'desc_tip' => __ ( 'Force SSL (HTTPS) on the checkout pages (an SSL Certificate is required).' , 'woocommerce' ),
),
array (
2014-05-15 11:40:02 +00:00
'desc' => __ ( 'Force HTTP when leaving the checkout' , 'woocommerce' ),
2013-08-22 11:11:19 +00:00
'id' => 'woocommerce_unforce_ssl_checkout' ,
'default' => 'no' ,
'type' => 'checkbox' ,
'checkboxgroup' => 'end' ,
'show_if_checked' => 'yes' ,
),
array ( 'type' => 'sectionend' , 'id' => 'checkout_process_options' ),
array ( 'title' => __ ( 'Checkout Pages' , 'woocommerce' ), 'desc' => __ ( 'These pages need to be set so that WooCommerce knows where to send users to checkout.' , 'woocommerce' ), 'type' => 'title' , 'id' => 'checkout_page_options' ),
2013-07-26 14:36:28 +00:00
array (
2013-08-22 10:58:03 +00:00
'title' => __ ( 'Cart Page' , 'woocommerce' ),
2013-10-23 13:55:18 +00:00
'desc' => __ ( 'Page contents:' , 'woocommerce' ) . ' [' . apply_filters ( 'woocommerce_cart_shortcode_tag' , 'woocommerce_cart' ) . ']' ,
2013-08-22 10:58:03 +00:00
'id' => 'woocommerce_cart_page_id' ,
'type' => 'single_select_page' ,
'default' => '' ,
'class' => 'chosen_select_nostd' ,
'css' => 'min-width:300px;' ,
'desc_tip' => true ,
2013-07-26 14:36:28 +00:00
),
2013-08-22 10:58:03 +00:00
array (
'title' => __ ( 'Checkout Page' , 'woocommerce' ),
2013-10-23 13:55:18 +00:00
'desc' => __ ( 'Page contents:' , 'woocommerce' ) . ' [' . apply_filters ( 'woocommerce_checkout_shortcode_tag' , 'woocommerce_checkout' ) . ']' ,
2013-08-22 10:58:03 +00:00
'id' => 'woocommerce_checkout_page_id' ,
'type' => 'single_select_page' ,
'default' => '' ,
'class' => 'chosen_select_nostd' ,
'css' => 'min-width:300px;' ,
'desc_tip' => true ,
),
array (
'title' => __ ( 'Terms and Conditions' , 'woocommerce' ),
'desc' => __ ( 'If you define a "Terms" page the customer will be asked if they accept them when checking out.' , 'woocommerce' ),
'id' => 'woocommerce_terms_page_id' ,
'default' => '' ,
'class' => 'chosen_select_nostd' ,
'css' => 'min-width:300px;' ,
'type' => 'single_select_page' ,
'desc_tip' => true ,
'autoload' => false
),
array ( 'type' => 'sectionend' , 'id' => 'checkout_page_options' ),
2013-08-22 11:11:19 +00:00
array ( 'title' => __ ( 'Checkout Endpoints' , 'woocommerce' ), 'type' => 'title' , 'desc' => __ ( 'Endpoints are appended to your page URLs to handle specific actions during the checkout process. They should be unique.' , 'woocommerce' ), 'id' => 'account_endpoint_options' ),
2013-08-22 10:58:03 +00:00
array (
'title' => __ ( 'Pay' , 'woocommerce' ),
'desc' => __ ( 'Endpoint for the Checkout → Pay page' , 'woocommerce' ),
'id' => 'woocommerce_checkout_pay_endpoint' ,
'type' => 'text' ,
'default' => 'order-pay' ,
'desc_tip' => true ,
),
array (
'title' => __ ( 'Order Received' , 'woocommerce' ),
2014-04-17 09:03:47 +00:00
'desc' => __ ( 'Endpoint for the Checkout → Order Received page' , 'woocommerce' ),
2013-08-22 10:58:03 +00:00
'id' => 'woocommerce_checkout_order_received_endpoint' ,
'type' => 'text' ,
'default' => 'order-received' ,
'desc_tip' => true ,
),
2013-11-01 17:08:22 +00:00
array (
'title' => __ ( 'Add Payment Method' , 'woocommerce' ),
'desc' => __ ( 'Endpoint for the Checkout → Add Payment Method page' , 'woocommerce' ),
2013-11-05 21:02:13 +00:00
'id' => 'woocommerce_myaccount_add_payment_method_endpoint' ,
2013-11-01 17:08:22 +00:00
'type' => 'text' ,
'default' => 'add-payment-method' ,
'desc_tip' => true ,
),
2013-08-22 10:58:03 +00:00
array ( 'type' => 'sectionend' , 'id' => 'checkout_endpoint_options' ),
2013-08-22 11:11:19 +00:00
array ( 'title' => __ ( 'Payment Gateways' , 'woocommerce' ), 'desc' => __ ( 'Installed gateways are listed below. Drag and drop gateways to control their display order on the frontend.' , 'woocommerce' ), 'type' => 'title' , 'id' => 'payment_gateways_options' ),
2013-08-22 10:58:03 +00:00
array ( 'type' => 'payment_gateways' ),
2013-07-26 14:36:28 +00:00
array ( 'type' => 'sectionend' , 'id' => 'payment_gateways_options' ),
)); // End payment_gateway settings
}
/**
* Output the settings
*/
public function output () {
global $current_section ;
// Load shipping methods so we can show any global options they may have
$payment_gateways = WC () -> payment_gateways -> payment_gateways ();
if ( $current_section ) {
foreach ( $payment_gateways as $gateway ) {
2013-08-08 11:38:20 +00:00
if ( strtolower ( get_class ( $gateway ) ) == strtolower ( $current_section ) ) {
2013-07-26 14:36:28 +00:00
$gateway -> admin_options ();
break ;
}
}
} else {
$settings = $this -> get_settings ();
WC_Admin_Settings :: output_fields ( $settings );
}
}
/**
* Output payment gateway settings .
*
* @ access public
* @ return void
*/
public function payment_gateways_setting () {
?>
< tr valign = " top " >
2014-08-15 09:28:34 +00:00
< th scope = " row " class = " titledesc " >< ? php _e ( 'Gateway Display Order' , 'woocommerce' ) ?> </th>
2013-08-22 10:58:03 +00:00
< td class = " forminp " >
2013-07-26 14:36:28 +00:00
< table class = " wc_gateways widefat " cellspacing = " 0 " >
< thead >
< tr >
< ? php
$columns = apply_filters ( 'woocommerce_payment_gateways_setting_columns' , array (
2013-09-09 16:15:58 +00:00
'default' => __ ( 'Default' , 'woocommerce' ),
'name' => __ ( 'Gateway' , 'woocommerce' ),
'id' => __ ( 'Gateway ID' , 'woocommerce' ),
'status' => __ ( 'Status' , 'woocommerce' ),
'settings' => ''
2013-07-26 14:36:28 +00:00
) );
foreach ( $columns as $key => $column ) {
echo '<th class="' . esc_attr ( $key ) . '">' . esc_html ( $column ) . '</th>' ;
}
?>
</ tr >
</ thead >
< tbody >
< ? php
$default_gateway = get_option ( 'woocommerce_default_gateway' );
foreach ( WC () -> payment_gateways -> payment_gateways () as $gateway ) {
echo '<tr>' ;
foreach ( $columns as $key => $column ) {
switch ( $key ) {
case 'default' :
2013-09-09 16:15:58 +00:00
echo ' < td width = " 1% " class = " default " >
2013-07-26 14:36:28 +00:00
< input type = " radio " name = " default_gateway " value = " ' . esc_attr( $gateway->id ) . ' " ' . checked( $default_gateway, esc_attr( $gateway->id ), false ) . ' />
< input type = " hidden " name = " gateway_order[] " value = " ' . esc_attr( $gateway->id ) . ' " />
</ td > ' ;
break ;
2013-09-09 16:15:58 +00:00
case 'name' :
echo ' < td class = " name " >
' . $gateway->get_title() . '
</ td > ' ;
break ;
case 'id' :
echo ' < td class = " id " >
' . esc_html( $gateway->id ) . '
2013-07-26 14:36:28 +00:00
</ td > ' ;
break ;
case 'status' :
echo '<td class="status">' ;
if ( $gateway -> enabled == 'yes' )
echo '<span class="status-enabled tips" data-tip="' . __ ( 'Enabled' , 'woocommerce' ) . '">' . __ ( 'Enabled' , 'woocommerce' ) . '</span>' ;
2013-09-09 16:15:58 +00:00
else
echo '-' ;
2013-07-26 14:36:28 +00:00
echo '</td>' ;
break ;
2013-09-09 16:15:58 +00:00
case 'settings' :
echo ' < td class = " settings " >
2013-10-22 16:26:18 +00:00
< a class = " button " href = " ' . admin_url( 'admin.php?page=wc-settings&tab=checkout§ion=' . strtolower( get_class( $gateway ) ) ) . ' " > ' . __( ' Settings ', ' woocommerce ' ) . ' </ a >
2013-09-09 16:15:58 +00:00
</ td > ' ;
break ;
2013-07-26 14:36:28 +00:00
default :
do_action ( 'woocommerce_payment_gateways_setting_column_' . $key , $gateway );
break ;
}
}
echo '</tr>' ;
}
?>
</ tbody >
</ table >
</ td >
</ tr >
< ? php
}
/**
* Save settings
*/
public function save () {
global $current_section ;
if ( ! $current_section ) {
$settings = $this -> get_settings ();
WC_Admin_Settings :: save_fields ( $settings );
WC () -> payment_gateways -> process_admin_options ();
} elseif ( class_exists ( $current_section ) ) {
$current_section_class = new $current_section ();
2013-08-22 10:58:03 +00:00
do_action ( 'woocommerce_update_options_payment_gateways_' . $current_section_class -> id );
2013-07-26 14:36:28 +00:00
WC () -> payment_gateways () -> init ();
}
}
}
endif ;
return new WC_Settings_Payment_Gateways ();