tr-opencart

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

Kodlardaki Eksiklik

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  ALeeNN - Görüntüleme - Okunma  2618 - Yorum  2

ALeeNNv
Banned
user avatar
Çevrimdışı

Mesajlar: 62
Konular: 10
Katılma Tarihi: Jan 2012
Teşekkürler: 8
10 Mesajına, 11 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 11-05-2012 01:55 AM

Arkadaşlar kullanmış olduğum mesafeli satış sözleşmesinde alışveriş eğer üye olup da yapılıyorsa sistem bilgileri mesafeli satış sözleşmesine sorunsuz olarak çekiyor. Ancak eğer kişi eğer misafir alışverişi olarak sipariş vermek isterse sistem mesafeli satış sözleşmesine bilgileri çekmiyordu.

Dün gece GÖKHAN KORKUT sağolsun bana tiyo verdi ve ben kendimce sorunun %99 luk kısmını çözdüm.

Aşağıdaki yazdığım kodlara bakarsanız kişi misafir alışverişini seçtiğinde ŞİRKET bilgilerini çekmiyor. İsim soyisim vs hepsini çekiyor ama şirket bilgilerini çekmiyor.

NOT: SORUN SADECE MİSAFİR ALIŞVERİŞİNDE YAŞANIYOR. ÜYE ALIŞVERİŞİNDE SORUN YOK.

Yardımcı olacak arkadaşlara şimdiden teşekkürler.

PHP Kod:
<?php 
class ControllerCheckoutSozlesme extends Controller 
    public function 
