logger
1 week ago
settings
1 week ago
views
1 week ago
class-shortcode-unit-dimension.php
1 week ago
class-shortcode-unit-weight.php
1 week ago
class-wpdesk-flexible-shipping-multilingual.php
1 week ago
flexible-shipping-settings.php
1 week ago
order-item-meta.php
1 week ago
shipping-method.php
1 week ago
flexible-shipping-settings.php
150 lines
| 1 | <?php |
| 2 | /** |
| 3 | * WPDesk_Flexible_Shipping_Settings |
| 4 | * |
| 5 | * @package Flexible Shipping |
| 6 | */ |
| 7 | |
| 8 | use FSVendor\WPDesk\Beacon\Beacon\WooCommerceSettingsFieldsModifier; |
| 9 | use WPDesk\FS\Info\Dashboard; |
| 10 | |
| 11 | /** |
| 12 | * Mainly read only info about FS + debug mode. |
| 13 | */ |
| 14 | class WPDesk_Flexible_Shipping_Settings extends WC_Shipping_Method { |
| 15 | |
| 16 | const METHOD_ID = 'flexible_shipping_info'; |
| 17 | |
| 18 | const WOOCOMMERCE_PAGE_WC_SETTINGS = 'wc-settings'; |
| 19 | |
| 20 | const WOOCOMMERCE_SETTINGS_SHIPPING_URL = 'admin.php?page=wc-settings&tab=shipping'; |
| 21 | |
| 22 | /** |
| 23 | * Logger settings. |
| 24 | * |
| 25 | * @var WPDesk_Flexible_Shipping_Logger_Settings |
| 26 | */ |
| 27 | private $logger_settings; |
| 28 | |
| 29 | /** |
| 30 | * WPDesk_Flexible_Shipping_Connect constructor. |
| 31 | * |
| 32 | * @param int $instance_id Instance id. |
| 33 | */ |
| 34 | public function __construct( $instance_id = 0 ) { |
| 35 | parent::__construct( $instance_id ); |
| 36 | |
| 37 | $this->id = self::METHOD_ID; |
| 38 | $this->enabled = 'no'; |
| 39 | $this->method_title = __( 'Flexible Shipping', 'flexible-shipping' ); |
| 40 | |
| 41 | $this->supports = [ |
| 42 | 'settings', |
| 43 | ]; |
| 44 | |
| 45 | $this->logger_settings = new WPDesk_Flexible_Shipping_Logger_Settings( $this ); |
| 46 | |
| 47 | $this->init_form_fields(); |
| 48 | |
| 49 | add_action( 'woocommerce_update_options_shipping_' . $this->id, [ $this, 'process_admin_options' ] ); |
| 50 | } |
| 51 | |
| 52 | /** |
| 53 | * Update debug mode. |
| 54 | */ |
| 55 | private function update_debug_mode() { |
| 56 | $this->logger_settings->update_option_from_saas_settings( $this ); |
| 57 | } |
| 58 | |
| 59 | /** |
| 60 | * Process admin options. |
| 61 | */ |
| 62 | public function process_admin_options() { |
| 63 | parent::process_admin_options(); |
| 64 | $this->update_debug_mode(); |
| 65 | |
| 66 | $url = admin_url( self::WOOCOMMERCE_SETTINGS_SHIPPING_URL ); |
| 67 | $url = add_query_arg( 'section', $this->id, $url ); |
| 68 | wp_safe_redirect( $url ); |
| 69 | exit; |
| 70 | } |
| 71 | |
| 72 | /** |
| 73 | * In settings screen? |
| 74 | * |
| 75 | * @return bool |
| 76 | */ |
| 77 | public function is_in_settings() { |
| 78 | if ( is_admin() && isset( $_GET['page'] ) && isset( $_GET['section'] ) ) { |
| 79 | $page = sanitize_key( $_GET['page'] ); |
| 80 | $section = sanitize_key( $_GET['section'] ); |
| 81 | if ( self::WOOCOMMERCE_PAGE_WC_SETTINGS === $page && self::METHOD_ID === $section ) { |
| 82 | return true; |
| 83 | } |
| 84 | } |
| 85 | |
| 86 | return false; |
| 87 | } |
| 88 | |
| 89 | /** |
| 90 | * Initialise Settings Form Fields. |
| 91 | */ |
| 92 | public function init_form_fields() { |
| 93 | $this->form_fields = [ |
| 94 | 'flexible_shipping' => [ |
| 95 | 'type' => 'flexible_shipping', |
| 96 | ], |
| 97 | ]; |
| 98 | $this->form_fields[] = [ |
| 99 | 'type' => 'title', |
| 100 | 'title' => __( 'Advanced settings', 'flexible-shipping' ), |
| 101 | 'class' => 'fs-dashboard-native-advanced-title', |
| 102 | 'default' => '', |
| 103 | ]; |
| 104 | |
| 105 | $this->form_fields = $this->logger_settings->add_fields_to_settings( $this->form_fields ); |
| 106 | $this->form_fields = $this->add_beacon_search_data_to_fields( $this->form_fields ); |
| 107 | $this->form_fields[] = [ |
| 108 | 'type' => 'title', |
| 109 | 'default' => '', |
| 110 | ]; |
| 111 | |
| 112 | } |
| 113 | |
| 114 | /** |
| 115 | * Add beacon search data to fields. |
| 116 | * |
| 117 | * @param array $form_fields . |
| 118 | * |
| 119 | * @return array |
| 120 | */ |
| 121 | private function add_beacon_search_data_to_fields( array $form_fields ) { |
| 122 | $modifier = new WooCommerceSettingsFieldsModifier(); |
| 123 | |
| 124 | return $modifier->append_beacon_search_data_to_fields( $form_fields ); |
| 125 | } |
| 126 | |
| 127 | /** |
| 128 | * Generate FC connect box |
| 129 | * |
| 130 | * @param string $key Key. |
| 131 | * @param array $data Data. |
| 132 | * |
| 133 | * @return string |
| 134 | */ |
| 135 | public function generate_flexible_shipping_html( $key, $data ) { |
| 136 | $dashboard = new Dashboard( |
| 137 | wpdesk_is_plugin_active( 'flexible-shipping-pro/flexible-shipping-pro.php' ), |
| 138 | get_user_locale() |
| 139 | ); |
| 140 | |
| 141 | ob_start(); |
| 142 | include 'views/html-shipping-settings-info-description.php'; |
| 143 | $notice_content = ob_get_contents(); |
| 144 | ob_end_clean(); |
| 145 | |
| 146 | return $notice_content; |
| 147 | } |
| 148 | |
| 149 | } |
| 150 |