100) $rate = 100; $rate = number_format($rate, 4, '.', ''); $class = woocommerce_clean($tax_classes[$i]); if (isset($tax_shipping[$i]) && $tax_shipping[$i]) $shipping = 'yes'; else $shipping = 'no'; // Handle countries $counties_array = array(); $countries = $tax_countries[$i]; if ($countries) foreach ($countries as $country) : $country = woocommerce_clean($country); $state = '*'; if (strstr($country, ':')) : $cr = explode(':', $country); $country = current($cr); $state = end($cr); endif; $counties_array[trim($country)][] = trim($state); endforeach; $tax_rates[] = array( 'countries' => $counties_array, 'rate' => $rate, 'shipping' => $shipping, 'class' => $class ); endif; endfor; update_option($value['id'], $tax_rates); elseif (isset($value['type']) && $value['type']=='multi_select_countries') : // Get countries array if (isset($_POST[$value['id']])) $selected_countries = $_POST[$value['id']]; else $selected_countries = array(); update_option($value['id'], $selected_countries); elseif ( isset($value['id']) && ( $value['id'] == 'woocommerce_price_thousand_sep' || $value['id'] == 'woocommerce_price_decimal_sep' ) ): // price separators get a special treatment as they should allow a spaces (don't trim) if( isset( $_POST[ $value['id'] ] ) ) { update_option($value['id'], $_POST[$value['id']] ); } else { delete_option($value['id']); } elseif (isset($value['type']) && $value['type']=='checkbox') : if(isset($value['id']) && isset($_POST[$value['id']])) { update_option($value['id'], 'yes'); } else { update_option($value['id'], 'no'); } elseif (isset($value['type']) && $value['type']=='image_width') : if(isset($value['id']) && isset($_POST[$value['id'].'_width'])) { update_option($value['id'].'_width', woocommerce_clean($_POST[$value['id'].'_width'])); update_option($value['id'].'_height', woocommerce_clean($_POST[$value['id'].'_height'])); if (isset($_POST[$value['id'].'_crop'])) : update_option($value['id'].'_crop', 1); else : update_option($value['id'].'_crop', 0); endif; } else { update_option($value['id'].'_width', $value['std']); update_option($value['id'].'_height', $value['std']); update_option($value['id'].'_crop', 1); } else : if(isset($value['id']) && isset($_POST[$value['id']])) { update_option($value['id'], woocommerce_clean($_POST[$value['id']])); } else { delete_option($value['id']); } endif; } return true; } /** * Admin fields * * Loops though the woocommerce options array and outputs each field. */ function woocommerce_admin_fields($options) { global $woocommerce; foreach ($options as $value) : if (!isset( $value['name'] ) ) $value['name'] = ''; if (!isset( $value['class'] )) $value['class'] = ''; if (!isset( $value['css'] )) $value['css'] = ''; if (!isset( $value['std'] )) $value['std'] = ''; switch($value['type']) : case 'title': if (isset($value['name']) && $value['name']) echo '
[?] | [?] | |||
---|---|---|---|---|
|
% | /> |