PATH:
home
/
lab2454c
/
adenbic.com
/
wp-content
/
plugins
/
woocommerce
/
src
/
Admin
/
Features
/
OnboardingTasks
/
Tasks
<?php namespace Automattic\WooCommerce\Admin\Features\OnboardingTasks\Tasks; use Automattic\WooCommerce\Admin\Features\OnboardingTasks\Task; /** * Review Shipping Options Task */ class ReviewShippingOptions extends Task { /** * ID. * * @return string */ public function get_id() { return 'review-shipping'; } /** * Title. * * @return string */ public function get_title() { return __( 'Review shipping options', 'woocommerce' ); } /** * Content. * * @return string */ public function get_content() { return ''; } /** * Time. * * @return string */ public function get_time() { return ''; } /** * Task completion. * * @return bool */ public function is_complete() { return get_option( 'woocommerce_admin_reviewed_default_shipping_zones' ) === 'yes'; } /** * Task visibility. * * @return bool */ public function can_view() { return get_option( 'woocommerce_admin_created_default_shipping_zones' ) === 'yes'; } /** * Action URL. * * @return string */ public function get_action_url() { return admin_url( 'admin.php?page=wc-settings&tab=shipping' ); } }
[-] Payments.php
[edit]
[-] Products.php
[edit]
[-] Marketing.php
[edit]
[+]
..
[-] Purchase.php
[edit]
[-] Appearance.php
[edit]
[-] TourInAppMarketplace.php
[edit]
[-] ExperimentalShippingRecommendation.php
[edit]
[-] GetMobileApp.php
[edit]
[-] Tax.php
[edit]
[-] WooCommercePayments.php
[edit]
[-] ReviewShippingOptions.php
[edit]
[-] CustomizeStore.php
[edit]
[-] StoreDetails.php
[edit]
[-] Shipping.php
[edit]
[-] StoreCreation.php
[edit]
[-] AdditionalPayments.php
[edit]