2021-02-16 03:41:35 +00:00
|
|
|
<?php
|
|
|
|
/**
|
|
|
|
* Admin View: Dashboard - Finish Setup
|
|
|
|
*
|
|
|
|
* @package WooCommerce\Admin
|
|
|
|
*/
|
|
|
|
|
|
|
|
if ( ! defined( 'ABSPATH' ) ) {
|
|
|
|
exit;
|
|
|
|
}
|
|
|
|
?>
|
|
|
|
<div class="dashboard-widget-finish-setup">
|
|
|
|
<span class='progress-wrapper'>
|
|
|
|
<svg class="circle-progress" width="17" height="17" version="1.1" xmlns="http://www.w3.org/2000/svg">
|
|
|
|
<circle r="6.5" cx="10" cy="10" fill="transparent" stroke-dasharray="40.859" stroke-dashoffset="0"></circle>
|
|
|
|
<circle class="bar" r="6.5" cx="190" cy="10" fill="transparent" stroke-dasharray="40.859" stroke-dashoffset="<?php echo esc_attr( $circle_dashoffset ); ?>" transform='rotate(-90 100 100)'></circle>
|
|
|
|
</svg>
|
2021-02-18 00:10:55 +00:00
|
|
|
<span><?php echo esc_html_e( 'Step', 'woocommerce' ); ?> <?php echo esc_html( $completed_tasks_count ); ?> <?php echo esc_html_e( 'of', 'woocommerce' ); ?> <?php echo esc_html( $tasks_count ); ?></span>
|
2021-02-16 03:41:35 +00:00
|
|
|
</span>
|
|
|
|
|
|
|
|
<div class="description">
|
|
|
|
<div>
|
|
|
|
<?php echo esc_html_e( 'You\'re almost there! Once you complete store setup you can start receiving orders.', 'woocommerce' ); ?>
|
|
|
|
<div><a href='<?php echo esc_attr( $button_link ); ?>' class='button button-primary'><?php echo esc_html_e( 'Start selling', 'woocommerce' ); ?></a></div>
|
|
|
|
</div>
|
2021-02-23 03:46:31 +00:00
|
|
|
<img src="<?php echo esc_url( WC()->plugin_url() ); ?>/assets/images/dashboard-widget-setup.png" />
|
2021-02-16 03:41:35 +00:00
|
|
|
</div>
|
|
|
|
<div class="clear"></div>
|
|
|
|
</div>
|