opencart ayarlarından fiyatlar sadece üyelere görünsün olarak seçtiğinizde giriş işlemini gerçekleştiren kişiler fiyatları görebiliyor sepete ekle buttonunu da kaldırmak istiyorsak catalog/view/theme/default/template/product/ içerisinde ki category.tpl dosyasını düzenleyip <div class="button-group"> <button type="button" onclick="cart.add('<?php echo $product['product_id']; ?>', '<?php echo $product['minimum']; ?>');"><i class="fa fa-shopping-cart"></i> <span class="hidden-xs hidden-sm hidden-md"><?php echo $button_cart; ?></span></button> <button type="button" data-toggle="tooltip" …
Devamını Oku »Monthly Archives: Ağustos 2017
IsLeap Artık Yıl C, C++, Pascal Function
eger yıl 4’e tam bolunuyor ise ve aynı zamanda 100’e tam bolunmuyor veya 400’e tam bolunuyor ise artık yıldır. 1900 yılı artık yıl degildir… uses System.SysUtils; function IsLeap(year:Integer): Boolean; begin IsLeap := (Year mod 4 = 0) and ((Year mod 100 <> 0) or (Year mod 400 = 0)); end; …
Devamını Oku »Pascal IsPrime Function
function IsPrime(Number: Cardinal): Boolean; var cDivisor, cMax : Cardinal; begin Result := False; if Number and 1 = 0 then Exit; cMax := Trunc(Sqrt(Number)) + 1; cDivisor := 3; while cMax > cDivisor do begin if Number mod cDivisor = 0 then Exit; Inc(cDivisor, 2); if Number mod cDivisor = …
Devamını Oku »