OpenCart 🇺🇦

Класс ControllerCheckoutCart extends Controller { ... }

Название свойства Описание
ControllerCheckoutCart::$error private mixed $error = array();
Тип Возвр. Описание
public mixed index ( )
Исходный код метода:
$this->language->load('checkout/cart');

if (!isset($this->session->data['vouchers'])) {
	$this->session->data['vouchers'] = array();
}

// Update
if (!empty($this->request->post['quantity'])) {
	foreach ($this->request->post['quantity'] as $key => $value) {
		$this->cart->update($key, $value);
	}

	unset($this->session->data['shipping_method']);
	unset($this->session->data['shipping_methods']);
	unset($this->session->data['payment_method']);
	unset($this->session->data['payment_methods']); 
	unset($this->session->data['reward']);

	$this->redirect($this->url->link('checkout/cart'));  			
}

// Remove
if (isset($this->request->get['remove'])) {
	$this->cart->remove($this->request->get['remove']);

	unset($this->session->data['vouchers'][$this->request->get['remove']]);

	$this->session->data['success'] = $this->language->get('text_remove');

	unset($this->session->data['shipping_method']);
	unset($this->session->data['shipping_methods']);
	unset($this->session->data['payment_method']);
	unset($this->session->data['payment_methods']); 
	unset($this->session->data['reward']);  

	$this->redirect($this->url->link('checkout/cart'));
}

// Coupon    
if (isset($this->request->post['coupon']) && $this->validateCoupon()) { 
	$this->session->data['coupon'] = $this->request->post['coupon'];

	$this->session->data['success'] = $this->language->get('text_coupon');

	$this->redirect($this->url->link('checkout/cart'));
}

// Voucher
if (isset($this->request->post['voucher']) && $this->validateVoucher()) { 
	$this->session->data['voucher'] = $this->request->post['voucher'];

	$this->session->data['success'] = $this->language->get('text_voucher');

	$this->redirect($this->url->link('checkout/cart'));
}

// Reward
if (isset($this->request->post['reward']) && $this->validateReward()) { 
	$this->session->data['reward'] = abs($this->request->post['reward']);

	$this->session->data['success'] = $this->language->get('text_reward');

	$this->redirect($this->url->link('checkout/cart'));
}

// Shipping
if (isset($this->request->post['shipping_method']) && $this->validateShipping()) {
	$shipping = explode('.', $this->request->post['shipping_method']);

	$this->session->data['shipping_method'] = $this->session->data['shipping_methods'][$shipping[0]]['quote'][$shipping[1]];

	$this->session->data['success'] = $this->language->get('text_shipping');

	$this->redirect($this->url->link('checkout/cart'));
}

$this->document->setTitle($this->language->get('heading_title'));
$this->document->addScript('catalog/view/javascript/jquery/colorbox/jquery.colorbox-min.js');
$this->document->addStyle('catalog/view/javascript/jquery/colorbox/colorbox.css');

$this->data['breadcrumbs'] = array();

$this->data['breadcrumbs'][] = array(
	'href'      => $this->url->link('common/home'),
	'text'      => $this->language->get('text_home'),
	'separator' => false
);

$this->data['breadcrumbs'][] = array(
	'href'      => $this->url->link('checkout/cart'),
	'text'      => $this->language->get('heading_title'),
	'separator' => $this->language->get('text_separator')
);

