methods = array( 'Ground', '2nd Day', 'Next Day' ); } function generate_select($arg_array) //($Forms, $name, $opt_arr, status_web, status_store', $onchange='', $top_option, $selected='', $css) { foreach($arg_array as $arg=>$val) { $$arg = $val; } $options = array(); foreach($opt_arr as $method) { $options[$method] = $method . ' (insured)'; } return($Forms->generate_select_formfield($name, $options, $top_option, $selected, $onchange, $css)); } function get_amount($country, $method, $items_amount) { //echo $country. ' '.$method.' '.$items_amount; /* Continental US Shipping Costs: Ground: $8.00 2nd Day: $17.00 Next Day: $28.00 FREE ground shipping for orders of $300.00 and up! Shipping outside of the continental United States: Canada: $14.00 Europe: $18.00 Other: $22.00 experiences: 6/2/06 small 1.5 lbs to Norway USPS $11.60 (no tracking capability offered) 5/25 small 1.5 lbs to UK First Class $13.60 */ switch(strtolower(trim($country))) { case 'us': case 'united states': case 'usa': switch($method) { // duplication here - fix someday case 'Next Day': $amount = 28; break; case '2nd Day': $amount = 17; break; default: $amount = ($items_amount >= $this->free_ground_level) ? 0 : 8; } break; case 'ca': case 'can': case 'canada': $amount = 14; break; case 'fr': case 'fra': case 'france': $amount = 18; break; case 'uk': case 'gb': case 'gbr': case 'great britain': case 'england': case 'united kingdom': $amount = 18; break; case 'se': case 'swe': case 'sweden': $amount = 18; break; case 'ch': case 'che': case 'switzerland': $amount = 18; break; case 'es': case 'esp': case 'spain': $amount = 18; break; case 'pt': case 'prt': case 'portugal': $amount = 18; break; case 'pl': case 'pol': case 'poland': $amount = 18; break; case 'it': case 'ita': case 'italy': $amount = 18; break; case 'gr': case 'grc': case 'greece': $amount = 18; break; case 'de': case 'deu': case 'germany': $amount = 18; break; case 'no': case 'nor': case 'norway': $amount = 18; break; default: $amount = 22; } return($amount); } // function } // class ?>