Opencart Katagori Menüsü Ana Katogori Resmi Gösterme

intrepid1

OpenCart-TR
Katılım
20 Nis 2012
Mesajlar
11
Tepkime puanı
0
Puanları
0
Merhaba, Arkadaşlar Forum Şifremi unuttum şifre değiştirme maili gelmedi ve tekrar üye olmak istedim Foruma Tam 4 Kez üye oldum Aktivasyon Maili Gelmiyor Yöneticiler İlgilenirse sevinirim Gmail hotmail ve mynet üzerinden denedim bu sabah gezerken aktif olduğunu görmedüm nasıl oldu anlamadım ama sonuç içerdeyim :)

Şimdi Sorunum Şu Arkadaşlar
Opencart 1.5.2.1 Versiyonunu Kullanmaktayım Fakat

Sol Kısımda Bulunan Katogori Menüsünde Ana Katogorinin Resmini Gösterme İhtiyacı Duyuyorum Resmi Bir Türlü Çekemedim Ana Katogoriye Nasıl Bir Yol İzlemeliyim ?

Module/Category.php

PHP:
<?php  
class ControllerModuleCategory extends Controller {
   protected function index($setting) {
      $this->language->load('module/category');
      
       $this->data['heading_title'] = $this->language->get('heading_title');
      
      if (isset($this->request->get['path'])) {
         $parts = explode('_', (string)$this->request->get['path']);
      } else {
         $parts = array();
      }
      
      if (isset($parts[0])) {
         $this->data['category_id'] = $parts[0];
      } else {
         $this->data['category_id'] = 0;
      }
      
      if (isset($parts[1])) {
         $this->data['child_id'] = $parts[1];
      } else {
         $this->data['child_id'] = 0;
      }
                     
      $this->load->model('catalog/category');
      $this->load->model('catalog/product');
      
      $this->data['categories'] = array();
               
      $categories = $this->model_catalog_category->getCategories(0);
      
      foreach ($categories as $category) {
         $children_data = array();
         
         $children = $this->model_catalog_category->getCategories($category['category_id']);
         
         foreach ($children as $child) {
            $data = array(
               'filter_category_id'  => $child['category_id'],
               'filter_sub_category' => true
            );      
               
            if ($setting['count']) {
               $product_total = $this->model_catalog_product->getTotalProducts($data);
               
               $children_data[] = array(
                  'category_id' => $child['category_id'],
                  'name'        => $child['name'] . ' (' . $product_total . ')',
                  'href'        => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])   
               );                  
            } else {
               $children_data[] = array(
                  'category_id' => $child['category_id'],
                  'name'        => $child['name'],
                  'href'        => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])   
               );                  
            }         
         }
         
         $data = array(
            'filter_category_id'  => $category['category_id'],
            'filter_sub_category' => true   
         );      
         
         if ($setting['count']) {
            $product_total = $this->model_catalog_product->getTotalProducts($data);
         
            $this->data['categories'][] = array(
               'category_id' => $category['category_id'],
               'name'        => $category['name'] . ' (' . $product_total . ')',
               'children'    => $children_data,
               'href'        => $this->url->link('product/category', 'path=' . $category['category_id'])
            );            
         } else {
            $this->data['categories'][] = array(
               'category_id' => $category['category_id'],
               'name'        => $category['name'],
               'children'    => $children_data,
               'href'        => $this->url->link('product/category', 'path=' . $category['category_id'])
            );         
         }
      }
      
      if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/category.tpl')) {
         $this->template = $this->config->get('config_template') . '/template/module/category.tpl';
      } else {
         $this->template = 'default/template/module/category.tpl';
      }
      
      $this->render();
     }
}
?>


Bu Konu Hakkında Beni Bilgilendirebilecek Veya Yardımcı Olabilecek ? Biri yokmu ?

Yardım Ede bilcek biri yokmu arkadaşlar sadece sağ menüye ana katagori resmini çekecem Mantığını nasıl yapılacağını özet geçmeniz bile yeterli olur..class olduğundan sistemi çok iyi bilmediğimden zorlanıyorum
 
Üst