2013-07-26 14:36:28 +00:00
|
|
|
<?php
|
|
|
|
/**
|
2015-11-03 13:53:50 +00:00
|
|
|
* WooCommerce Integration Settings
|
2013-07-26 14:36:28 +00:00
|
|
|
*
|
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-09-20 19:55:47 +00:00
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit; // Exit if accessed directly
|
|
|
|
}
|
2013-07-26 14:36:28 +00:00
|
|
|
|
2017-02-16 11:46:01 +00:00
|
|
|
if ( ! class_exists( 'WC_Settings_Integrations', false ) ) :
|
2013-07-26 14:36:28 +00:00
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* WC_Settings_Integrations.
|
2013-07-26 14:36:28 +00:00
|
|
|
*/
|
|
|
|
class WC_Settings_Integrations extends WC_Settings_Page {
|
|
|
|
|
|
|
|
/**
|
|
|
|
* Constructor.
|
|
|
|
*/
|
|
|
|
public function __construct() {
|
|
|
|
$this->id = 'integration';
|
|
|
|
$this->label = __( 'Integration', 'woocommerce' );
|
|
|
|
|
|
|
|
if ( isset( WC()->integrations ) && WC()->integrations->get_integrations() ) {
|
2017-08-12 00:36:35 +00:00
|
|
|
parent::__construct();
|
2013-07-26 14:36:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Get sections.
|
2013-07-26 14:36:28 +00:00
|
|
|
*
|
|
|
|
* @return array
|
|
|
|
*/
|
|
|
|
public function get_sections() {
|
|
|
|
global $current_section;
|
|
|
|
|
|
|
|
$sections = array();
|
|
|
|
|
2015-01-23 13:05:35 +00:00
|
|
|
if ( ! defined( 'WC_INSTALLING' ) ) {
|
|
|
|
$integrations = WC()->integrations->get_integrations();
|
2013-07-26 14:36:28 +00:00
|
|
|
|
2015-01-23 13:05:35 +00:00
|
|
|
if ( ! $current_section && ! empty( $integrations ) ) {
|
|
|
|
$current_section = current( $integrations )->id;
|
|
|
|
}
|
2013-07-26 14:36:28 +00:00
|
|
|
|
2015-01-23 13:05:35 +00:00
|
|
|
if ( sizeof( $integrations ) > 1 ) {
|
|
|
|
foreach ( $integrations as $integration ) {
|
|
|
|
$title = empty( $integration->method_title ) ? ucfirst( $integration->id ) : $integration->method_title;
|
|
|
|
$sections[ strtolower( $integration->id ) ] = esc_html( $title );
|
|
|
|
}
|
2014-10-16 14:53:09 +00:00
|
|
|
}
|
2013-07-26 14:36:28 +00:00
|
|
|
}
|
|
|
|
|
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
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
2015-11-03 13:31:20 +00:00
|
|
|
* Output the settings.
|
2013-07-26 14:36:28 +00:00
|
|
|
*/
|
|
|
|
public function output() {
|
|
|
|
global $current_section;
|
|
|
|
|
|
|
|
$integrations = WC()->integrations->get_integrations();
|
|
|
|
|
2017-03-07 20:24:24 +00:00
|
|
|
if ( isset( $integrations[ $current_section ] ) ) {
|
2013-07-26 14:36:28 +00:00
|
|
|
$integrations[ $current_section ]->admin_options();
|
2017-03-07 20:24:24 +00:00
|
|
|
}
|
2013-07-26 14:36:28 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
endif;
|
|
|
|
|
2014-05-19 05:57:34 +00:00
|
|
|
return new WC_Settings_Integrations();
|