index() {

        
//Mağaza bilgileri        
        
$this->data['order']['store_name'] = $this->config->get('config_name');
        
$this->data['order']['store_address'] = $this->config->get('config_address');
        
$this->data['order']['store_fax'] = $this->config->get('config_fax');
        
$this->data['order']['store_telephone'] = $this->config->get('config_telephone');
        
$this->data['order']['store_url'] = str_replace("/"""str_replace("http://"""$this->config->get('config_url')));
        
$this->data['order']['store_email'] = $this->config->get('config_email');
        
$this->data['order']['date_added'] = date("d/m/Y");
        
$this->data['order']['order_id'] = $this->session->data['order_id'];
        
        
        
        
        
//Alıcı bilgileri
        
$this->load->model('account/address');
        
$faturaAdres $this->model_account_address->getAddress($this->session->data['payment_address_id']);
        if(
$faturaAdres['company']) $this->data['order']['unvan'] = $faturaAdres['company'];
        else 
$this->data['order']['unvan']  = $faturaAdres['firstname'].' '.$faturaAdres['lastname'];
        
        if (isset(
$this->session->data['guest']['firstname'])) {
            
$this->data['order']['unvan'] = $this->session->data['guest']['firstname'].' '.$this->session->data['guest']['lastname'];
        }
        
        
$this->data['order']['telephone'] = $this->customer->getTelephone();
        
        if (isset(
$this->session->data['guest']['telephone'])) {
            
$this->data['order']['telephone'] = $this->session->data['guest']['telephone'] ;
        }
        
        
$this->data['order']['email'] = $this->customer->getEmail();
        
        if (isset(
$this->session->data['guest']['email'])) {
            
$this->data['order']['email'] = $this->session->data['guest']['email'] ;
        }
        
        
$this->data['order']['adres'] = $faturaAdres['address_1'].' '.$faturaAdres['address_2'].' '.$faturaAdres['postcode'].' '.$faturaAdres['city'].'/'.$faturaAdres['zone'].'/'.$faturaAdres['country'];
        
        if (isset(
$this->session->data['guest']['payment']['address_1'])) {
            
$this->data['order']['adres'] = $this->session->data['guest']['payment']['address_1'].' '.$this->session->data['guest']['payment']['address_2'].' '.$this->session->data['guest']['payment']['postcode'].' '.$this->session->data['guest']['payment']['city'].'/'.$this->session->data['guest']['payment']['zone'].'/'.$this->session->data['guest']['payment']['country'];
        }

        
//Teslimat Adresi

        
$format '{firstname} {lastname}' "\n" '{company}' "\n" '{address_1}' "\n" '{address_2}' "\n" '{city} {postcode}' "\n" '{zone}' "\n" '{country}';

        
$find = array(
                    
'{firstname}',
                    
'{lastname}',
                    
'{company}',
                    
'{address_1}',
                    
'{address_2}',
                    
'{city}',
                    
'{postcode}',
                    
'{zone}',
                    
'{zone_code}',
                    
'{country}'
                
);
                
        
        
$teslimatAdresi $this->model_account_address->getAddress($this->session->data['shipping_address_id']);
        
        
$replace = array(
                    
'firstname' => $teslimatAdresi['firstname'],
                    
'lastname'  => $teslimatAdresi['lastname'],
                    
'company'   => $teslimatAdresi['company'],
                    
'address_1' => $teslimatAdresi['address_1'],
                    
'address_2' => $teslimatAdresi['address_2'],
                    
'city'      => $teslimatAdresi['city'],
                    
'postcode'  => $teslimatAdresi['postcode'],
                    
'zone'      => $teslimatAdresi['zone'],
                    
'zone_code' => $teslimatAdresi['zone_code'],
                    
'country'   => $teslimatAdresi['country']
                );

        
$this->data['order']['shipping_address'] = str_replace(array("\r\n""\r""\n"), '<br />'preg_replace(array("/\s\s+/""/\r\r+/""/\n\n+/"), '<br />'trim(str_replace($find$replace$format))));
        
        if (isset(
$this->session->data['guest']['shipping']['address_1'])) {
            
$this->data['order']['shipping_address'] = $this->session->data['guest']['firstname'].' '.$this->session->data['guest']['lastname'].'<br />'.$this->session->data['guest']['shipping']['address_1'].' '.$this->session->data['guest']['shipping']['address_2'].' '.$this->session->data['guest']['shipping']['postcode'].' '.$this->session->data['guest']['shipping']['city'].'/'.$this->session->data['guest']['shipping']['zone'].'/'.$this->session->data['guest']['shipping']['country'];
        }
        
        
//Fatura Adresi
        
        
        
$format '{firstname} {lastname}' "\n" '{company}' "\n" '{address_1}' "\n" '{address_2}' "\n" '{city} {postcode}' "\n" '{zone}' "\n" '{country}' ;
        
        
$find = array(
                    
'{firstname}',
                    
'{lastname}',
                    
'{company}',
                    
'{address_1}',
                    
'{address_2}',
                    
'{city}',
                    
'{postcode}',
                    
'{zone}',
                    
'{zone_code}',
                    
'{country}'
                
);

        
$replace = array(
                    
'firstname' => $faturaAdres['firstname'],
                    
'lastname'  => $faturaAdres['lastname'],
                    
'company'   => $faturaAdres['company'],
                    
'address_1' => $faturaAdres['address_1'],
                    
'address_2' => $faturaAdres['address_2'],
                    
'city'      => $faturaAdres['city'],
                    
'postcode'  => $faturaAdres['postcode'],
                    
'zone'      => $faturaAdres['zone'],
                    
'zone_code' => $faturaAdres['zone_code'],
                    
'country'   => $faturaAdres['country']
                );
        
$this->data['order']['payment_address'] = str_replace(array("\r\n""\r""\n"), '<br />'preg_replace(array("/\s\s+/""/\r\r+/""/\n\n+/"), '<br />'trim(str_replace($find$replace$format))));

        if (isset(
$this->session->data['guest']['payment']['address_1'])) {
            
$this->data['order']['payment_address'] = $this->session->data['guest']['firstname'].' '.$this->session->data['guest']['lastname'].'<br />'.$this->session->data['guest']['payment']['address_1'].' '.$this->session->data['guest']['payment']['address_2'].' '.$this->session->data['guest']['payment']['postcode'].' '.$this->session->data['guest']['payment']['city'].'/'.$this->session->data['guest']['payment']['zone'].'/'.$this->session->data['guest']['payment']['country'];
        }
        
        
//Toplam Tutar Bilgileri
        
$total_data = array();
            
$total 0;
            
$taxes $this->cart->getTaxes();
             
            
$this->load->model('setting/extension');
            
            
$sort_order = array(); 
            
            
$results $this->model_setting_extension->getExtensions('total');
            
            foreach (
$results as $key => $value) {
                
$sort_order[$key] = $this->config->get($value['code'] . '_sort_order');
            }
            
            
array_multisort($sort_orderSORT_ASC$results);
            
            foreach (
$results as $result) {
                if (
$this->config->get($result['code'] . '_status')) {
                    
$this->load->model('total/' $result['code']);
        
                    
$this->{'model_total_' $result['code']}->getTotal($total_data$total$taxes);
                }
            }
            
            
$sort_order = array(); 
          
            foreach (
$total_data as $key => $value) {
                
$sort_order[$key] = $value['sort_order'];
            }
    
        
array_multisort($sort_orderSORT_ASC$total_data);
        
        
        
//Dil Dosyaları
        
$this->data['order']['total'] = $total_data;
        
        
        
$this->language->load('checkout/checkout');
        
        
$this->data['column_product'] = $this->language->get('column_name');
            
$this->data['column_model'] = $this->language->get('column_model');
            
$this->data['column_quantity'] = $this->language->get('column_quantity');
            
$this->data['column_price'] = $this->language->get('column_price');
            
$this->data['column_total'] = $this->language->get('column_total');
        
        
//Ürün Bilgisi
        
$product_data = array();
            foreach (
$this->cart->getProducts() as $product) {
                
$option_data = array();
    
                foreach (
$product['option'] as $option) {
                    if (
$option['type'] != 'file') {    
                        
$option_data[] = array(
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'option_id'               => $option['option_id'],
                            
'option_value_id'         => $option['option_value_id'],                                   
                            
'name'                    => $option['name'],
                            
'value'                   => $option['option_value'],
                            
'type'                    => $option['type']
                        );                    
                    } else {
                        
$this->load->library('encryption');
                        
                        
$encryption = new Encryption($this->config->get('config_encryption'));
                        
                        
$option_data[] = array(
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'option_id'               => $option['option_id'],
                            
'option_value_id'         => $option['option_value_id'],                                   
                            
'name'                    => $option['name'],
                            
'value'                   => $encryption->decrypt($option['option_value']),
                            
'type'                    => $option['type']
                        );                                
                    }
                }
     
                
$product_data[] = array(
                    
'product_id' => $product['product_id'],
                    
'name'       => $product['name'],
                    
'model'      => $product['model'],
                    
'option'     => $option_data,
                    
'download'   => $product['download'],
                    
'quantity'   => $product['quantity'],
                    
'subtract'   => $product['subtract'],
                    
'price'      => $product['price'],
                    
'total'      => $product['total'],
//                'tax'        => $this->tax->getRate($product['tax_class_id'])
                
'tax'        => $product['tax_class_id']
                ); 
            }
            
            
        
$this->data['order']['product'] = $product_data;
        
        
        
        
        if (
file_exists(DIR_TEMPLATE $this->config->get('config_template') . '/template/checkout/satis_sozlesmesi.tpl')) {
                
$this->template $this->config->get('config_template') . '/template/checkout/satis_sozlesmesi.tpl';
            } else {
                
$this->template 'default/template/checkout/satis_sozlesmesi.tpl';
        }
        
$this->session->data['mesafeliSatisSozlesmesi'] = $this->render();
        
//echo 'fsdf'.$this->session->data['mesafeliSatisSozlemesi']; exit;
        
$this->response->setOutput($this->session->data['mesafeliSatisSozlesmesi']);            
      }
    public function 
