tr-opencart

     
avatar Şuanki Zaman: 11-15-2024, 11:40 AMHoşgeldin Misafir !
  Şifremi Hatırlat   kayıt ol
opencart temaları

megamenu kategori linki

Konuyu görüntüleyenler: 1 Misafir
 
Değerlendir:
  • 0 Oy - 0 Yüzde
  • 1
  • 2
  • 3
  • 4
  • 5
%
Cevapla  Gönder 
v  v
Yazar  barney - Görüntüleme - Okunma  3179 - Yorum  2

barneyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 82
Konular: 34
Katılma Tarihi: Sep 2014
Rep Puanı: 1
Teşekkürler: 8
9 Mesajına, 15 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 11-27-2014 11:43 AM

MegaMenu.php
Kod:
<?php
class ControllerModuleBossMegamenu extends Controller {

    protected function index($setting) {
    /*
        if (file_exists('catalog/view/theme/' . $this->config->get('config_template') . '/stylesheet/boss_megamenu.css')) {
            echo '<link rel="stylesheet" type="text/css" href="catalog/view/theme/' . $this->config->get('config_template') . '/stylesheet/boss_megamenu.css" />';
        } else {
            echo '<link rel="stylesheet" type="text/css" href="catalog/view/theme/default/stylesheet/boss_megamenu.css" />';
        }
    */
        $data_template = $this->cache->get('boss_megamenu.' . (int)$this->config->get('config_language_id'));
        
        $this->data['data_template'] = $data_template;
        
        if(!$data_template){
        
            static $module = 0;
            
            $this->load->model('catalog/manufacturer');
            $this->load->model('tool/image');
            $this->load->model('catalog/information');
            $this->load->model('catalog/category');
            $this->load->model('catalog/product');
            $this->load->model( 'bossthemes/boss_megamenu' );
            
            $this->load->language('module/boss_megamenu');
            
            
            $this->data['menu_title'] = $this->language->get('menu_title');
            $this->data['button_cart'] = $this->language->get('button_cart');
                        
            $this->data['categories'] = array();
                        
            $categories = $this->model_catalog_category->getCategories(0);
            
            foreach ($categories as $category) {
                if ($category['top']) {
                    // Level 2
                    $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
                        );
                        
                        $product_total = $this->model_catalog_product->getTotalProducts($data);
                                        
                        $children_data[] = array(
                            'name'  => $child['name'] . ($this->config->get('config_product_count') ? ' (' . $product_total . ')' : ''),
                            'children'        => $this->getChildrenCategory($child, $child['category_id']),
                            'href'  => $this->url->link('product/category', 'path=' . $category['category_id'] . '_' . $child['category_id'])
                        );                        
                    }
                    // Level 1
                    $this->data['categories'][] = array(
                        'name'     => $category['name'],
                        'children' => $children_data,
                        'column'   => $category['column'] ? $category['column'] : 1,
                        'href'     => $this->url->link('product/category', 'path=' . $category['category_id'])
                    );
                }
            }
            
            $parent = '1';
            
            $menusettings = array();
            $menusettings = $this->config->get('boss_megamenu_module');
            $menu_width = $menusettings[0]['menu_width'];
            $menu_column = $menusettings[0]['num_column'];
            $this->data['menu_width'] = $menu_width;
            
