1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
|
<?php /** * Admin View: Settings */
if ( ! defined( 'ABSPATH' ) ) { exit; // Exit if accessed directly }
?>
<div class="wrap woocommerce"> <form method="post" id="mainform" action="" enctype="multipart/form-data"> <div class="icon32 icon32-woocommerce-settings" id="icon-woocommerce"><br /></div><h2 class="nav-tab-wrapper woo-nav-tab-wrapper"> <?php foreach ( $tabs as $name => $label ) echo '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . $name ) . '" class="nav-tab ' . ( $current_tab == $name ? 'nav-tab-active' : '' ) . '">' . $label . '</a>';
do_action( 'woocommerce_settings_tabs' ); ?> </h2>
<?php do_action( 'woocommerce_sections_' . $current_tab ); do_action( 'woocommerce_settings_' . $current_tab ); do_action( 'woocommerce_settings_tabs_' . $current_tab ); // @deprecated hook ?>
<p class="submit"> <?php if ( ! isset( $GLOBALS['hide_save_button'] ) ) : ?> <input name="save" class="button-primary" type="submit" value="<?php _e( 'Save changes', 'woocommerce' ); ?>" /> <?php endif; ?> <input type="hidden" name="subtab" id="last_tab" /> <?php wp_nonce_field( 'woocommerce-settings' ); ?> </p> </form> </div>
|