onbilgilendirme() {
    
        
//Mağaza bilgileri        
        
$this->data['order']['store_name'] = $this->config->get('config_name');
        
$this->data['order']['store_address'] = $this->config->get('config_address');
        
$this->data['order']['store_fax'] = $this->config->get('config_fax');
        
$this->data['order']['store_telephone'] = $this->config->get('config_telephone');
        
$this->data['order']['store_url'] = str_replace("/"""str_replace("http://"""$this->config->get('config_url')));
        
$this->data['order']['store_email'] = $this->config->get('config_email');
        
$this->data['order']['date_added'] = date("d/m/Y");
        
$this->data['order']['order_id'] = $this->session->data['order_id'];
        
        
        
        
        
//Alıcı bilgileri
        
$this->load->model('account/address');
        
$faturaAdres $this->model_account_address->getAddress($this->session->data['payment_address_id']);
        if(
$faturaAdres['company']) $this->data['order']['unvan'] = $faturaAdres['company'];
        else 
$this->data['order']['unvan']  = $faturaAdres['firstname'].' '.$faturaAdres['lastname'];
        
        if (isset(
$this->session->data['guest']['firstname'])) {
            
$this->data['order']['unvan'] = $this->session->data['guest']['firstname'].' '.$this->session->data['guest']['lastname'];
        }
        
        
$this->data['order']['telephone'] = $this->customer->getTelephone();
        
        if (isset(
$this->session->data['guest']['telephone'])) {
            
$this->data['order']['telephone'] = $this->session->data['guest']['telephone'] ;
        }
        
        
$this->data['order']['email'] = $this->customer->getEmail();
        
        if (isset(
$this->session->data['guest']['email'])) {
            
$this->data['order']['email'] = $this->session->data['guest']['email'] ;
        }
        
        
$this->data['order']['adres'] = $faturaAdres['address_1'].' '.$faturaAdres['address_2'].' '.$faturaAdres['postcode'].' '.$faturaAdres['city'].'/'.$faturaAdres['zone'].'/'.$faturaAdres['country'];
        
        if (isset(
$this->session->data['guest']['payment']['address_1'])) {
            
$this->data['order']['adres'] = $this->session->data['guest']['payment']['address_1'].' '.$this->session->data['guest']['payment']['address_2'].' '.$this->session->data['guest']['payment']['postcode'].' '.$this->session->data['guest']['payment']['city'].'/'.$this->session->data['guest']['payment']['zone'].'/'.$this->session->data['guest']['payment']['country'];
        }
        
        
//Teslimat Adresi

        
$format '{firstname} {lastname}' "\n" '{company}' "\n" "\n" '{address_1}' "\n" '{address_2}' "\n" '{city} {postcode}' "\n" '{zone}' "\n" '{country}';

        
$find = array(
                    
'{firstname}',
                    
'{lastname}',
                    
'{company}',
                    
'{address_1}',
                    
'{address_2}',
                    
'{city}',
                    
'{postcode}',
                    
'{zone}',
                    
'{zone_code}',
                    
'{country}'
                
);
                
        
        
$teslimatAdresi $this->model_account_address->getAddress($this->session->data['shipping_address_id']);
        
        
$replace = array(
                    
'firstname' => $teslimatAdresi['firstname'],
                    
'lastname'  => $teslimatAdresi['lastname'],
                    
'company'   => $teslimatAdresi['company'],
                    
'address_1' => $teslimatAdresi['address_1'],
                    
'address_2' => $teslimatAdresi['address_2'],
                    
'city'      => $teslimatAdresi['city'],
                    
'postcode'  => $teslimatAdresi['postcode'],
                    
'zone'      => $teslimatAdresi['zone'],
                    
'zone_code' => $teslimatAdresi['zone_code'],
                    
'country'   => $teslimatAdresi['country']
                );

        
$this->data['order']['shipping_address'] = str_replace(array("\r\n""\r""\n"), '<br />'preg_replace(array("/\s\s+/""/\r\r+/""/\n\n+/"), '<br />'trim(str_replace($find$replace$format))));
        
        if (isset(
$this->session->data['guest']['shipping']['address_1'])) {
            
$this->data['order']['shipping_address'] = $this->session->data['guest']['firstname'].' '.$this->session->data['guest']['lastname'].'<br />'.$this->session->data['guest']['shipping']['address_1'].' '.$this->session->data['guest']['shipping']['address_2'].' '.$this->session->data['guest']['shipping']['postcode'].' '.$this->session->data['guest']['shipping']['city'].'/'.$this->session->data['guest']['shipping']['zone'].'/'.$this->session->data['guest']['shipping']['country'];
        }
        
        
//Fatura Adresi
        
        
        
$format '{firstname} {lastname}' "\n" '{company}' "\n" '{address_1}' "\n" '{address_2}' "\n" '{city} {postcode}' "\n" '{zone}' "\n" '{country}' ;
        
        
$find = array(
                    
'{firstname}',
                    
'{lastname}',
                    
'{company}',
                    
'{address_1}',
                    
'{address_2}',
                    
'{city}',
                    
'{postcode}',
                    
'{zone}',
                    
'{zone_code}',
                    
'{country}'
                
);

        
$replace = array(
                    
'firstname' => $faturaAdres['firstname'],
                    
'lastname'  => $faturaAdres['lastname'],
                    
'company'   => $faturaAdres['company'],
                    
'address_1' => $faturaAdres['address_1'],
                    
'address_2' => $faturaAdres['address_2'],
                    
'city'      => $faturaAdres['city'],
                    
'postcode'  => $faturaAdres['postcode'],
                    
'zone'      => $faturaAdres['zone'],
                    
'zone_code' => $faturaAdres['zone_code'],
                    
'country'   => $faturaAdres['country']
                );
        
$this->data['order']['payment_address'] = str_replace(array("\r\n""\r""\n"), '<br />'preg_replace(array("/\s\s+/""/\r\r+/""/\n\n+/"), '<br />'trim(str_replace($find$replace$format))));

        if (isset(
$this->session->data['guest']['payment']['address_1'])) {
            
$this->data['order']['payment_address'] = $this->session->data['guest']['firstname'].' '.$this->session->data['guest']['lastname'].'<br />'.$this->session->data['guest']['payment']['address_1'].' '.$this->session->data['guest']['payment']['address_2'].' '.$this->session->data['guest']['payment']['postcode'].' '.$this->session->data['guest']['payment']['city'].'/'.$this->session->data['guest']['payment']['zone'].'/'.$this->session->data['guest']['payment']['country'];
        }
        
        
//Toplam Tutar Bilgileri
        
$total_data = array();
            
$total 0;
            
$taxes $this->cart->getTaxes();
             
            
$this->load->model('setting/extension');
            
            
$sort_order = array(); 
            
            
$results $this->model_setting_extension->getExtensions('total');
            
            foreach (
$results as $key => $value) {
                
$sort_order[$key] = $this->config->get($value['code'] . '_sort_order');
            }
            
            
array_multisort($sort_orderSORT_ASC$results);
            
            foreach (
$results as $result) {
                if (
$this->config->get($result['code'] . '_status')) {
                    
$this->load->model('total/' $result['code']);
        
                    
$this->{'model_total_' $result['code']}->getTotal($total_data$total$taxes);
                }
            }
            
            
$sort_order = array(); 
          
            foreach (
$total_data as $key => $value) {
                
$sort_order[$key] = $value['sort_order'];
            }
    
        
array_multisort($sort_orderSORT_ASC$total_data);
        
        
        
//Dil Dosyaları
        
$this->data['order']['total'] = $total_data;
        
        
        
$this->language->load('checkout/checkout');
        
        
$this->data['column_product'] = $this->language->get('column_name');
            
$this->data['column_model'] = $this->language->get('column_model');
            
$this->data['column_quantity'] = $this->language->get('column_quantity');
            
$this->data['column_price'] = $this->language->get('column_price');
            
$this->data['column_total'] = $this->language->get('column_total');
        
        
//Ürün Bilgisi
        
$product_data = array();
            foreach (
$this->cart->getProducts() as $product) {
                
$option_data = array();
    
                foreach (
$product['option'] as $option) {
                    if (
$option['type'] != 'file') {    
                        
$option_data[] = array(
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'option_id'               => $option['option_id'],
                            
'option_value_id'         => $option['option_value_id'],                                   
                            
'name'                    => $option['name'],
                            
'value'                   => $option['option_value'],
                            
'type'                    => $option['type']
                        );                    
                    } else {
                        
$this->load->library('encryption');
                        
                        
$encryption = new Encryption($this->config->get('config_encryption'));
                        
                        
$option_data[] = array(
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'product_option_id'       => $option['product_option_id'],
                            
'product_option_value_id' => $option['product_option_value_id'],
                            
'option_id'               => $option['option_id'],
                            
'option_value_id'         => $option['option_value_id'],                                   
                            
'name'                    => $option['name'],
                            
'value'                   => $encryption->decrypt($option['option_value']),
                            
'type'                    => $option['type']
                        );                                
                    }
                }
     
                
$product_data[] = array(
                    
'product_id' => $product['product_id'],
                    
'name'       => $product['name'],
                    
'model'      => $product['model'],
                    
'option'     => $option_data,
                    
'download'   => $product['download'],
                    
'quantity'   => $product['quantity'],
                    
'subtract'   => $product['subtract'],
                    
'price'      => $product['price'],
                    
'total'      => $product['total'],
//                    'tax'        => $this->tax->getRate($product['tax_class_id'])
                    
'tax'        => $product['tax_class_id']
                ); 
            }
            
            
        
$this->data['order']['product'] = $product_data;
        
        
        
        
//Ödeme Bilgileri 
        
        
$this->data['order']['odemetipi'] = $this->session->data['payment_method']['title'];
        
        
//Kargo Bilgileri
        
        
$this->data['order']['kargotutar'] = $this->session->data['shipping_method']['text'];
        
        
        if (
file_exists(DIR_TEMPLATE $this->config->get('config_template') . '/template/checkout/on_bilginlendirme.tpl')) {
                
$this->template $this->config->get('config_template') . '/template/checkout/on_bilginlendirme.tpl';
            } else {
                
$this->template 'default/template/checkout/on_bilginlendirme.tpl';
        }
        
$this->session->data['onBilgilendirmeFormu'] = $this->render();
        
$this->response->setOutput($this->session->data['onBilgilendirmeFormu']);    
    }
}
?>
Alıntı Yaparak Cevapla
Paylaş!
fofotarav
Üye
***
Üye user avatar
Çevrimdışı