if ($this->cart->hasProducts() || !empty($this->session->data['vouchers'])) {
	$points = $this->customer->getRewardPoints();

	$points_total = 0;

	foreach ($this->cart->getProducts() as $product) {
		if ($product['points']) {
			$points_total += $product['points'];
		}
	}		

	$this->data['heading_title'] = $this->language->get('heading_title');

	$this->data['text_next'] = $this->language->get('text_next');
	$this->data['text_next_choice'] = $this->language->get('text_next_choice');
	$this->data['text_use_coupon'] = $this->language->get('text_use_coupon');
	$this->data['text_use_voucher'] = $this->language->get('text_use_voucher');
	$this->data['text_use_reward'] = sprintf($this->language->get('text_use_reward'), $points);
	$this->data['text_shipping_estimate'] = $this->language->get('text_shipping_estimate');
	$this->data['text_shipping_detail'] = $this->language->get('text_shipping_detail');
	$this->data['text_shipping_method'] = $this->language->get('text_shipping_method');
	$this->data['text_select'] = $this->language->get('text_select');
	$this->data['text_none'] = $this->language->get('text_none');
	$this->data['text_until_cancelled'] = $this->language->get('text_until_cancelled');
	$this->data['text_freq_day'] = $this->language->get('text_freq_day');
	$this->data['text_freq_week'] = $this->language->get('text_freq_week');
	$this->data['text_freq_month'] = $this->language->get('text_freq_month');
	$this->data['text_freq_bi_month'] = $this->language->get('text_freq_bi_month');
	$this->data['text_freq_year'] = $this->language->get('text_freq_year');

	$this->data['column_image'] = $this->language->get('column_image');
	$this->data['column_name'] = $this->language->get('column_name');
	$this->data['column_model'] = $this->language->get('column_model');
	$this->data['column_quantity'] = $this->language->get('column_quantity');
	$this->data['column_price'] = $this->language->get('column_price');
	$this->data['column_total'] = $this->language->get('column_total');

	$this->data['entry_coupon'] = $this->language->get('entry_coupon');
	$this->data['entry_voucher'] = $this->language->get('entry_voucher');
	$this->data['entry_reward'] = sprintf($this->language->get('entry_reward'), $points_total);
	$this->data['entry_country'] = $this->language->get('entry_country');
	$this->data['entry_zone'] = $this->language->get('entry_zone');
	$this->data['entry_postcode'] = $this->language->get('entry_postcode');

	$this->data['button_update'] = $this->language->get('button_update');
	$this->data['button_remove'] = $this->language->get('button_remove');
	$this->data['button_coupon'] = $this->language->get('button_coupon');
	$this->data['button_voucher'] = $this->language->get('button_voucher');
	$this->data['button_reward'] = $this->language->get('button_reward');
	$this->data['button_quote'] = $this->language->get('button_quote');
	$this->data['button_shipping'] = $this->language->get('button_shipping');			
	$this->data['button_shopping'] = $this->language->get('button_shopping');
	$this->data['button_checkout'] = $this->language->get('button_checkout');

	$this->data['text_trial'] = $this->language->get('text_trial');
	$this->data['text_recurring'] = $this->language->get('text_recurring');
	$this->data['text_length'] = $this->language->get('text_length');
	$this->data['text_recurring_item'] = $this->language->get('text_recurring_item');
	$this->data['text_payment_profile'] = $this->language->get('text_payment_profile');

	if (isset($this->error['warning'])) {
		$this->data['error_warning'] = $this->error['warning'];
	} elseif (!$this->cart->hasStock() && (!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning'))) {
		$this->data['error_warning'] = $this->language->get('error_stock');
	} else {
		$this->data['error_warning'] = '';
	}

	if ($this->config->get('config_customer_price') && !$this->customer->isLogged()) {
		$this->data['attention'] = sprintf($this->language->get('text_login'), $this->url->link('account/login'), $this->url->link('account/register'));
	} else {
		$this->data['attention'] = '';
	}

	if (isset($this->session->data['success'])) {
		$this->data['success'] = $this->session->data['success'];

		unset($this->session->data['success']);
	} else {
		$this->data['success'] = '';
	}

	$this->data['action'] = $this->url->link('checkout/cart');   

	if ($this->config->get('config_cart_weight')) {
		$this->data['weight'] = $this->weight->format($this->cart->getWeight(), $this->config->get('config_weight_class_id'), $this->language->get('decimal_point'), $this->language->get('thousand_point'));
	} else {
		$this->data['weight'] = '';
	}

	$this->load->model('tool/image');

	$this->data['products'] = array();

	$products = $this->cart->getProducts();

	foreach ($products as $product) {
		$product_total = 0;

		foreach ($products as $product_2) {
			if ($product_2['product_id'] == $product['product_id']) {
				$product_total += $product_2['quantity'];
			}
		}

		if ($product['minimum'] > $product_total) {
			$this->data['error_warning'] = sprintf($this->language->get('error_minimum'), $product['name'], $product['minimum']);
		}

		if ($product['image']) {
			$image = $this->model_tool_image->resize($product['image'], $this->config->get('config_image_cart_width'), $this->config->get('config_image_cart_height'));
		} else {
			$image = '';
		}

		$option_data = array();

		foreach ($product['option'] as $option) {
			if ($option['type'] != 'file') {
				$value = $option['option_value'];
			} else {
				$filename = $this->encryption->decrypt($option['option_value']);

				$value = utf8_substr($filename, 0, utf8_strrpos($filename, '.'));
			}

			$option_data[] = array(
				'name'  => $option['name'],
				'value' => (utf8_strlen($value) > 20 ? utf8_substr($value, 0, 20) . '..' : $value)
			);
		}

		// Display prices
		if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
			$price = $this->currency->format($this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax')));
		} else {
			$price = false;
		}

		// Display prices
		if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
			$total = $this->currency->format($this->tax->calculate($product['price'], $product['tax_class_id'], $this->config->get('config_tax')) * $product['quantity']);
		} else {
			$total = false;
		}

		$profile_description = '';

		if ($product['recurring']) {
			$frequencies = array(
				'day' => $this->language->get('text_day'),
				'week' => $this->language->get('text_week'),
				'semi_month' => $this->language->get('text_semi_month'),
				'month' => $this->language->get('text_month'),
				'year' => $this->language->get('text_year'),
			);

			if ($product['recurring_trial']) {
				$recurring_price = $this->currency->format($this->tax->calculate($product['recurring_trial_price'] * $product['quantity'], $product['tax_class_id'], $this->config->get('config_tax')));
				$profile_description = sprintf($this->language->get('text_trial_description'), $recurring_price, $product['recurring_trial_cycle'], $frequencies[$product['recurring_trial_frequency']], $product['recurring_trial_duration']) . ' ';
			}

			$recurring_price = $this->currency->format($this->tax->calculate($product['recurring_price'] * $product['quantity'], $product['tax_class_id'], $this->config->get('config_tax')));

			if ($product['recurring_duration']) {
				$profile_description .= sprintf($this->language->get('text_payment_description'), $recurring_price, $product['recurring_cycle'], $frequencies[$product['recurring_frequency']], $product['recurring_duration']);
			} else {
				$profile_description .= sprintf($this->language->get('text_payment_until_canceled_description'), $recurring_price, $product['recurring_cycle'], $frequencies[$product['recurring_frequency']], $product['recurring_duration']);
			}
		}

		$this->data['products'][] = array(
			'key'                 => $product['key'],
			'thumb'               => $image,
			'name'                => $product['name'],
			'model'               => $product['model'],
			'option'              => $option_data,
			'quantity'            => $product['quantity'],
			'stock'               => $product['stock'] ? true : !(!$this->config->get('config_stock_checkout') || $this->config->get('config_stock_warning')),
			'reward'              => ($product['reward'] ? sprintf($this->language->get('text_points'), $product['reward']) : ''),
			'price'               => $price,
			'total'               => $total,
			'href'                => $this->url->link('product/product', 'product_id=' . $product['product_id']),
			'remove'              => $this->url->link('checkout/cart', 'remove=' . $product['key']),
			'recurring'           => $product['recurring'],
			'profile_name'        => $product['profile_name'],
			'profile_description' => $profile_description,
		);
	}


	$this->data['products_recurring'] = array();

	// Gift Voucher
	$this->data['vouchers'] = array();

	if (!empty($this->session->data['vouchers'])) {
		foreach ($this->session->data['vouchers'] as $key => $voucher) {
			$this->data['vouchers'][] = array(
				'key'         => $key,
				'description' => $voucher['description'],
				'amount'      => $this->currency->format($voucher['amount']),
				'remove'      => $this->url->link('checkout/cart', 'remove=' . $key)   
			);
		}
	}

	if (isset($this->request->post['next'])) {
		$this->data['next'] = $this->request->post['next'];
	} else {
		$this->data['next'] = '';
	}

	$this->data['coupon_status'] = $this->config->get('coupon_status');

	if (isset($this->request->post['coupon'])) {
		$this->data['coupon'] = $this->request->post['coupon'];			
	} elseif (isset($this->session->data['coupon'])) {
		$this->data['coupon'] = $this->session->data['coupon'];
	} else {
		$this->data['coupon'] = '';
	}

	$this->data['voucher_status'] = $this->config->get('voucher_status');

	if (isset($this->request->post['voucher'])) {
		$this->data['voucher'] = $this->request->post['voucher'];				
	} elseif (isset($this->session->data['voucher'])) {
		$this->data['voucher'] = $this->session->data['voucher'];
	} else {
		$this->data['voucher'] = '';
	}

	$this->data['reward_status'] = ($points && $points_total && $this->config->get('reward_status'));

	if (isset($this->request->post['reward'])) {
		$this->data['reward'] = $this->request->post['reward'];				
	} elseif (isset($this->session->data['reward'])) {
		$this->data['reward'] = $this->session->data['reward'];
	} else {
		$this->data['reward'] = '';
	}

	$this->data['shipping_status'] = $this->config->get('shipping_status') && $this->config->get('shipping_estimator') && $this->cart->hasShipping();	

	if (isset($this->request->post['country_id'])) {
		$this->data['country_id'] = $this->request->post['country_id'];				
	} elseif (isset($this->session->data['shipping_country_id'])) {
		$this->data['country_id'] = $this->session->data['shipping_country_id'];			  	
	} else {
		$this->data['country_id'] = $this->config->get('config_country_id');
	}

	$this->load->model('localisation/country');

	$this->data['countries'] = $this->model_localisation_country->getCountries();

	if (isset($this->request->post['zone_id'])) {
		$this->data['zone_id'] = $this->request->post['zone_id'];				
	} elseif (isset($this->session->data['shipping_zone_id'])) {
		$this->data['zone_id'] = $this->session->data['shipping_zone_id'];			
	} else {
		$this->data['zone_id'] = '';
	}

	if (isset($this->request->post['postcode'])) {
		$this->data['postcode'] = $this->request->post['postcode'];				
	} elseif (isset($this->session->data['shipping_postcode'])) {
		$this->data['postcode'] = $this->session->data['shipping_postcode'];					
	} else {
		$this->data['postcode'] = '';
	}

	if (isset($this->request->post['shipping_method'])) {
		$this->data['shipping_method'] = $this->request->post['shipping_method'];				
	} elseif (isset($this->session->data['shipping_method'])) {
		$this->data['shipping_method'] = $this->session->data['shipping_method']['code']; 
	} else {
		$this->data['shipping_method'] = '';
	}

	// Totals
	$this->load->model('setting/extension');

	$total_data = array();					
	$total = 0;
	$taxes = $this->cart->getTaxes();

	// Display prices
	if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
		$sort_order = array(); 

		$results = $this->model_setting_extension->getExtensions('total');

		foreach ($results as $key => $value) {
			$sort_order[$key] = $this->config->get($value['code'] . '_sort_order');
		}

		array_multisort($sort_order, SORT_ASC, $results);

		foreach ($results as $result) {
			if ($this->config->get($result['code'] . '_status')) {
				$this->load->model('total/' . $result['code']);

				$this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes);
			}

			$sort_order = array(); 

			foreach ($total_data as $key => $value) {
				$sort_order[$key] = $value['sort_order'];
			}

			array_multisort($sort_order, SORT_ASC, $total_data);			
		}
	}

	$this->data['totals'] = $total_data;

	$this->data['continue'] = $this->url->link('common/home');

	$this->data['checkout'] = $this->url->link('checkout/checkout', '', 'SSL');

	$this->load->model('setting/extension');

	$this->data['checkout_buttons'] = array();

	if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/checkout/cart.tpl')) {
		$this->template = $this->config->get('config_template') . '/template/checkout/cart.tpl';
	} else {
		$this->template = 'default/template/checkout/cart.tpl';
	}

	$this->children = array(
		'common/column_left',
		'common/column_right',
		'common/content_bottom',
		'common/content_top',
		'common/footer',
		'common/header'	
	);

	$this->response->setOutput($this->render());					
} else {
	$this->data['heading_title'] = $this->language->get('heading_title');

	$this->data['text_error'] = $this->language->get('text_empty');

	$this->data['button_continue'] = $this->language->get('button_continue');

	$this->data['continue'] = $this->url->link('common/home');

	unset($this->session->data['success']);

	if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/error/not_found.tpl')) {
		$this->template = $this->config->get('config_template') . '/template/error/not_found.tpl';
	} else {
		$this->template = 'default/template/error/not_found.tpl';
	}

	$this->children = array(
		'common/column_left',
		'common/column_right',
		'common/content_top',
		'common/content_bottom',
		'common/footer',
		'common/header'	
	);

	$this->response->setOutput($this->render());			
}
protected mixed validateCoupon ( )
Исходный код метода:
$this->load->model('checkout/coupon');

$coupon_info = $this->model_checkout_coupon->getCoupon($this->request->post['coupon']);			

if (!$coupon_info) {			
	$this->error['warning'] = $this->language->get('error_coupon');
}

if (!$this->error) {
	return true;
} else {
	return false;
}		
protected mixed validateVoucher ( )
Исходный код метода:
$this->load->model('checkout/voucher');

$voucher_info = $this->model_checkout_voucher->getVoucher($this->request->post['voucher']);			

if (!$voucher_info) {			
	$this->error['warning'] = $this->language->get('error_voucher');
}

if (!$this->error) {
	return true;
} else {
	return false;
}		
protected mixed validateReward ( )
Исходный код метода:
$points = $this->customer->getRewardPoints();

$points_total = 0;

foreach ($this->cart->getProducts() as $product) {
	if ($product['points']) {
		$points_total += $product['points'];
	}
}	

if (empty($this->request->post['reward'])) {
	$this->error['warning'] = $this->language->get('error_reward');
}

if ($this->request->post['reward'] > $points) {
	$this->error['warning'] = sprintf($this->language->get('error_points'), $this->request->post['reward']);
}

if ($this->request->post['reward'] > $points_total) {
	$this->error['warning'] = sprintf($this->language->get('error_maximum'), $points_total);
}

