- Katılım
- 13 Ağu 2009
- Mesajlar
- 3,200
- Tepkime puanı
- 1
- Puanları
- 38
- Yaş
- 39
- Konum
- Bursa
- Web sitesi
- www.opencart-tr.com
catalog\controller\common\footer.php
BUL
catalog\controller\common\header.php
BUL
ÖNCESİNE EKLE
catalog\view\theme\your theme\template\common\footer.tpl ya da header.tpl
Göstermek istediğiniz konuma ekeyin.
BUL
PHP:
$this->id = 'footer';
catalog\controller\common\header.php
BUL
PHP:
$this->id = 'header';
ÖNCESİNE EKLE
PHP:
$this->load->model('catalog/information');
$this->load->model('tool/seo_url');
$this->data['informations'] = array();
foreach ($this->model_catalog_information->getInformations() as $result) {
$this->data['informations'][] = array(
'title' => $result['title'],
'href' => $this->model_tool_seo_url->rewrite(HTTP_SERVER . 'index.php?route=information/information&information_id=' . $result['information_id'])
);
}
catalog\view\theme\your theme\template\common\footer.tpl ya da header.tpl
Göstermek istediğiniz konuma ekeyin.
PHP:
<?php foreach ($informations as $information) { ?>
<a href="<?php echo str_replace('&', '&', $information['href']); ?>"><?php echo $information['title']; ?></a>
<?php } ?>