Mesajlar: 61
Konular: 6
Katılma Tarihi: Jan 2012
Rep Puanı: 0
Teşekkürler: 2
11 Mesajına, 22 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 11-05-2012 04:20 PM
Bununla ilgili yamayı yaklaşık 2 ay önce zaten yapmıştım. ilgili topikten düzenlemeleri bulabilirsin
Alıntı Yaparak Cevapla
Paylaş!
ALeeNNv
Banned
user avatar
Çevrimdışı

Mesajlar: 62
Konular: 10
Katılma Tarihi: Jan 2012
Teşekkürler: 8
10 Mesajına, 11 Teşekkür edildi.



Kişisel Bilgileri: v
Konu Tarihi: 11-05-2012 11:10 PM
(11-05-2012 04:20 PM)fofotara Yazılan:  Bununla ilgili yamayı yaklaşık 2 ay önce zaten yapmıştım. ilgili topikten düzenlemeleri bulabilirsin

Hocam bu mesafeli sizin yapmış olduğunuz mesafeli satış sözleşmesi değil. Bu acıketicaret diye bir arkadaşın diğer forumda paylaşmış olduğu eklenti. Sizin o yamanızı gördüm ancak eklentiler farkı olduğu için uyum sağlatamadım. Bu kodlar üzerinden düzenleme yapabilirseniz sevinirim.

İyi forumlar...
Alıntı Yaparak Cevapla
Paylaş!

« Önceki | Sonraki »
Cevapla  Gönder 

Kodlardaki Eksiklik Konusunun Linki Direk Link
Kodlardaki Eksiklik Konusunun HTML Kodu HTML Link
Kodlardaki Eksiklik Konusu BBCode Linki BBCode Link
Kodlardaki Eksiklik Konusunu Paylaş Sosyal Paylaş

Kodlardaki Eksiklik indir, Kodlardaki Eksiklik Videosu, Kodlardaki Eksiklik online izle, Kodlardaki Eksiklik Bedava indir, Kodlardaki Eksiklik Yükle, Kodlardaki Eksiklik Hakkında, Kodlardaki Eksiklik nedir, Kodlardaki Eksiklik Free indir, Kodlardaki Eksiklik oyunu, Kodlardaki Eksiklik download


Forum Atla: