OpenCart 🇺🇦

Схема

protected mixed index ( )

Аргументы

Аргумент Возможный тип Описание
У метода нет аргументов

Описание

Метод пока еще не документирован.

Исходный код

$this->language->load('payment/pp_express');

$this->data['button_continue'] = $this->language->get('button_continue');
$this->data['button_continue_action'] = $this->url->link('payment/pp_express/checkout', '', 'SSL');

/**
 * if there is any other paypal session data, clear it
 */
unset($this->session->data['paypal']);


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

$this->render();