Sudba
Гуру форума
- Регистрация
- 6 Дек 2007
- Сообщения
- 930
- Реакции
- 50
- Автор темы
- #1
Доброй ночи, форумчане.
Подскажите, как бы сделать собственную схему для статей.
То есть статьи есть, но они работают по шаблону information, а мне надо information1.
Чтобы не казаться, что я не пробовал.
Создал папки в контроллере information1 и там файл information1.php
И сам файл information1.tpl в шаблоне. Его продублировал с information.tpl.
Так вот при редактирование information1.tpl ничего не происходит(
И вторая проблема:
Решил сделать схему Главная+Товар.
Добавил схему и скопировал пути с соответствующих Схем, то есть объединил их.
Пытаюсь вывести слайдшоу, а он выводится только в товаре. На главной почему-то не выводится(
Что делать?(
Подскажите, как бы сделать собственную схему для статей.
То есть статьи есть, но они работают по шаблону information, а мне надо information1.
Чтобы не казаться, что я не пробовал.
Создал папки в контроллере information1 и там файл information1.php
Код:
<?php
class ControllerInformation1Information1 extends Controller {
public function index() {
$this->language->load('information/information');
$this->load->model('catalog/information');
$this->data['breadcrumbs'] = array();
$this->data['breadcrumbs'][] = array(
'text' => $this->language->get('text_home'),
'href' => $this->url->link('common/home'),
'separator' => false
);
if (isset($this->request->get['information_id'])) {
$information_id = (int)$this->request->get['information_id'];
} else {
$information_id = 0;
}
$information_info = $this->model_catalog_information->getInformation($information_id);
if ($information_info) {
if ($information_info['seo_title']) {
$this->document->setTitle($information_info['seo_title']);
} else {
$this->document->setTitle($information_info['title']);
}
$this->document->setDescription($information_info['meta_description']);
$this->document->setKeywords($information_info['meta_keyword']);
$this->data['breadcrumbs'][] = array(
'text' => $information_info['title'],
'href' => $this->url->link('information/information', 'information_id=' . $information_id),
'separator' => $this->language->get('text_separator')
);
if ($information_info['seo_h1']) {
$this->data['heading_title'] = $information_info['seo_h1'];
} else {
$this->data['heading_title'] = $information_info['title'];
}
$this->data['button_continue'] = $this->language->get('button_continue');
$this->data['description'] = html_entity_decode($information_info['description'], ENT_QUOTES, 'UTF-8');
$this->data['continue'] = $this->url->link('common/home');
if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/information/information1.tpl')) {
$this->template = $this->config->get('config_template') . '/template/information/information1.tpl';
} else {
$this->template = 'default/template/information/information1.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());
} else {
$this->data['breadcrumbs'][] = array(
'text' => $this->language->get('text_error'),
'href' => $this->url->link('information/information', 'information_id=' . $information_id),
'separator' => $this->language->get('text_separator')
);
$this->document->setTitle($this->language->get('text_error'));
$this->data['heading_title'] = $this->language->get('text_error');
$this->data['text_error'] = $this->language->get('text_error');
$this->data['button_continue'] = $this->language->get('button_continue');
$this->data['continue'] = $this->url->link('common/home');
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());
}
}
public function info() {
$this->load->model('catalog/information');
if (isset($this->request->get['information_id'])) {
$information_id = (int)$this->request->get['information_id'];
} else {
$information_id = 0;
}
$information_info = $this->model_catalog_information->getInformation($information_id);
if ($information_info) {
$output = '<html dir="ltr" lang="en">' . "\n";
$output .= '<head>' . "\n";
$output .= ' <title>' . $information_info['title'] . '</title>' . "\n";
$output .= ' <meta http-equiv="Content-Type" content="text/html; charset=UTF-8">' . "\n";
$output .= ' <meta name="robots" content="noindex">' . "\n";
$output .= '</head>' . "\n";
$output .= '<body>' . "\n";
$output .= ' <h1>' . $information_info['title'] . '</h1>' . "\n";
$output .= html_entity_decode($information_info['description'], ENT_QUOTES, 'UTF-8') . "\n";
$output .= ' </body>' . "\n";
$output .= '</html>' . "\n";
$this->response->setOutput($output);
}
}
}
?>
И сам файл information1.tpl в шаблоне. Его продублировал с information.tpl.
Так вот при редактирование information1.tpl ничего не происходит(
И вторая проблема:
Решил сделать схему Главная+Товар.
Добавил схему и скопировал пути с соответствующих Схем, то есть объединил их.
Пытаюсь вывести слайдшоу, а он выводится только в товаре. На главной почему-то не выводится(
Что делать?(