if (!$this->error) {
	return true;
} else {
	return false;
}		
protected mixed validateShipping ( )
Исходный код метода:
if (!empty($this->request->post['shipping_method'])) {
	$shipping = explode('.', $this->request->post['shipping_method']);

	if (!isset($shipping[0]) || !isset($shipping[1]) || !isset($this->session->data['shipping_methods'][$shipping[0]]['quote'][$shipping[1]])) {			
		$this->error['warning'] = $this->language->get('error_shipping');
	}
} else {
	$this->error['warning'] = $this->language->get('error_shipping');
}

if (!$this->error) {
	return true;
} else {
	return false;
}		
public mixed add ( )
Исходный код метода:
$this->language->load('checkout/cart');

$json = array();

if (isset($this->request->post['product_id'])) {
	$product_id = $this->request->post['product_id'];
} else {
	$product_id = 0;
}

$this->load->model('catalog/product');

$product_info = $this->model_catalog_product->getProduct($product_id);

if ($product_info) {			
	if (isset($this->request->post['quantity'])) {
		$quantity = $this->request->post['quantity'];
	} else {
		$quantity = 1;
	}

	if (isset($this->request->post['option'])) {
		$option = array_filter($this->request->post['option']);
	} else {
		$option = array();	
	}

	if (isset($this->request->post['profile_id'])) {
		$profile_id = $this->request->post['profile_id'];
	} else {
		$profile_id = 0;
	}

	$product_options = $this->model_catalog_product->getProductOptions($this->request->post['product_id']);

	foreach ($product_options as $product_option) {
		if ($product_option['required'] && empty($option[$product_option['product_option_id']])) {
			$json['error']['option'][$product_option['product_option_id']] = sprintf($this->language->get('error_required'), $product_option['name']);
		}
	}

	$profiles = $this->model_catalog_product->getProfiles($product_info['product_id']);

	if ($profiles) {
		$profile_ids = array();

		foreach ($profiles as $profile) {
			$profile_ids[] = $profile['profile_id'];
		}

		if (!in_array($profile_id, $profile_ids)) {
			$json['error']['profile'] = $this->language->get('error_profile_required');
		}
	}

	if (!$json) {
		$this->cart->add($this->request->post['product_id'], $quantity, $option, $profile_id);

		$json['success'] = sprintf($this->language->get('text_success'), $this->url->link('product/product', 'product_id=' . $this->request->post['product_id']), $product_info['name'], $this->url->link('checkout/cart'));

		unset($this->session->data['shipping_method']);
		unset($this->session->data['shipping_methods']);
		unset($this->session->data['payment_method']);
		unset($this->session->data['payment_methods']);

		// Totals
		$this->load->model('setting/extension');

		$total_data = array();					
		$total = 0;
		$taxes = $this->cart->getTaxes();

		// Display prices
		if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
			$sort_order = array(); 

			$results = $this->model_setting_extension->getExtensions('total');

			foreach ($results as $key => $value) {
				$sort_order[$key] = $this->config->get($value['code'] . '_sort_order');
			}

			array_multisort($sort_order, SORT_ASC, $results);

			foreach ($results as $result) {
				if ($this->config->get($result['code'] . '_status')) {
					$this->load->model('total/' . $result['code']);

					$this->{'model_total_' . $result['code']}->getTotal($total_data, $total, $taxes);
				}

				$sort_order = array(); 

				foreach ($total_data as $key => $value) {
					$sort_order[$key] = $value['sort_order'];
				}

				array_multisort($sort_order, SORT_ASC, $total_data);			
			}
		}

		$json['total'] = sprintf($this->language->get('text_items'), $this->cart->countProducts() + (isset($this->session->data['vouchers']) ? count($this->session->data['vouchers']) : 0), $this->currency->format($total));
	} else {
		$json['redirect'] = str_replace('&', '&', $this->url->link('product/product', 'product_id=' . $this->request->post['product_id']));
	}
}

$this->response->setOutput(json_encode($json));		
public mixed quote ( )
Исходный код метода:
$this->language->load('checkout/cart');

$json = array();	

if (!$this->cart->hasProducts()) {
	$json['error']['warning'] = $this->language->get('error_product');				
}				

if (!$this->cart->hasShipping()) {
	$json['error']['warning'] = sprintf($this->language->get('error_no_shipping'), $this->url->link('information/contact'));				
}				

if ($this->request->post['country_id'] == '') {
	$json['error']['country'] = $this->language->get('error_country');
}

if (!isset($this->request->post['zone_id']) || $this->request->post['zone_id'] == '') {
	$json['error']['zone'] = $this->language->get('error_zone');
}

$this->load->model('localisation/country');

$country_info = $this->model_localisation_country->getCountry($this->request->post['country_id']);

if ($country_info && $country_info['postcode_required'] && (utf8_strlen($this->request->post['postcode']) < 2) || (utf8_strlen($this->request->post['postcode']) > 10)) {
	$json['error']['postcode'] = $this->language->get('error_postcode');
}

if (!$json) {		
	$this->tax->setShippingAddress($this->request->post['country_id'], $this->request->post['zone_id']);

	// Default Shipping Address
	$this->session->data['shipping_country_id'] = $this->request->post['country_id'];
	$this->session->data['shipping_zone_id'] = $this->request->post['zone_id'];
	$this->session->data['shipping_postcode'] = $this->request->post['postcode'];

	if ($country_info) {
		$country = $country_info['name'];
		$iso_code_2 = $country_info['iso_code_2'];
		$iso_code_3 = $country_info['iso_code_3'];
		$address_format = $country_info['address_format'];
	} else {
		$country = '';
		$iso_code_2 = '';
		$iso_code_3 = '';	
		$address_format = '';
	}

	$this->load->model('localisation/zone');

	$zone_info = $this->model_localisation_zone->getZone($this->request->post['zone_id']);

	if ($zone_info) {
		$zone = $zone_info['name'];
		$zone_code = $zone_info['code'];
	} else {
		$zone = '';
		$zone_code = '';
	}	

	$address_data = array(
		'firstname'      => '',
		'lastname'       => '',
		'company'        => '',
		'address_1'      => '',
		'address_2'      => '',
		'postcode'       => $this->request->post['postcode'],
		'city'           => '',
		'zone_id'        => $this->request->post['zone_id'],
		'zone'           => $zone,
		'zone_code'      => $zone_code,
		'country_id'     => $this->request->post['country_id'],
		'country'        => $country,	
		'iso_code_2'     => $iso_code_2,
		'iso_code_3'     => $iso_code_3,
		'address_format' => $address_format
	);

	$quote_data = array();

	$this->load->model('setting/extension');

	$results = $this->model_setting_extension->getExtensions('shipping');

	foreach ($results as $result) {
		if ($this->config->get($result['code'] . '_status')) {
			$this->load->model('shipping/' . $result['code']);

			$quote = $this->{'model_shipping_' . $result['code']}->getQuote($address_data); 

			if ($quote) {
				$quote_data[$result['code']] = array( 
					'title'      => $quote['title'],
					'quote'      => $quote['quote'], 
					'sort_order' => $quote['sort_order'],
					'error'      => $quote['error']
				);
			}
		}
	}

	$sort_order = array();

	foreach ($quote_data as $key => $value) {
		$sort_order[$key] = $value['sort_order'];
	}

	array_multisort($sort_order, SORT_ASC, $quote_data);

	$this->session->data['shipping_methods'] = $quote_data;

	if ($this->session->data['shipping_methods']) {
		$json['shipping_method'] = $this->session->data['shipping_methods']; 
	} else {
		$json['error']['warning'] = sprintf($this->language->get('error_no_shipping'), $this->url->link('information/contact'));
	}				
}	

