OpenCart 🇺🇦

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

Тип Возвр. Описание
public void index ( )
Исходный код метода:
$this->document->setTitle($this->config->get('config_title'));
$this->document->setDescription($this->config->get('config_meta_description'));

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

if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/common/home.tpl')) {
	$this->template = $this->config->get('config_template') . '/template/common/home.tpl';
} else {
	$this->template = 'default/template/common/home.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());

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

Название класса Роль
class Config { ... } Компонент Config используется в данном классе
class Document { ... } Компонент Document используется в данном классе
class Response { ... } Компонент Response используется в данном классе

Комментарии