woocommerce/includes/admin/views/html-admin-settings.php

39 lines
1.3 KiB
PHP
Raw Normal View History

<?php
/**
* Admin View: Settings
*/
if ( ! defined( 'ABSPATH' ) ) {
2016-01-05 11:23:15 +00:00
exit;
}
2016-02-23 09:11:02 +00:00
?>
2013-07-26 14:36:28 +00:00
<div class="wrap woocommerce">
<form method="<?php echo esc_attr( apply_filters( 'woocommerce_settings_form_method_tab_' . $current_tab, 'post' ) ); ?>" id="mainform" action="" enctype="multipart/form-data">
<nav class="nav-tab-wrapper woo-nav-tab-wrapper">
2013-07-26 14:36:28 +00:00
<?php
foreach ( $tabs as $name => $label ) {
2013-10-22 16:26:18 +00:00
echo '<a href="' . admin_url( 'admin.php?page=wc-settings&tab=' . $name ) . '" class="nav-tab ' . ( $current_tab == $name ? 'nav-tab-active' : '' ) . '">' . $label . '</a>';
}
2013-07-26 14:36:28 +00:00
do_action( 'woocommerce_settings_tabs' );
?>
</nav>
<h1 class="screen-reader-text"><?php echo esc_html( $tabs[ $current_tab ] ); ?></h1>
2013-07-26 14:36:28 +00:00
<?php
2016-01-05 11:23:15 +00:00
do_action( 'woocommerce_sections_' . $current_tab );
self::show_messages();
2013-07-26 14:36:28 +00:00
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 esc_attr_e( 'Save changes', 'woocommerce' ); ?>" />
<?php endif; ?>
<input type="hidden" name="subtab" id="last_tab" />
<?php wp_nonce_field( 'woocommerce-settings' ); ?>
</p>
2013-07-26 14:36:28 +00:00
</form>
</div>