$this->response->setOutput(json_encode($json));						
public mixed country ( )
Исходный код метода:
$json = array();

$this->load->model('localisation/country');

$country_info = $this->model_localisation_country->getCountry($this->request->get['country_id']);

if ($country_info) {
	$this->load->model('localisation/zone');

	$json = array(
		'country_id'        => $country_info['country_id'],
		'name'              => $country_info['name'],
		'iso_code_2'        => $country_info['iso_code_2'],
		'iso_code_3'        => $country_info['iso_code_3'],
		'address_format'    => $country_info['address_format'],
		'postcode_required' => $country_info['postcode_required'],
		'zone'              => $this->model_localisation_zone->getZonesByCountryId($this->request->get['country_id']),
		'status'            => $country_info['status']		
	);
}

$this->response->setOutput(json_encode($json));

Связанные классы:

Название класса Роль
class Cart { ... } Компонент Cart используется в данном классе
class Config { ... } Компонент Config используется в данном классе
class Currency { ... } Компонент Currency используется в данном классе
class Customer { ... } Компонент Customer используется в данном классе
class Document { ... } Компонент Document используется в данном классе
class Language { ... } Компонент Language используется в данном классе
class Request { ... } Компонент Request используется в данном классе
class Response { ... } Компонент Response используется в данном классе
class Session { ... } Компонент Session используется в данном классе
class Tax { ... } Компонент Tax используется в данном классе
class Url { ... } Компонент Url используется в данном классе

Комментарии