OpenCart 🇺🇦

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

Тип Возвр. Описание
protected mixed index ( $setting )
Исходный код метода:
static $module = 0;

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

$this->document->addScript('catalog/view/javascript/jquery/jquery.cycle.js');
		
$this->data['banners'] = array();

$results = $this->model_design_banner->getBanner($setting['banner_id']);

foreach ($results as $result) {
	if (file_exists(DIR_IMAGE . $result['image'])) {
		$this->data['banners'][] = array(
			'title' => $result['title'],
			'link'  => $result['link'],
			'image' => $this->model_tool_image->resize($result['image'], $setting['width'], $setting['height'])
		);
	}
}

$this->data['module'] = $module++;
		
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/banner.tpl')) {
	$this->template = $this->config->get('config_template') . '/template/module/banner.tpl';
} else {
	$this->template = 'default/template/module/banner.tpl';
}

$this->render();

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

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

Комментарии