            $menus = array();
            $menus = $this->model_bossthemes_boss_megamenu->getChilds($parent);
            $type = '';
            if (!empty($menus)) {
                foreach ($menus as $menu){
                    if(in_array($this->config->get('config_store_id'),$menusettings[0]['store_id'])){
                        $href = "#";
                        if(isset($menu['url'])){
                            $href = $menu['url'];
                        }
                        $colums = $menu['colums'];
                        $dropdown_width = ($menu_width/$menu_column)*$colums;
                        $parent = $menu['megamenu_id'];
                        $menudropdowns = array();
                        $menuchilds = array();
                        $menuchilds = $this->model_bossthemes_boss_megamenu->getChilds($parent);
                        
                        if (!empty($menuchilds)) {
                            foreach ($menuchilds as $menuchild){
                                $type = $menuchild['type'];
                                $contents = array();
                                $hrefchild = "#";
                                $childcolums = $menuchild['colums'];
                                $child_width = ($menu_width/$menu_column)*$childcolums;
                                
                                if (isset($type)) {
                                
                                    if ($type == 'manufacturer') {
                                        $params = json_decode($menuchild['params'], true);
                                        if (isset($menuchild['item'])) {
                                            $manufacturer_ids = explode(',', $menuchild['item']);
                                            foreach($manufacturer_ids as $manufacturer_id){
                                                if($manufacturer_id!=''){
                                                    $result = $this->model_catalog_manufacturer->getManufacturer($manufacturer_id);
                                                    $contents[] = array(
                                                        'name'    => $result['name'],
                                                        'image'   => $this->model_tool_image->resize($result['image'], ($params['manufacturer_img_w']) ? $params['manufacturer_img_w'] : 45, ($params['manufacturer_img_h']) ? $params['manufacturer_img_h'] : 45),
                                                        'href'      => $this->url->link('product/manufacturer/info', 'manufacturer_id=' . $result['manufacturer_id']),
                                                        'show_image'  => $params['manufacturer_img'],
                                                        'show_name'  => $params['manufacturer_name']
                                                    );
                                                }
                                            }
                                        }
                                    }
                                    
                                    if ($type == 'product') {
                                        $params = json_decode($menuchild['params'], true);
                                        
                                        if (isset($menuchild['item'])) {
                                            $product_ids = explode(',', $menuchild['item']);
                                            foreach ($product_ids as $product_id) {
                                                $product_info = $this->model_catalog_product->getProduct($product_id);
                                                if ($product_info) {
                                                    if ($params['product_show_img'] && $product_info['image']) {
                                                        $image = $this->model_tool_image->resize($product_info['image'], isset($params['product_img_w']) ? $params['product_img_w'] : 45, isset($params['product_img_h']) ? $params['product_img_h'] : 45);
                                                    } else {
                                                        $image = false;
                                                    }

                                                    if (($this->config->get('config_customer_price') && $this->customer->isLogged()) || !$this->config->get('config_customer_price')) {
                                                        $price = $this->currency->format($this->tax->calculate($product_info['price'], $product_info['tax_class_id'], $this->config->get('config_tax')));
                                                    } else {
                                                        $price = false;
                                                    }
                                                    
                                                    if ((float)$product_info['special']) {
                                                        $special = $this->currency->format($this->tax->calculate($product_info['special'], $product_info['tax_class_id'], $this->config->get('config_tax')));
                                                    } else {
                                                        $special = false;
                                                    }    
                                                    
                                                    if ($this->config->get('config_tax')) {
                                                        $tax = $this->currency->format((float)$product_info['special'] ? $product_info['special'] : $product_info['price']);
                                                    } else {
                                                        $tax = false;
                                                    }        
                                                    
                                                    $contents[] = array(
                                                        'thumb'        => $image,
                                                        'name'         => $product_info['name'],
                                                        'rating'      => $product_info['rating'],
                                                        'model'      => $product_info['model'],
                                                        'reviews'     => sprintf($this->language->get('text_reviews'), (int)$product_info['reviews']),
                                                        'price'        => $price,
                                                        'special'     => $special,
                                                        'href'         => $this->url->link('product/product', 'product_id=' . $product_info['product_id'])
                                                    );
                                                }
                                            }
                                        }
                                    }
                                    
                                    if ($type == 'category') {
                                        $params = json_decode($menuchild['params'], true);
                                        if (isset($menuchild['item'])) {
                                        
                                            $category_id = $menuchild['item'];
                                            if($category_id!=''){
                                                
                                                if ($category_id != 0) {
                                                    $category_info = $this->model_catalog_category->getCategory($category_id);
                                                    $parent = array(
                                                        'name'             => $category_info['name'],
                                                        'title'            => $menuchild['title'],
                                                        'show_parent'   => $params['category_show_parent'],
                                                        'show_image'   => $params['category_show_img'],
                                                        'image'            => $category_info['image'] ? $this->model_tool_image->resize($category_info['image'],($params['category_img_w']) ? $params['category_img_w'] : 45,($params['category_img_h']) ? $params['category_img_h'] : 45) : '',
                                                        'href'             => $this->url->link('product/category', 'path=' . $category_info['category_id'])
                                                    );
                                                }else{
                                                    $parent = array(
                                                        'name'             => '',
                                                        'title'            => $menuchild['title'],
                                                        'show_parent'   => 0,
                                                        'show_image'   => 0,
                                                        'image'            => '',
                                                        'href'             => ''
                                                    );
                                                }
                                                
                                                $results = $this->model_catalog_category->getCategories($category_id);
                                                foreach ($results as $category) {
                                                    $contents[] = array(
                                                        'name'             => $category['name'],
                                                        'show_sub'      => $params['category_show_sub'],
                                                        'show_parent'   => $params['category_show_parent'],
                                                        'show_image'   => $params['category_show_img'],
                                                        'children'        => $this->getChildrenCategory($category, $category['category_id']),
                                                        'image'            => $category['image'] ? $this->model_tool_image->resize($category['image'],($params['category_img_w']) ? $params['category_img_w'] : 45,($params['category_img_h']) ? $params['category_img_h'] : 45) : '',
                                                        'href'             => $this->url->link('product/category', 'path=' . $category['category_id'])
                                                    );
                                                }
                                            }
                                        }
                                    }
                                    
                                    if ($type == 'information') {
                                        if (isset($menuchild['item'])) {
                                            $information_ids = explode(',', $menuchild['item']);
                                            foreach($information_ids as $information_id){
                                                if($information_id!=''){
                                                    $result = $this->model_catalog_information->getInformation($information_id);
                                                    $contents[] = array(
                                                        'title' => $result['title'],
                                                        'href'  => $this->url->link('information/information', 'information_id=' . $result['information_id'])
                                                    );
                                                }
                                            }
                                        }
                                    }
                                    
                                    if ($type == 'url') {
                                        if(isset($menuchild['url'])){
                                            $hrefchild = $menuchild['url'];
                                        }
                                        $contents =  $menuchild['title'];
                                    }
                                    
                                    if ($type == 'html') {
                                        $contents =  html_entity_decode($menuchild['content_text'], ENT_QUOTES, 'UTF-8');                            
                                    }
                                
                                }
                                
                                $menudropdowns[] = array(
                                    'title'                 => $menuchild['title'],
                                    'type'                => $type,
                                    'href'                => $hrefchild,
                                    'content'            => $contents,
                                    'parent'            => (isset($parent) ? $parent : null),
                                    'child_width'        => $child_width
                                    
                                );
                                
                            }
                        }
                        
                        
                        $icon = json_decode($menu['image'], true);
                        
                        if ($icon['icon']) {
                            $image = $this->model_tool_image->resize($icon['icon'], $icon['icon_image_width'], $icon['icon_image_height']);
                        } else {
                            $image = false;
                        }
                        
                        $this->data['menus'][] = array(
                            'title'                 => $menu['title'],
                            'image'                 => $image,
                            'menuchilds'        => $menudropdowns,
                            'dropdown_width'    => $dropdown_width,
                            'href'                => $href
                        );
                        /*echo '<pre>';
                        print_r($this->data['menus']);
                        echo '</pre>';
                        die();
                        */
                    }
                }
            }
                
            if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/boss_megamenu.tpl')) {
                $this->template = $this->config->get('config_template') . '/template/module/boss_megamenu.tpl';
            } else {
                $this->template = 'default/template/module/boss_megamenu.tpl';
            }
            
            $this->cache->set('boss_megamenu.' . (int)$this->config->get('config_language_id'),$this->render());
            
            //$this->render();
        }else{
            if (file_exists(DIR_TEMPLATE . $this->config->get('config_template') . '/template/module/boss_megamenu.tpl')) {
                $this->template = $this->config->get('config_template') . '/template/module/boss_megamenu.tpl';
            } else {
                $this->template = 'default/template/module/boss_megamenu.tpl';
            }
            
            $this->render();
        }
    }
    
    private function getChildrenCategory($category, $path)
    {
        $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    
            );        
                                
            $children_data[] = array(
                'name'      => $child['name'],
                'children'     => $this->getChildrenCategory($child, $path . '_' . $child['category_id']),
                'column'       => 1,
                'href'  => $this->url->link('product/category', 'path=' . $path . '_' . $child['category_id'])    
            );
            
        }
        return $children_data;
    }
}
?>

megamenu.tpl
Kod:
<?php
if($data_template){
    echo $data_template;
} else { ?>
<?php
    function showSubmenu($category) {
        if (count($category['children']) > 0) {
            echo '<div class="sub_menu"><ul>';
            foreach ($category['children'] as $cat) {
                echo '<li><a href="'.$cat['href'].'">'.$cat['name'].'</a>';
                showSubmenu($cat);
                echo '</li>';
            }
            echo '</ul></div>';
        }
    }
    function showmenuChild($category) {
        if (count($category['children']) > 0) {
            echo '<ul>';
            foreach ($category['children'] as $cat) {
                (($cat['children'])? $parent = ' class="parent"' : $parent='');
                echo '<li'.$parent.'><a href="'.$cat['href'].'">'.$cat['name'].'</a>';
                showmenuChild($cat);
                echo '</li>';
            }
            echo '</ul>';
        }
    }
?>

<?php if ($this->config->get('b_General_Menu')) { ?>

                
<div class="quick-select">
<p><span><?php echo $menu_title; ?></span></p>
<div class="sub-inside mobile" id="boss_menu" >
    <ul class="display-menu">
    <?php foreach ($menus as $menu) { ?>
    <li class="menu_item level-1 parent<?php if (count($menu['menuchilds']) > 0) { ?> menu_check_child<?php } ?>">
        <a class="title_menu_parent" href="<?php echo $menu['href']; ?>"><?php if($menu['image']){ ?><img title="<?php echo $menu['title'] ?>" src="<?php echo $menu['image']; ?>" alt="<?php echo $menu['title'] ?>"><?php } ?>
        <span><?php echo $menu['title'] ?></span><?php if (count($menu['menuchilds']) > 0) { ?><b></b><?php } ?></a>
        
        <?php if (count($menu['menuchilds']) > 0) { ?>
        <div class="dropdown" style="width: <?php echo $menu['dropdown_width']; ?>px;">
        
            <?php foreach ($menu['menuchilds'] as $menuchild) { ?>
            <div class="option" style="width: <?php echo $menuchild['child_width']; ?>px; float: left">
                <!--<a href="<?php echo $menuchild['href']; ?>"><?php echo $menuchild['title'] ?></a>-->
                <!-- html-->
                <?php if ($menuchild['type'] == 'html') { ?>
                    <div class="staticblock"><?php echo $menuchild['content']; ?></div>
                <?php } ?>
                <?php if ($menuchild['type'] == 'url') { ?>
                    <div class="url"><a href="<?php echo $menuchild['href']; ?>"><?php echo $menuchild['content']; ?></a></div>
                <?php } ?>
                <!-- information -->
                <?php if ($menuchild['type'] == 'information') { ?>
                    <ul class="column information">
                        <?php foreach($menuchild['content'] as $information) { ?>
                        <li><a href="<?php echo $information['href']; ?>"><?php echo $information['title']; ?></a></li>
                        <?php } ?>
                    </ul>
                <?php } ?>
                
                <!-- manufacturer -->
                <?php if ($menuchild['type'] == 'manufacturer') { ?>
                    <ul class="column manufacturer">
                        <?php foreach($menuchild['content'] as $manufacturer) { ?>
                            <li><a href="<?php echo $manufacturer['href']; ?>">
                                <?php if ($manufacturer['show_image']) { ?><img src="<?php echo $manufacturer['image']; ?>" alt="<?php echo $manufacturer['name']; ?>"/><?php } ?>
                                <?php if ($manufacturer['show_name']) { ?><?php echo $manufacturer['name']; ?><?php } ?>
                            </a></li>
                        <?php } ?>
                    </ul>
                <?php } ?>
                
                <!-- category -->
                <?php if ($menuchild['type'] == 'category') { ?>
                
                    <?php if ($menuchild['parent']) { ?>
                    <?php if($menuchild['parent']['show_parent']){?>
                        <a href="<?php echo $menuchild['parent']['href']; ?>" class="parent">
                        <?php if (($menuchild['parent']['show_image'])&&$menuchild['parent']['image']) { ?>
                        <img src="<?php echo $menuchild['parent']['image']; ?>" alt="<?php echo $menuchild['parent']['name']; ?>" /><?php } ?>
                        <?php echo $menuchild['parent']['name']; ?>
                        </a>
                    <?php } ?>
                    <?php } ?>
                    
                    <ul class="column category">
                        <?php foreach($menuchild['content'] as $category) { ?>
                            <li>
                                <a href="<?php echo $category['href']; ?>">
                                <?php if (($category['show_image']) && $category['image']) { ?><img src="<?php echo $category['image']; ?>" alt="<?php echo $category['name']; ?>"/><?php } ?>
                                <?php echo $category['name']; ?>
                                </a>
                                <?php if ($category['show_sub']) { showSubmenu($category); } ?>
                            </li>
                        <?php } ?>
                    </ul>
                <?php } ?>
                
                <!-- product -->
                <?php if ($menuchild['type'] == 'product') { ?>
                    <ul class="column product">
                        <?php foreach($menuchild['content'] as $product) { ?>
                            <li>
                                <?php if ($product['thumb']) { ?><a href="<?php echo $product['href']; ?>"><img src="<?php echo $product['thumb']; ?>" alt="<?php echo $product['name']; ?>"/></a><?php } ?>
                                    <a href="<?php echo $product['href']; ?>"><?php echo $product['name']; ?></a>
                                    <div class="model"><?php echo $product['model']; ?></div>
                                    <?php if ($product['rating']) { ?>
                                    <div class="rating"><img src="catalog/view/theme/bt_electronues/image/stars-<?php echo $product['rating']; ?>.png" alt="<?php echo $product['reviews']; ?>" /></div>
                                    <?php } ?>
                                    <?php if (!$product['special']) { ?>
                                        <span class="price"><?php echo $product['price']; ?></span>
                                    <?php } else { ?>
                                        <span class="price-old"><?php echo $product['price']; ?></span>
                                        <span class="price-new"><?php echo $product['special']; ?></span>
                                    <?php } ?>
                            </li>
                        <?php } ?>
                    </ul>
                <?php } ?>
                
            </div>
            <span class="spanOption" style="width: <?php echo $menuchild['child_width']; ?>px;" ></span>
            <?php } ?>            
        </div>
        <span class="spanOptionList" style="width: <?php echo $menu['dropdown_width']; ?>px;" ></span>
        <?php } ?>        
    </li>
    <?php } ?>
    </ul>
</div>

</div>
<?php } ?>
<div id="megamenu-responsive" class="hide-on-desktop hide-on-tablet" >

    <ul id="megamenu-responsive-root">
        <li class="menu-toggle"><span><?php echo $menu_title; ?><b></b></span></li>
        <li class="root">
            <ul>
            <?php foreach ($categories as $category) { ?>
                <li <?php if ($category['children']) echo 'class="parent"'; ?>><a href="<?php echo $category['href']; ?>"><?php echo $category['name']; ?></a>
                  <?php if ($category['children']) { ?>
                
                    <?php for ($i = 0; $i < count($category['children']);) { ?>
                    <ul>
                      <?php $j = $i + ceil(count($category['children']) / $category['column']); ?>
                      <?php for (; $i < $j; $i++) { ?>
                      <?php if (isset($category['children'][$i])) { ?>
                      <li class="parent">
                      <a href="<?php echo $category['children'][$i]['href']; ?>"><?php echo $category['children'][$i]['name']; ?></a>
                      <?php showmenuChild($category); ?>
                      </li>
                      <?php } ?>
                      <?php } ?>
                    </ul>
                    <?php } ?>
                
                  <?php } ?>
                </li>
            <?php } ?>
                <li><a href="index.php?route=bossblog/bossblog">Blog</a></li>
            </ul>
        </li>
    </ul>
    <script type="text/javascript">
    $('document').ready(function(){
        $('#megamenu-responsive-root li.parent').prepend('<p>+</p>');
        
        $('.menu-toggle').click(function(){
            $('.root').toggleClass('open');
        });
        
        $('#megamenu-responsive-root li.parent > p').click(function(){

            if ($(this).text() == '+'){
                $(this).parent('li').children('ul').slideDown(300);
                $(this).text('-');
            }else{
                $(this).parent('li').children('ul').slideUp(300);
                $(this).text('+');
            }
            
        });
    });
    </script>
</div>

<?php } ?>


Arkadaşlar kullandığım megamenu'de

Ana Kategori Üzerine geldiğinde açılan alt kategorileri

index.php?route=product/category&path=117

şeklinde link veriyor ancak olması gereken

index.php?route=product/category&path=102_117

ve 3. ağaç olan kategoride de

index.php?route=product/category&path=102_117_121

yerine

index.php?route=product/category&path=117_121

şeklinde gözüküyor php kısmında gerekli düzenlemeleri yaptığım halde sürekli hata ile karşılaşıyorum.
tpl dosyasında da müdahele ettiğimde de sürekli hata

İlgilenen arkadaşlara şimdiden teşekkürler.
Alıntı Yaparak Cevapla
Paylaş!
barneyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 82
Konular: 34
Katılma Tarihi: Sep 2014
Rep Puanı: 1
Teşekkürler: 8
9 Mesajına, 15 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 12-01-2014 03:14 AM
Yokmu arkadaşlar bu durumu çözüm üretecek biri?
Alıntı Yaparak Cevapla
Paylaş!
barneyv
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 82
Konular: 34
Katılma Tarihi: Sep 2014
Rep Puanı: 1
Teşekkürler: 8
9 Mesajına, 15 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 12-03-2014 03:41 PM
Umarım arada bir fikri olan çıkar
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

megamenu kategori linki Konusunun Linki Direk Link
megamenu kategori linki Konusunun HTML Kodu HTML Link
megamenu kategori linki Konusu BBCode Linki BBCode Link
megamenu kategori linki Konusunu Paylaş Sosyal Paylaş

Benzeyen Konular
Konu: Yazar Cevaplar: Gösterim: Son Mesaj
  ürün silinmiyor,kategori kaldırılmıyor. mehmet0078 3 4,894 08-28-2020 01:30 PM
Son Mesaj: ademkilinc.fc
  Ürün eklerken kategori seçmek Marksman 3 3,350 07-24-2019 08:04 PM
Son Mesaj: Kaptan35
  Ürün edit ya da kategori edit kısmındaki hata veloxxx 0 1,341 01-08-2019 12:42 PM
Son Mesaj: veloxxx
Exclamation Üye olmayanlara kategori ggizleme hacktor 0 1,285 06-28-2017 04:56 PM
Son Mesaj: hacktor
  Kategori Sayfalarında Ürün isimleri çok kısa yunusyildiz 6 2,745 05-16-2017 07:46 PM
Son Mesaj: yunusyildiz
  Alt Kategori sayfasında seo url sorunu sslayter61 0 2,229 05-01-2017 03:56 PM
Son Mesaj: sslayter61
  Ürün Sayfasında ürün linki nasıl kaldırırım hcyasavul 3 2,191 12-03-2016 10:15 PM
Son Mesaj: osdem66
  Çoklu kategori ekleme sorunu yardım ? ahmetsomuncu 0 1,897 11-22-2016 10:49 AM
Son Mesaj: ahmetsomuncu
  [Tema] Kategori bölümünde hata Macrobeatz33 0 1,832 07-12-2016 09:07 PM
Son Mesaj: Macrobeatz33
  Alt Kategori Sorunu oender 0 2,136 06-27-2016 12:53 PM
Son Mesaj: oender

megamenu kategori linki indir, megamenu kategori linki Videosu, megamenu kategori linki online izle, megamenu kategori linki Bedava indir, megamenu kategori linki Yükle, megamenu kategori linki Hakkında, megamenu kategori linki nedir, megamenu kategori linki Free indir, megamenu kategori linki oyunu, megamenu kategori linki download


Forum Atla: